{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/ckGZj3yYY0eOgQQMpSdE/5Mjqz6668K9OcUwBeWv2/SenjaWidget.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/SzXE2XfnlUWvPCeC7zkV/EoYt02H1uDaD03JO7Rcm/Demo.js", "ssg:https://framerusercontent.com/modules/IdP0R5ZHxKkxyIg02Ogt/mrhgT6HfOwg4xWVaL5EA/PostHogClick.js", "ssg:https://framerusercontent.com/modules/KkUSjVMhcIvaFH3R4kK1/zzrAsJ00FeVGeV3ZMEI1/iKSyf1By6.js", "ssg:https://framerusercontent.com/modules/lnJtBHDoqmbbNKt0EoGj/9nABytFjnykYG61VdJjc/Text_Highlight.js", "ssg:https://framerusercontent.com/modules/S7hdSV6fdRC2NZKcEO0M/wcblVcRBFYtIbDUwhL2J/NDKlugeJK.js", "ssg:https://framerusercontent.com/modules/NOqwwkT6HVZlpPlI745M/EvKOnNXJK8LdQTbI5InU/MjBFC17AB.js"],
  "sourcesContent": ["import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";/**\n *\n * @framerSupportedLayoutWidth fill\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight auto\n */export default function SenjaWidget(props){let className=\"senja-embed\";let lazy=props.lazy;let id=props.widgetUrl;let hideInEditor=props.hideInEditor&&RenderTarget.current()===RenderTarget.canvas;if(hideInEditor){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",padding:\"20px\",textAlign:\"center\",backgroundColor:\"#000\",color:\"#fff\"},children:\"This widget will show up when your site is published.\"},\"live-banner\");}if(id){const regex=/widget\\.senja\\.io\\/widget\\/([^\\s\\/?]+)/;const match=id.match(regex);if(match[1])id=match[1];}let builderUrl=`https://widget.senja.io/widget/${id}/platform.js`;const[mounted,setMounted]=useState(true);useDidMountEffect(()=>{setMounted(false);setTimeout(()=>setMounted(true),5);},[props.widgetUrl,props.embedType]);useEffect(()=>{if(typeof document==\"undefined\")return;let script=document.querySelector(`script[src=\"${builderUrl}\"]`);if(script){script.remove();}script=document.createElement(\"script\");script.src=builderUrl;script.async=true;script.type=\"text/javascript\";document.head.append(script);},[props]);if(!mounted)return /*#__PURE__*/_jsx(_Fragment,{});return /*#__PURE__*/_jsx(\"div\",{className:className,\"data-lazyload\":lazy,\"data-mode\":\"shadow\",\"data-id\":id},\"widget\");}addPropertyControls(SenjaWidget,{widgetUrl:{type:ControlType.String,title:\"Widget URL\"},lazy:{type:ControlType.Boolean,title:\"Lazy Load\",defaultValue:true},hideInEditor:{type:ControlType.Boolean,title:\"Hide in Editor\",defaultValue:false}});const useDidMountEffect=(func,deps)=>{const didMount=useRef(false);useEffect(()=>{if(didMount.current)func();else didMount.current=true;},deps);};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SenjaWidget\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SenjaWidget.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withLogs(Component){return props=>{const[key,setKey]=useState(0);useEffect(()=>{setKey(oldValue=>{return oldValue+1;});},[props]);return /*#__PURE__*/_jsx(Component,{...props},key);};}\nexport const __FramerMetadata__ = {\"exports\":{\"withLogs\":{\"type\":\"reactHoc\",\"name\":\"withLogs\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Demo.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withPostHogClick(Component){return props=>{const handleClick=()=>{console.log(\"handle click\");console.log(window.posthog);if(window.posthog){window.posthog.capture(\"clicked_signup\");}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withPostHogClick\":{\"type\":\"reactHoc\",\"name\":\"withPostHogClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PostHogClick.map", "// Generated by Framer (1b7c4bf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withLogs}from\"https://framerusercontent.com/modules/SzXE2XfnlUWvPCeC7zkV/EoYt02H1uDaD03JO7Rcm/Demo.js\";import{withPostHogClick}from\"https://framerusercontent.com/modules/IdP0R5ZHxKkxyIg02Ogt/mrhgT6HfOwg4xWVaL5EA/PostHogClick.js\";const MotionAWithPostHogClick=withPostHogClick(motion.a);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const RichTextWithLogs=withLogs(RichText);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"GaxVm9ed4\",\"qt4Ng4okj\",\"vW32wD9aD\",\"eIWepqmzq\",\"x6k1AHicn\",\"VevFNjzLo\",\"VKiFnmuLI\",\"QOYZI0jDT\",\"GjEB79u7o\"];const serializationHash=\"framer-GmsOL\";const variantClassNames={eIWepqmzq:\"framer-v-1xa7m5v\",GaxVm9ed4:\"framer-v-1muy8x1\",GjEB79u7o:\"framer-v-1m4jouo\",QOYZI0jDT:\"framer-v-149jnq\",qt4Ng4okj:\"framer-v-x2wasd\",VevFNjzLo:\"framer-v-1wy4vkt\",VKiFnmuLI:\"framer-v-obhxpd\",vW32wD9aD:\"framer-v-vryrt9\",x6k1AHicn:\"framer-v-n6wpl5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition2={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,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 animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation2,repeat:true,startDelay:0,tokenization:\"element\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation2,startDelay:0,tokenization:\"element\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 (Mobile)\":\"VKiFnmuLI\",\"Variant 1 (Tablet)\":\"eIWepqmzq\",\"Variant 1\":\"GaxVm9ed4\",\"Variant 2 (Mobile)\":\"QOYZI0jDT\",\"Variant 2 (Tablet)\":\"x6k1AHicn\",\"Variant 2\":\"qt4Ng4okj\",\"Variant 3 (Mobile)\":\"GjEB79u7o\",\"Variant 3 (Tablet)\":\"VevFNjzLo\",\"Variant 3\":\"vW32wD9aD\"};const getProps=({height,id,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GaxVm9ed4\",wYI60auFe:text??props.wYI60auFe??\"Notion cofounder @simonlast rarely does interviews.  In this first-ever podcast appearance, with @danshipper\"};};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,wYI60auFe,VZTzjXpzF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GaxVm9ed4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1x9geg1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qt4Ng4okj\"),5100);});const onAppear14xyby8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vW32wD9aD\"),5100);});const onAppear19tkd0b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GaxVm9ed4\"),5100);});const onAppearuuh9d5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"x6k1AHicn\"),5100);});const onAppear115ckbj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VevFNjzLo\"),5100);});const onAppeargm4v1k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eIWepqmzq\"),5100);});const onAppearanaf6m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"QOYZI0jDT\"),5100);});const onAppear1ml1ial=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GjEB79u7o\"),5100);});const onAppear74bioj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VKiFnmuLI\"),5100);});const onTapq1apwv=activeVariantCallback(async(...args)=>{setVariant(\"qt4Ng4okj\");});const onTap1wt0knp=activeVariantCallback(async(...args)=>{if(VZTzjXpzF){const res=await VZTzjXpzF(...args);if(res===false)return false;}});useOnVariantChange(baseVariant,{default:onAppear1x9geg1,eIWepqmzq:onAppearuuh9d5,GjEB79u7o:onAppear74bioj,QOYZI0jDT:onAppear1ml1ial,qt4Ng4okj:onAppear14xyby8,VevFNjzLo:onAppeargm4v1k,VKiFnmuLI:onAppearanaf6m,vW32wD9aD:onAppear19tkd0b,x6k1AHicn:onAppear115ckbj});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"qt4Ng4okj\",\"vW32wD9aD\",\"x6k1AHicn\",\"VevFNjzLo\",\"QOYZI0jDT\",\"GjEB79u7o\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"VevFNjzLo\",\"GjEB79u7o\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"x6k1AHicn\",\"QOYZI0jDT\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"qt4Ng4okj\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"vW32wD9aD\")return true;return false;};const isDisplayed5=()=>{if([\"VKiFnmuLI\",\"QOYZI0jDT\",\"GjEB79u7o\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"qt4Ng4okj\",\"x6k1AHicn\",\"QOYZI0jDT\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"qt4Ng4okj\",\"x6k1AHicn\",\"QOYZI0jDT\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"x6k1AHicn\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"x6k1AHicn\")return true;return false;};const isDisplayed10=()=>{if([\"x6k1AHicn\",\"QOYZI0jDT\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"QOYZI0jDT\")return true;return false;};const isDisplayed12=()=>{if([\"VKiFnmuLI\",\"QOYZI0jDT\",\"GjEB79u7o\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if([\"vW32wD9aD\",\"VevFNjzLo\",\"GjEB79u7o\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"vW32wD9aD\",\"GjEB79u7o\"].includes(baseVariant))return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"VevFNjzLo\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1muy8x1\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GaxVm9ed4\",ref:ref??ref1,style:{...style},...addPropertyOverrides({eIWepqmzq:{\"data-framer-name\":\"Variant 1 (Tablet)\"},GjEB79u7o:{\"data-framer-name\":\"Variant 3 (Mobile)\"},QOYZI0jDT:{\"data-framer-name\":\"Variant 2 (Mobile)\"},qt4Ng4okj:{\"data-framer-name\":\"Variant 2\"},VevFNjzLo:{\"data-framer-name\":\"Variant 3 (Tablet)\"},VKiFnmuLI:{\"data-framer-name\":\"Variant 1 (Mobile)\"},vW32wD9aD:{\"data-framer-name\":\"Variant 3\"},x6k1AHicn:{\"data-framer-name\":\"Variant 2 (Tablet)\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ormbxm\",\"data-framer-name\":\"map\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kYNzFlPqE\",onTap:onTapq1apwv,style:{borderBottomLeftRadius:7.2,borderBottomRightRadius:7.2,borderTopLeftRadius:7.2,borderTopRightRadius:7.2},...addPropertyOverrides({qt4Ng4okj:{onTap:onTap1wt0knp},vW32wD9aD:{onTap:onTap1wt0knp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.spiral.computer\",nodeId:\"hdkHFx6_i\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithPostHogClick,{className:\"framer-1xf8c4u framer-5721ti\",\"data-framer-name\":\"Frame 105\",layoutDependency:layoutDependency,layoutId:\"hdkHFx6_i\",style:{backgroundColor:\"rgb(238, 103, 6)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your podcast\"})}),className:\"framer-1aogctl\",\"data-framer-name\":\"Try with your Article\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"fQr3x5IoB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your video\"})})},QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your article\"})})},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your article\"})})},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your video\"})})},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your video\"})})},x6k1AHicn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Try with your article\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ru9r1d\",layoutDependency:layoutDependency,layoutId:\"dvZajkASe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-du2aay\",\"data-framer-name\":\"Frame 9077\",layoutDependency:layoutDependency,layoutId:\"L3hI3T488\",style:{backgroundColor:\"rgb(247, 247, 247)\",borderBottomLeftRadius:7.2,borderBottomRightRadius:7.2,borderTopLeftRadius:7.2,borderTopRightRadius:7.2},transformTemplate:transformTemplate1,...addPropertyOverrides({GjEB79u7o:{transformTemplate:transformTemplate2},QOYZI0jDT:{transformTemplate:transformTemplate2},VKiFnmuLI:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r6vvaw\",\"data-framer-name\":\"Frame 9078\",layoutDependency:layoutDependency,layoutId:\"fFlQ2SqmW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-mw6b9n\",\"data-framer-name\":\"logos:spotify-icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"GVGEvc5Ed\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3473_3299)\">\\n<path d=\"M11 0.400024C5.03531 0.400024 0.199951 5.23547 0.199951 11.2C0.199951 17.165 5.0354 22 11 22C16.965 22 21.7999 17.165 21.7999 11.2C21.7999 5.23589 16.965 0.400615 10.9998 0.400615L11 0.400024ZM15.9527 15.9768C15.7592 16.2941 15.3439 16.3947 15.0267 16.1999C12.4909 14.651 9.29887 14.3002 5.53954 15.1592C5.36546 15.1988 5.18277 15.1676 5.03163 15.0726C4.8805 14.9775 4.7733 14.8264 4.73359 14.6523C4.7138 14.5661 4.71121 14.4769 4.72595 14.3897C4.7407 14.3026 4.77249 14.2192 4.81952 14.1443C4.86654 14.0694 4.92787 14.0045 5 13.9534C5.07212 13.9023 5.15362 13.8659 5.23984 13.8463C9.35396 12.9063 12.8828 13.311 15.7296 15.0508C16.0468 15.2456 16.1474 15.6596 15.9527 15.9768ZM17.2746 13.0361C17.0307 13.4322 16.5123 13.5574 16.1165 13.3136C13.2134 11.5293 8.78823 11.0125 5.35459 12.0547C4.90926 12.1892 4.43895 11.9383 4.30378 11.4937C4.16963 11.0484 4.42073 10.5789 4.8653 10.4436C8.78747 9.25341 13.6635 9.82994 16.9973 11.8786C17.3932 12.1224 17.5183 12.6407 17.2746 13.0361ZM17.3881 9.97389C13.9073 7.90636 8.16444 7.71618 4.84117 8.72497C4.30749 8.8868 3.74311 8.5855 3.58145 8.05182C3.4197 7.5179 3.72067 6.95394 4.25476 6.79168C8.06961 5.63355 14.4116 5.8574 18.419 8.23644C18.9001 8.52129 19.0573 9.14127 18.7723 9.62061C18.4887 10.1007 17.867 10.2589 17.3886 9.97389H17.3881Z\" fill=\"#1ED760\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3473_3299\">\\n<rect width=\"21.6\" height=\"21.6\" fill=\"white\" transform=\"translate(0.199951 0.400024)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,pixelHeight:518,pixelWidth:734,src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"},className:\"framer-q9zb0e\",\"data-framer-name\":\"Yt icon_rgb\",layoutDependency:layoutDependency,layoutId:\"fEcggyJRL\",...addPropertyOverrides({GjEB79u7o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||763)-0-763)/2+0+0)+0+68+.5+16.200000762939453+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}},VevFNjzLo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||537)-0-482)/2+0+0)+0+48+119.2999991416932+16.200000762939453+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXZlcnktcmVndWxhcg==\",\"--framer-font-family\":'\"Every\", \"Every Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"E\"})}),className:\"framer-en7kl4\",\"data-framer-name\":\"E\",fonts:[\"GF;Every-regular\"],layoutDependency:layoutDependency,layoutId:\"e9gCAMesR\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Podcast\"})}),className:\"framer-k8fcsn\",\"data-framer-appear-id\":\"k8fcsn\",\"data-framer-name\":\"Article\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"VJsdnQfA8\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Video\"})})},QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Article\"})})},qt4Ng4okj:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Article\"})}),initial:animation1,optimized:true},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Video\"})})},vW32wD9aD:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Video\"})}),initial:animation1,optimized:true},x6k1AHicn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Article\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1klo0wr\",\"data-framer-name\":\"logos:spotify-icon\",layoutDependency:layoutDependency,layoutId:\"JCQyKDfLj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXZlcnktcmVndWxhcg==\",\"--framer-font-family\":'\"Every\", \"Every Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"E\"})}),className:\"framer-6lmg80\",\"data-framer-name\":\"E\",fonts:[\"GF;Every-regular\"],layoutDependency:layoutDependency,layoutId:\"F00cgsaZ0\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,pixelHeight:518,pixelWidth:734,src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"},className:\"framer-1drqg59\",\"data-framer-name\":\"Yt icon_rgb\",layoutDependency:layoutDependency,layoutId:\"i2JkWFxqt\",...addPropertyOverrides({vW32wD9aD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||482)-0-482)/2+0+0)+0+48+119.2999991416932+16.200000762939453+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"Dan: Simon, welcome to the show. Simon  Hey, thanks for having me. Dan: So for people who don't know you, you are the cofounder of Notion. \"})})}),className:\"framer-1vnr3bk\",\"data-framer-name\":\"Reid Hoffman (00:15:46) And the same thing is true in building technology, in building products and services, in entrepreneurship. And that's why philosophy is actually in fact robust and important as applied to serious questions.\",fonts:[\"GF;Karla-regular\"],layoutDependency:layoutDependency,layoutId:\"b3uf8JhvA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"0:00 I love books old books older books books 0:02 that are better than the movie 0:04 psychological sci-fi philosophy books 0:06 that are so thick they could double as\"})})})},QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"The poet Robert Bly wrote that we all lug an invisible bag around with us everywhere we go. We\u2019ve been filling it since childhood with the parts of ourselves that are... \"})})})},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"The poet Robert Bly wrote that we all lug an invisible bag around with us everywhere we go. We\u2019ve been filling it since childhood with the parts of ourselves that are true to us\u2014to how we feel \"})})})},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"0:00 I love books old books older books books 0:02 that are better than the movie 0:04 psychological sci-fi philosophy books 0:06 that are so thick they could double as\"})})})},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"0:00 I love books old books older books books 0:02 that are better than the movie 0:04 psychological sci-fi philosophy books 0:06 that are so thick they could double as\"})})})},x6k1AHicn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -14%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%)\"},children:\"The poet Robert Bly wrote that we all lug an invisible bag around with us everywhere we go. We\u2019ve been filling it since childhood with the parts of ourselves that are true to us\u2014to how we feel \"})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-159g81o\",\"data-border\":true,\"data-framer-name\":\"Frame 9081\",layoutDependency:layoutDependency,layoutId:\"dcz405VLM\",style:{\"--border-bottom-width\":\"0.9000000357627869px\",\"--border-color\":\"rgb(238, 103, 6)\",\"--border-left-width\":\"0.9000000357627869px\",\"--border-right-width\":\"0.9000000357627869px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9000000357627869px\",background:\"linear-gradient(108.15165839189183deg, rgba(247, 247, 247, 1) 0%, rgba(254, 243, 235, 1) 100%)\",borderBottomLeftRadius:7.2,borderBottomRightRadius:7.2,borderTopLeftRadius:7.2,borderTopRightRadius:7.2},...addPropertyOverrides({GjEB79u7o:{transformTemplate:transformTemplate2},QOYZI0jDT:{transformTemplate:transformTemplate2},VKiFnmuLI:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgtioa\",\"data-framer-name\":\"Frame 9081\",layoutDependency:layoutDependency,layoutId:\"xeB17WNcg\",children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1c9epl6\",\"data-framer-appear-id\":\"1c9epl6\",\"data-framer-name\":\"Frame 9079\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"QhwyclMI6\",optimized:true,...addPropertyOverrides({qt4Ng4okj:{\"data-highlight\":true,onTap:onTap1wt0knp},vW32wD9aD:{\"data-highlight\":true,onTap:onTap1wt0knp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-disvg1\",\"data-framer-name\":\"fa6-brands:square-x-twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"G8M7rWXkT\",svg:'<svg width=\"20\" height=\"22\" viewBox=\"0 0 20 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3473_3317)\">\\n<path d=\"M2.89995 1.75006C1.41073 1.75006 0.199951 2.96084 0.199951 4.45006V17.9501C0.199951 19.4393 1.41073 20.6501 2.89995 20.6501H16.4C17.8892 20.6501 19.1 19.4393 19.1 17.9501V4.45006C19.1 2.96084 17.8892 1.75006 16.4 1.75006H2.89995ZM15.4339 5.29381L11.0548 10.2972L16.2059 17.1063H12.1728L9.01714 12.9762L5.40167 17.1063H3.39776L8.08058 11.7527L3.14042 5.29381H7.2748L10.1309 9.06959L13.43 5.29381H15.4339ZM13.8392 15.9082L6.67151 6.42866H5.47761L12.7254 15.9082H13.835H13.8392Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3473_3317\">\\n<rect width=\"18.9\" height=\"21.6\" fill=\"white\" transform=\"translate(0.199951 0.400024)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Social post\"})}),className:\"framer-cqfevy\",\"data-framer-name\":\"Social Post\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"xnbzL0nIg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:[\"Notion cofounder \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/simonlast\",nodeId:\"hzVc5ZXaI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@simonlast\"})}),\" rarely does interviews.  In this first-ever podcast appearance, with \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/danshipper\",nodeId:\"hzVc5ZXaI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@danshipper\"})})]})}),className:\"framer-19hpneq\",\"data-framer-name\":\"Reid Hoffman thinks studying philosophy is more important for entrepreneurs than an MBA.\",effect:textEffect,fonts:[\"GF;Karla-regular\"],layoutDependency:layoutDependency,layoutId:\"hzVc5ZXaI\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:wYI60auFe,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"Here\u2019s a detailed breakdown of using ChatGPT advanced voice mode for reading and reflection:\"})}),text:undefined},QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"There are obvious truths that you ignore every day.  You should find them and admit them.\"})}),text:undefined},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"There are obvious truths that you ignore every day.  You should find them and admit them.\"})}),text:undefined},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"Here\u2019s a detailed breakdown of using ChatGPT advanced voice mode for reading and reflection:\"})}),text:undefined},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"Here\u2019s a detailed breakdown of using ChatGPT advanced voice mode for reading and reflection:\"})}),text:undefined},x6k1AHicn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"There are obvious truths that you ignore every day.  You should find them and admit them.\"})}),text:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6nhfp4\",\"data-framer-name\":\"spiral\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,layoutDependency:layoutDependency,layoutId:\"C9_dzicri\",svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"42.3\" height=\"42.3\" rx=\"7.2\" fill=\"#EF6806\"/>\\n<path d=\"M24.6743 15.083C26.6619 14.8491 28.0004 15.1891 28.8931 15.7572C31.0691 17.1417 29.1488 19.3811 26.6098 19.8343C24.3867 20.2312 21.562 20.736 19.0867 21.18C14.0813 22.0779 7.95676 22.8661 14.7841 27.6716\" stroke=\"white\" stroke-width=\"1.8\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f6egm5\",\"data-framer-name\":\"Connector line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TP4H5Xm_d\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 10\"><path d=\"M 239.354 5.354 C 239.549 5.158 239.549 4.842 239.354 4.646 L 236.172 1.464 C 235.976 1.269 235.66 1.269 235.464 1.464 C 235.269 1.66 235.269 1.976 235.464 2.172 L 238.293 5 L 235.464 7.828 C 235.269 8.024 235.269 8.34 235.464 8.536 C 235.66 8.731 235.976 8.731 236.172 8.536 Z M 2 4.5 C 1.724 4.5 1.5 4.724 1.5 5 C 1.5 5.276 1.724 5.5 2 5.5 Z M 239 4.5 L 2 4.5 L 2 5.5 L 239 5.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11506981105,withExternalLayout:true,...addPropertyOverrides({eIWepqmzq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 10\"><path d=\"M 239.354 5.354 C 239.549 5.158 239.549 4.842 239.354 4.646 L 236.172 1.464 C 235.976 1.269 235.66 1.269 235.464 1.464 C 235.269 1.66 235.269 1.976 235.464 2.172 L 238.293 5 L 235.464 7.828 C 235.269 8.024 235.269 8.34 235.464 8.536 C 235.66 8.731 235.976 8.731 236.172 8.536 Z M 2 4.5 C 1.724 4.5 1.5 4.724 1.5 5 C 1.5 5.276 1.724 5.5 2 5.5 Z M 239 4.5 L 167 4.5 L 167 5.5 L 239 5.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11549928831},GjEB79u7o:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 30\"><path d=\"M 16.856 4.036 C 17.051 3.84 17.051 3.524 16.856 3.328 L 13.674 0.146 C 13.478 -0.049 13.162 -0.049 12.966 0.146 C 12.771 0.342 12.771 0.658 12.966 0.854 L 15.795 3.682 L 12.966 6.51 C 12.771 6.706 12.771 7.022 12.966 7.218 C 13.162 7.413 13.478 7.413 13.674 7.218 Z M 0.5 3.182 C 0.224 3.182 0 3.406 0 3.682 C 0 3.958 0.224 4.182 0.5 4.182 Z M 16.5 3.182 L 0.5 3.182 L 0.5 4.182 L 16.5 4.182 Z\" transform=\"translate(-0.001 4.819) rotate(90 8.501 3.682)\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11009536478},QOYZI0jDT:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 30\"><path d=\"M 16.856 4.036 C 17.051 3.84 17.051 3.524 16.856 3.328 L 13.674 0.146 C 13.478 -0.049 13.162 -0.049 12.966 0.146 C 12.771 0.342 12.771 0.658 12.966 0.854 L 15.795 3.682 L 12.966 6.51 C 12.771 6.706 12.771 7.022 12.966 7.218 C 13.162 7.413 13.478 7.413 13.674 7.218 Z M 0.5 3.182 C 0.224 3.182 0 3.406 0 3.682 C 0 3.958 0.224 4.182 0.5 4.182 Z M 16.5 3.182 L 0.5 3.182 L 0.5 4.182 L 16.5 4.182 Z\" transform=\"translate(-0.001 4.819) rotate(90 8.501 3.682)\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11009536478},VevFNjzLo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 10\"><path d=\"M 239.354 5.354 C 239.549 5.158 239.549 4.842 239.354 4.646 L 236.172 1.464 C 235.976 1.269 235.66 1.269 235.464 1.464 C 235.269 1.66 235.269 1.976 235.464 2.172 L 238.293 5 L 235.464 7.828 C 235.269 8.024 235.269 8.34 235.464 8.536 C 235.66 8.731 235.976 8.731 236.172 8.536 Z M 2 4.5 C 1.724 4.5 1.5 4.724 1.5 5 C 1.5 5.276 1.724 5.5 2 5.5 Z M 238.5 4.5 L 166.5 4.5 L 166.5 5.5 L 238.5 5.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10422767252},VKiFnmuLI:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 30\"><path d=\"M 16.856 4.036 C 17.051 3.84 17.051 3.524 16.856 3.328 L 13.674 0.146 C 13.478 -0.049 13.162 -0.049 12.966 0.146 C 12.771 0.342 12.771 0.658 12.966 0.854 L 15.795 3.682 L 12.966 6.51 C 12.771 6.706 12.771 7.022 12.966 7.218 C 13.162 7.413 13.478 7.413 13.674 7.218 Z M 0.5 3.182 C 0.224 3.182 0 3.406 0 3.682 C 0 3.958 0.224 4.182 0.5 4.182 Z M 16.5 3.182 L 0.5 3.182 L 0.5 4.182 L 16.5 4.182 Z\" transform=\"translate(-0.001 4.819) rotate(90 8.501 3.682)\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11009536478},x6k1AHicn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 10\"><path d=\"M 239.854 5.354 C 240.049 5.158 240.049 4.842 239.854 4.646 L 236.672 1.464 C 236.476 1.269 236.16 1.269 235.964 1.464 C 235.769 1.66 235.769 1.976 235.964 2.172 L 238.793 5 L 235.964 7.828 C 235.769 8.024 235.769 8.34 235.964 8.536 C 236.16 8.731 236.476 8.731 236.672 8.536 Z M 239 4.5 C 199.236 4.5 167 4.724 167 5 C 167 5.276 199.236 5.5 239 5.5 Z M 239 4.5 L 167 4.5 L 167 5.5 L 239 5.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10158102764}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sgs71w\",\"data-framer-name\":\"Connector line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"p_edEEPI8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 272 123\"><path d=\"M 271.354 4.454 C 271.549 4.258 271.549 3.942 271.354 3.746 L 268.172 0.564 C 267.976 0.369 267.66 0.369 267.464 0.564 C 267.269 0.76 267.269 1.076 267.464 1.272 L 270.293 4.1 L 267.464 6.928 C 267.269 7.124 267.269 7.44 267.464 7.636 C 267.66 7.831 267.976 7.831 268.172 7.636 Z M 0.65 122 C 0.65 122.276 0.874 122.5 1.15 122.5 C 1.426 122.5 1.65 122.276 1.65 122 Z M 271 3.6 L 25.15 3.6 L 25.15 4.6 L 271 4.6 Z M 0.65 28.1 L 0.65 122 L 1.65 122 L 1.65 28.1 Z M 25.15 3.6 C 11.619 3.6 0.65 14.569 0.65 28.1 L 1.65 28.1 C 1.65 15.121 12.171 4.6 25.15 4.6 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:11527575556,withExternalLayout:true,...addPropertyOverrides({eIWepqmzq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 272 123\"><path d=\"M 132.356 4.454 C 132.551 4.258 132.551 3.942 132.356 3.746 L 129.174 0.564 C 128.978 0.369 128.662 0.369 128.466 0.564 C 128.271 0.76 128.271 1.076 128.466 1.272 L 131.295 4.1 L 128.466 6.928 C 128.271 7.124 128.271 7.44 128.466 7.636 C 128.662 7.831 128.978 7.831 129.174 7.636 Z M 0.65 122 C 0.65 122.276 0.874 122.5 1.15 122.5 C 1.426 122.5 1.65 122.276 1.65 122 Z M 131 3.6 L 25.15 3.6 L 25.15 4.6 L 131 4.6 Z M 0.65 28.1 L 0.65 122 L 1.65 122 L 1.65 28.1 Z M 25.15 3.6 C 11.619 3.6 0.65 14.569 0.65 28.1 L 1.65 28.1 C 1.65 15.121 12.171 4.6 25.15 4.6 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:10052972569},VevFNjzLo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 272 123\"><path d=\"M 132.356 4.454 C 132.551 4.258 132.551 3.942 132.356 3.746 L 129.174 0.564 C 128.978 0.369 128.662 0.369 128.466 0.564 C 128.271 0.76 128.271 1.076 128.466 1.272 L 131.295 4.1 L 128.466 6.928 C 128.271 7.124 128.271 7.44 128.466 7.636 C 128.662 7.831 128.978 7.831 129.174 7.636 Z M 0.65 122 C 0.65 122.276 0.874 122.5 1.15 122.5 C 1.426 122.5 1.65 122.276 1.65 122 Z M 131 3.6 L 25.15 3.6 L 25.15 4.6 L 131 4.6 Z M 0.65 28.1 L 0.65 122 L 1.65 122 L 1.65 28.1 Z M 25.15 3.6 C 11.619 3.6 0.65 14.569 0.65 28.1 L 1.65 28.1 C 1.65 15.121 12.171 4.6 25.15 4.6 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:10052972569},x6k1AHicn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 272 123\"><path d=\"M 132.356 4.454 C 132.551 4.258 132.551 3.942 132.356 3.746 L 129.174 0.564 C 128.978 0.369 128.662 0.369 128.466 0.564 C 128.271 0.76 128.271 1.076 128.466 1.272 L 131.295 4.1 L 128.466 6.928 C 128.271 7.124 128.271 7.44 128.466 7.636 C 128.662 7.831 128.978 7.831 129.174 7.636 Z M 0.65 122 C 0.65 122.276 0.874 122.5 1.15 122.5 C 1.426 122.5 1.65 122.276 1.65 122 Z M 131 3.6 L 25.15 3.6 L 25.15 4.6 L 131 4.6 Z M 0.65 28.1 L 0.65 122 L 1.65 122 L 1.65 28.1 Z M 25.15 3.6 C 11.619 3.6 0.65 14.569 0.65 28.1 L 1.65 28.1 C 1.65 15.121 12.171 4.6 25.15 4.6 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:10052972569}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ezuref\",\"data-border\":true,\"data-framer-name\":\"Frame 9084\",layoutDependency:layoutDependency,layoutId:\"PUP61QMg9\",style:{\"--border-bottom-width\":\"0.9000000357627869px\",\"--border-color\":\"rgb(238, 103, 6)\",\"--border-left-width\":\"0.9000000357627869px\",\"--border-right-width\":\"0.9000000357627869px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9000000357627869px\",background:\"linear-gradient(108.15165839189183deg, rgba(247, 247, 247, 1) 0%, rgba(254, 243, 235, 1) 100%)\",borderBottomLeftRadius:7.2,borderBottomRightRadius:7.2,borderTopLeftRadius:7.2,borderTopRightRadius:7.2},transformTemplate:transformTemplate1,...addPropertyOverrides({GjEB79u7o:{transformTemplate:transformTemplate2},QOYZI0jDT:{transformTemplate:transformTemplate2},qt4Ng4okj:{transformTemplate:undefined},VKiFnmuLI:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzx1ml\",\"data-framer-name\":\"Frame 9081\",layoutDependency:layoutDependency,layoutId:\"QqdoseBOk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h5uq25\",\"data-framer-name\":\"Frame 9078\",layoutDependency:layoutDependency,layoutId:\"NBT8DBSQC\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:317.5,pixelHeight:540,pixelWidth:635,src:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png 635w\"},className:\"framer-1ku0bs2\",\"data-framer-name\":\"LI-In-Bug\",layoutDependency:layoutDependency,layoutId:\"ouYzWdcQq\",...addPropertyOverrides({QOYZI0jDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:317.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||763)-0-763)/2+0+0)+0+68+386+16.200000762939453+0+0+0),pixelHeight:540,pixelWidth:635,sizes:\"22px\",src:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png 635w\"}},qt4Ng4okj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:317.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||482)-0-482)/2+0+0)+0+48+146.00000000000009+16+-129.00000009536743+0+0),pixelHeight:540,pixelWidth:635,sizes:\"22px\",src:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png 635w\"}},x6k1AHicn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:317.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||482)-0-482)/2+0+0)+0+48+17.799999141693235+16.200000762939453+0+0+0),pixelHeight:540,pixelWidth:635,sizes:\"22px\",src:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6wpEoTmMdgMMiXA4tbHr5Md5TU.png 635w\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-osvvq1\",\"data-framer-name\":\"logos:spotify-icon\",layoutDependency:layoutDependency,layoutId:\"XjgKo1esW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXZlcnktcmVndWxhcg==\",\"--framer-font-family\":'\"Every\", \"Every Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"E\"})}),className:\"framer-1cv3vur\",\"data-framer-name\":\"E\",fonts:[\"GF;Every-regular\"],layoutDependency:layoutDependency,layoutId:\"vD0q0ckg5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Article\"})}),className:\"framer-enei4k\",\"data-framer-name\":\"Article\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"qaJYq57kc\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"LinkedIn Post\"})})},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"LinkedIn post\"})})}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"LinkedIn post\"})}),className:\"framer-113uph\",\"data-framer-name\":\"Article\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"kV4nEoFcL\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ahzkr\",\"data-framer-name\":\"Frame 9085\",layoutDependency:layoutDependency,layoutId:\"Cmdo9gTQS\",children:[isDisplayed10()&&/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"How Notion Cofounder Simon Last Builds AI for Millions of Users\"})}),className:\"framer-mkp5f1\",\"data-framer-name\":\"Start of Article here...\",effect:textEffect1,fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"KgGBUkOTf\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Review: ChatGPT\u2019s New Advanced Voice Mode\"})})},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"The HIDDEN COST of Ignoring Who You Really Are  Ever catch yourself pretending to be something you're not?...\"})})},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Review: ChatGPT\u2019s New Advanced Voice Mode\"})})},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Review: ChatGPT\u2019s New Advanced Voice Mode\"})})}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(49, 49, 49, 0) 0%, rgb(0, 0, 0) 100%)\"},children:\"The HIDDEN COST of Ignoring Who You Really Are  Ever catch yourself pretending to be something you're not?...\"})})}),className:\"framer-gr0nk4\",\"data-framer-name\":\"Start of Article here...\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"jt8py1U5b\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"16.2px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(49, 49, 49, 0) 0%, rgb(0, 0, 0) 100%)\"},children:\"The HIDDEN COST of Ignoring Who You Really Are  Ever catch yourself pretending to be something you're not?...\"})})}),className:\"framer-c313u3\",\"data-framer-name\":\"Start of Article here...\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"Vo2bacAZQ\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1u86f5d\",\"data-framer-name\":\"Connector line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Mkwk7CYZw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 61\"><path d=\"M 4.796 59.353 C 4.992 59.549 5.308 59.549 5.503 59.353 L 8.685 56.172 C 8.881 55.976 8.881 55.66 8.685 55.464 C 8.49 55.269 8.174 55.269 7.978 55.464 L 5.15 58.293 L 2.321 55.464 C 2.126 55.269 1.81 55.269 1.614 55.464 C 1.419 55.66 1.419 55.976 1.614 56.172 Z M 5.65 2.3 C 5.65 2.024 5.426 1.8 5.15 1.8 C 4.874 1.8 4.65 2.024 4.65 2.3 Z M 5.65 59 L 5.65 42.3 L 4.65 42.3 L 4.65 59 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:9634607733,withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{svgContentId:9314918686},QOYZI0jDT:{svgContentId:9314918686},VKiFnmuLI:{svgContentId:9314918686}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wt01q5\",\"data-framer-name\":\"Connector line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vr3YWfyV4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 250 10\"><path d=\"M 248.354 5.504 C 248.549 5.308 248.549 4.992 248.354 4.796 L 245.172 1.614 C 244.976 1.419 244.66 1.419 244.465 1.614 C 244.269 1.81 244.269 2.126 244.465 2.322 L 247.293 5.15 L 244.465 7.978 C 244.269 8.174 244.269 8.49 244.465 8.686 C 244.66 8.881 244.976 8.881 245.172 8.686 Z M 248 4.65 L 2.3 4.65 L 2.3 5.65 L 248 5.65 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12824669478,withExternalLayout:true,...addPropertyOverrides({eIWepqmzq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 245 10\"><path d=\"M 124.389 5.504 C 124.58 5.308 124.58 4.992 124.389 4.796 L 121.271 1.614 C 121.079 1.419 120.769 1.419 120.578 1.614 C 120.386 1.81 120.386 2.126 120.578 2.322 L 123.35 5.15 L 120.578 7.978 C 120.386 8.174 120.386 8.49 120.578 8.686 C 120.769 8.881 121.079 8.881 121.271 8.686 Z M 123.04 4.65 L 2.254 4.65 L 2.254 5.65 L 123.04 5.65 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12527162904},VevFNjzLo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 245 10\"><path d=\"M 124.389 5.504 C 124.58 5.308 124.58 4.992 124.389 4.796 L 121.271 1.614 C 121.079 1.419 120.769 1.419 120.578 1.614 C 120.386 1.81 120.386 2.126 120.578 2.322 L 123.35 5.15 L 120.578 7.978 C 120.386 8.174 120.386 8.49 120.578 8.686 C 120.769 8.881 121.079 8.881 121.271 8.686 Z M 123.04 4.65 L 2.254 4.65 L 2.254 5.65 L 123.04 5.65 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12527162904},x6k1AHicn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 245 10\"><path d=\"M 124.389 5.504 C 124.58 5.308 124.58 4.992 124.389 4.796 L 121.271 1.614 C 121.079 1.419 120.769 1.419 120.578 1.614 C 120.386 1.81 120.386 2.126 120.578 2.322 L 123.35 5.15 L 120.578 7.978 C 120.386 8.174 120.386 8.49 120.578 8.686 C 120.769 8.881 121.079 8.881 121.271 8.686 Z M 123.04 4.65 L 2.254 4.65 L 2.254 5.65 L 123.04 5.65 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12527162904}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kwfqyn\",\"data-framer-name\":\"Connector line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tg8lqC_RQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 274 136\"><path d=\"M 273.349 131.475 C 273.546 131.216 273.546 130.794 273.349 130.535 L 270.144 126.303 C 269.946 126.043 269.628 126.043 269.431 126.303 C 269.234 126.562 269.234 126.983 269.431 127.243 L 272.28 131.005 L 269.431 134.766 C 269.234 135.027 269.234 135.447 269.431 135.708 C 269.628 135.967 269.946 135.967 270.144 135.708 Z M 1.662 1.729 C 1.662 1.362 1.437 1.064 1.158 1.064 C 0.88 1.064 0.655 1.362 0.655 1.729 Z M 272.993 130.34 L 25.335 130.34 L 25.335 131.67 L 272.993 131.67 Z M 1.662 99.085 L 1.662 1.729 L 0.655 1.729 L 0.655 99.085 Z M 25.335 130.34 C 12.261 130.34 1.662 116.347 1.662 99.085 L 0.655 99.085 C 0.655 117.081 11.705 131.67 25.335 131.67 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12132453905,withExternalLayout:true,...addPropertyOverrides({eIWepqmzq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 274 136\"><path d=\"M 133.351 131.475 C 133.547 131.216 133.547 130.794 133.351 130.535 L 130.145 126.303 C 129.948 126.043 129.63 126.043 129.432 126.303 C 129.236 126.562 129.236 126.983 129.432 127.243 L 132.282 131.005 L 129.432 134.766 C 129.236 135.027 129.236 135.447 129.432 135.708 C 129.63 135.967 129.948 135.967 130.145 135.708 Z M 1.662 1.729 C 1.662 1.362 1.437 1.064 1.158 1.064 C 0.88 1.064 0.655 1.362 0.655 1.729 Z M 131.993 130.34 L 25.335 130.34 L 25.335 131.67 L 131.993 131.67 Z M 1.662 99.085 L 1.662 1.729 L 0.655 1.729 L 0.655 99.085 Z M 25.335 130.34 C 12.261 130.34 1.662 116.347 1.662 99.085 L 0.655 99.085 C 0.655 117.081 11.705 131.67 25.335 131.67 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:9555456528},VevFNjzLo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 134 136\"><path d=\"M 133.351 131.475 C 133.547 131.216 133.547 130.794 133.351 130.535 L 130.145 126.303 C 129.948 126.043 129.63 126.043 129.432 126.303 C 129.236 126.562 129.236 126.983 129.432 127.243 L 132.282 131.005 L 129.432 134.766 C 129.236 135.027 129.236 135.447 129.432 135.708 C 129.63 135.967 129.948 135.967 130.145 135.708 Z M 1.662 1.729 C 1.662 1.362 1.437 1.064 1.158 1.064 C 0.88 1.064 0.655 1.362 0.655 1.729 Z M 131.993 130.34 L 25.335 130.34 L 25.335 131.67 L 131.993 131.67 Z M 1.662 99.085 L 1.662 1.729 L 0.655 1.729 L 0.655 99.085 Z M 25.335 130.34 C 12.261 130.34 1.662 116.347 1.662 99.085 L 0.655 99.085 C 0.655 117.081 11.705 131.67 25.335 131.67 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:12871928466},x6k1AHicn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 274 136\"><path d=\"M 133.351 131.475 C 133.547 131.216 133.547 130.794 133.351 130.535 L 130.145 126.303 C 129.948 126.043 129.63 126.043 129.432 126.303 C 129.236 126.562 129.236 126.983 129.432 127.243 L 132.282 131.005 L 129.432 134.766 C 129.236 135.027 129.236 135.447 129.432 135.708 C 129.63 135.967 129.948 135.967 130.145 135.708 Z M 1.662 1.729 C 1.662 1.362 1.437 1.064 1.158 1.064 C 0.88 1.064 0.655 1.362 0.655 1.729 Z M 131.993 130.34 L 25.335 130.34 L 25.335 131.67 L 131.993 131.67 Z M 1.662 99.085 L 1.662 1.729 L 0.655 1.729 L 0.655 99.085 Z M 25.335 130.34 C 12.261 130.34 1.662 116.347 1.662 99.085 L 0.655 99.085 C 0.655 117.081 11.705 131.67 25.335 131.67 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:9555456528}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p9nkok\",\"data-border\":true,\"data-framer-name\":\"Frame 9080\",layoutDependency:layoutDependency,layoutId:\"pmzZ1bR2B\",style:{\"--border-bottom-width\":\"0.9000000357627869px\",\"--border-color\":\"rgb(238, 103, 6)\",\"--border-left-width\":\"0.9000000357627869px\",\"--border-right-width\":\"0.9000000357627869px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9000000357627869px\",background:\"linear-gradient(108.15165839189183deg, rgba(247, 247, 247, 1) 0%, rgba(254, 243, 235, 1) 100%)\",borderBottomLeftRadius:7.2,borderBottomRightRadius:7.2,borderTopLeftRadius:7.2,borderTopRightRadius:7.2},...addPropertyOverrides({GjEB79u7o:{transformTemplate:transformTemplate2},QOYZI0jDT:{transformTemplate:transformTemplate2},VKiFnmuLI:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s2jsxg\",\"data-framer-name\":\"Frame 9081\",layoutDependency:layoutDependency,layoutId:\"GWerrJ5Vq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yc1uh3\",\"data-framer-name\":\"Frame 9078\",layoutDependency:layoutDependency,layoutId:\"Sn6dS3Ylh\",children:[isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-reixsz\",\"data-framer-name\":\"fxemoji:email\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"sLQJWQ7th\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3473_3306)\">\\n<path d=\"M16.1944 13.4815C16.2551 13.3176 9.2908 8.05899 9.2908 8.05899C8.41892 7.41558 7.96036 7.40546 7.09817 8.05899C7.09817 8.05899 0.144047 13.3133 0.202578 13.475L0.201172 13.4761C0.201891 13.4776 0.203047 13.4785 0.204016 13.4798C0.262992 13.6405 0.348779 13.7901 0.457734 13.9222C0.503766 13.978 0.559234 14.0248 0.612578 14.0734L0.609984 14.0754C0.614234 14.0791 0.619891 14.0809 0.624141 14.0847C0.850234 14.2864 1.13536 14.417 1.45211 14.4543C1.45708 14.4549 1.46108 14.4575 1.46605 14.4581H1.48517C1.53333 14.4626 1.57911 14.4742 1.62842 14.4742H14.776C15.4234 14.4742 15.9719 14.0671 16.1897 13.4964C16.1923 13.4921 16.1963 13.4891 16.1987 13.4847L16.1944 13.4815Z\" fill=\"#96A9B2\"/>\\n<path d=\"M8.20419 7.45554L0.238037 13.4302V4.96613C0.238037 4.14113 0.906693 3.47247 1.73169 3.47247H14.6767C15.5017 3.47247 16.1703 4.14113 16.1703 4.96613V13.4302L8.20419 7.45554Z\" fill=\"#B9C5C6\"/>\\n<path d=\"M0.330811 4.44675L7.13222 9.7889C7.99065 10.4224 8.44215 10.4324 9.29106 9.7889L16.0818 4.45522C15.964 4.24165 15.7876 4.07293 15.5859 3.9384L15.6793 3.86522C15.4513 3.65768 15.1599 3.52315 14.8364 3.4884L1.57222 3.48887C1.24965 3.52315 0.957779 3.65815 0.730279 3.86522L0.822998 3.9375C0.623623 4.07015 0.448873 4.23597 0.330811 4.44675Z\" fill=\"#EDECE6\"/>\\n<path d=\"M0.32865 4.45794C0.268932 4.61934 7.1259 9.79684 7.1259 9.79684C7.98434 10.4303 8.43584 10.4403 9.28474 9.79684C9.28474 9.79684 16.1317 4.62353 16.0741 4.46434L16.0755 4.46319C16.0748 4.46178 16.0736 4.46088 16.0727 4.45959C16.0146 4.30131 15.9302 4.15403 15.8229 4.024C15.7776 3.96903 15.7229 3.92303 15.6704 3.87516L15.673 3.87319C15.6688 3.86947 15.6632 3.86772 15.6591 3.864C15.4364 3.66544 15.1557 3.53681 14.8439 3.50009C14.839 3.4995 14.835 3.49697 14.8301 3.49638H14.8113C14.7639 3.49184 14.7188 3.48047 14.6703 3.48047H1.72528C1.08784 3.48047 0.547775 3.88134 0.333307 4.44325C0.330744 4.44744 0.326807 4.45047 0.324463 4.45475L0.32865 4.45794Z\" fill=\"#DCE2E2\"/>\\n<path d=\"M9.30629 5.03269H8.09904C8.04803 5.03269 7.99911 5.05295 7.96303 5.08902C7.92696 5.1251 7.9067 5.17402 7.9067 5.22503V5.90384C7.9067 5.95486 7.92696 6.00378 7.96303 6.03985C7.99911 6.07592 8.04803 6.09619 8.09904 6.09619H9.08076C9.13177 6.09619 9.1807 6.11645 9.21677 6.15252C9.25284 6.1886 9.2731 6.23752 9.2731 6.28853V6.65153C9.2731 6.70254 9.25284 6.75147 9.21677 6.78754C9.1807 6.82361 9.13177 6.84388 9.08076 6.84388H8.09904C8.04803 6.84388 7.99911 6.86414 7.96303 6.90021C7.92696 6.93628 7.9067 6.98521 7.9067 7.03622V7.77303C7.9067 7.82404 7.92696 7.87297 7.96303 7.90904C7.99911 7.94511 8.04803 7.96538 8.09904 7.96538H9.39017C9.44118 7.96538 9.4901 7.98564 9.52617 8.02171C9.56225 8.05778 9.58251 8.10671 9.58251 8.15772V8.5465C9.58251 8.59751 9.56225 8.64644 9.52617 8.68251C9.4901 8.71858 9.44118 8.73884 9.39017 8.73884H7.02267C6.97165 8.73884 6.92273 8.71858 6.88666 8.68251C6.85059 8.64644 6.83032 8.59751 6.83032 8.5465V4.46444C6.83032 4.41343 6.85059 4.3645 6.88666 4.32843C6.92273 4.29236 6.97165 4.27209 7.02267 4.27209H9.36048C9.47764 4.27209 9.56757 4.37591 9.55085 4.49188L9.4967 4.86775C9.4901 4.91355 9.46722 4.95543 9.43225 4.98572C9.39727 5.01601 9.35256 5.03269 9.30629 5.03269Z\" fill=\"#597B91\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3473_3306\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.199951 0.200012)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Email newsletter\"})}),className:\"framer-v9cofa\",\"data-framer-name\":\"Email Newsletter\",fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"q0zxqt0k1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"YouTube Title\"})})},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"YouTube title\"})})},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18.9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"YouTube title\"})})}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,pixelHeight:518,pixelWidth:734,src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"},className:\"framer-21jtr1\",\"data-framer-name\":\"Yt icon_rgb\",layoutDependency:layoutDependency,layoutId:\"Mjb1_VCe1\",...addPropertyOverrides({GjEB79u7o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||763)-0-763)/2+0+0)+0+68+552+16.200000762939453+0+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}},vW32wD9aD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||482)-0-482)/2+0+0)+0+48+434-130+16.200000762939453+0+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,pixelHeight:518,pixelWidth:734,src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"},className:\"framer-ywa8uu\",\"data-framer-name\":\"Yt icon_rgb\",layoutDependency:layoutDependency,layoutId:\"RXJg8CUYn\",...addPropertyOverrides({VevFNjzLo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:367,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||537)-0-482)/2+0+0)+0+48+434-130+16.200000762939453+0+0+0),pixelHeight:518,pixelWidth:734,sizes:\"22px\",src:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4zSl35sBLWOZd2yKcE6KW5ZroM.png 734w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(RichTextWithLogs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:[\"Subject: \",/*#__PURE__*/_jsx(Link,{href:\"https://every.to/emails/click/2dd3c2af93d4c9d95933e2d72f991e1f385fa087893aac3ff32a96676d826900/eyJzdWJqZWN0Ijoi8J-OpyBIb3cgTm90aW9uIENvZm91bmRlciBTaW1vbiBMYXN0IEJ1aWxkcyBBSSBmb3IgTWlsbGlvbnMgb2YgVXNlcnMiLCJwb3N0X2lkIjozMzA3LCJwb3N0X3R5cGUiOiJwcm9tbyIsInVybCI6Imh0dHBzOi8vZXZlcnkudG8vcG9kY2FzdC9ob3ctbm90aW9uLWNvZm91bmRlci1zaW1vbi1sYXN0LWJ1aWxkcy1haS1mb3ItbWlsbGlvbnMtb2YtdXNlcnMiLCJwb3NpdGlvbiI6M30=\",nodeId:\"HbsTFlkuz\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The blueprint for AI systems that are reliable at scale\"})})]})}),className:\"framer-a6wq3j\",\"data-framer-name\":\"Start of Newsletter is here\",effect:textEffect1,fonts:[\"GF;Karla-500\"],layoutDependency:layoutDependency,layoutId:\"HbsTFlkuz\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"MAXIMIZE Your Reading With ChatGPT's NEW Advanced Voice Mode\"})})},QOYZI0jDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Subject: I\u2019m a writer\u2014what are you?\"})})},qt4Ng4okj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Subject: I\u2019m a writer\u2014what are you?\"})})},VevFNjzLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"MAXIMIZE Your Reading With ChatGPT's NEW Advanced Voice Mode\"})})},vW32wD9aD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"MAXIMIZE Your Reading With ChatGPT's NEW Advanced Voice Mode\"})})},x6k1AHicn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FybGEtNTAw\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Subject: I\u2019m a writer\u2014what are you?\"})})}},baseVariant,gestureVariant)})]}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16254wd\",\"data-framer-name\":\"mobileLeft\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iTMr3B9Q7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 149 274\"><path d=\"M 30.354 268.854 C 30.549 268.658 30.549 268.342 30.354 268.146 L 27.172 264.964 C 26.976 264.769 26.66 264.769 26.465 264.964 C 26.269 265.16 26.269 265.476 26.465 265.672 L 29.293 268.5 L 26.465 271.328 C 26.269 271.524 26.269 271.84 26.465 272.036 C 26.66 272.231 26.976 272.231 27.172 272.036 Z M 148 1.65 C 148.276 1.65 148.5 1.426 148.5 1.15 C 148.5 0.874 148.276 0.65 148 0.65 Z M 30 268 L 25 268 L 25 269 L 30 269 Z M 1.5 244.5 L 1.5 25.15 L 0.5 25.15 L 0.5 244.5 Z M 25 1.65 L 148 1.65 L 148 0.65 L 25 0.65 Z M 1.5 25.15 C 1.5 12.171 12.021 1.65 25 1.65 L 25 0.65 C 11.469 0.65 0.5 11.619 0.5 25.15 Z M 25 268 C 12.021 268 1.5 257.479 1.5 244.5 L 0.5 244.5 C 0.5 258.031 11.469 269 25 269 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:10774059160,withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{svgContentId:10347930892},QOYZI0jDT:{svgContentId:10347930892},VKiFnmuLI:{svgContentId:10347930892}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-egkrmn\",\"data-framer-name\":\"mobileRight\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qhSkd382L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 437\"><path d=\"M 119.939 429.681 C 119.737 429.877 119.737 430.193 119.939 430.389 L 123.239 433.57 C 123.442 433.765 123.77 433.765 123.972 433.57 C 124.175 433.374 124.175 433.058 123.972 432.862 L 121.039 430.035 L 123.972 427.208 C 124.175 427.012 124.175 426.696 123.972 426.501 C 123.77 426.305 123.442 426.305 123.239 426.501 Z M 0.937 0.716 C 0.651 0.716 0.419 0.94 0.419 1.216 C 0.419 1.492 0.651 1.716 0.937 1.716 Z M 120.306 430.535 L 125.491 430.535 L 125.491 429.535 L 120.306 429.535 Z M 150.9 406.042 L 150.9 25.209 L 149.863 25.209 L 149.863 406.042 Z M 125.714 0.716 L -0.1 0.716 L -0.1 1.716 L 125.714 1.716 Z M 150.9 25.209 C 150.9 11.682 139.524 0.716 125.491 0.716 L 125.491 1.716 C 138.952 1.716 149.863 12.234 149.863 25.209 Z M 125.491 430.535 C 139.524 430.535 150.9 419.569 150.9 406.042 L 149.863 406.042 C 149.863 419.017 138.952 429.535 125.491 429.535 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:10172440477,withExternalLayout:true,...addPropertyOverrides({GjEB79u7o:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 437\"><path d=\"M 120.939 429.681 C 120.737 429.877 120.737 430.193 120.939 430.389 L 124.239 433.57 C 124.442 433.765 124.77 433.765 124.972 433.57 C 125.175 433.374 125.175 433.058 124.972 432.862 L 122.039 430.035 L 124.972 427.208 C 125.175 427.012 125.175 426.696 124.972 426.501 C 124.77 426.305 124.442 426.305 124.239 426.501 Z M 1.937 0.716 C 1.651 0.716 1.419 0.94 1.419 1.216 C 1.419 1.492 1.651 1.716 1.937 1.716 Z M 121.306 430.535 L 126.491 430.535 L 126.491 429.535 L 121.306 429.535 Z M 151.9 406.042 L 151.9 25.209 L 150.863 25.209 L 150.863 406.042 Z M 126.714 0.716 L 0.9 0.716 L 0.9 1.716 L 126.714 1.716 Z M 151.9 25.209 C 151.9 11.682 140.524 0.716 126.491 0.716 L 126.491 1.716 C 139.952 1.716 150.863 12.234 150.863 25.209 Z M 126.491 430.535 C 140.524 430.535 151.9 419.569 151.9 406.042 L 150.863 406.042 C 150.863 419.017 139.952 429.535 126.491 429.535 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:11493542846},QOYZI0jDT:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 437\"><path d=\"M 120.939 429.681 C 120.737 429.877 120.737 430.193 120.939 430.389 L 124.239 433.57 C 124.442 433.765 124.77 433.765 124.972 433.57 C 125.175 433.374 125.175 433.058 124.972 432.862 L 122.039 430.035 L 124.972 427.208 C 125.175 427.012 125.175 426.696 124.972 426.501 C 124.77 426.305 124.442 426.305 124.239 426.501 Z M 1.937 0.716 C 1.651 0.716 1.419 0.94 1.419 1.216 C 1.419 1.492 1.651 1.716 1.937 1.716 Z M 121.306 430.535 L 126.491 430.535 L 126.491 429.535 L 121.306 429.535 Z M 151.9 406.042 L 151.9 25.209 L 150.863 25.209 L 150.863 406.042 Z M 126.714 0.716 L 0.9 0.716 L 0.9 1.716 L 126.714 1.716 Z M 151.9 25.209 C 151.9 11.682 140.524 0.716 126.491 0.716 L 126.491 1.716 C 139.952 1.716 150.863 12.234 150.863 25.209 Z M 126.491 430.535 C 140.524 430.535 151.9 419.569 151.9 406.042 L 150.863 406.042 C 150.863 419.017 139.952 429.535 126.491 429.535 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:11493542846},VKiFnmuLI:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 437\"><path d=\"M 120.939 429.681 C 120.737 429.877 120.737 430.193 120.939 430.389 L 124.239 433.57 C 124.442 433.765 124.77 433.765 124.972 433.57 C 125.175 433.374 125.175 433.058 124.972 432.862 L 122.039 430.035 L 124.972 427.208 C 125.175 427.012 125.175 426.696 124.972 426.501 C 124.77 426.305 124.442 426.305 124.239 426.501 Z M 1.937 0.716 C 1.651 0.716 1.419 0.94 1.419 1.216 C 1.419 1.492 1.651 1.716 1.937 1.716 Z M 121.306 430.535 L 126.491 430.535 L 126.491 429.535 L 121.306 429.535 Z M 151.9 406.042 L 151.9 25.209 L 150.863 25.209 L 150.863 406.042 Z M 126.714 0.716 L 0.9 0.716 L 0.9 1.716 L 126.714 1.716 Z M 151.9 25.209 C 151.9 11.682 140.524 0.716 126.491 0.716 L 126.491 1.716 C 139.952 1.716 150.863 12.234 150.863 25.209 Z M 126.491 430.535 C 140.524 430.535 151.9 419.569 151.9 406.042 L 150.863 406.042 C 150.863 419.017 139.952 429.535 126.491 429.535 Z\" fill=\"rgb(239,104,6)\"></path></svg>',svgContentId:11493542846}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GmsOL.framer-5721ti, .framer-GmsOL .framer-5721ti { display: block; }\",\".framer-GmsOL.framer-1muy8x1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-GmsOL .framer-ormbxm { align-content: center; align-items: center; cursor: pointer; 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: 1279px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GmsOL .framer-1xf8c4u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 12px 14px 12px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-GmsOL .framer-1aogctl, .framer-GmsOL .framer-en7kl4, .framer-GmsOL .framer-k8fcsn, .framer-GmsOL .framer-cqfevy, .framer-GmsOL .framer-enei4k, .framer-GmsOL .framer-113uph, .framer-GmsOL .framer-v9cofa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GmsOL .framer-ru9r1d { flex: none; height: 434px; overflow: visible; position: relative; width: 1095px; }\",\".framer-GmsOL .framer-du2aay { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 16.200000762939453px; position: absolute; top: 47%; width: 279px; }\",\".framer-GmsOL .framer-1r6vvaw, .framer-GmsOL .framer-1c9epl6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GmsOL .framer-mw6b9n { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-GmsOL .framer-q9zb0e, .framer-GmsOL .framer-1drqg59, .framer-GmsOL .framer-21jtr1, .framer-GmsOL .framer-ywa8uu { aspect-ratio: 1.416988416988417 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 22px; }\",\".framer-GmsOL .framer-1klo0wr, .framer-GmsOL .framer-osvvq1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: hidden; position: relative; width: 22px; }\",\".framer-GmsOL .framer-6lmg80, .framer-GmsOL .framer-1cv3vur { flex: none; height: 23px; left: 4px; position: absolute; top: 0px; white-space: pre; width: 14px; }\",\".framer-GmsOL .framer-1vnr3bk, .framer-GmsOL .framer-19hpneq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 247px; word-break: break-word; word-wrap: break-word; }\",\".framer-GmsOL .framer-159g81o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 16.200000762939453px; position: absolute; right: 0px; top: 0px; width: 279px; }\",\".framer-GmsOL .framer-1jgtioa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GmsOL .framer-disvg1 { flex: none; height: 22px; position: relative; width: 20px; }\",\".framer-GmsOL .framer-6nhfp4 { flex: none; height: 43px; left: calc(49.49771689497719% - 43px / 2); position: absolute; top: calc(46.54377880184334% - 43px / 2); width: 43px; }\",\".framer-GmsOL .framer-f6egm5 { flex: none; height: 10px; left: 280px; position: absolute; top: calc(46.77419354838712% - 10px / 2); width: 241px; }\",\".framer-GmsOL .framer-sgs71w { flex: none; height: 123px; position: absolute; right: 281px; top: 57px; width: 272px; }\",\".framer-GmsOL .framer-1ezuref { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 16.200000762939453px; position: absolute; right: 4px; top: 51%; width: 276px; }\",\".framer-GmsOL .framer-1vzx1ml, .framer-GmsOL .framer-1s2jsxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GmsOL .framer-h5uq25 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80px; }\",\".framer-GmsOL .framer-1ku0bs2 { aspect-ratio: 1.1759259259259258 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 270px); overflow: visible; position: relative; width: 22px; }\",\".framer-GmsOL .framer-10ahzkr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GmsOL .framer-mkp5f1, .framer-GmsOL .framer-gr0nk4, .framer-GmsOL .framer-c313u3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 243px; word-break: break-word; word-wrap: break-word; }\",\".framer-GmsOL .framer-1u86f5d { flex: none; height: 61px; left: calc(48.984771573604085% - 10px / 2); position: absolute; top: 181px; width: 10px; }\",\".framer-GmsOL .framer-wt01q5 { flex: none; height: 10px; position: absolute; right: 280px; top: calc(46.77419354838712% - 10px / 2); width: 250px; }\",\".framer-GmsOL .framer-kwfqyn { bottom: 72px; flex: none; height: 136px; position: absolute; right: 279px; width: 274px; }\",\".framer-GmsOL .framer-1p9nkok { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: 130px; justify-content: flex-start; overflow: visible; padding: 16.200000762939453px; position: absolute; right: 3px; width: 275px; }\",\".framer-GmsOL .framer-1yc1uh3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GmsOL .framer-reixsz { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-GmsOL .framer-a6wq3j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 234px; word-break: break-word; word-wrap: break-word; }\",\".framer-GmsOL .framer-16254wd { flex: none; height: 274px; left: 26px; position: absolute; top: calc(48.92086330935254% - 274px / 2); width: 149px; }\",\".framer-GmsOL .framer-egkrmn { bottom: 55px; flex: none; height: 437px; position: absolute; right: 28px; width: 153px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GmsOL.framer-1muy8x1, .framer-GmsOL .framer-ormbxm, .framer-GmsOL .framer-1xf8c4u, .framer-GmsOL .framer-du2aay, .framer-GmsOL .framer-1r6vvaw, .framer-GmsOL .framer-159g81o, .framer-GmsOL .framer-1jgtioa, .framer-GmsOL .framer-1c9epl6, .framer-GmsOL .framer-1ezuref, .framer-GmsOL .framer-1vzx1ml, .framer-GmsOL .framer-h5uq25, .framer-GmsOL .framer-10ahzkr, .framer-GmsOL .framer-1p9nkok, .framer-GmsOL .framer-1s2jsxg, .framer-GmsOL .framer-1yc1uh3 { gap: 0px; } .framer-GmsOL.framer-1muy8x1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GmsOL.framer-1muy8x1 > :first-child, .framer-GmsOL .framer-ormbxm > :first-child, .framer-GmsOL .framer-du2aay > :first-child, .framer-GmsOL .framer-159g81o > :first-child, .framer-GmsOL .framer-1ezuref > :first-child, .framer-GmsOL .framer-1p9nkok > :first-child { margin-top: 0px; } .framer-GmsOL.framer-1muy8x1 > :last-child, .framer-GmsOL .framer-ormbxm > :last-child, .framer-GmsOL .framer-du2aay > :last-child, .framer-GmsOL .framer-159g81o > :last-child, .framer-GmsOL .framer-1ezuref > :last-child, .framer-GmsOL .framer-1p9nkok > :last-child { margin-bottom: 0px; } .framer-GmsOL .framer-ormbxm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GmsOL .framer-1xf8c4u > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-GmsOL .framer-1xf8c4u > :first-child, .framer-GmsOL .framer-1r6vvaw > :first-child, .framer-GmsOL .framer-1jgtioa > :first-child, .framer-GmsOL .framer-1c9epl6 > :first-child, .framer-GmsOL .framer-1vzx1ml > :first-child, .framer-GmsOL .framer-h5uq25 > :first-child, .framer-GmsOL .framer-10ahzkr > :first-child, .framer-GmsOL .framer-1s2jsxg > :first-child, .framer-GmsOL .framer-1yc1uh3 > :first-child { margin-left: 0px; } .framer-GmsOL .framer-1xf8c4u > :last-child, .framer-GmsOL .framer-1r6vvaw > :last-child, .framer-GmsOL .framer-1jgtioa > :last-child, .framer-GmsOL .framer-1c9epl6 > :last-child, .framer-GmsOL .framer-1vzx1ml > :last-child, .framer-GmsOL .framer-h5uq25 > :last-child, .framer-GmsOL .framer-10ahzkr > :last-child, .framer-GmsOL .framer-1s2jsxg > :last-child, .framer-GmsOL .framer-1yc1uh3 > :last-child { margin-right: 0px; } .framer-GmsOL .framer-du2aay > *, .framer-GmsOL .framer-159g81o > *, .framer-GmsOL .framer-1ezuref > *, .framer-GmsOL .framer-1p9nkok > * { margin: 0px; margin-bottom: calc(10.800000190734863px / 2); margin-top: calc(10.800000190734863px / 2); } .framer-GmsOL .framer-1r6vvaw > *, .framer-GmsOL .framer-1c9epl6 > *, .framer-GmsOL .framer-h5uq25 > * { margin: 0px; margin-left: calc(7.200000286102295px / 2); margin-right: calc(7.200000286102295px / 2); } .framer-GmsOL .framer-1jgtioa > *, .framer-GmsOL .framer-1vzx1ml > *, .framer-GmsOL .framer-1s2jsxg > * { margin: 0px; margin-left: calc(10.800000190734863px / 2); margin-right: calc(10.800000190734863px / 2); } .framer-GmsOL .framer-10ahzkr > * { margin: 0px; margin-left: calc(14.40000057220459px / 2); margin-right: calc(14.40000057220459px / 2); } .framer-GmsOL .framer-1yc1uh3 > * { margin: 0px; margin-left: calc(3.6000001430511475px / 2); margin-right: calc(3.6000001430511475px / 2); } }\",\".framer-GmsOL.framer-v-x2wasd .framer-k8fcsn { order: 4; }\",\".framer-GmsOL.framer-v-x2wasd .framer-1klo0wr { order: 3; }\",\".framer-GmsOL.framer-v-x2wasd .framer-1c9epl6, .framer-GmsOL.framer-v-vryrt9 .framer-1c9epl6 { cursor: pointer; }\",\".framer-GmsOL.framer-v-x2wasd .framer-1ezuref { height: 152px; overflow: hidden; padding: 16px; right: 4px; top: calc(51.15207373271892% - 152px / 2); width: 276px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GmsOL.framer-v-x2wasd .framer-1ku0bs2, .framer-GmsOL.framer-v-n6wpl5 .framer-1ku0bs2, .framer-GmsOL.framer-v-149jnq .framer-1ku0bs2 { height: var(--framer-aspect-ratio-supported, 19px); }\",\".framer-GmsOL.framer-v-x2wasd .framer-1p9nkok { height: min-content; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-k8fcsn { order: 5; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-1drqg59, .framer-GmsOL.framer-v-1wy4vkt .framer-ywa8uu { height: var(--framer-aspect-ratio-supported, 16px); order: 0; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-1ezuref { top: 48%; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-1vzx1ml, .framer-GmsOL.framer-v-obhxpd .framer-1xf8c4u, .framer-GmsOL.framer-v-149jnq .framer-1xf8c4u, .framer-GmsOL.framer-v-1m4jouo .framer-1xf8c4u { order: 0; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-10ahzkr { order: 1; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-v9cofa, .framer-GmsOL.framer-v-1wy4vkt .framer-v9cofa, .framer-GmsOL.framer-v-1m4jouo .framer-v9cofa { order: 2; }\",\".framer-GmsOL.framer-v-vryrt9 .framer-21jtr1, .framer-GmsOL.framer-v-1m4jouo .framer-21jtr1 { height: var(--framer-aspect-ratio-supported, 16px); order: 1; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-ormbxm, .framer-GmsOL.framer-v-n6wpl5 .framer-ormbxm, .framer-GmsOL.framer-v-1wy4vkt .framer-ormbxm { width: 812px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-du2aay, .framer-GmsOL.framer-v-n6wpl5 .framer-du2aay, .framer-GmsOL.framer-v-1wy4vkt .framer-du2aay { left: 168px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-159g81o, .framer-GmsOL.framer-v-n6wpl5 .framer-159g81o, .framer-GmsOL.framer-v-1wy4vkt .framer-159g81o { right: 142px; width: min-content; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-1jgtioa, .framer-GmsOL.framer-v-n6wpl5 .framer-1jgtioa, .framer-GmsOL.framer-v-1wy4vkt .framer-1jgtioa, .framer-GmsOL.framer-v-obhxpd .framer-1jgtioa, .framer-GmsOL.framer-v-149jnq .framer-1jgtioa, .framer-GmsOL.framer-v-1m4jouo .framer-1jgtioa { width: 229px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-19hpneq, .framer-GmsOL.framer-v-n6wpl5 .framer-19hpneq, .framer-GmsOL.framer-v-1wy4vkt .framer-19hpneq, .framer-GmsOL.framer-v-obhxpd .framer-19hpneq, .framer-GmsOL.framer-v-149jnq .framer-19hpneq, .framer-GmsOL.framer-v-1m4jouo .framer-19hpneq { width: 245px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-1ezuref, .framer-GmsOL.framer-v-n6wpl5 .framer-1ezuref, .framer-GmsOL.framer-v-1wy4vkt .framer-1ezuref { right: 145px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-wt01q5, .framer-GmsOL.framer-v-n6wpl5 .framer-wt01q5, .framer-GmsOL.framer-v-1wy4vkt .framer-wt01q5 { right: 300px; width: 245px; }\",\".framer-GmsOL.framer-v-1xa7m5v .framer-1p9nkok, .framer-GmsOL.framer-v-1wy4vkt .framer-1p9nkok { right: 144px; }\",\".framer-GmsOL.framer-v-n6wpl5 .framer-1p9nkok { height: min-content; right: 144px; }\",\".framer-GmsOL.framer-v-1wy4vkt.framer-1muy8x1 { height: 537px; width: 812px; }\",\".framer-GmsOL.framer-v-1wy4vkt .framer-q9zb0e, .framer-GmsOL.framer-v-1m4jouo .framer-q9zb0e { height: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-GmsOL.framer-v-1wy4vkt .framer-kwfqyn { right: 419px; width: 134px; }\",\".framer-GmsOL.framer-v-obhxpd.framer-1muy8x1, .framer-GmsOL.framer-v-149jnq.framer-1muy8x1 { width: 390px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-ormbxm, .framer-GmsOL.framer-v-149jnq .framer-ormbxm, .framer-GmsOL.framer-v-1m4jouo .framer-ormbxm { gap: 20px; justify-content: flex-start; width: 394px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-ru9r1d, .framer-GmsOL.framer-v-149jnq .framer-ru9r1d, .framer-GmsOL.framer-v-1m4jouo .framer-ru9r1d { height: 695px; order: 1; width: 100%; }\",\".framer-GmsOL.framer-v-obhxpd .framer-du2aay, .framer-GmsOL.framer-v-149jnq .framer-du2aay, .framer-GmsOL.framer-v-1m4jouo .framer-du2aay { left: 50%; top: 1px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-159g81o, .framer-GmsOL.framer-v-149jnq .framer-159g81o, .framer-GmsOL.framer-v-1m4jouo .framer-159g81o { left: 50%; right: unset; top: 242px; width: min-content; }\",\".framer-GmsOL.framer-v-obhxpd .framer-6nhfp4, .framer-GmsOL.framer-v-149jnq .framer-6nhfp4, .framer-GmsOL.framer-v-1m4jouo .framer-6nhfp4 { left: calc(49.49238578680205% - 43px / 2); top: 181px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-f6egm5, .framer-GmsOL.framer-v-149jnq .framer-f6egm5, .framer-GmsOL.framer-v-1m4jouo .framer-f6egm5 { height: 30px; left: calc(49.23857868020306% - 18px / 2); top: 164px; width: 18px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-1ezuref, .framer-GmsOL.framer-v-1m4jouo .framer-1ezuref { left: 50%; right: unset; top: 410px; }\",\".framer-GmsOL.framer-v-obhxpd .framer-1p9nkok, .framer-GmsOL.framer-v-149jnq .framer-1p9nkok, .framer-GmsOL.framer-v-1m4jouo .framer-1p9nkok { bottom: unset; height: min-content; left: 50%; right: unset; top: 552px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GmsOL.framer-v-obhxpd .framer-ormbxm { gap: 0px; } .framer-GmsOL.framer-v-obhxpd .framer-ormbxm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GmsOL.framer-v-obhxpd .framer-ormbxm > :first-child { margin-top: 0px; } .framer-GmsOL.framer-v-obhxpd .framer-ormbxm > :last-child { margin-bottom: 0px; } }\",\".framer-GmsOL.framer-v-149jnq .framer-1ezuref { left: 50%; right: unset; top: 386px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GmsOL.framer-v-149jnq .framer-ormbxm { gap: 0px; } .framer-GmsOL.framer-v-149jnq .framer-ormbxm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GmsOL.framer-v-149jnq .framer-ormbxm > :first-child { margin-top: 0px; } .framer-GmsOL.framer-v-149jnq .framer-ormbxm > :last-child { margin-bottom: 0px; } }\",\".framer-GmsOL.framer-v-1m4jouo.framer-1muy8x1 { height: 763px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GmsOL.framer-v-1m4jouo .framer-ormbxm { gap: 0px; } .framer-GmsOL.framer-v-1m4jouo .framer-ormbxm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GmsOL.framer-v-1m4jouo .framer-ormbxm > :first-child { margin-top: 0px; } .framer-GmsOL.framer-v-1m4jouo .framer-ormbxm > :last-child { margin-bottom: 0px; } }\",'.framer-GmsOL[data-border=\"true\"]::after, .framer-GmsOL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 482\n * @framerIntrinsicWidth 1279\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qt4Ng4okj\":{\"layout\":[\"auto\",\"auto\"]},\"vW32wD9aD\":{\"layout\":[\"auto\",\"auto\"]},\"eIWepqmzq\":{\"layout\":[\"auto\",\"auto\"]},\"x6k1AHicn\":{\"layout\":[\"auto\",\"auto\"]},\"VevFNjzLo\":{\"layout\":[\"fixed\",\"fixed\"]},\"VKiFnmuLI\":{\"layout\":[\"fixed\",\"auto\"]},\"QOYZI0jDT\":{\"layout\":[\"fixed\",\"auto\"]},\"GjEB79u7o\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wYI60auFe\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriKSyf1By6=withCSS(Component,css,\"framer-GmsOL\");export default FrameriKSyf1By6;FrameriKSyf1By6.displayName=\"Demo?\";FrameriKSyf1By6.defaultProps={height:482,width:1279};addPropertyControls(FrameriKSyf1By6,{variant:{options:[\"GaxVm9ed4\",\"qt4Ng4okj\",\"vW32wD9aD\",\"eIWepqmzq\",\"x6k1AHicn\",\"VevFNjzLo\",\"VKiFnmuLI\",\"QOYZI0jDT\",\"GjEB79u7o\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 1 (Tablet)\",\"Variant 2 (Tablet)\",\"Variant 3 (Tablet)\",\"Variant 1 (Mobile)\",\"Variant 2 (Mobile)\",\"Variant 3 (Mobile)\"],title:\"Variant\",type:ControlType.Enum},wYI60auFe:{defaultValue:\"Notion cofounder @simonlast rarely does interviews.  In this first-ever podcast appearance, with @danshipper\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FrameriKSyf1By6,[{explicitInter:true,fonts:[{family:\"Karla\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqEUNLR7fHGw.woff2\",weight:\"500\"},{family:\"Karla\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqEUNLR7fHGw.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriKSyf1By6\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qt4Ng4okj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vW32wD9aD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eIWepqmzq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"x6k1AHicn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VevFNjzLo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VKiFnmuLI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QOYZI0jDT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GjEB79u7o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"wYI60auFe\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"482\",\"framerIntrinsicWidth\":\"1279\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iKSyf1By6.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function withHighlightColor(Component){return props=>{const[isVisible,setIsVisible]=useState(true);useEffect(()=>{const elements=document.querySelectorAll(`.${props.className} [style*=\"--framer-text-decoration\"]`);// Now, let's add a parent <mark> tag to the selected elements\nelements.forEach(element=>{element.style.removeProperty(\"--framer-text-decoration\");const markElement=document.createElement(\"mark\");const spanElement=document.createElement(\"span\");// Wrap the element with mark\nelement.parentNode.insertBefore(markElement,element);markElement.appendChild(element);// Wrap the content of the element with span\nwhile(element.firstChild){spanElement.appendChild(element.firstChild);}element.appendChild(spanElement);setIsVisible(true);});const handle=entries=>{entries.forEach(entry=>{const highlightedValue=entry.target.style.getPropertyValue(\"--highlighted\");if(!highlightedValue||parseInt(highlightedValue)===0){entry.target.style.setProperty(\"--highlighted\",\"1\");}});};const observer=new IntersectionObserver(handle,{threshold:1});elements.forEach(M=>observer.observe(M));},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n.${props.className} mark {\n--highlighted: 0;\n--highlight: rgba(239, 104, 6, 0.3);\nbackground: transparent;\n}\n\n.${props.className} mark span {\nbackground: linear-gradient(120deg, var(--highlight) 70%, transparent 50%) 110% 0 / 200% 100% no-repeat;\ntransition: background-position 1.5s ease;\ncolor: black;\nbackground-position: calc((1 - var(--highlighted)) * 300%) 0;\nfont-size: 60px;\n}\n`}),/*#__PURE__*/_jsx(Component,{...props})]});};}export function withHighlightColorStatic(Component){return props=>{return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n.${props.className} {\n--highlighted: 1;\n--highlight: rgba(239, 104, 6, 0.3);\nbackground: transparent;\n}\n\n.${props.className} {\nbackground: linear-gradient(120deg, var(--highlight) 70%, transparent 50%) 110% 0 / 200% 100% no-repeat;\ntransition: background-position 1.5s ease;\ncolor: black;\nbackground-position: calc((1 - var(--highlighted)) * 300%) 0;\nfont-size: 60px;\n}\n`}),/*#__PURE__*/_jsx(Component,{...props})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHighlightColor\":{\"type\":\"reactHoc\",\"name\":\"withHighlightColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHighlightColorStatic\":{\"type\":\"reactHoc\",\"name\":\"withHighlightColorStatic\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Highlight.map", "// Generated by Framer (b0164a3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHighlightColorStatic}from\"https://framerusercontent.com/modules/lnJtBHDoqmbbNKt0EoGj/9nABytFjnykYG61VdJjc/Text_Highlight.js\";const RichTextWithHighlightColorStatic=withHighlightColorStatic(RichText);const cycleOrder=[\"C6JjQNo4m\",\"yb6gwQup6\",\"f2j3zJl8o\"];const serializationHash=\"framer-IJ78I\";const variantClassNames={C6JjQNo4m:\"framer-v-1oinu14\",f2j3zJl8o:\"framer-v-1ewbbom\",yb6gwQup6:\"framer-v-wmaptu\"};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:30,delay:0,mass:1,stiffness:200,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 humanReadableVariantMap={\"Variant 1\":\"C6JjQNo4m\",\"Variant 2\":\"yb6gwQup6\",\"Variant 3\":\"f2j3zJl8o\"};const getProps=({height,id,textColor,textSize,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"beauty.\",c_FQD8pO8:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.c_FQD8pO8)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",dNmvBpuNV:(_ref2=textSize!==null&&textSize!==void 0?textSize:props.dNmvBpuNV)!==null&&_ref2!==void 0?_ref2:60,prRJoYo14:(_ref3=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref3!==void 0?_ref3:\"no-code tool.\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"C6JjQNo4m\",zLT7JXi3G:(_ref5=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref5!==void 0?_ref5:\"website builder.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,c_FQD8pO8,dNmvBpuNV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C6JjQNo4m\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1bi0dct=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yb6gwQup6\"),5e3);});const onAppear3aiwjm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"f2j3zJl8o\"),5e3);});const onAppear1x2796d=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"C6JjQNo4m\"),5e3);});useOnVariantChange(baseVariant,{default:onAppear1bi0dct,f2j3zJl8o:onAppear1x2796d,yb6gwQup6:onAppear3aiwjm});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oinu14\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"C6JjQNo4m\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({f2j3zJl8o:{\"data-framer-name\":\"Variant 3\"},yb6gwQup6:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithHighlightColorStatic,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-NDKlugeJK) * 1px)\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-NDKlugeJK))\"},children:\"no-code tool.\"})}),className:\"framer-jb8z8t\",\"data-framer-name\":\"Text-1\",fonts:[\"CUSTOM;Signifier Regular\"],layoutDependency:layoutDependency,layoutId:\"mSM7lb4oo\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-NDKlugeJK)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-NDKlugeJK\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-NDKlugeJK\":dNmvBpuNV,opacity:1},text:prRJoYo14,variants:{f2j3zJl8o:{opacity:0},yb6gwQup6:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithHighlightColorStatic,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-NDKlugeJK) * 1px)\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-NDKlugeJK))\"},children:\"website builder.\"})}),className:\"framer-io6yre\",\"data-framer-name\":\"Text-2\",fonts:[\"CUSTOM;Signifier Regular\"],layoutDependency:layoutDependency,layoutId:\"a7BzhfSiV\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-NDKlugeJK)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-NDKlugeJK\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-NDKlugeJK\":dNmvBpuNV,opacity:0},text:zLT7JXi3G,variants:{yb6gwQup6:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithHighlightColorStatic,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-NDKlugeJK) * 1px)\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-NDKlugeJK))\"},children:\"beauty.\"})}),className:\"framer-rvp0v8\",\"data-framer-name\":\"Text-3\",fonts:[\"CUSTOM;Signifier Regular\"],layoutDependency:layoutDependency,layoutId:\"o4E3_9nKl\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-NDKlugeJK)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-NDKlugeJK\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-NDKlugeJK\":dNmvBpuNV,opacity:0},text:alrWq3yGr,variants:{f2j3zJl8o:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IJ78I.framer-1p7rsoe, .framer-IJ78I .framer-1p7rsoe { display: block; }\",\".framer-IJ78I.framer-1oinu14 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IJ78I .framer-jb8z8t { flex: none; height: auto; overflow: visible; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-IJ78I .framer-io6yre { bottom: -84px; flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-IJ78I .framer-rvp0v8 { bottom: -168px; flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IJ78I.framer-1oinu14 { gap: 0px; } .framer-IJ78I.framer-1oinu14 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IJ78I.framer-1oinu14 > :first-child { margin-top: 0px; } .framer-IJ78I.framer-1oinu14 > :last-child { margin-bottom: 0px; } }\",\".framer-IJ78I.framer-v-wmaptu.framer-1oinu14, .framer-IJ78I.framer-v-1ewbbom.framer-1oinu14 { flex-direction: row; }\",\".framer-IJ78I.framer-v-wmaptu .framer-jb8z8t { left: 0px; position: absolute; top: -84px; z-index: 1; }\",\".framer-IJ78I.framer-v-wmaptu .framer-io6yre, .framer-IJ78I.framer-v-1ewbbom .framer-rvp0v8 { bottom: unset; left: unset; position: relative; }\",\".framer-IJ78I.framer-v-wmaptu .framer-rvp0v8 { bottom: -84px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IJ78I.framer-v-wmaptu.framer-1oinu14 { gap: 0px; } .framer-IJ78I.framer-v-wmaptu.framer-1oinu14 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IJ78I.framer-v-wmaptu.framer-1oinu14 > :first-child { margin-left: 0px; } .framer-IJ78I.framer-v-wmaptu.framer-1oinu14 > :last-child { margin-right: 0px; } }\",\".framer-IJ78I.framer-v-1ewbbom .framer-jb8z8t { left: 0px; position: absolute; top: -168px; z-index: 1; }\",\".framer-IJ78I.framer-v-1ewbbom .framer-io6yre { bottom: 84px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IJ78I.framer-v-1ewbbom.framer-1oinu14 { gap: 0px; } .framer-IJ78I.framer-v-1ewbbom.framer-1oinu14 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IJ78I.framer-v-1ewbbom.framer-1oinu14 > :first-child { margin-left: 0px; } .framer-IJ78I.framer-v-1ewbbom.framer-1oinu14 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 341\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yb6gwQup6\":{\"layout\":[\"auto\",\"auto\"]},\"f2j3zJl8o\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"c_FQD8pO8\":\"textColor\",\"dNmvBpuNV\":\"textSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNDKlugeJK=withCSS(Component,css,\"framer-IJ78I\");export default FramerNDKlugeJK;FramerNDKlugeJK.displayName=\"Words Bad\";FramerNDKlugeJK.defaultProps={height:84,width:341};addPropertyControls(FramerNDKlugeJK,{variant:{options:[\"C6JjQNo4m\",\"yb6gwQup6\",\"f2j3zJl8o\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"no-code tool.\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"website builder.\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"beauty.\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},c_FQD8pO8:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color},dNmvBpuNV:{defaultValue:60,title:\"Text Size\",type:ControlType.Number}});addFonts(FramerNDKlugeJK,[{explicitInter:true,fonts:[{family:\"Signifier Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/QllbPFDraXaAfh2RJJOobIblw.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNDKlugeJK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"341\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"c_FQD8pO8\\\":\\\"textColor\\\",\\\"dNmvBpuNV\\\":\\\"textSize\\\"}\",\"framerIntrinsicHeight\":\"84\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yb6gwQup6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f2j3zJl8o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NDKlugeJK.map", "// Generated by Framer (1b7c4bf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SenjaWidget from\"https://framerusercontent.com/modules/ckGZj3yYY0eOgQQMpSdE/5Mjqz6668K9OcUwBeWv2/SenjaWidget.js\";import PricingToggleMobile from\"#framer/local/canvasComponent/DkP3FZN1x/DkP3FZN1x.js\";import PricingToggleDesktopAndTablet from\"#framer/local/canvasComponent/fuNJMlyxs/fuNJMlyxs.js\";import Demo from\"#framer/local/canvasComponent/iKSyf1By6/iKSyf1By6.js\";import WordsBad from\"#framer/local/canvasComponent/NDKlugeJK/NDKlugeJK.js\";import LogoTicker from\"#framer/local/canvasComponent/oL_xYODxN/oL_xYODxN.js\";import Navigation from\"#framer/local/canvasComponent/sGT2sy2fT/sGT2sy2fT.js\";import Footer2 from\"#framer/local/canvasComponent/siUyJK0lg/siUyJK0lg.js\";import metadataProvider from\"#framer/local/webPageMetadata/MjBFC17AB/MjBFC17AB.js\";const NavigationFonts=getFonts(Navigation);const WordsBadFonts=getFonts(WordsBad);const DemoFonts=getFonts(Demo);const LogoTickerFonts=getFonts(LogoTicker);const SenjaWidgetFonts=getFonts(SenjaWidget);const PricingToggleMobileFonts=getFonts(PricingToggleMobile);const PricingToggleDesktopAndTabletFonts=getFonts(PricingToggleDesktopAndTablet);const Footer2Fonts=getFonts(Footer2);const breakpoints={ACeddsGc2:\"(max-width: 809px)\",GmKzM9kTf:\"(min-width: 1462px)\",ppqerd_uB:\"(min-width: 810px) and (max-width: 1461px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KIvrz\";const variantClassNames={ACeddsGc2:\"framer-v-ewrkca\",GmKzM9kTf:\"framer-v-a4fcm7\",ppqerd_uB:\"framer-v-ok6qyi\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"GmKzM9kTf\",Phone:\"ACeddsGc2\",Tablet:\"ppqerd_uB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GmKzM9kTf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ACeddsGc2\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ACeddsGc2\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GmKzM9kTf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-a4fcm7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x3z8p7-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{variant:\"gCefKU3jL\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"PA5ebon3M\",layoutId:\"PA5ebon3M\",style:{width:\"100%\"},variant:\"WD2slXXZv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kjm243\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0xvsh\",\"data-framer-name\":\"Content Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ury388\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-clxf95\",\"data-framer-name\":\"Text-Slider\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf3dqd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Turn one\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Turn one\"})}),className:\"framer-1ajm9jp\",fonts:[\"CUSTOM;Signifier Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:104,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rqkpuz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{dNmvBpuNV:45}},children:/*#__PURE__*/_jsx(WordsBad,{alrWq3yGr:\"video\",c_FQD8pO8:\"rgb(0, 0, 0)\",dNmvBpuNV:60,height:\"100%\",id:\"ljpKMcX6g\",layoutId:\"ljpKMcX6g\",prRJoYo14:\"podcast\",variant:\"C6JjQNo4m\",width:\"100%\",zLT7JXi3G:\"article\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:[\"into a month's\",/*#__PURE__*/_jsx(\"br\",{}),\"worth of\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"into a month's worth of\"})}),className:\"framer-eohu65\",fonts:[\"CUSTOM;Signifier Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{y:259},ppqerd_uB:{y:290}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j6gkw3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{dNmvBpuNV:45}},children:/*#__PURE__*/_jsx(WordsBad,{alrWq3yGr:\"X posts\",c_FQD8pO8:\"rgb(0, 0, 0)\",dNmvBpuNV:60,height:\"100%\",id:\"HBosN98HB\",layoutId:\"HBosN98HB\",prRJoYo14:\"LinkedIn posts\",variant:\"C6JjQNo4m\",width:\"100%\",zLT7JXi3G:\"email newsletters\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\"},children:\"Transform your videos, articles, and podcasts into bite-sized content that grows your audience while you sleep\"})}),className:\"framer-rc56fb\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{y:553},ppqerd_uB:{y:584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,y:490,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ud3y5f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{variant:\"VKiFnmuLI\"},ppqerd_uB:{variant:\"eIWepqmzq\"}},children:/*#__PURE__*/_jsx(Demo,{height:\"100%\",id:\"vuzTrzRtN\",layoutId:\"vuzTrzRtN\",variant:\"GaxVm9ed4\",width:\"100%\",wYI60auFe:\"Notion cofounder @simonlast rarely does interviews.  In this first-ever podcast appearance, with @danshipper\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39uu35\",\"data-framer-name\":\"Testimonial Preview\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpo948\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:['\"Spiral helps me do in ',/*#__PURE__*/_jsx(\"strong\",{children:\"1 day\"}),\" what used to take \",/*#__PURE__*/_jsx(\"strong\",{children:\"5 days\"}),'.\"']})}),className:\"framer-197sozt\",fonts:[\"FS;Karla-regular\",\"FS;Karla-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ah7y2f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mid3l0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Aodhan Moran\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1276),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Eizs4FviGoF1QzLSzbh9fLa4Y.jpg\"}},ppqerd_uB:{background:{alt:\"Aodhan Moran\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1307),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Eizs4FviGoF1QzLSzbh9fLa4Y.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Aodhan Moran\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1193),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Eizs4FviGoF1QzLSzbh9fLa4Y.jpg\"},className:\"framer-1iytgwn\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwdmze\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtbWVkaXVt\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\"},children:\"Aodh\\xe1n Moran\"})}),className:\"framer-bx856l\",fonts:[\"FS;Karla-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\"},children:\"Content Agency Owner\"})}),className:\"framer-1dtdwco\",fonts:[\"FS;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-moizrm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:['\"Spiral helps me ',/*#__PURE__*/_jsx(\"strong\",{children:\"repurpose content\"}),\" for different platforms while \",/*#__PURE__*/_jsx(\"strong\",{children:\"keeping my unique voice\"}),' \u2014making content creation faster, easier, and more efficient.\"']})}),className:\"framer-1fyu1mu\",fonts:[\"FS;Karla-regular\",\"FS;Karla-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gpi34u\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4th9r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Diana Stepner\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1602),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/qwfTrtRgVuQe4Gi8CCrfauzRMu8.jpeg\"}},ppqerd_uB:{background:{alt:\"Diana Stepner\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1633),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/qwfTrtRgVuQe4Gi8CCrfauzRMu8.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Diana Stepner\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1193),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/qwfTrtRgVuQe4Gi8CCrfauzRMu8.jpeg\"},className:\"framer-sky6ae\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m77hft\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtbWVkaXVt\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\"},children:\"Diana Stepner\"})}),className:\"framer-1fezxyw\",fonts:[\"FS;Karla-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\"},children:\"Coach\"})}),className:\"framer-z1txp8\",fonts:[\"FS;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qv8sba\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:['\"With Spiral, I can take a podcast transcript and ',/*#__PURE__*/_jsx(\"strong\",{children:\"quickly\"}),' get YouTube titles and summary notes.\"']}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:[\"\\\"We're \",/*#__PURE__*/_jsx(\"strong\",{children:\"big fans\"}),' of Spiral.\"']})]}),className:\"framer-q7gp7e\",fonts:[\"FS;Karla-regular\",\"FS;Karla-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrj4se\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftiog2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Soto Montero\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(2208),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/0ywslp9YybAT6F6pkvMDueliCo.jpeg\"}},ppqerd_uB:{background:{alt:\"Soto Montero\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(2239),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/0ywslp9YybAT6F6pkvMDueliCo.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Soto Montero\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(1193),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/0ywslp9YybAT6F6pkvMDueliCo.jpeg\"},className:\"framer-ctjitu\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l37cc5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtbWVkaXVt\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\"},children:\"Nate Kadlac\"})}),className:\"framer-ytnx45\",fonts:[\"FS;Karla-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\"},children:\"Co-founder of Hey Good Game\"})}),className:\"framer-6h2vq1\",fonts:[\"FS;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{y:2357},ppqerd_uB:{y:2388}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"1445px\",y:1342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-148f16d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{variant:\"Jh8WS4V2j\"},ppqerd_uB:{variant:\"hVUKfCvsn\"}},children:/*#__PURE__*/_jsx(LogoTicker,{height:\"100%\",id:\"TE6YFYDmZ\",layoutId:\"TE6YFYDmZ\",style:{width:\"100%\"},variant:\"qb1tV2VDv\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-koyzz3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[\"Repurposing content shouldn't be\",/*#__PURE__*/_jsx(\"br\",{}),\"a second full-time job\"]})}),className:\"framer-89u5w6\",fonts:[\"CUSTOM;Signifier Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4qaad\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0jm82\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Jewel Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(2847.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/YW8Kik37luTMWJZVhFaFOCFu1A.svg\"}},ppqerd_uB:{background:{alt:\"Jewel Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(2676.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/YW8Kik37luTMWJZVhFaFOCFu1A.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Jewel Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(1630.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/YW8Kik37luTMWJZVhFaFOCFu1A.svg\"},className:\"framer-xvyb9t\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-931pw2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"30px\"},children:\"Your best ideas die in long-form\"})}),className:\"framer-ed80yu\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"25px\"},children:\"Hours of valuable insights sit unseen, when they could be reaching new audiences daily.\"})}),className:\"framer-gau2ys\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-697h73\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Running Man Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(3241.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/wycPhqwpi9FqJZieiCCeSZFgfc.svg\"}},ppqerd_uB:{background:{alt:\"Running Man Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(2676.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/wycPhqwpi9FqJZieiCCeSZFgfc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Running Man Icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(1630.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/wycPhqwpi9FqJZieiCCeSZFgfc.svg\"},className:\"framer-1ys3x4e\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1cn7t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"30px\"},children:\"The endless content treadmill\"})}),className:\"framer-p4f1te\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"25px\"},children:\"Spend hours rewriting and reformatting the same ideas over and over, draining your creative energy.\"})}),className:\"framer-svb5g3\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1orgnju\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Coin Logo\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(3635.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/USvmGJQA7YY52aSwD02qgKeYk.svg\"}},ppqerd_uB:{background:{alt:\"Coin Logo\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(2676.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/USvmGJQA7YY52aSwD02qgKeYk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Coin Logo\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(1630.75),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/USvmGJQA7YY52aSwD02qgKeYk.svg\"},className:\"framer-p6arcw\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7pjv6q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"30px\"},children:\"The freelancer trap\"})}),className:\"framer-dp4nj8\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"25px\"},children:\"Spend hundreds on freelancers who never quite capture your voice, requiring endless revisions and delivering underwhelming results.\"})}),className:\"framer-16lpiol\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.8)\"},children:\"Give up hours of time or loads of money? You shouldn't have to.\"})}),className:\"framer-2caypu\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irzev\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[\"Grow your reach for less time \",/*#__PURE__*/_jsx(\"br\",{}),\"and less money\"]})}),className:\"framer-14a8ca6\",fonts:[\"CUSTOM;Signifier Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\"},children:\"Repurposing your content in your unique voice takes two minutes with Spiral.\"})}),className:\"framer-1kj1dpz\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hb0sv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8hpgyh\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13u5ari\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Example icon\",fit:\"fill\",intrinsicHeight:81,intrinsicWidth:80,loading:getLoadingLazyAtYPosition(4340.5),pixelHeight:81,pixelWidth:80,src:\"https://framerusercontent.com/images/M8megsmziAj4akDgU6MThyRLnw.png\"}},ppqerd_uB:{background:{alt:\"Example icon\",fit:\"fill\",intrinsicHeight:81,intrinsicWidth:80,loading:getLoadingLazyAtYPosition(3583.5),pixelHeight:81,pixelWidth:80,src:\"https://framerusercontent.com/images/M8megsmziAj4akDgU6MThyRLnw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Example icon\",fit:\"fill\",intrinsicHeight:81,intrinsicWidth:80,loading:getLoadingLazyAtYPosition(2406.5),pixelHeight:81,pixelWidth:80,src:\"https://framerusercontent.com/images/M8megsmziAj4akDgU6MThyRLnw.png\"},className:\"framer-bvesth\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"33px\"},children:\"Share your best content\"})}),className:\"framer-12g8ndl\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"33px\"},children:\"Feed us 3-5 examples of your highest-performing content. Like teaching a new team member, but only once.\"})}),className:\"framer-1bs06k6\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"image of Spiral\",fit:\"fill\",intrinsicHeight:713,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(4340.5),pixelHeight:713,pixelWidth:1184,sizes:\"max((min(100vw - 10px, (100vw - 10px) * 0.9) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png\",srcSet:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png 1184w\"}},ppqerd_uB:{background:{alt:\"image of Spiral\",fit:\"fill\",intrinsicHeight:713,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(3990.5),pixelHeight:713,pixelWidth:1184,sizes:\"calc(min(65vw, 690px) - 48px)\",src:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png\",srcSet:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png 1184w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"image of Spiral\",fit:\"fill\",intrinsicHeight:713,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(2406.5),pixelHeight:713,pixelWidth:1184,sizes:\"max((min(100vw, 1280px) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png\",srcSet:\"https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KOHEnZFLg7eQxWviB8BDpzBbAlM.png 1184w\"},className:\"framer-3getrz\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkrgsz\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8jn37\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Wand icon\",fit:\"fill\",intrinsicHeight:65,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(4797.5),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Ps5Na45IQEw6RFcDA8ZXq8Nx9zk.svg\"}},ppqerd_uB:{background:{alt:\"Wand icon\",fit:\"fill\",intrinsicHeight:65,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(4394.5),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Ps5Na45IQEw6RFcDA8ZXq8Nx9zk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Wand icon\",fit:\"fill\",intrinsicHeight:65,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(2863.5),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Ps5Na45IQEw6RFcDA8ZXq8Nx9zk.svg\"},className:\"framer-1mm8yz9\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"33px\"},children:\"Watch AI learn your voice\"})}),className:\"framer-rtjkau\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"33px\"},children:'Your unique voice, tone, and content patterns become a custom \"Spiral\"\u2014ready to transform any content you give it.'})}),className:\"framer-fqe5bu\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"image of Spiral extracting patterns\",fit:\"fill\",intrinsicHeight:815,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(4797.5),pixelHeight:815,pixelWidth:1184,sizes:\"max((min(100vw - 10px, (100vw - 10px) * 0.9) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png\",srcSet:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png 1184w\"}},ppqerd_uB:{background:{alt:\"image of Spiral extracting patterns\",fit:\"fill\",intrinsicHeight:815,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(4801.5),pixelHeight:815,pixelWidth:1184,sizes:\"calc(min(65vw, 690px) - 48px)\",src:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png\",srcSet:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png 1184w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"image of Spiral extracting patterns\",fit:\"fill\",intrinsicHeight:815,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(2863.5),pixelHeight:815,pixelWidth:1184,sizes:\"max((min(100vw, 1280px) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png\",srcSet:\"https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PzVmUuAHM3rBdKqjHR0sFQSlzE.png 1184w\"},className:\"framer-1oam9k5\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5fjbs\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q50dml\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"Spiral icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(5254.5),pixelHeight:27,pixelWidth:27,src:\"https://framerusercontent.com/images/KXP05ufCQCDY9R6RB8mWC7UYwvU.svg\"}},ppqerd_uB:{background:{alt:\"Spiral icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(5252.5),pixelHeight:27,pixelWidth:27,src:\"https://framerusercontent.com/images/KXP05ufCQCDY9R6RB8mWC7UYwvU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Spiral icon\",fit:\"fill\",intrinsicHeight:33,intrinsicWidth:32,loading:getLoadingLazyAtYPosition(3320.5),pixelHeight:27,pixelWidth:27,src:\"https://framerusercontent.com/images/KXP05ufCQCDY9R6RB8mWC7UYwvU.svg\"},className:\"framer-150n14d\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"33px\"},children:\"Multiply your content forever\"})}),className:\"framer-pc1dv1\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FybGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Karla\", \"Karla Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"33px\"},children:\"Upload any episode or article. Your Spiral turns it into posts that sound exactly like you, every single time.\"})}),className:\"framer-sigf5l\",fonts:[\"GF;Karla-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{background:{alt:\"image of a final Spiral running\",fit:\"fill\",intrinsicHeight:803,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(5254.5),pixelHeight:803,pixelWidth:1184,sizes:\"max((min(100vw - 10px, (100vw - 10px) * 0.9) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png\",srcSet:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=512 512w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png 1184w\"}},ppqerd_uB:{background:{alt:\"image of a final Spiral running\",fit:\"fill\",intrinsicHeight:803,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(5659.5),pixelHeight:803,pixelWidth:1184,sizes:\"calc(min(65vw, 690px) - 48px)\",src:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png\",srcSet:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=512 512w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png 1184w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"image of a final Spiral running\",fit:\"fill\",intrinsicHeight:803,intrinsicWidth:1184,loading:getLoadingLazyAtYPosition(3320.5),pixelHeight:803,pixelWidth:1184,sizes:\"max((min(100vw, 1280px) - 68px) / 2, 1px)\",src:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png\",srcSet:\"https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=512 512w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xfZ39njKXRctzeP3PR0HFvyHok.png 1184w\"},className:\"framer-155buxq\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksuiof\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2ZXJ5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Every Regular\", \"Every Regular Placeholder\", sans-serif'},children:\"W\"}),\"hat People Are Saying\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2ZXJ5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Every Regular\", \"Every Regular Placeholder\", sans-serif'},children:\"W\"}),\"hat People Are Saying\"]})}),className:\"framer-7mjl6p\",fonts:[\"CUSTOM;Signifier Regular\",\"CUSTOM;Every Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ra9jsc-container\",children:/*#__PURE__*/_jsx(SenjaWidget,{height:\"100%\",hideInEditor:false,id:\"FQhrZUjT3\",layoutId:\"FQhrZUjT3\",lazy:true,style:{width:\"100%\"},widgetUrl:\"https://widget.senja.io/widget/f6a70371-c2cc-43e3-bfaf-63afde6a4a4b\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{height:1184,y:5818.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvsa4r-container hidden-a4fcm7 hidden-ok6qyi\",children:/*#__PURE__*/_jsx(PricingToggleMobile,{fk0CP_Fik:\"center\",height:\"100%\",id:\"tmSGyhRb4\",layoutId:\"tmSGyhRb4\",variant:\"pDmJRdCtG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2ZXJ5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Every Regular\", \"Every Regular Placeholder\", sans-serif'},children:\"P\"}),\"ricing\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NpZ25pZmllciBSZWd1bGFy\",\"--framer-font-family\":'\"Signifier Regular\", \"Signifier Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"68.75px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2ZXJ5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Every Regular\", \"Every Regular Placeholder\", sans-serif'},children:\"P\"}),\"ricing\"]})}),className:\"framer-1ak9d5i\",fonts:[\"CUSTOM;Signifier Regular\",\"CUSTOM;Every Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ppqerd_uB:{y:6461}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:\"100vw\",y:4243,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19yj9ls-container hidden-ewrkca\",children:/*#__PURE__*/_jsx(PricingToggleDesktopAndTablet,{fk0CP_Fik:\"center\",height:\"100%\",id:\"E3lJVt3dy\",layoutId:\"E3lJVt3dy\",style:{width:\"100%\"},variant:\"lIpCkc2vP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACeddsGc2:{width:\"calc(100vw - 10px)\",y:7403},ppqerd_uB:{y:7256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:\"100vw\",y:5038,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fpe4xg-container\",children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"l6TDQS7SX\",layoutId:\"l6TDQS7SX\",style:{width:\"100%\"},variant:\"vfYenHdc1\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(240, 240, 240); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KIvrz.framer-vlrcup, .framer-KIvrz .framer-vlrcup { display: block; }\",\".framer-KIvrz.framer-a4fcm7 { align-content: center; align-items: center; background-color: #f0f0f0; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1462px; }\",\".framer-KIvrz .framer-x3z8p7-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-KIvrz .framer-kjm243 { flex: none; height: 62px; overflow: hidden; position: relative; width: 100%; }\",\".framer-KIvrz .framer-j0xvsh { 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 0px 0px 5px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-ury388, .framer-KIvrz .framer-koyzz3, .framer-KIvrz .framer-931pw2, .framer-KIvrz .framer-1s1cn7t, .framer-KIvrz .framer-7pjv6q, .framer-KIvrz .framer-irzev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-clxf95 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1158px; }\",\".framer-KIvrz .framer-rf3dqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KIvrz .framer-1ajm9jp, .framer-KIvrz .framer-eohu65 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KIvrz .framer-1rqkpuz-container, .framer-KIvrz .framer-j6gkw3-container, .framer-KIvrz .framer-1ud3y5f-container, .framer-KIvrz .framer-1kvsa4r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KIvrz .framer-rc56fb, .framer-KIvrz .framer-1kj1dpz { -webkit-user-select: auto; flex: none; height: auto; max-width: 711.6px; pointer-events: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-39uu35 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 286px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-hpo948, .framer-KIvrz .framer-moizrm, .framer-KIvrz .framer-qv8sba { align-content: center; align-items: center; background-color: #f7f7f7; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 400px; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KIvrz .framer-197sozt { -webkit-user-select: auto; flex: none; height: auto; pointer-events: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-1ah7y2f, .framer-KIvrz .framer-gpi34u, .framer-KIvrz .framer-1jrj4se { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-KIvrz .framer-mid3l0, .framer-KIvrz .framer-1y4th9r, .framer-KIvrz .framer-1ftiog2 { background-color: #000000; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 48px; overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KIvrz .framer-1iytgwn, .framer-KIvrz .framer-sky6ae, .framer-KIvrz .framer-ctjitu { aspect-ratio: 1 / 1; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-KIvrz .framer-iwdmze, .framer-KIvrz .framer-m77hft, .framer-KIvrz .framer-l37cc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KIvrz .framer-bx856l, .framer-KIvrz .framer-1fezxyw, .framer-KIvrz .framer-ytnx45 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-KIvrz .framer-1dtdwco { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-1fyu1mu, .framer-KIvrz .framer-q7gp7e { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-z1txp8 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 124px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-6h2vq1 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 234px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-148f16d-container { flex: none; height: auto; position: relative; width: 1445px; }\",\".framer-KIvrz .framer-89u5w6 { flex: none; height: auto; pointer-events: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-1n4qaad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 253px; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-t0jm82, .framer-KIvrz .framer-697h73, .framer-KIvrz .framer-1orgnju { --border-bottom-width: 1px; --border-color: var(--token-2587e63e-ed3c-4c00-9e7e-a98d197e14a7, #d8d8d8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-5df7a7b9-21fd-4c31-84f7-e456fd0b1f17, #f4f4f4); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KIvrz .framer-xvyb9t, .framer-KIvrz .framer-1ys3x4e, .framer-KIvrz .framer-p6arcw, .framer-KIvrz .framer-150n14d { aspect-ratio: 0.9696969696969697 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 32px; }\",\".framer-KIvrz .framer-ed80yu, .framer-KIvrz .framer-gau2ys, .framer-KIvrz .framer-p4f1te, .framer-KIvrz .framer-svb5g3, .framer-KIvrz .framer-dp4nj8, .framer-KIvrz .framer-16lpiol, .framer-KIvrz .framer-14a8ca6, .framer-KIvrz .framer-12g8ndl, .framer-KIvrz .framer-1bs06k6, .framer-KIvrz .framer-rtjkau, .framer-KIvrz .framer-fqe5bu, .framer-KIvrz .framer-7mjl6p, .framer-KIvrz .framer-1ak9d5i { -webkit-user-select: auto; flex: none; height: auto; pointer-events: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-2caypu { -webkit-user-select: auto; flex: none; height: auto; max-width: 722.6px; pointer-events: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-5hb0sv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-8hpgyh, .framer-KIvrz .framer-pkrgsz { --border-bottom-width: 1px; --border-color: #d8d8d8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f4f4f4; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-13u5ari, .framer-KIvrz .framer-k8jn37, .framer-KIvrz .framer-q50dml { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KIvrz .framer-bvesth { aspect-ratio: 0.9876543209876543 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 32px; }\",\".framer-KIvrz .framer-3getrz { aspect-ratio: 1.6605890603085554 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 8px 8px 40px 0px rgba(192, 192, 192, 0.25); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 365px); position: relative; width: 1px; }\",\".framer-KIvrz .framer-1mm8yz9 { aspect-ratio: 0.9846153846153847 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 32px; }\",\".framer-KIvrz .framer-1oam9k5 { aspect-ratio: 1.452760736196319 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 8px 8px 40px 0px rgba(192, 192, 192, 0.25); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 417px); position: relative; width: 1px; }\",\".framer-KIvrz .framer-y5fjbs { --border-bottom-width: 1px; --border-color: #d8d8d8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(135deg, #f4f4f4 0%, rgb(254, 226, 205) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-pc1dv1, .framer-KIvrz .framer-sigf5l { -webkit-user-select: auto; flex: none; height: auto; pointer-events: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-KIvrz .framer-155buxq { aspect-ratio: 1.4744707347447072 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 8px 8px 40px 0px rgba(192, 192, 192, 0.25); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 411px); position: relative; width: 1px; }\",\".framer-KIvrz .framer-ksuiof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KIvrz .framer-1ra9jsc-container, .framer-KIvrz .framer-19yj9ls-container, .framer-KIvrz .framer-fpe4xg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KIvrz.framer-a4fcm7, .framer-KIvrz .framer-j0xvsh, .framer-KIvrz .framer-ury388, .framer-KIvrz .framer-clxf95, .framer-KIvrz .framer-rf3dqd, .framer-KIvrz .framer-39uu35, .framer-KIvrz .framer-1ah7y2f, .framer-KIvrz .framer-iwdmze, .framer-KIvrz .framer-gpi34u, .framer-KIvrz .framer-m77hft, .framer-KIvrz .framer-1jrj4se, .framer-KIvrz .framer-l37cc5, .framer-KIvrz .framer-koyzz3, .framer-KIvrz .framer-1n4qaad, .framer-KIvrz .framer-t0jm82, .framer-KIvrz .framer-931pw2, .framer-KIvrz .framer-697h73, .framer-KIvrz .framer-1s1cn7t, .framer-KIvrz .framer-1orgnju, .framer-KIvrz .framer-7pjv6q, .framer-KIvrz .framer-irzev, .framer-KIvrz .framer-5hb0sv, .framer-KIvrz .framer-8hpgyh, .framer-KIvrz .framer-13u5ari, .framer-KIvrz .framer-pkrgsz, .framer-KIvrz .framer-k8jn37, .framer-KIvrz .framer-y5fjbs, .framer-KIvrz .framer-q50dml, .framer-KIvrz .framer-ksuiof { gap: 0px; } .framer-KIvrz.framer-a4fcm7 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-KIvrz.framer-a4fcm7 > :first-child, .framer-KIvrz .framer-j0xvsh > :first-child, .framer-KIvrz .framer-ury388 > :first-child, .framer-KIvrz .framer-iwdmze > :first-child, .framer-KIvrz .framer-m77hft > :first-child, .framer-KIvrz .framer-l37cc5 > :first-child, .framer-KIvrz .framer-koyzz3 > :first-child, .framer-KIvrz .framer-t0jm82 > :first-child, .framer-KIvrz .framer-931pw2 > :first-child, .framer-KIvrz .framer-697h73 > :first-child, .framer-KIvrz .framer-1s1cn7t > :first-child, .framer-KIvrz .framer-1orgnju > :first-child, .framer-KIvrz .framer-7pjv6q > :first-child, .framer-KIvrz .framer-irzev > :first-child, .framer-KIvrz .framer-5hb0sv > :first-child, .framer-KIvrz .framer-13u5ari > :first-child, .framer-KIvrz .framer-k8jn37 > :first-child, .framer-KIvrz .framer-q50dml > :first-child, .framer-KIvrz .framer-ksuiof > :first-child { margin-top: 0px; } .framer-KIvrz.framer-a4fcm7 > :last-child, .framer-KIvrz .framer-j0xvsh > :last-child, .framer-KIvrz .framer-ury388 > :last-child, .framer-KIvrz .framer-iwdmze > :last-child, .framer-KIvrz .framer-m77hft > :last-child, .framer-KIvrz .framer-l37cc5 > :last-child, .framer-KIvrz .framer-koyzz3 > :last-child, .framer-KIvrz .framer-t0jm82 > :last-child, .framer-KIvrz .framer-931pw2 > :last-child, .framer-KIvrz .framer-697h73 > :last-child, .framer-KIvrz .framer-1s1cn7t > :last-child, .framer-KIvrz .framer-1orgnju > :last-child, .framer-KIvrz .framer-7pjv6q > :last-child, .framer-KIvrz .framer-irzev > :last-child, .framer-KIvrz .framer-5hb0sv > :last-child, .framer-KIvrz .framer-13u5ari > :last-child, .framer-KIvrz .framer-k8jn37 > :last-child, .framer-KIvrz .framer-q50dml > :last-child, .framer-KIvrz .framer-ksuiof > :last-child { margin-bottom: 0px; } .framer-KIvrz .framer-j0xvsh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KIvrz .framer-ury388 > *, .framer-KIvrz .framer-koyzz3 > *, .framer-KIvrz .framer-931pw2 > *, .framer-KIvrz .framer-1s1cn7t > *, .framer-KIvrz .framer-7pjv6q > *, .framer-KIvrz .framer-irzev > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KIvrz .framer-clxf95 > *, .framer-KIvrz .framer-rf3dqd > *, .framer-KIvrz .framer-1ah7y2f > *, .framer-KIvrz .framer-gpi34u > *, .framer-KIvrz .framer-1jrj4se > *, .framer-KIvrz .framer-1n4qaad > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KIvrz .framer-clxf95 > :first-child, .framer-KIvrz .framer-rf3dqd > :first-child, .framer-KIvrz .framer-39uu35 > :first-child, .framer-KIvrz .framer-1ah7y2f > :first-child, .framer-KIvrz .framer-gpi34u > :first-child, .framer-KIvrz .framer-1jrj4se > :first-child, .framer-KIvrz .framer-1n4qaad > :first-child, .framer-KIvrz .framer-8hpgyh > :first-child, .framer-KIvrz .framer-pkrgsz > :first-child, .framer-KIvrz .framer-y5fjbs > :first-child { margin-left: 0px; } .framer-KIvrz .framer-clxf95 > :last-child, .framer-KIvrz .framer-rf3dqd > :last-child, .framer-KIvrz .framer-39uu35 > :last-child, .framer-KIvrz .framer-1ah7y2f > :last-child, .framer-KIvrz .framer-gpi34u > :last-child, .framer-KIvrz .framer-1jrj4se > :last-child, .framer-KIvrz .framer-1n4qaad > :last-child, .framer-KIvrz .framer-8hpgyh > :last-child, .framer-KIvrz .framer-pkrgsz > :last-child, .framer-KIvrz .framer-y5fjbs > :last-child { margin-right: 0px; } .framer-KIvrz .framer-39uu35 > *, .framer-KIvrz .framer-8hpgyh > *, .framer-KIvrz .framer-pkrgsz > *, .framer-KIvrz .framer-y5fjbs > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-KIvrz .framer-iwdmze > *, .framer-KIvrz .framer-m77hft > *, .framer-KIvrz .framer-l37cc5 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-KIvrz .framer-t0jm82 > *, .framer-KIvrz .framer-697h73 > *, .framer-KIvrz .framer-1orgnju > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KIvrz .framer-5hb0sv > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-KIvrz .framer-13u5ari > *, .framer-KIvrz .framer-k8jn37 > *, .framer-KIvrz .framer-q50dml > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-KIvrz .framer-ksuiof > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",'.framer-KIvrz[data-border=\"true\"]::after, .framer-KIvrz [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: 1461px) { .framer-KIvrz.framer-a4fcm7 { width: 810px; } .framer-KIvrz .framer-clxf95 { flex-direction: column; width: 476px; } .framer-KIvrz .framer-rf3dqd, .framer-KIvrz .framer-pc1dv1, .framer-KIvrz .framer-sigf5l { width: 100%; } .framer-KIvrz .framer-39uu35 { flex-direction: column; height: min-content; } .framer-KIvrz .framer-hpo948, .framer-KIvrz .framer-moizrm, .framer-KIvrz .framer-qv8sba { gap: 0px; height: min-content; justify-content: center; } .framer-KIvrz .framer-1n4qaad { height: min-content; max-width: 90%; } .framer-KIvrz .framer-t0jm82 { height: min-content; } .framer-KIvrz .framer-697h73, .framer-KIvrz .framer-1orgnju { align-self: stretch; height: auto; } .framer-KIvrz .framer-5hb0sv { gap: 24px; max-width: 65%; } .framer-KIvrz .framer-8hpgyh, .framer-KIvrz .framer-pkrgsz, .framer-KIvrz .framer-y5fjbs { flex-direction: column; max-width: 690px; } .framer-KIvrz .framer-13u5ari, .framer-KIvrz .framer-k8jn37, .framer-KIvrz .framer-q50dml { flex: none; width: 100%; } .framer-KIvrz .framer-3getrz { flex: none; height: var(--framer-aspect-ratio-supported, 288px); width: 100%; } .framer-KIvrz .framer-1oam9k5 { flex: none; height: var(--framer-aspect-ratio-supported, 330px); width: 100%; } .framer-KIvrz .framer-155buxq { aspect-ratio: unset; flex: none; height: 266px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KIvrz .framer-clxf95, .framer-KIvrz .framer-39uu35, .framer-KIvrz .framer-hpo948, .framer-KIvrz .framer-moizrm, .framer-KIvrz .framer-qv8sba, .framer-KIvrz .framer-5hb0sv, .framer-KIvrz .framer-8hpgyh, .framer-KIvrz .framer-pkrgsz, .framer-KIvrz .framer-y5fjbs { gap: 0px; } .framer-KIvrz .framer-clxf95 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KIvrz .framer-clxf95 > :first-child, .framer-KIvrz .framer-39uu35 > :first-child, .framer-KIvrz .framer-hpo948 > :first-child, .framer-KIvrz .framer-moizrm > :first-child, .framer-KIvrz .framer-qv8sba > :first-child, .framer-KIvrz .framer-5hb0sv > :first-child, .framer-KIvrz .framer-8hpgyh > :first-child, .framer-KIvrz .framer-pkrgsz > :first-child, .framer-KIvrz .framer-y5fjbs > :first-child { margin-top: 0px; } .framer-KIvrz .framer-clxf95 > :last-child, .framer-KIvrz .framer-39uu35 > :last-child, .framer-KIvrz .framer-hpo948 > :last-child, .framer-KIvrz .framer-moizrm > :last-child, .framer-KIvrz .framer-qv8sba > :last-child, .framer-KIvrz .framer-5hb0sv > :last-child, .framer-KIvrz .framer-8hpgyh > :last-child, .framer-KIvrz .framer-pkrgsz > :last-child, .framer-KIvrz .framer-y5fjbs > :last-child { margin-bottom: 0px; } .framer-KIvrz .framer-39uu35 > *, .framer-KIvrz .framer-8hpgyh > *, .framer-KIvrz .framer-pkrgsz > *, .framer-KIvrz .framer-y5fjbs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KIvrz .framer-hpo948 > *, .framer-KIvrz .framer-moizrm > *, .framer-KIvrz .framer-qv8sba > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KIvrz .framer-5hb0sv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-KIvrz.framer-a4fcm7 { padding: 0px 5px 0px 5px; width: 390px; } .framer-KIvrz .framer-x3z8p7-container { order: 0; } .framer-KIvrz .framer-kjm243 { order: 1; } .framer-KIvrz .framer-j0xvsh { order: 2; padding: 0px; } .framer-KIvrz .framer-clxf95 { flex-direction: column; gap: 0px; width: 370px; } .framer-KIvrz .framer-1ud3y5f-container { order: 3; } .framer-KIvrz .framer-39uu35 { flex-direction: column; height: min-content; order: 4; } .framer-KIvrz .framer-hpo948, .framer-KIvrz .framer-moizrm, .framer-KIvrz .framer-qv8sba { gap: 0px; height: min-content; justify-content: center; } .framer-KIvrz .framer-148f16d-container { order: 5; } .framer-KIvrz .framer-koyzz3 { order: 6; } .framer-KIvrz .framer-1n4qaad { flex-direction: column; height: min-content; max-width: 90%; order: 8; } .framer-KIvrz .framer-t0jm82, .framer-KIvrz .framer-697h73, .framer-KIvrz .framer-1orgnju { flex: none; height: min-content; width: 100%; } .framer-KIvrz .framer-2caypu { order: 7; } .framer-KIvrz .framer-irzev { order: 9; } .framer-KIvrz .framer-5hb0sv { max-width: 90%; order: 10; } .framer-KIvrz .framer-3getrz { height: var(--framer-aspect-ratio-supported, 83px); } .framer-KIvrz .framer-1oam9k5 { height: var(--framer-aspect-ratio-supported, 94px); } .framer-KIvrz .framer-155buxq { height: var(--framer-aspect-ratio-supported, 93px); } .framer-KIvrz .framer-ksuiof { order: 14; } .framer-KIvrz .framer-1kvsa4r-container { order: 12; } .framer-KIvrz .framer-1ak9d5i { order: 11; } .framer-KIvrz .framer-fpe4xg-container { order: 15; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KIvrz .framer-clxf95, .framer-KIvrz .framer-39uu35, .framer-KIvrz .framer-hpo948, .framer-KIvrz .framer-moizrm, .framer-KIvrz .framer-qv8sba, .framer-KIvrz .framer-1n4qaad { gap: 0px; } .framer-KIvrz .framer-clxf95 > *, .framer-KIvrz .framer-hpo948 > *, .framer-KIvrz .framer-moizrm > *, .framer-KIvrz .framer-qv8sba > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KIvrz .framer-clxf95 > :first-child, .framer-KIvrz .framer-39uu35 > :first-child, .framer-KIvrz .framer-hpo948 > :first-child, .framer-KIvrz .framer-moizrm > :first-child, .framer-KIvrz .framer-qv8sba > :first-child, .framer-KIvrz .framer-1n4qaad > :first-child { margin-top: 0px; } .framer-KIvrz .framer-clxf95 > :last-child, .framer-KIvrz .framer-39uu35 > :last-child, .framer-KIvrz .framer-hpo948 > :last-child, .framer-KIvrz .framer-moizrm > :last-child, .framer-KIvrz .framer-qv8sba > :last-child, .framer-KIvrz .framer-1n4qaad > :last-child { margin-bottom: 0px; } .framer-KIvrz .framer-39uu35 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KIvrz .framer-1n4qaad > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6079\n * @framerIntrinsicWidth 1462\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ppqerd_uB\":{\"layout\":[\"fixed\",\"auto\"]},\"ACeddsGc2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMjBFC17AB=withCSS(Component,css,\"framer-KIvrz\");export default FramerMjBFC17AB;FramerMjBFC17AB.displayName=\"Home\";FramerMjBFC17AB.defaultProps={height:6079,width:1462};addFonts(FramerMjBFC17AB,[{explicitInter:true,fonts:[{family:\"Signifier Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/QllbPFDraXaAfh2RJJOobIblw.woff2\"},{family:\"Karla\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqEUNLR7fHGw.woff2\",weight:\"400\"},{family:\"Karla\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WYQR63HYLSFXANVDXEVDIUCR5ZA4BMBT/BHK7NVIOUFBRSAWSZITEB3JNGWKZPMNF/GQPINB4H2DFPHIUPYCAOCNG2YFF6OWN5.woff2\",weight:\"400\"},{family:\"Karla\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HP3Q3DMPSSAWKCMUNQEU756AST7WMOBI/APROKPT76FFBPLZDYGFTPTOR7MFVRF2C/CQM2FQLMCGDGQUOUKBFNHXOME4UHHUZ2.woff2\",weight:\"700\"},{family:\"Karla\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6MOEMOPFWU4AQQNFYM2JTAQ5OE5CO7B6/JYWT7H2OZGXL2AV26YXBDIFRRKMGZCZU/DLEJBHKWR5LWHNNHXWFCN6IAQUO5LLH6.woff2\",weight:\"500\"},{family:\"Every Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ck2WBm6KFtbAiyPt4dyiJqEdqI.woff2\"}]},...NavigationFonts,...WordsBadFonts,...DemoFonts,...LogoTickerFonts,...SenjaWidgetFonts,...PricingToggleMobileFonts,...PricingToggleDesktopAndTabletFonts,...Footer2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMjBFC17AB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6079\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ppqerd_uB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ACeddsGc2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1462\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SenjaWidget", "props", "className", "lazy", "id", "RenderTarget", "p", "regex", "match", "builderUrl", "mounted", "setMounted", "ye", "useDidMountEffect", "ue", "script", "l", "addPropertyControls", "ControlType", "func", "deps", "didMount", "pe", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "withLogs", "Component", "props", "key", "setKey", "ye", "ue", "oldValue", "p", "withPostHogClick", "Component", "props", "p", "window", "MotionAWithPostHogClick", "withPostHogClick", "motion", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "RichTextWithLogs", "withLogs", "MotionDivWithFXWithOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "animation1", "animation2", "transition3", "textEffect", "textEffect1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wYI60auFe", "VZTzjXpzF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1x9geg1", "args", "onAppear14xyby8", "onAppear19tkd0b", "onAppearuuh9d5", "onAppear115ckbj", "onAppeargm4v1k", "onAppearanaf6m", "onAppear1ml1ial", "onAppear74bioj", "onTapq1apwv", "onTap1wt0knp", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FrameriKSyf1By6", "withCSS", "iKSyf1By6_default", "addPropertyControls", "ControlType", "addFonts", "withHighlightColorStatic", "Component", "props", "u", "l", "p", "RichTextWithHighlightColorStatic", "withHighlightColorStatic", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "textColor", "textSize", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "c_FQD8pO8", "dNmvBpuNV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1bi0dct", "args", "onAppear3aiwjm", "onAppear1x2796d", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "css", "FramerNDKlugeJK", "withCSS", "NDKlugeJK_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "sGT2sy2fT_default", "WordsBadFonts", "NDKlugeJK_default", "DemoFonts", "iKSyf1By6_default", "LogoTickerFonts", "oL_xYODxN_default", "SenjaWidgetFonts", "SenjaWidget", "PricingToggleMobileFonts", "DkP3FZN1x_default", "PricingToggleDesktopAndTabletFonts", "fuNJMlyxs_default", "Footer2Fonts", "siUyJK0lg_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "css", "FramerMjBFC17AB", "withCSS", "MjBFC17AB_default", "addFonts", "__FramerMetadata__"]
}
