{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js", "ssg:https://framerusercontent.com/modules/txKFmfn1uOrbSsbfXsbn/OPIDWlvl9hzfCe4MzI5k/G4pVuSzJo.js", "ssg:https://framerusercontent.com/modules/tNyKEFeXeM4pYO7GrLIH/q2mN49026p8cpK07cccx/YiBnw9609.js", "ssg:https://framerusercontent.com/modules/etvgTuG36qgzGjSx6iMN/7S9VWeDlotuE2jxSPhFI/Ai0zXlcSc.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,loopsMailingList,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const mailingListBody=`mailingLists=${encodeURIComponent(loopsMailingList)}`;const hasMailingList=!!loopsMailingList&&loopsMailingList!==\" \";const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";let formBody=emailBody;if(hasUserGroup){formBody+=`&${userGroupBody}`;}if(hasMailingList){formBody+=`&${mailingListBody}`;}fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},loopsMailingList:{title:\"Mailing List\",type:ControlType.String,placeholder:\"cm3q41c5v02ii1lml14om2wtr\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (63ac63c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-TLdjP\";const variantClassNames={LHwFUUtAM:\"framer-v-1q905i6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LHwFUUtAM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com/marketplace/templates/sharp/?via=bryn\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1q905i6\",className,classNames)} framer-16rmi0r`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LHwFUUtAM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.637473px 2px -1.125px rgba(0, 0, 0, 0.21), 0px 1.93094px 5px -2.25px rgba(0, 0, 0, 0.2), 0px 1.93094px 7px -2.25px rgba(0, 0, 0, 0.15), 0px 16px 28px -4.5px rgba(0, 0, 0, 0.04)\",...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x7lo4k\",\"data-framer-name\":\"framer_remix_badge\",fill:\"black\",intrinsicHeight:11,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"WSxpmE_f5\",svg:'<svg width=\"83\" height=\"11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M79.437 10.186c-.702 0-1.305-.142-1.811-.427a2.918 2.918 0 0 1-1.163-1.216c-.273-.527-.409-1.15-.409-1.869 0-.7.136-1.316.409-1.846.272-.53.655-.943 1.15-1.239.496-.296 1.08-.443 1.748-.443.45 0 .869.072 1.256.217.391.142.731.357 1.021.644.293.287.521.648.684 1.083.163.432.244.938.244 1.518v.52H76.81V5.954h3.977c0-.272-.06-.513-.177-.723a1.271 1.271 0 0 0-.493-.493 1.405 1.405 0 0 0-.724-.182c-.287 0-.541.067-.763.2a1.4 1.4 0 0 0-.515.528 1.491 1.491 0 0 0-.191.732v1.115c0 .337.062.629.186.874.128.246.307.435.538.568.23.133.504.2.82.2.21 0 .403-.03.578-.089a1.142 1.142 0 0 0 .732-.701l1.75.115c-.09.42-.272.788-.547 1.101a2.74 2.74 0 0 1-1.056.728c-.43.172-.925.258-1.487.258Zm-7.346 0c-.701 0-1.305-.142-1.811-.427a2.918 2.918 0 0 1-1.163-1.216c-.272-.527-.409-1.15-.409-1.869 0-.7.137-1.316.409-1.846.272-.53.655-.943 1.15-1.239.497-.296 1.08-.443 1.749-.443.45 0 .868.072 1.256.217.39.142.73.357 1.02.644.294.287.522.648.684 1.083.163.432.244.938.244 1.518v.52h-5.757V5.954h3.977a1.45 1.45 0 0 0-.177-.723 1.271 1.271 0 0 0-.493-.493 1.405 1.405 0 0 0-.723-.182c-.287 0-.542.067-.764.2a1.4 1.4 0 0 0-.515.528 1.491 1.491 0 0 0-.19.732v1.115c0 .337.061.629.186.874.127.246.306.435.537.568.23.133.504.2.821.2.21 0 .403-.03.577-.089a1.158 1.158 0 0 0 .732-.701l1.75.115a2.4 2.4 0 0 1-.546 1.101 2.75 2.75 0 0 1-1.057.728c-.43.172-.925.258-1.487.258Zm-7.78-.133V3.234h1.833v1.19h.071c.125-.423.333-.743.626-.959.293-.219.63-.328 1.012-.328a2.863 2.863 0 0 1 .595.066v1.678a2.473 2.473 0 0 0-.368-.07 3.105 3.105 0 0 0-.43-.032c-.28 0-.528.06-.747.182a1.34 1.34 0 0 0-.515.497 1.435 1.435 0 0 0-.186.737v3.858h-1.891ZM63.28 3.235v1.42h-4.207v-1.42h4.208Zm-3.244 6.818v-7.31c0-.495.096-.905.288-1.23.196-.326.462-.57.8-.733.337-.162.72-.244 1.15-.244.29 0 .554.022.794.067.242.044.423.084.541.12l-.337 1.42a2.364 2.364 0 0 0-.275-.067 1.718 1.718 0 0 0-.329-.03c-.278 0-.472.064-.581.195-.11.127-.165.306-.165.537v7.275h-1.886Zm-8.18 0V3.234h1.834v1.19h.07c.125-.423.334-.743.627-.959.293-.219.63-.328 1.012-.328a2.863 2.863 0 0 1 .594.066v1.678a2.473 2.473 0 0 0-.368-.07 3.105 3.105 0 0 0-.43-.032c-.279 0-.527.06-.746.182a1.34 1.34 0 0 0-.515.497 1.435 1.435 0 0 0-.187.737v3.858h-1.89Zm-4.46.133c-.69 0-1.285-.147-1.788-.44a3.007 3.007 0 0 1-1.16-1.234c-.271-.53-.407-1.144-.407-1.842 0-.704.136-1.32.408-1.847a2.97 2.97 0 0 1 1.159-1.234c.503-.296 1.099-.443 1.788-.443.69 0 1.285.147 1.785.443.503.293.89.705 1.163 1.234.272.527.408 1.143.408 1.847 0 .698-.136 1.312-.408 1.842-.273.527-.66.938-1.163 1.234-.5.293-1.095.44-1.785.44Zm.01-1.465c.313 0 .575-.089.785-.267.21-.18.368-.426.475-.736.11-.311.164-.665.164-1.061 0-.397-.055-.75-.164-1.061a1.653 1.653 0 0 0-.475-.737c-.21-.18-.472-.27-.786-.27-.316 0-.583.09-.799.27-.213.18-.374.426-.484.737a3.27 3.27 0 0 0-.16 1.06c0 .397.054.75.16 1.062.11.31.271.556.484.736.216.178.483.267.8.267ZM43.53 3.235v1.42h-4.21v-1.42h4.208Zm-3.245 6.818v-7.31c0-.495.096-.905.288-1.23a1.85 1.85 0 0 1 .8-.733c.336-.162.72-.244 1.149-.244.29 0 .555.022.794.067.243.044.423.084.542.12l-.337 1.42a2.364 2.364 0 0 0-.276-.067 1.716 1.716 0 0 0-.328-.03c-.278 0-.472.064-.582.195-.11.127-.164.306-.164.537v7.275h-1.886Zm-8.663-6.819 1.252 2.384 1.283-2.384h1.94l-1.976 3.41 2.029 3.409h-1.93l-1.346-2.358-1.323 2.358h-1.953l2.024-3.41-1.953-3.409h1.953Zm-4.86 6.819V3.234h1.89v6.819h-1.89Zm.95-7.697c-.282 0-.523-.094-.724-.28a.907.907 0 0 1-.298-.68c0-.26.1-.483.298-.67.201-.189.442-.284.723-.284.282 0 .521.095.72.284.2.187.301.41.301.67a.9.9 0 0 1-.302.68c-.198.186-.438.28-.719.28Zm-12.227 7.697V3.234h1.802v1.203h.08c.142-.4.379-.714.71-.945.332-.231.728-.346 1.19-.346.467 0 .865.116 1.194.35.328.231.547.545.657.941h.07c.14-.39.392-.703.756-.936.366-.237.8-.355 1.3-.355.636 0 1.153.202 1.55.608.399.402.598.973.598 1.713v4.586h-1.886V5.84c0-.379-.1-.663-.302-.852a1.058 1.058 0 0 0-.755-.284c-.343 0-.61.11-.803.328-.192.216-.288.502-.288.857v4.163h-1.834V5.8c0-.334-.096-.6-.288-.799-.19-.198-.44-.297-.75-.297-.21 0-.4.053-.569.16-.165.103-.297.25-.395.439a1.398 1.398 0 0 0-.146.657v4.093h-1.891Zm-4.238.133c-.702 0-1.305-.142-1.811-.427a2.918 2.918 0 0 1-1.163-1.216c-.273-.527-.409-1.15-.409-1.869 0-.7.136-1.316.409-1.846.272-.53.655-.943 1.15-1.239.496-.296 1.08-.443 1.748-.443.45 0 .869.072 1.257.217.39.142.73.357 1.02.644.293.287.521.648.684 1.083.163.432.244.938.244 1.518v.52H8.62V5.954h3.977a1.45 1.45 0 0 0-.177-.723 1.272 1.272 0 0 0-.493-.493 1.406 1.406 0 0 0-.724-.182c-.287 0-.541.067-.763.2a1.4 1.4 0 0 0-.515.528 1.492 1.492 0 0 0-.191.732v1.115c0 .337.062.629.186.874.128.246.307.435.538.568.23.133.504.2.82.2.21 0 .403-.03.578-.089a1.142 1.142 0 0 0 .732-.701l1.75.115c-.09.42-.272.788-.547 1.101a2.74 2.74 0 0 1-1.056.728c-.43.172-.925.258-1.487.258Zm-11.04-.133V.962h3.586c.687 0 1.273.123 1.758.368.488.243.86.588 1.114 1.035.258.444.386.966.386 1.567 0 .603-.13 1.123-.39 1.558-.26.432-.638.763-1.132.994-.491.23-1.086.346-1.785.346H1.343V5.285h2.09c.368 0 .672-.05.915-.15.243-.101.423-.252.542-.453.12-.202.182-.452.182-.75 0-.302-.061-.557-.182-.764a1.116 1.116 0 0 0-.546-.47c-.243-.11-.55-.165-.92-.165H2.13v7.52H.207Zm4.909-4.137 2.26 4.137H5.253l-2.21-4.137h2.073Z\" fill=\"#231F20\"/></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TLdjP.framer-16rmi0r, .framer-TLdjP .framer-16rmi0r { display: block; }\",\".framer-TLdjP.framer-1q905i6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 36px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: 142px; }\",\".framer-TLdjP .framer-x7lo4k { aspect-ratio: 7.545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 11px); position: relative; width: 83px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TLdjP.framer-1q905i6 { gap: 0px; } .framer-TLdjP.framer-1q905i6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TLdjP.framer-1q905i6 > :first-child { margin-left: 0px; } .framer-TLdjP.framer-1q905i6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG4pVuSzJo=withCSS(Component,css,\"framer-TLdjP\");export default FramerG4pVuSzJo;FramerG4pVuSzJo.displayName=\"Component / Remix Button\";FramerG4pVuSzJo.defaultProps={height:36,width:142};addFonts(FramerG4pVuSzJo,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG4pVuSzJo\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"142\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G4pVuSzJo.map", "// Generated by Framer (401b244)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"dwD97otwi\",\"M6ZzyvYPC\",\"Vrk4QvIQN\",\"JOCcIqs83\",\"adtNjNCbn\"];const serializationHash=\"framer-5N6HB\";const variantClassNames={adtNjNCbn:\"framer-v-yoc0s8\",dwD97otwi:\"framer-v-1wavxud\",JOCcIqs83:\"framer-v-1wlc6io\",M6ZzyvYPC:\"framer-v-xy8nk5\",Vrk4QvIQN:\"framer-v-1jbqj0y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:5,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"dwD97otwi\",\"Variant 2\":\"M6ZzyvYPC\",\"Variant 3\":\"Vrk4QvIQN\",\"Variant 4\":\"JOCcIqs83\",\"Variant 5\":\"adtNjNCbn\"};const getProps=({height,id,radius,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,nxLcUwaZG:radius!==null&&radius!==void 0?radius:props.nxLcUwaZG,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dwD97otwi\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,nxLcUwaZG,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dwD97otwi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearf382t5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2e3);});useOnVariantChange(baseVariant,{default:onAppearf382t5});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.figure,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wavxud\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dwD97otwi\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-25c94280-7217-4913-8617-1f9c844d3f16, rgb(242, 252, 226))\",borderBottomLeftRadius:nxLcUwaZG,borderBottomRightRadius:nxLcUwaZG,borderTopLeftRadius:nxLcUwaZG,borderTopRightRadius:nxLcUwaZG,...style},tabIndex:-1,variants:{adtNjNCbn:{backgroundColor:\"var(--token-008ebda7-1aa8-4cb6-9e3f-bc9230d8a147, rgb(252, 242, 237))\"},JOCcIqs83:{backgroundColor:\"var(--token-a05ad34e-6624-43f2-9a9a-b0dc646979ec, rgb(252, 237, 246))\"},M6ZzyvYPC:{backgroundColor:\"var(--token-86fe1811-a8df-4b06-8460-27af7397146f, rgb(234, 251, 252))\"},Vrk4QvIQN:{backgroundColor:\"var(--token-eb72cbe5-aa36-4314-b64d-aac5c7375ca3, rgb(239, 240, 252))\"}},...addPropertyOverrides({adtNjNCbn:{\"data-framer-name\":\"Variant 5\"},JOCcIqs83:{\"data-framer-name\":\"Variant 4\"},M6ZzyvYPC:{\"data-framer-name\":\"Variant 2\"},Vrk4QvIQN:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5N6HB.framer-1xjr716, .framer-5N6HB .framer-1xjr716 { display: block; }\",\".framer-5N6HB.framer-1wavxud { height: 400px; overflow: hidden; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"M6ZzyvYPC\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vrk4QvIQN\":{\"layout\":[\"fixed\",\"fixed\"]},\"JOCcIqs83\":{\"layout\":[\"fixed\",\"fixed\"]},\"adtNjNCbn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"nxLcUwaZG\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYiBnw9609=withCSS(Component,css,\"framer-5N6HB\");export default FramerYiBnw9609;FramerYiBnw9609.displayName=\"Component / Colour Change\";FramerYiBnw9609.defaultProps={height:400,width:600};addPropertyControls(FramerYiBnw9609,{variant:{options:[\"dwD97otwi\",\"M6ZzyvYPC\",\"Vrk4QvIQN\",\"JOCcIqs83\",\"adtNjNCbn\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},nxLcUwaZG:{defaultValue:0,title:\"Radius\",type:ControlType.Number}});addFonts(FramerYiBnw9609,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYiBnw9609\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M6ZzyvYPC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vrk4QvIQN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JOCcIqs83\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"adtNjNCbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerVariables\":\"{\\\"nxLcUwaZG\\\":\\\"radius\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YiBnw9609.map", "// Generated by Framer (6aebf05)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js\";import SectionFooter from\"#framer/local/canvasComponent/E9uJT48e8/E9uJT48e8.js\";import ComponentDivider from\"#framer/local/canvasComponent/FSgEsyjdO/FSgEsyjdO.js\";import ComponentRemixButton from\"#framer/local/canvasComponent/G4pVuSzJo/G4pVuSzJo.js\";import SectionNavbar from\"#framer/local/canvasComponent/v6gxunbDC/v6gxunbDC.js\";import ComponentColourChange from\"#framer/local/canvasComponent/YiBnw9609/YiBnw9609.js\";import Writing from\"#framer/local/collection/vNmb33Iwl/vNmb33Iwl.js\";import*as sharedStyle11 from\"#framer/local/css/ayjuyJ_9n/ayjuyJ_9n.js\";import*as sharedStyle2 from\"#framer/local/css/czsUloFWg/czsUloFWg.js\";import*as sharedStyle from\"#framer/local/css/Hi0Q0s1WP/Hi0Q0s1WP.js\";import*as sharedStyle8 from\"#framer/local/css/hn4fm3Bgo/hn4fm3Bgo.js\";import*as sharedStyle4 from\"#framer/local/css/hPQs1xY4J/hPQs1xY4J.js\";import*as sharedStyle10 from\"#framer/local/css/lpiZl_FMU/lpiZl_FMU.js\";import*as sharedStyle6 from\"#framer/local/css/rjFWX9qGy/rjFWX9qGy.js\";import*as sharedStyle1 from\"#framer/local/css/rncFq5P_8/rncFq5P_8.js\";import*as sharedStyle12 from\"#framer/local/css/sJXPpwmYP/sJXPpwmYP.js\";import*as sharedStyle9 from\"#framer/local/css/TEgDFMRVa/TEgDFMRVa.js\";import*as sharedStyle5 from\"#framer/local/css/vk4dzFtJx/vk4dzFtJx.js\";import*as sharedStyle3 from\"#framer/local/css/YltRG4NVa/YltRG4NVa.js\";import*as sharedStyle7 from\"#framer/local/css/zoQ8XBidD/zoQ8XBidD.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ai0zXlcSc/Ai0zXlcSc.js\";const SectionNavbarFonts=getFonts(SectionNavbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ComponentColourChangeFonts=getFonts(ComponentColourChange);const InputFonts=getFonts(Input);const ComponentDividerFonts=getFonts(ComponentDivider);const SectionFooterFonts=getFonts(SectionFooter);const ComponentRemixButtonFonts=getFonts(ComponentRemixButton);const breakpoints={AbQCug00B:\"(max-width: 809px)\",MYNdNy0x_:\"(min-width: 810px) and (max-width: 1199px)\",WMpad9Xt2:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BuaeE\";const variantClassNames={AbQCug00B:\"framer-v-1vuowh7\",MYNdNy0x_:\"framer-v-7l5v22\",WMpad9Xt2:\"framer-v-184puxm\"};const transition1={delay:.5,duration:1.5,ease:[.32,0,.67,0],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:.72,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:3,skewY:3,transition:transition2};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WMpad9Xt2\",Phone:\"AbQCug00B\",Tablet:\"MYNdNy0x_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WMpad9Xt2\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Ai0zXlcSc\",data:Writing,type:\"Collection\"},select:[{collection:\"Ai0zXlcSc\",name:\"qkDSj2O8K\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"JgTAup8vm\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"GYMrzDGMf\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"DdM6eeDJo\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"qBnc8wehm\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"rt2VO1glX\",type:\"Identifier\"},{collection:\"Ai0zXlcSc\",name:\"YER2zMgsZ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Ai0zXlcSc\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,qkDSj2O8K=getFromCurrentRouteData(\"qkDSj2O8K\")??\"\",GYMrzDGMf=getFromCurrentRouteData(\"GYMrzDGMf\")??\"\",DdM6eeDJo=getFromCurrentRouteData(\"DdM6eeDJo\"),rt2VO1glX=getFromCurrentRouteData(\"rt2VO1glX\")??0,qBnc8wehm=getFromCurrentRouteData(\"qBnc8wehm\"),YER2zMgsZ=getFromCurrentRouteData(\"YER2zMgsZ\")??\"\",JgTAup8vm=getFromCurrentRouteData(\"JgTAup8vm\")??0,mEnmDZ9JaSv2JECmi6,qkDSj2O8KSv2JECmi6,idSv2JECmi6,mEnmDZ9JaUa5dPVLUx,qkDSj2O8KUa5dPVLUx,idUa5dPVLUx,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);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,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(DdM6eeDJo,activeLocaleCode);const textContent1=numberToString(rt2VO1glX,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AbQCug00B\")return true;return false;};const elementId=useRouteElementId(\"fU2c4WeCS\");const ref1=React.useRef(null);const visible=negate(equals(JgTAup8vm,1));const visible1=equals(JgTAup8vm,1);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WMpad9Xt2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-184puxm\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yqak2a-container\",nodeId:\"auzzKz25K\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{variant:\"kwi3ck4At\"},MYNdNy0x_:{variant:\"osiBjMH2S\"}},children:/*#__PURE__*/_jsx(SectionNavbar,{height:\"100%\",id:\"auzzKz25K\",layoutId:\"auzzKz25K\",style:{width:\"100%\"},variant:\"vSbOTj68r\",width:\"100%\",X0yFtkphH:\"var(--token-1f1f8728-4f0d-4fcf-b2fc-beae32561cc7, rgb(56, 91, 159))\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-16aroae\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1fzdtbn\",\"data-framer-name\":\"Section / Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14pcir3\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ai3gf5\",\"data-framer-appear-id\":\"1ai3gf5\",\"data-framer-name\":\"Layout\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9d529x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mo40p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n85squ\",\"data-styles-preset\":\"Hi0Q0s1WP\",children:\"How to run smooth user testing sessions\"})}),className:\"framer-478ig1\",fonts:[\"Inter\"],text:qkDSj2O8K,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",children:\"How to run smooth user testing sessions\"})}),className:\"framer-15adrsr\",fonts:[\"Inter\"],text:GYMrzDGMf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8sx6ej\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5e3,intrinsicWidth:4e3,pixelHeight:5e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/vayZPXzDlzk3rzlFX4pvuZdqI4.jpg?scale-down-to=512\"},className:\"framer-119oeg5\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-590zxo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",style:{\"--framer-text-color\":\"var(--token-dc14c2f5-5813-4d2f-9f7e-6a235de817c1, rgba(0, 0, 0, 0.66))\"},children:\"Apr 8, 2024\"})}),className:\"framer-19fxuam\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",style:{\"--framer-text-color\":\"var(--token-dc14c2f5-5813-4d2f-9f7e-6a235de817c1, rgba(0, 0, 0, 0.66))\"},children:\"\\xb7\"})}),className:\"framer-154t0fc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycq7aa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",style:{\"--framer-text-color\":\"var(--token-dc14c2f5-5813-4d2f-9f7e-6a235de817c1, rgba(0, 0, 0, 0.66))\"},children:\"5\"})}),className:\"framer-epbrqw\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",style:{\"--framer-text-color\":\"var(--token-dc14c2f5-5813-4d2f-9f7e-6a235de817c1, rgba(0, 0, 0, 0.66))\"},children:\" min read\"})}),className:\"framer-aflb47\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3265,intrinsicWidth:4898,pixelHeight:3265,pixelWidth:4898,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,...toResponsiveImage(qBnc8wehm)}},MYNdNy0x_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3265,intrinsicWidth:4898,pixelHeight:3265,pixelWidth:4898,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) * 0.66)`,...toResponsiveImage(qBnc8wehm)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3265,intrinsicWidth:4898,pixelHeight:3265,pixelWidth:4898,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.66)`,...toResponsiveImage(qBnc8wehm)},className:\"framer-88lvdc\",\"data-border\":true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{height:1200.2},MYNdNy0x_:{height:1296.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1376.2,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjm9ny-container\",nodeId:\"t5uf7PaU0\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(ComponentColourChange,{height:\"100%\",id:\"t5uf7PaU0\",layoutId:\"t5uf7PaU0\",nxLcUwaZG:0,style:{height:\"100%\",width:\"100%\"},variant:\"dwD97otwi\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bsfi5e\",\"data-framer-name\":\"Section / Article\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1173khs\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-10dubw6\",\"data-framer-appear-id\":\"10dubw6\",\"data-framer-name\":\"Layout\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k16bk9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ar9q2p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"x9sAif8Di\",openInNewTab:false,relValues:[],scopeId:\"Ai0zXlcSc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"Home\"})})})}),className:\"framer-hnmolh\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",children:\"\u2192\"})}),className:\"framer-bt5jdn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"dg0aSqTWC\",openInNewTab:false,relValues:[],scopeId:\"Ai0zXlcSc\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"Writing\"})})})}),className:\"framer-ffkgvw\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",children:\"\u2192\"})}),className:\"framer-1uxdnx0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9t3qt1\",\"data-styles-preset\":\"czsUloFWg\",style:{\"--framer-text-color\":\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgba(0, 0, 0, 0.55))\"},children:\"Home\"})}),className:\"framer-qfxyyb\",fonts:[\"Inter\"],text:qkDSj2O8K,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7k4hb hidden-184puxm hidden-7l5v22\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YER2zMgsZ,className:\"framer-slolie\",fonts:[\"Inter\",\"Inter-Bold\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wbuva2\",blockquote:\"framer-styles-preset-mvs7zh\",code:\"framer-styles-preset-l1mz2q\",h1:\"framer-styles-preset-1c3hdlo\",h2:\"framer-styles-preset-n85squ\",h3:\"framer-styles-preset-1d1ylla\",h4:\"framer-styles-preset-13hr9vk\",h5:\"framer-styles-preset-cbvtcm\",h6:\"framer-styles-preset-1fn3hux\",img:\"framer-styles-preset-7fkrc7\",p:\"framer-styles-preset-fcm6as\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-w081ao\",\"data-framer-name\":\"Section / Subscribe\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1643z2x\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xburkw\",\"data-framer-appear-id\":\"1xburkw\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lw1gsv\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1resfxp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n85squ\",\"data-styles-preset\":\"Hi0Q0s1WP\",children:\"Get design articles like this straight to your inbox\"})}),className:\"framer-jv4cvq\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nbaoaq\",\"data-framer-name\":\"Input / Email-Style 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dj38c1-container\",isModuleExternal:true,nodeId:\"VifNSAOwq\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter Medium\", \"Inter Medium Placeholder\", sans-serif',fontSize:\"17px\",letterSpacing:\"-0.03em\",lineHeight:\"1em\"},buttonPadding:10,buttonPaddingBottom:16,buttonPaddingLeft:32,buttonPaddingPerSide:true,buttonPaddingRight:32,buttonPaddingTop:16,color:\"var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, rgb(255, 255, 255))\",fill:\"var(--token-6555779b-6d9a-4514-84e6-845325a32d37, rgb(0, 0, 0))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe \u2192\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"-0.02em\",lineHeight:\"1em\"},formsparkID:\"\",gap:12,getwaitlistAPI:\"\",height:\"100%\",id:\"VifNSAOwq\",input:{borderObject:{borderColor:\"var(--token-cea865e2-a56c-48f4-b031-3e5821c6e8aa, rgba(0, 0, 0, 0.16))\",borderWidth:1},borderRadius:8,color:\"var(--token-6555779b-6d9a-4514-84e6-845325a32d37, rgb(0, 0, 0))\",fill:\"var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, rgb(255, 255, 255))\",fixedHeight:60,focusObject:{focusColor:\"var(--token-6555779b-6d9a-4514-84e6-845325a32d37, rgb(0, 0, 0))\",focusWidthFrom:0,focusWidthTo:2},height:false,padding:10,paddingBottom:16,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:16,placeholder:\"Your email\",placeholderColor:\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgba(0, 0, 0, 0.55))\"},layout:\"horizontal\",layoutId:\"VifNSAOwq\",loopsID:\"\",loopsMailingList:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"loops\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgba(0, 0, 0, 0.55))\"},children:\"No spam, unsubscribe at any time\"})}),className:\"framer-13nps0k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{height:363.2,width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1280px) + 80px, 1280px)`},MYNdNy0x_:{height:411.2,width:`min(min((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) * 0.66, 1280px) + 128px, 1280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443.7,width:`min(min((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.66, 1280px) + 160px, 1280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sv8ggp-container\",nodeId:\"KAzmMX6ID\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{nxLcUwaZG:0}},children:/*#__PURE__*/_jsx(ComponentColourChange,{height:\"100%\",id:\"KAzmMX6ID\",layoutId:\"KAzmMX6ID\",nxLcUwaZG:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"dwD97otwi\",width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-rrug6b\",\"data-framer-name\":\"Section / Next Article\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pml4yt\",\"data-framer-name\":\"Container + Padding\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-178vj6q\",\"data-framer-appear-id\":\"178vj6q\",\"data-framer-name\":\"Layout\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxre77\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m86xco\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`},MYNdNy0x_:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) * 0.66)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2,width:`calc(min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) * 0.66)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m00gug-container\",nodeId:\"BFWTUFroh\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(ComponentDivider,{ctGYAoJbv:\"var(--token-1f1f8728-4f0d-4fcf-b2fc-beae32561cc7, rgb(56, 91, 159))\",FusNi7E8S:\"var(--token-1f1f8728-4f0d-4fcf-b2fc-beae32561cc7, rgb(56, 91, 159))\",height:\"100%\",id:\"BFWTUFroh\",layoutId:\"BFWTUFroh\",style:{height:\"100%\",width:\"100%\"},variant:\"CP19thW5b\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n85squ\",\"data-styles-preset\":\"Hi0Q0s1WP\",children:\"Next up\"})}),className:\"framer-yyglge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cx2r9q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Sv2JECmi6\",data:Writing,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Sv2JECmi6\",name:\"mEnmDZ9Ja\",type:\"Identifier\"},{collection:\"Sv2JECmi6\",name:\"qkDSj2O8K\",type:\"Identifier\"},{collection:\"Sv2JECmi6\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Sv2JECmi6\",name:\"JgTAup8vm\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:JgTAup8vm},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idSv2JECmi6,mEnmDZ9Ja:mEnmDZ9JaSv2JECmi6,qkDSj2O8K:qkDSj2O8KSv2JECmi6},index)=>{mEnmDZ9JaSv2JECmi6??=\"\";qkDSj2O8KSv2JECmi6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Sv2JECmi6-${idSv2JECmi6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mEnmDZ9Ja:mEnmDZ9JaSv2JECmi6},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mEnmDZ9Ja:mEnmDZ9JaSv2JECmi6},webPageId:\"Ai0zXlcSc\"},motionChild:true,nodeId:\"Bxu4671vN\",openInNewTab:false,scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12l888h framer-trgvkz\",whileHover:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1c3hdlo\",\"data-styles-preset\":\"hPQs1xY4J\",children:\"Project name\"})}),className:\"framer-1fnf0zc\",\"data-framer-name\":\"Project name\",fonts:[\"Inter\"],text:qkDSj2O8KSv2JECmi6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1c3hdlo\",\"data-styles-preset\":\"hPQs1xY4J\",children:\" \u2192\"})}),className:\"framer-1x3df24\",\"data-framer-name\":\"Project name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idSv2JECmi6);})})})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5khlc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ua5dPVLUx\",data:Writing,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Ua5dPVLUx\",name:\"mEnmDZ9Ja\",type:\"Identifier\"},{collection:\"Ua5dPVLUx\",name:\"qkDSj2O8K\",type:\"Identifier\"},{collection:\"Ua5dPVLUx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Ua5dPVLUx\",name:\"JgTAup8vm\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:100},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idUa5dPVLUx,mEnmDZ9Ja:mEnmDZ9JaUa5dPVLUx,qkDSj2O8K:qkDSj2O8KUa5dPVLUx},index1)=>{mEnmDZ9JaUa5dPVLUx??=\"\";qkDSj2O8KUa5dPVLUx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ua5dPVLUx-${idUa5dPVLUx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mEnmDZ9Ja:mEnmDZ9JaUa5dPVLUx},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mEnmDZ9Ja:mEnmDZ9JaUa5dPVLUx},webPageId:\"Ai0zXlcSc\"},motionChild:true,nodeId:\"hqKgfP2Qa\",openInNewTab:false,scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-9pga62 framer-trgvkz\",whileHover:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1c3hdlo\",\"data-styles-preset\":\"hPQs1xY4J\",children:\"Project name\"})}),className:\"framer-ubx1q5\",\"data-framer-name\":\"Project name\",fonts:[\"Inter\"],text:qkDSj2O8KUa5dPVLUx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1c3hdlo\",\"data-styles-preset\":\"hPQs1xY4J\",children:\" \u2192\"})}),className:\"framer-an1xzi\",\"data-framer-name\":\"Project name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idUa5dPVLUx);})})})})})]})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8srat-container\",nodeId:\"VUdK0ksrz\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbQCug00B:{variant:\"GBncQt8Ta\"},MYNdNy0x_:{variant:\"j5dHJ6pmu\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"VUdK0ksrz\",layoutId:\"VUdK0ksrz\",style:{width:\"100%\"},variant:\"WIrl373qJ\",width:\"100%\",ZwBTmBeWk:\"var(--token-1f1f8728-4f0d-4fcf-b2fc-beae32561cc7, rgb(56, 91, 159))\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"142px\",y:900,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11leu10-container\",layoutScroll:true,nodeId:\"w08EH1wVT\",scopeId:\"Ai0zXlcSc\",children:/*#__PURE__*/_jsx(ComponentRemixButton,{height:\"100%\",id:\"w08EH1wVT\",layoutId:\"w08EH1wVT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BuaeE.framer-trgvkz, .framer-BuaeE .framer-trgvkz { display: block; }\",\".framer-BuaeE.framer-184puxm { align-content: center; align-items: center; background-color: var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, #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: 1200px; }\",\".framer-BuaeE .framer-yqak2a-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-BuaeE .framer-16aroae { 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: 100%; }\",\".framer-BuaeE .framer-1fzdtbn { align-content: center; align-items: center; background-color: var(--token-25c94280-7217-4913-8617-1f9c844d3f16, #f2fce2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-14pcir3 { 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; max-width: 1440px; padding: 160px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-1ai3gf5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-BuaeE .framer-9d529x, .framer-BuaeE .framer-k16bk9, .framer-BuaeE .framer-1jxre77 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 66%; }\",\".framer-BuaeE .framer-19mo40p { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-478ig1, .framer-BuaeE .framer-15adrsr, .framer-BuaeE .framer-13nps0k { --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-BuaeE .framer-8sx6ej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-119oeg5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BuaeE .framer-590zxo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BuaeE .framer-19fxuam, .framer-BuaeE .framer-epbrqw, .framer-BuaeE .framer-aflb47 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BuaeE .framer-154t0fc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-BuaeE .framer-1ycq7aa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BuaeE .framer-88lvdc { --border-bottom-width: 1px; --border-color: var(--token-1e4de996-fe4b-4667-88fc-284e9577f815, rgba(0, 0, 0, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-BuaeE .framer-rjm9ny-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-BuaeE .framer-1bsfi5e { align-content: center; align-items: center; background-color: var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-1173khs { 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; padding: 160px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-10dubw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BuaeE .framer-1ar9q2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-hnmolh, .framer-BuaeE .framer-ffkgvw { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BuaeE .framer-bt5jdn, .framer-BuaeE .framer-1uxdnx0 { -webkit-user-select: none; flex: none; height: auto; opacity: 0.35; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-BuaeE .framer-qfxyyb, .framer-BuaeE .framer-1x3df24, .framer-BuaeE .framer-an1xzi { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-BuaeE .framer-f7k4hb { -webkit-user-select: none; background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-1b20fec0-7bbd-4f19-a08d-c893d5e9cf8e, rgb(255, 255, 255)) 100%); bottom: -1px; flex: none; overflow: hidden; position: absolute; right: -1px; top: -1px; user-select: none; width: 64px; z-index: 1; }\",\".framer-BuaeE .framer-slolie { --framer-paragraph-spacing: 40px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BuaeE .framer-w081ao { 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%; }\",\".framer-BuaeE .framer-1643z2x { 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-BuaeE .framer-1xburkw { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BuaeE .framer-1lw1gsv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 0px; position: relative; width: 66%; z-index: 1; }\",\".framer-BuaeE .framer-1resfxp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-jv4cvq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BuaeE .framer-nbaoaq { 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; max-width: 576px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-dj38c1-container, .framer-BuaeE .framer-r8srat-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BuaeE .framer-sv8ggp-container { bottom: -80px; flex: none; left: -80px; max-width: 1280px; position: absolute; right: -80px; top: -80px; z-index: -1; }\",\".framer-BuaeE .framer-rrug6b { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-pml4yt { 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; padding: 160px 80px 160px 80px; position: relative; scroll-margin-top: 76px; width: 100%; }\",\".framer-BuaeE .framer-178vj6q { 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; max-width: 1280px; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BuaeE .framer-m86xco { 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-BuaeE .framer-m00gug-container { flex: none; height: 2px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-yyglge { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BuaeE .framer-1cx2r9q, .framer-BuaeE .framer-1c5khlc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-BuaeE .framer-12l888h, .framer-BuaeE .framer-9pga62 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BuaeE .framer-1fnf0zc, .framer-BuaeE .framer-ubx1q5 { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BuaeE .framer-11leu10-container { bottom: 64px; flex: none; height: 36px; position: fixed; right: 20px; width: 142px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,'.framer-BuaeE[data-border=\"true\"]::after, .framer-BuaeE [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: 810px) and (max-width: 1199px) { .framer-BuaeE.framer-184puxm { width: 810px; } .framer-BuaeE .framer-14pcir3, .framer-BuaeE .framer-1173khs, .framer-BuaeE .framer-pml4yt { padding: 120px 64px 120px 64px; } .framer-BuaeE .framer-1bsfi5e { background-color: unset; } .framer-BuaeE .framer-k16bk9 { gap: 56px; } .framer-BuaeE .framer-1xburkw { padding: 64px; } .framer-BuaeE .framer-sv8ggp-container { bottom: -64px; left: -64px; right: -64px; top: -64px; }}\",\"@media (max-width: 809px) { .framer-BuaeE.framer-184puxm { width: 390px; } .framer-BuaeE .framer-14pcir3, .framer-BuaeE .framer-1173khs, .framer-BuaeE .framer-pml4yt { padding: 80px 40px 80px 40px; } .framer-BuaeE .framer-9d529x, .framer-BuaeE .framer-1jxre77 { gap: 48px; width: 100%; } .framer-BuaeE .framer-k16bk9 { gap: 40px; width: 100%; } .framer-BuaeE .framer-1xburkw { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 40px; } .framer-BuaeE .framer-1lw1gsv { width: 100%; } .framer-BuaeE .framer-sv8ggp-container { bottom: -40px; left: -40px; right: -40px; top: -40px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4379\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MYNdNy0x_\":{\"layout\":[\"fixed\",\"auto\"]},\"AbQCug00B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fU2c4WeCS\":{\"pattern\":\":fU2c4WeCS\",\"name\":\"work\"}}\n * @framerResponsiveScreen\n */const FramerAi0zXlcSc=withCSS(Component,css,\"framer-BuaeE\");export default FramerAi0zXlcSc;FramerAi0zXlcSc.displayName=\"Writing\";FramerAi0zXlcSc.defaultProps={height:4379,width:1200};addFonts(FramerAi0zXlcSc,[{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 Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/I3vvuIUcGf5qCtzlC6dFVOEtcQ.woff2\"},{family:\"Inter Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ApCBb3GVWcHF7zo7LgD22hXocgo.woff2\"}]},...SectionNavbarFonts,...ComponentColourChangeFonts,...InputFonts,...ComponentDividerFonts,...SectionFooterFonts,...ComponentRemixButtonFonts,...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),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAi0zXlcSc\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"fU2c4WeCS\\\":{\\\"pattern\\\":\\\":fU2c4WeCS\\\",\\\"name\\\":\\\"work\\\"}}\",\"framerIntrinsicHeight\":\"4379\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MYNdNy0x_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AbQCug00B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "loopsMailingList", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "mailingListBody", "hasMailingList", "hasUserGroup", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "SVG", "css", "FramerG4pVuSzJo", "withCSS", "G4pVuSzJo_default", "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", "radius", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "nxLcUwaZG", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearf382t5", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerYiBnw9609", "withCSS", "YiBnw9609_default", "addPropertyControls", "ControlType", "addFonts", "SectionNavbarFonts", "getFonts", "v6gxunbDC_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ComponentColourChangeFonts", "YiBnw9609_default", "InputFonts", "Input_default", "ComponentDividerFonts", "FSgEsyjdO_default", "SectionFooterFonts", "E9uJT48e8_default", "ComponentRemixButtonFonts", "G4pVuSzJo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "sharedDateFormatter", "value", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "numberToString", "options", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "number", "toResponsiveImage", "transition2", "animation2", "equals", "a", "b", "negate", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "vNmb33Iwl_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "qkDSj2O8K", "GYMrzDGMf", "DdM6eeDJo", "rt2VO1glX", "qBnc8wehm", "YER2zMgsZ", "JgTAup8vm", "mEnmDZ9JaSv2JECmi6", "qkDSj2O8KSv2JECmi6", "idSv2JECmi6", "mEnmDZ9JaUa5dPVLUx", "qkDSj2O8KUa5dPVLUx", "idUa5dPVLUx", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "isDisplayed", "elementId", "useRouteElementId", "ref1", "visible", "visible1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText", "x", "Image2", "Link", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "css", "FramerAi0zXlcSc", "withCSS", "Ai0zXlcSc_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
