{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/6w9KfoizCoGhvKiyKyhf/m54BLrmhkNOZ5TsEUqQ9/Tidr3SSrd.js", "ssg:https://framerusercontent.com/modules/kuvPK0iOdGHQ1IS74CZ7/BS8HBpEXsWG4KWPIs9bl/xlsmCfJFZ.js", "ssg:https://framerusercontent.com/modules/1NsFlxBGq6aK2GlQXnkR/ZOQEE938JD57i9b8N5D7/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/g4FX2gPhBc03p5Jljzcb/P1E3yWzWWNde5X6DPu21/X8O1xHOHQ.js\";const enabledGestures={sJe9DIsWd:{hover:true}};const cycleOrder=[\"sJe9DIsWd\",\"xxOtl6_0d\"];const serializationHash=\"framer-3Fv12\";const variantClassNames={sJe9DIsWd:\"framer-v-1y1aa1q\",xxOtl6_0d:\"framer-v-3zl6dv\"};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 transitions={default:{delay:0,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"}};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 2\":\"xxOtl6_0d\",Button:\"sJe9DIsWd\"};const getProps=({height,icon,id,link,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,hbXOpzUo_:icon!==null&&icon!==void 0?icon:props.hbXOpzUo_,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"sJe9DIsWd\",ZiJninaK7:(_ref1=title!==null&&title!==void 0?title:props.ZiJninaK7)!==null&&_ref1!==void 0?_ref1:\"Join Early Access\",ZkIF1QTBx:link!==null&&link!==void 0?link:props.ZkIF1QTBx};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZiJninaK7,ZkIF1QTBx,hbXOpzUo_,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"sJe9DIsWd\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(hbXOpzUo_);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:ZkIF1QTBx,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1y1aa1q\",className,classNames)} framer-8quzrs`,\"data-framer-name\":\"Button\",initial:variant,layoutDependency:layoutDependency,layoutId:\"sJe9DIsWd\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(24px)\",backgroundColor:\"rgba(5, 4, 31, 0.3)\",borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,boxShadow:\"inset 0px -1px 6px 0px rgba(255, 255, 255, 0.1599999964237213), inset 0px 1px 6px 0px rgba(255, 255, 255, 0.1599999964237213)\",WebkitBackdropFilter:\"blur(24px)\",...style},variants:{\"sJe9DIsWd-hover\":{backgroundColor:\"rgba(5, 4, 31, 0)\",boxShadow:\"inset 0px -2px 14px 0px rgba(255, 255, 255, 0.1599999964237213), inset 0px 1px 14px 0px rgba(255, 255, 255, 0.1599999964237213)\"}},...addPropertyOverrides({\"sJe9DIsWd-hover\":{\"data-framer-name\":undefined},xxOtl6_0d:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:16,intrinsicWidth:16,pixelHeight:16,pixelWidth:16,sizes:\"20px\",...toResponsiveImage(hbXOpzUo_),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-bqaabe\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"WpiSugKTx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13wf0ez\",\"data-styles-preset\":\"X8O1xHOHQ\",children:\"Buy Template\"})}),className:\"framer-17s9rom\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"sy9p9ULUs\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ZiJninaK7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hvn3pb\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"sVFNK5YPR\",style:{backgroundColor:\"rgba(255, 255, 255, 0.02)\"}})]})})})});});const css=['.framer-3Fv12[data-border=\"true\"]::after, .framer-3Fv12 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Fv12.framer-8quzrs, .framer-3Fv12 .framer-8quzrs { display: block; }\",\".framer-3Fv12.framer-1y1aa1q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3Fv12 .framer-bqaabe { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-3Fv12 .framer-17s9rom { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-3Fv12 .framer-1hvn3pb { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Fv12.framer-1y1aa1q { gap: 0px; } .framer-3Fv12.framer-1y1aa1q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3Fv12.framer-1y1aa1q > :first-child { margin-left: 0px; } .framer-3Fv12.framer-1y1aa1q > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 165.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xxOtl6_0d\":{\"layout\":[\"auto\",\"auto\"]},\"hlXjA5JEm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZiJninaK7\":\"title\",\"ZkIF1QTBx\":\"link\",\"hbXOpzUo_\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerTidr3SSrd=withCSS(Component,css,\"framer-3Fv12\");export default FramerTidr3SSrd;FramerTidr3SSrd.displayName=\"Button / Buy Button\";FramerTidr3SSrd.defaultProps={height:48,width:165.5};addPropertyControls(FramerTidr3SSrd,{variant:{options:[\"sJe9DIsWd\",\"xxOtl6_0d\"],optionTitles:[\"Button\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ZiJninaK7:{defaultValue:\"Join Early Access\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZkIF1QTBx:{title:\"Link\",type:ControlType.Link},hbXOpzUo_:{title:\"Icon\",type:ControlType.ResponsiveImage}});addFonts(FramerTidr3SSrd,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTidr3SSrd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xxOtl6_0d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hlXjA5JEm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZiJninaK7\\\":\\\"title\\\",\\\"ZkIF1QTBx\\\":\\\"link\\\",\\\"hbXOpzUo_\\\":\\\"icon\\\"}\",\"framerIntrinsicWidth\":\"165.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tidr3SSrd.map", "// Generated by Framer (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-zbnMY .framer-styles-preset-8ziw0c:not(.rich-text-wrapper), .framer-zbnMY .framer-styles-preset-8ziw0c.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #64aad9; --framer-link-text-decoration: none; }\"];export const className=\"framer-zbnMY\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import SectionCTA from\"#framer/local/canvasComponent/FhdHJmiBJ/FhdHJmiBJ.js\";import Navigation from\"#framer/local/canvasComponent/PwQSTmZGm/PwQSTmZGm.js\";import ButtonBuyButton from\"#framer/local/canvasComponent/Tidr3SSrd/Tidr3SSrd.js\";import SectionFooter from\"#framer/local/canvasComponent/xK8W4KYP_/xK8W4KYP_.js\";import*as sharedStyle from\"#framer/local/css/BnFldrK7h/BnFldrK7h.js\";import*as sharedStyle5 from\"#framer/local/css/CMfVGQvjr/CMfVGQvjr.js\";import*as sharedStyle2 from\"#framer/local/css/efJYFuOnS/efJYFuOnS.js\";import*as sharedStyle7 from\"#framer/local/css/fFflGRbMV/fFflGRbMV.js\";import*as sharedStyle6 from\"#framer/local/css/KOlXy2UN_/KOlXy2UN_.js\";import*as sharedStyle3 from\"#framer/local/css/OYAe4dfhe/OYAe4dfhe.js\";import*as sharedStyle1 from\"#framer/local/css/Qzp7Go1DF/Qzp7Go1DF.js\";import*as sharedStyle4 from\"#framer/local/css/v53kSaCJt/v53kSaCJt.js\";import*as sharedStyle9 from\"#framer/local/css/X8O1xHOHQ/X8O1xHOHQ.js\";import*as sharedStyle8 from\"#framer/local/css/xlsmCfJFZ/xlsmCfJFZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonBuyButtonFonts=getFonts(ButtonBuyButton);const EmbedFonts=getFonts(Embed);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionCTAFonts=getFonts(SectionCTA);const ContainerWithFX=withFX(Container);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={MNwtckj6q:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",ZSSz3oloN:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8fjUE\";const variantClassNames={MNwtckj6q:\"framer-v-go7wpp\",WQLkyLRf1:\"framer-v-72rtr7\",ZSSz3oloN:\"framer-v-1qxia31\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.2,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-16};const animation3={opacity:.001,rotate:-6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:16,y:0};const transition2={delay:.4,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:1,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-32,y:32};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={delay:.4,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};const transition6={delay:0,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"MNwtckj6q\",Tablet:\"ZSSz3oloN\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-8fjUE`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-8fjUE`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"MNwtckj6q\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"MNwtckj6q\")return true;return false;};const elementId=useRouteElementId(\"wDT4mWetW\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"KsssX4IcS\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{layoutScroll:true},ZSSz3oloN:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{animate:animation,className:\"framer-1au2qmy-container\",\"data-framer-appear-id\":\"1au2qmy\",initial:animation1,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{variant:\"jpuEzN8vA\"},ZSSz3oloN:{variant:\"jpuEzN8vA\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"NFhOqbhGR\",layoutId:\"NFhOqbhGR\",style:{width:\"100%\"},variant:\"cxVkx9mEm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84d8ix\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gq4a8k\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whiesp\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-129qpnb\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9rapo\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6yh6d\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Write Code,\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"var(--token-5c86871d-e642-4c26-bc49-cf7bd6318a92, rgb(255, 255, 255))\"},children:\"Write Code,\"})}),className:\"framer-i675px\",\"data-framer-appear-id\":\"i675px\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation2,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:[\"Visually Design \",/*#__PURE__*/_jsx(\"br\",{}),\"Architecture\"]})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Visually Design Architecture\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Visually Design Architecture\"})}),className:\"framer-180l653\",\"data-framer-appear-id\":\"180l653\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:[\"Talking about complex engineering designs is hard, communicating them is harder. \",/*#__PURE__*/_jsx(\"br\",{}),\"Metz takes care of it all, and lets you express that complexity using code.\"]})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"Talking about complex engineering designs is hard, communicating them is harder. \",/*#__PURE__*/_jsx(\"br\",{}),\"Metz takes care of it all, and lets you express that complexity using code.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p3g3lb\",\"data-styles-preset\":\"OYAe4dfhe\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Talking about complex engineering designs is hard, communicating them is harder. \",/*#__PURE__*/_jsx(\"br\",{}),\"Metz takes care of it all, and lets you express that complexity using code.\"]})}),className:\"framer-k26blq\",\"data-framer-appear-id\":\"k26blq\",\"data-framer-name\":\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",fonts:[\"Inter\"],initial:animation5,name:\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14anwyk-container\",children:/*#__PURE__*/_jsx(ButtonBuyButton,{height:\"100%\",id:\"FIY0ZEfAL\",layoutId:\"FIY0ZEfAL\",variant:\"sJe9DIsWd\",width:\"100%\",ZiJninaK7:\"Try in Playground\",ZkIF1QTBx:\"https://try.metz.sh\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7tzrge\",\"data-framer-name\":\"Dashboard\",name:\"Dashboard\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pgj48s-container hidden-go7wpp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"LAM6LXzoO\",layoutId:\"LAM6LXzoO\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://app.metz.sh/template/5\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgeh2a-container hidden-72rtr7 hidden-1qxia31\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"nqXwBhYv6\",isMixedBorderRadius:false,layoutId:\"nqXwBhYv6\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/EYANXeeBbbL6vhG4zRwWF39d9sQ.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ox7shy\",\"data-framer-name\":\"Background\",name:\"Background\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:104,intrinsicWidth:300,pixelHeight:104,pixelWidth:300,sizes:\"155.8974vw\",src:\"https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg 9366w\"}},ZSSz3oloN:{style:{transformPerspective:1131}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:104,intrinsicWidth:300,pixelHeight:104,pixelWidth:300,sizes:\"123.6667vw\",src:\"https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/syY09Yp0hNPObnG3HfhqjFeHw8.svg 9366w\"},className:\"framer-2qff3j\",\"data-framer-name\":\"Pattern\",name:\"Pattern\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-117ygne\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2yfz4q\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhcqs8\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-81sfgr\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:480,intrinsicWidth:824,pixelHeight:1088,pixelWidth:2112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8bKbgXJ4m40oyBZR5Aw9aF1xhc.png\"},className:\"framer-12e4u3b\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tcoi0x\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r20wzz\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-o62ou4\",\"data-styles-preset\":\"KOlXy2UN_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Code only what matters\"})}),className:\"framer-5mh76m\",\"data-framer-name\":\"Customizable Integrations\",fonts:[\"Inter\"],name:\"Customizable Integrations\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",style:{\"--framer-text-alignment\":\"left\"},children:\"There are two things that set apart metz. Firstly, there's no DSL, only standard typescript. Secondly, you write code only to solve your design problem.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Mets lets you think of systems in terms of code. You don\u2019t need to worry about how and where to place a box, you need to think how your design should work.\"})]})},ZSSz3oloN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",style:{\"--framer-text-alignment\":\"left\"},children:\"There are two things that set apart metz. Firstly, there's no DSL, only standard typescript. Secondly, you write code only to solve your design problem.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Mets lets you think of systems in terms of code. You don\u2019t need to worry about how and where to place a box, you need to think how your design should work.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"There are two things that set apart metz. Firstly, there's no DSL, only standard typescript. Secondly, you write code only to solve your design problem.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"Mets lets you think of systems in terms of code. You don\u2019t need to worry about how and where to place a box, you need to think how your design should work.\"})]}),className:\"framer-1vhn2q2\",\"data-framer-name\":\"We understand that every business has unique needs and existing software ecosystems. Our SaaS website provides customizable integration options, allowing you to tailor the connections between our platform and your preferred tools. This flexibility ensures a smooth integration experience and a unified workflow that aligns with your specific requirements.\",fonts:[\"Inter\"],name:\"We understand that every business has unique needs and existing software ecosystems. Our SaaS website provides customizable integration options, allowing you to tailor the connections between our platform and your preferred tools. This flexibility ensures a smooth integration experience and a unified workflow that aligns with your specific requirements.\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c10czw\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3y470z\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4vi93\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-o62ou4\",\"data-styles-preset\":\"KOlXy2UN_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Write once, show anyone\"})}),className:\"framer-1otb37n\",\"data-framer-name\":\"Customizable Integrations\",fonts:[\"Inter\"],name:\"Customizable Integrations\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"No need to re-create smaller diagrams just to hide details, simply change the resolution in metz!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"This makes your work truly accessible. Your audience controls how much information they want.\"})]}),className:\"framer-jnupvz\",\"data-framer-name\":\"We understand that every business has unique needs and existing software ecosystems. Our SaaS website provides customizable integration options, allowing you to tailor the connections between our platform and your preferred tools. This flexibility ensures a smooth integration experience and a unified workflow that aligns with your specific requirements.\",fonts:[\"Inter\"],name:\"We understand that every business has unique needs and existing software ecosystems. Our SaaS website provides customizable integration options, allowing you to tailor the connections between our platform and your preferred tools. This flexibility ensures a smooth integration experience and a unified workflow that aligns with your specific requirements.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qs54pp-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"SuDKZslt6\",isMixedBorderRadius:false,layoutId:\"SuDKZslt6\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/B4Tjw3SbS1Aqsp04v8ZluX5BpM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i940gj\",\"data-framer-name\":\"Pattern\",name:\"Pattern\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1it9eke\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:857,intrinsicWidth:860,name:\"Vector\",svg:'<svg width=\"860\" height=\"857\" viewBox=\"-1 -1 860 857\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M228.571 399.267H171.429V456.192H228.571V399.267Z\" fill=\"url(#paint0_radial_2922_25632)\" fill-opacity=\"0.06\"/>\\n<path d=\"M457.143 228.493H400V285.418H457.143V228.493Z\" fill=\"url(#paint1_radial_2922_25632)\" fill-opacity=\"0.06\"/>\\n<path d=\"M400 570.042H342.857V626.966H400V570.042Z\" fill=\"url(#paint2_radial_2922_25632)\" fill-opacity=\"0.06\"/>\\n<path d=\"M628.571 456.192H571.429V513.117H628.571V456.192Z\" fill=\"url(#paint3_radial_2922_25632)\" fill-opacity=\"0.06\"/>\\n<path d=\"M457.143 399.267H400V456.192H457.143V399.267Z\" fill=\"url(#paint4_radial_2922_25632)\" fill-opacity=\"0.06\"/>\\n<path d=\"M57.1429 0.793945H0V57.7187M57.1429 0.793945V57.7187M57.1429 0.793945H114.286M57.1429 57.7187H0M57.1429 57.7187H114.286M57.1429 57.7187V114.643M0 57.7187V114.643M114.286 0.793945V57.7187M114.286 0.793945H171.429M114.286 57.7187H171.429M114.286 57.7187V114.643M171.429 0.793945V57.7187M171.429 0.793945H228.571M171.429 57.7187H228.571M171.429 57.7187V114.643M228.571 0.793945V57.7187M228.571 0.793945H285.714M228.571 57.7187H285.714M228.571 57.7187V114.643M285.714 0.793945V57.7187M285.714 0.793945H342.857M285.714 57.7187H342.857M285.714 57.7187V114.643M342.857 0.793945V57.7187M342.857 0.793945H400M342.857 57.7187H400M342.857 57.7187V114.643M400 0.793945V57.7187M400 0.793945H457.143M400 57.7187H457.143M400 57.7187V114.643M457.143 0.793945V57.7187M457.143 0.793945H514.286M457.143 57.7187H514.286M457.143 57.7187V114.643M514.286 0.793945V57.7187M514.286 0.793945H571.429M514.286 57.7187H571.429M514.286 57.7187V114.643M571.429 0.793945V57.7187M571.429 0.793945H628.571M571.429 57.7187H628.571M571.429 57.7187V114.643M628.571 0.793945V57.7187M628.571 0.793945H685.714M628.571 57.7187H685.714M628.571 57.7187V114.643M685.714 0.793945V57.7187M685.714 0.793945H742.857M685.714 57.7187H742.857M685.714 57.7187V114.643M742.857 0.793945V57.7187M742.857 0.793945H800M742.857 57.7187H800M742.857 57.7187V114.643M800 0.793945V57.7187M800 0.793945H857.143V57.7187M800 57.7187H857.143M800 57.7187V114.643M857.143 57.7187V114.643M57.1429 114.643H0M57.1429 114.643H114.286M57.1429 114.643V171.568M0 114.643V171.568M114.286 114.643H171.429M114.286 114.643V171.568M171.429 114.643H228.571M171.429 114.643V171.568M228.571 114.643H285.714M228.571 114.643V171.568M285.714 114.643H342.857M285.714 114.643V171.568M342.857 114.643H400M342.857 114.643V171.568M400 114.643H457.143M400 114.643V171.568M457.143 114.643H514.286M457.143 114.643V171.568M514.286 114.643H571.429M514.286 114.643V171.568M571.429 114.643H628.571M571.429 114.643V171.568M628.571 114.643H685.714M628.571 114.643V171.568M685.714 114.643H742.857M685.714 114.643V171.568M742.857 114.643H800M742.857 114.643V171.568M800 114.643H857.143M800 114.643V171.568M857.143 114.643V171.568M57.1429 171.568H0M57.1429 171.568H114.286M57.1429 171.568V228.493M0 171.568V228.493M114.286 171.568H171.429M114.286 171.568V228.493M171.429 171.568H228.571M171.429 171.568V228.493M228.571 171.568H285.714M228.571 171.568V228.493M285.714 171.568H342.857M285.714 171.568V228.493M342.857 171.568H400M342.857 171.568V228.493M400 171.568H457.143M400 171.568V228.493M457.143 171.568H514.286M457.143 171.568V228.493M514.286 171.568H571.429M514.286 171.568V228.493M571.429 171.568H628.571M571.429 171.568V228.493M628.571 171.568H685.714M628.571 171.568V228.493M685.714 171.568H742.857M685.714 171.568V228.493M742.857 171.568H800M742.857 171.568V228.493M800 171.568H857.143M800 171.568V228.493M857.143 171.568V228.493M57.1429 228.493H0M57.1429 228.493H114.286M57.1429 228.493V285.418M0 228.493V285.418M114.286 228.493H171.429M114.286 228.493V285.418M171.429 228.493H228.571M171.429 228.493V285.418M228.571 228.493H285.714M228.571 228.493V285.418M285.714 228.493H342.857M285.714 228.493V285.418M342.857 228.493H400M342.857 228.493V285.418M400 228.493H457.143M400 228.493V285.418M457.143 228.493H514.286M457.143 228.493V285.418M514.286 228.493H571.429M514.286 228.493V285.418M571.429 228.493H628.571M571.429 228.493V285.418M628.571 228.493H685.714M628.571 228.493V285.418M685.714 228.493H742.857M685.714 228.493V285.418M742.857 228.493H800M742.857 228.493V285.418M800 228.493H857.143M800 228.493V285.418M857.143 228.493V285.418M57.1429 285.418H0M57.1429 285.418H114.286M57.1429 285.418V342.343M0 285.418V342.343M114.286 285.418H171.429M114.286 285.418V342.343M171.429 285.418H228.571M171.429 285.418V342.343M228.571 285.418H285.714M228.571 285.418V342.343M285.714 285.418H342.857M285.714 285.418V342.343M342.857 285.418H400M342.857 285.418V342.343M400 285.418H457.143M400 285.418V342.343M457.143 285.418H514.286M457.143 285.418C457.143 285.418 457.143 320.112 457.143 342.343M514.286 285.418H571.429M514.286 285.418V342.343M571.429 285.418H628.571M571.429 285.418V342.343M628.571 285.418H685.714M628.571 285.418V342.343M685.714 285.418H742.857M685.714 285.418V342.343M742.857 285.418H800M742.857 285.418V342.343M800 285.418H857.143M800 285.418V342.343M857.143 285.418V342.343M57.1429 342.343H0M57.1429 342.343H114.286M57.1429 342.343V399.267M0 342.343V399.267M114.286 342.343H171.429M114.286 342.343V399.267M171.429 342.343H228.571M171.429 342.343V399.267M228.571 342.343H285.714M228.571 342.343V399.267M285.714 342.343H342.857M285.714 342.343V399.267M342.857 342.343H400M342.857 342.343C342.857 342.343 342.857 377.037 342.857 399.267M400 342.343C400 342.343 434.827 342.343 457.143 342.343M400 342.343C400 342.343 400 377.037 400 399.267M457.143 342.343C479.459 342.343 514.286 342.343 514.286 342.343M457.143 342.343C457.143 364.573 457.143 399.267 457.143 399.267M514.286 342.343H571.429M514.286 342.343V399.267M571.429 342.343H628.571M571.429 342.343V399.267M628.571 342.343H685.714M628.571 342.343V399.267M685.714 342.343H742.857M685.714 342.343V399.267M742.857 342.343H800M742.857 342.343V399.267M800 342.343H857.143M800 342.343V399.267M857.143 342.343V399.267M57.1429 399.267H0M57.1429 399.267H114.286M57.1429 399.267V456.192M0 399.267V456.192M114.286 399.267H171.429M114.286 399.267V456.192M171.429 399.267H228.571M171.429 399.267V456.192M228.571 399.267C250.887 399.267 263.399 399.267 285.714 399.267M228.571 399.267V456.192M285.714 399.267C285.714 399.267 320.541 399.267 342.857 399.267M285.714 399.267V456.192M342.857 399.267C365.173 399.267 377.684 399.267 400 399.267M342.857 399.267C342.857 421.498 342.857 433.962 342.857 456.192M342.857 399.267C342.857 399.267 377.684 399.267 400 399.267M342.857 399.267V456.192M342.857 399.267H400M400 399.267C422.316 399.267 457.143 399.267 457.143 399.267M400 399.267C400 421.498 400 456.192 400 456.192M400 399.267V456.192M400 399.267H457.143M457.143 399.267H514.286M457.143 399.267C457.143 399.267 457.143 433.962 457.143 456.192M457.143 399.267V456.192M514.286 399.267H571.429M514.286 399.267V456.192M571.429 399.267H628.571M571.429 399.267V456.192M628.571 399.267H685.714M628.571 399.267V456.192M685.714 399.267H742.857M685.714 399.267V456.192M742.857 399.267H800M742.857 399.267V456.192M800 399.267H857.143M800 399.267V456.192M857.143 399.267V456.192M57.1429 456.192H0M57.1429 456.192H114.286M57.1429 456.192V513.117M0 456.192V513.117M114.286 456.192H171.429M114.286 456.192V513.117M171.429 456.192H228.571M171.429 456.192V513.117M228.571 456.192H285.714M228.571 456.192V513.117M285.714 456.192C285.714 456.192 320.541 456.192 342.857 456.192M285.714 456.192V513.117M342.857 456.192C365.173 456.192 400 456.192 400 456.192M342.857 456.192C342.857 478.423 342.857 513.117 342.857 513.117M342.857 456.192H400M400 456.192C400 456.192 434.827 456.192 457.143 456.192M400 456.192V513.117M400 456.192H457.143M457.143 456.192C479.459 456.192 514.286 456.192 514.286 456.192M457.143 456.192C457.143 478.423 457.143 513.117 457.143 513.117M514.286 456.192H571.429M514.286 456.192V513.117M571.429 456.192H628.571M571.429 456.192V513.117M628.571 456.192H685.714M628.571 456.192V513.117M685.714 456.192H742.857M685.714 456.192V513.117M742.857 456.192H800M742.857 456.192V513.117M800 456.192H857.143M800 456.192V513.117M857.143 456.192V513.117M57.1429 513.117H0M57.1429 513.117H114.286M57.1429 513.117V570.042M0 513.117V570.042M114.286 513.117H171.429M114.286 513.117V570.042M171.429 513.117H228.571M171.429 513.117V570.042M228.571 513.117H285.714M228.571 513.117V570.042M285.714 513.117H342.857M285.714 513.117V570.042M342.857 513.117H400M342.857 513.117V570.042M400 513.117H457.143M400 513.117V570.042M457.143 513.117H514.286M457.143 513.117V570.042M514.286 513.117H571.429M514.286 513.117V570.042M571.429 513.117H628.571M571.429 513.117V570.042M628.571 513.117H685.714M628.571 513.117V570.042M685.714 513.117H742.857M685.714 513.117V570.042M742.857 513.117H800M742.857 513.117V570.042M800 513.117H857.143M800 513.117V570.042M857.143 513.117V570.042M57.1429 570.042H0M57.1429 570.042H114.286M57.1429 570.042V626.966M0 570.042V626.966M114.286 570.042H171.429M114.286 570.042V626.966M171.429 570.042H228.571M171.429 570.042V626.966M228.571 570.042H285.714M228.571 570.042V626.966M285.714 570.042H342.857M285.714 570.042V626.966M342.857 570.042H400M342.857 570.042V626.966M400 570.042H457.143M400 570.042V626.966M457.143 570.042H514.286M457.143 570.042V626.966M514.286 570.042H571.429M514.286 570.042V626.966M571.429 570.042H628.571M571.429 570.042V626.966M628.571 570.042H685.714M628.571 570.042V626.966M685.714 570.042H742.857M685.714 570.042V626.966M742.857 570.042H800M742.857 570.042V626.966M800 570.042H857.143M800 570.042V626.966M857.143 570.042V626.966M57.1429 626.966H0M57.1429 626.966H114.286M57.1429 626.966V683.891M0 626.966V683.891M114.286 626.966H171.429M114.286 626.966V683.891M171.429 626.966H228.571M171.429 626.966V683.891M228.571 626.966H285.714M228.571 626.966V683.891M285.714 626.966H342.857M285.714 626.966V683.891M342.857 626.966H400M342.857 626.966V683.891M400 626.966H457.143M400 626.966V683.891M457.143 626.966H514.286M457.143 626.966V683.891M514.286 626.966H571.429M514.286 626.966V683.891M571.429 626.966H628.571M571.429 626.966V683.891M628.571 626.966H685.714M628.571 626.966V683.891M685.714 626.966H742.857M685.714 626.966V683.891M742.857 626.966H800M742.857 626.966V683.891M800 626.966H857.143M800 626.966V683.891M857.143 626.966V683.891M57.1429 683.891H0M57.1429 683.891H114.286M57.1429 683.891V740.816M0 683.891V740.816M114.286 683.891H171.429M114.286 683.891V740.816M171.429 683.891H228.571M171.429 683.891V740.816M228.571 683.891H285.714M228.571 683.891V740.816M285.714 683.891H342.857M285.714 683.891V740.816M342.857 683.891H400M342.857 683.891V740.816M400 683.891H457.143M400 683.891V740.816M457.143 683.891H514.286M457.143 683.891V740.816M514.286 683.891H571.429M514.286 683.891V740.816M571.429 683.891H628.571M571.429 683.891V740.816M628.571 683.891H685.714M628.571 683.891V740.816M685.714 683.891H742.857M685.714 683.891V740.816M742.857 683.891H800M742.857 683.891V740.816M800 683.891H857.143M800 683.891V740.816M857.143 683.891V740.816M57.1429 740.816H0M57.1429 740.816H114.286M57.1429 740.816V797.741M0 740.816V797.741M114.286 740.816H171.429M114.286 740.816V797.741M171.429 740.816H228.571M171.429 740.816V797.741M228.571 740.816H285.714M228.571 740.816V797.741M285.714 740.816H342.857M285.714 740.816V797.741M342.857 740.816H400M342.857 740.816V797.741M400 740.816H457.143M400 740.816V797.741M457.143 740.816H514.286M457.143 740.816V797.741M514.286 740.816H571.429M514.286 740.816V797.741M571.429 740.816H628.571M571.429 740.816V797.741M628.571 740.816H685.714M628.571 740.816V797.741M685.714 740.816H742.857M685.714 740.816V797.741M742.857 740.816H800M742.857 740.816V797.741M800 740.816H857.143M800 740.816V797.741M857.143 740.816V797.741M57.1429 797.741H0M57.1429 797.741H114.286M57.1429 797.741V854.665M0 797.741V854.665H57.1429M114.286 797.741H171.429M114.286 797.741V854.665M171.429 797.741H228.571M171.429 797.741V854.665M228.571 797.741H285.714M228.571 797.741V854.665M285.714 797.741H342.857M285.714 797.741V854.665M342.857 797.741H400M342.857 797.741V854.665M400 797.741H457.143M400 797.741V854.665M457.143 797.741H514.286M457.143 797.741V854.665M514.286 797.741H571.429M514.286 797.741V854.665M571.429 797.741H628.571M571.429 797.741V854.665M628.571 797.741H685.714M628.571 797.741V854.665M685.714 797.741H742.857M685.714 797.741V854.665M742.857 797.741H800M742.857 797.741V854.665M800 797.741H857.143M800 797.741V854.665M857.143 797.741V854.665H800M57.1429 854.665H114.286M114.286 854.665H171.429M171.429 854.665H228.571M228.571 854.665H285.714M285.714 854.665H342.857M342.857 854.665H400M400 854.665H457.143M457.143 854.665H514.286M514.286 854.665H571.429M571.429 854.665H628.571M628.571 854.665H685.714M685.714 854.665H742.857M742.857 854.665H800\" stroke=\"url(#paint5_radial_2922_25632)\" stroke-opacity=\"0.2\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(201 457.544) rotate(90.71) scale(40.3485 73.4649)\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"#05041F\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(429 286.2) rotate(90) scale(42.8359 77.9939)\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"#05041F\"/>\\n</radialGradient>\\n<radialGradient id=\"paint2_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(371.5 625.899) rotate(92.078) scale(41.3688 75.3219)\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"#05041F\"/>\\n</radialGradient>\\n<radialGradient id=\"paint3_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(601.5 513.828) rotate(90.7101) scale(40.3485 73.4649)\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#05041F\"/>\\n</radialGradient>\\n<radialGradient id=\"paint4_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(429 456.548) rotate(90) scale(43.8321 79.8077)\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#05041F\"/>\\n</radialGradient>\\n<radialGradient id=\"paint5_radial_2922_25632\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(429 428.157) rotate(90) scale(302.342 303.5)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsk049\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbzgtc\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n2j6y1\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-104p2x0\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ep601\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Run your Design\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"var(--token-5c86871d-e642-4c26-bc49-cf7bd6318a92, rgb(255, 255, 255))\"},children:\"Run your Design\"})}),className:\"framer-1960yk6\",\"data-framer-appear-id\":\"1960yk6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation2,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-cwi9qj\",\"data-styles-preset\":\"fFflGRbMV\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"as Temporal State-Machines\"})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-o62ou4\",\"data-styles-preset\":\"KOlXy2UN_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"as Temporal State-Machines\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"as Temporal State-Machines\"})}),className:\"framer-18bipth\",\"data-framer-appear-id\":\"18bipth\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"Metz comes bundled with a compiler and a runtime. The compiler converts your code into state machines. While the runtime ticks and manages their transitions, essentially simulating time.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"Which means you can express all those hard to talk about scenarios, concurrent writes, phantom reads and more. And your audience can just run your design, understanding the details by themselves.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"Metz comes bundled with a compiler and a runtime. The compiler converts your code into state machines.\",/*#__PURE__*/_jsx(\"br\",{}),\"While the runtime ticks and manages their transitions, essentially simulating time.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"Which means you can express all those hard to talk about scenarios, concurrent writes, phantom reads and more.\",/*#__PURE__*/_jsx(\"br\",{}),\"And your audience can just run your design, understanding the details by themselves.\"]})]}),className:\"framer-1ckjx18\",\"data-framer-appear-id\":\"1ckjx18\",\"data-framer-name\":\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",fonts:[\"Inter\"],initial:animation5,name:\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qm6xz7-container\",children:/*#__PURE__*/_jsx(ButtonBuyButton,{height:\"100%\",id:\"WUjLTMWDe\",layoutId:\"WUjLTMWDe\",variant:\"sJe9DIsWd\",width:\"100%\",ZiJninaK7:\"Check out the Internals\",ZkIF1QTBx:\"https://docs.metz.sh/runtime\"})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-152oalt-container hidden-go7wpp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"xNkmkW9De\",layoutId:\"xNkmkW9De\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://app.metz.sh/play/63d9e36899774fb8bf663be1346d4e8e?minimal=true\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 1200px)\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"},className:\"framer-1j8vnpa hidden-72rtr7 hidden-1qxia31\",\"data-border\":true,\"data-framer-appear-id\":\"1j8vnpa\",\"data-framer-name\":\"Card\",initial:animation13,name:\"Card\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuepzi\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-cwi9qj\",\"data-styles-preset\":\"fFflGRbMV\",children:\"Import Components\"})}),className:\"framer-xx7e5n hidden-go7wpp\",\"data-framer-name\":\"Multi-Language Support\",fonts:[\"Inter\"],name:\"Multi-Language Support\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendar.google.com/calendar/u/0/r/eventedit?text=Build+interactive+diagrams+using+code&details=Write+simple+typescript+to+visualise+complex+flows.+Link:+https://metz.sh\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-8ziw0c\",\"data-styles-preset\":\"xlsmCfJFZ\",children:\"You seem to be on mobile. Add a calendar invite to check it out later.\"})})})}),className:\"framer-pozlaj\",\"data-framer-name\":\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",fonts:[\"Inter\"],name:\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XKg61sYzr0CdthPGxrNufAtCB4.png\"},className:\"framer-693mz5 hidden-go7wpp\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",name:\"Icon Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13wf0ez\",\"data-styles-preset\":\"X8O1xHOHQ\",style:{\"--framer-text-color\":\"rgb(207, 58, 58)\"},children:\"P0\"})}),className:\"framer-80cfnu\",\"data-framer-name\":\"Roadmap Quarter\",fonts:[\"Inter\"],name:\"Roadmap Quarter\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fl5fo9\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bxl1hg\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bp11ua\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1200,pixelHeight:720,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg\",srcSet:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg 1200w\"},className:\"framer-1ffiuk8\",\"data-framer-name\":\"Stars\",name:\"Stars\"})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5x12kw\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmjvww\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tlyoif\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145dx56\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmfsvz\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"var(--token-5c86871d-e642-4c26-bc49-cf7bd6318a92, rgb(255, 255, 255))\"},children:\"Data\"})}),className:\"framer-1uif4gx\",\"data-framer-appear-id\":\"1uif4gx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation2,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Belongs with Design\"})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-o62ou4\",\"data-styles-preset\":\"KOlXy2UN_\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Belongs with Design\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Belongs with Design\"})}),className:\"framer-1t7ifh0\",\"data-framer-appear-id\":\"1t7ifh0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:[\"In metz, data is a first class citizen. This enables you to build with better perspective.\",/*#__PURE__*/_jsx(\"br\",{}),\"At the same time, you get to model evolution of data and how or why it changes.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"In metz, data is a first class citizen. This enables you to build with better perspective.\",/*#__PURE__*/_jsx(\"br\",{}),\"At the same time, you get to model evolution of data and how or why it changes.\"]})}),className:\"framer-nd2if9\",\"data-framer-appear-id\":\"nd2if9\",\"data-framer-name\":\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",fonts:[\"Inter\"],initial:animation5,name:\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xztq5x-container\",children:/*#__PURE__*/_jsx(ButtonBuyButton,{height:\"100%\",id:\"CpN2I8AVZ\",layoutId:\"CpN2I8AVZ\",variant:\"sJe9DIsWd\",width:\"100%\",ZiJninaK7:\"Check out Docs\",ZkIF1QTBx:\"https://docs.metz.sh/data-and-views\"})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6vd8p-container hidden-go7wpp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"LY3mzK9mj\",layoutId:\"LY3mzK9mj\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://app.metz.sh/template/4\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 1200px)\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"},className:\"framer-1bptl5d hidden-72rtr7 hidden-1qxia31\",\"data-border\":true,\"data-framer-appear-id\":\"1bptl5d\",\"data-framer-name\":\"Card\",initial:animation13,name:\"Card\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mca6yl\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-cwi9qj\",\"data-styles-preset\":\"fFflGRbMV\",children:\"Import Components\"})}),className:\"framer-1e4q99c hidden-go7wpp\",\"data-framer-name\":\"Multi-Language Support\",fonts:[\"Inter\"],name:\"Multi-Language Support\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendar.google.com/calendar/u/0/r/eventedit?text=Build+interactive+diagrams+using+code&details=Write+simple+typescript+to+visualise+complex+flows.+Link:+https://metz.sh\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-8ziw0c\",\"data-styles-preset\":\"xlsmCfJFZ\",children:\"You seem to be on mobile. Add a calendar invite to check it out later.\"})})})}),className:\"framer-6q8we7\",\"data-framer-name\":\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",fonts:[\"Inter\"],name:\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XKg61sYzr0CdthPGxrNufAtCB4.png\"},className:\"framer-zeyyan hidden-go7wpp\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",name:\"Icon Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13wf0ez\",\"data-styles-preset\":\"X8O1xHOHQ\",style:{\"--framer-text-color\":\"rgb(207, 58, 58)\"},children:\"P0\"})}),className:\"framer-qiofuq\",\"data-framer-name\":\"Roadmap Quarter\",fonts:[\"Inter\"],name:\"Roadmap Quarter\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ntfyit\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-noemv2\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cc1uj4\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1200,pixelHeight:720,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg\",srcSet:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg 1200w\"},className:\"framer-a6xsk8\",\"data-framer-name\":\"Stars\",name:\"Stars\"})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5ly8b\",\"data-framer-name\":\"Section\",id:elementId,name:\"Section\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7jey5q\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mbag9x\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84nvb0\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ar2bn\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Keep it DRY\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"var(--token-5c86871d-e642-4c26-bc49-cf7bd6318a92, rgb(255, 255, 255))\"},children:\"Keep it DRY\"})}),className:\"framer-1jsfriu\",\"data-framer-appear-id\":\"1jsfriu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation2,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:[\"Show every scenario \",/*#__PURE__*/_jsx(\"br\",{}),\"with stories\"]})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-o62ou4\",\"data-styles-preset\":\"KOlXy2UN_\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Show every scenario with stories\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"Show every scenario with stories\"})}),className:\"framer-ygfxb0\",\"data-framer-appear-id\":\"ygfxb0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:[\"Stories let you dissect the system and see it from every vantage point, without writing the code again.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"In the story below, we see that the poller and webhook align perfectly to create a blind spot. Both start working on the same payment, not knowing that the other is doing the same. This leads to our system capturing the same payment twice!\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:\"Click on the 'Stories' dropdown below to see how the system behaves normally.\"})]})},ZSSz3oloN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"Stories let you dissect the system and see it from every vantage point, without writing the code again.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"In the story below, we see that the poller and webhook align perfectly to create a blind spot. Both start working on the same payment, not knowing that the other is doing the same. This leads to our system capturing the same payment twice!\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"Click on the 'Stories' dropdown below to see how the system behaves normally.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p3g3lb\",\"data-styles-preset\":\"OYAe4dfhe\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Stories let you dissect the system and see it from every vantage point, without writing the code again.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"In the story below, we see that the poller and webhook align perfectly to create a blind spot. Both start working on the same payment, not knowing that the other is doing the same. This leads to our system capturing the same payment twice!\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3g3lb\",\"data-styles-preset\":\"OYAe4dfhe\",style:{\"--framer-text-alignment\":\"left\"},children:\"Click on the 'Stories' dropdown below to see how the system behaves normally.\"})]}),className:\"framer-6224iz\",\"data-framer-appear-id\":\"6224iz\",\"data-framer-name\":\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",fonts:[\"Inter\"],initial:animation5,name:\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hji83k-container\",children:/*#__PURE__*/_jsx(ButtonBuyButton,{height:\"100%\",id:\"qNNk_rueF\",layoutId:\"qNNk_rueF\",variant:\"sJe9DIsWd\",width:\"100%\",ZiJninaK7:\"Check out Docs\",ZkIF1QTBx:\"https://docs.metz.sh/stories\"})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vzsvs3-container hidden-go7wpp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"l8TSglpyJ\",layoutId:\"l8TSglpyJ\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://app.metz.sh/play/0286b754d9e4408ba172e344eeac47b9\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 1200px)\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png\",srcSet:\"https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCoyBvfKl0knqw3j6kmlnbO8hf8.png 3168w\"},className:\"framer-x6xf6j hidden-72rtr7 hidden-1qxia31\",\"data-border\":true,\"data-framer-appear-id\":\"x6xf6j\",\"data-framer-name\":\"Card\",initial:animation13,name:\"Card\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n4u1ti\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendar.google.com/calendar/u/0/r/eventedit?text=Build+interactive+diagrams+using+code&details=Write+simple+typescript+to+visualise+complex+flows.+Link:+https://metz.sh\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-8ziw0c\",\"data-styles-preset\":\"xlsmCfJFZ\",children:\"You seem to be on mobile. Add a calendar invite to check it out later.\"})})})}),className:\"framer-10ihvwt\",\"data-framer-name\":\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",fonts:[\"Inter\"],name:\"The SaaS website offers multi-language support, allowing users to access content and navigate the website in their preferred language, expanding its reach and providing a personalized user experience.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dlax2\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pptgta\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-depnax\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1200,pixelHeight:720,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg\",srcSet:\"https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHYL7KsjoLyyG0cLvNCMuE8o74.svg 1200w\"},className:\"framer-qvwqwh\",\"data-framer-name\":\"Stars\",name:\"Stars\"})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rjwal3\",\"data-framer-name\":\"Section\",id:elementId1,name:\"Section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w7pcd3\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ro6ndo\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16o4i21\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynu50f\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6lmb4\",\"data-styles-preset\":\"Qzp7Go1DF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"But wait!\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"var(--token-5c86871d-e642-4c26-bc49-cf7bd6318a92, rgb(255, 255, 255))\"},children:\"But wait!\"})}),className:\"framer-1unrplf\",\"data-framer-appear-id\":\"1unrplf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation2,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"There's more coming\"})})},ZSSz3oloN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iywwtp\",\"data-styles-preset\":\"efJYFuOnS\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"There's more coming\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",style:{\"--framer-text-color\":\"rgb(61, 75, 194)\"},children:\"There's more coming\"})}),className:\"framer-1gk4wux\",\"data-framer-appear-id\":\"1gk4wux\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:[\"For years we have been stuck with cookie-cutter solutions, or tools that do only half the job.\",/*#__PURE__*/_jsx(\"br\",{}),\"We are building something that reflects the reality of designing software, that it's not just a technical problem but a human endeavour as well.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q4mpjd\",\"data-styles-preset\":\"CMfVGQvjr\",children:\"Metz aims to be the modern way of building architecture and we have a rigorous roadmap ahead to follow through. \"})]})},ZSSz3oloN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:[\"For years we have been stuck with cookie-cutter solutions, or tools that do only half the job.\",/*#__PURE__*/_jsx(\"br\",{}),\"We are building something that reflects the reality of designing software, that it's not just a technical problem but a human endeavour as well.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfon2y\",\"data-styles-preset\":\"v53kSaCJt\",children:\"Metz aims to be the modern way of building architecture and we have a rigorous roadmap ahead to follow through. \"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p3g3lb\",\"data-styles-preset\":\"OYAe4dfhe\",style:{\"--framer-text-alignment\":\"left\"},children:[\"For years we have been stuck with cookie-cutter solutions, or tools that do only half the job.\",/*#__PURE__*/_jsx(\"br\",{}),\"We are building something that reflects the reality of designing software, that it's not just a technical problem but a human endeavour as well.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3g3lb\",\"data-styles-preset\":\"OYAe4dfhe\",style:{\"--framer-text-alignment\":\"left\"},children:\"Metz aims to be the modern way of building architecture and we have a rigorous roadmap ahead to follow through. \"})]}),className:\"framer-1jke44j\",\"data-framer-appear-id\":\"1jke44j\",\"data-framer-name\":\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",fonts:[\"Inter\"],initial:animation5,name:\"Unlock the potential of your imagination and bring your most brilliant ideas to life through the power of Fusion.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:4320,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw, 392px)\",src:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=2048 910w,https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg 1440w\"}},ZSSz3oloN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:4320,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"729px\",src:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=2048 910w,https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:4320,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"1058px\",src:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg?scale-down-to=2048 910w,https://framerusercontent.com/images/8ow6whGxb2cVMUgFdMJZSinZ0.svg 1440w\"},className:\"framer-13hginq\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:659,width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jtkihw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{variant:\"cGhaUl1cx\"},ZSSz3oloN:{variant:\"cxylAfji7\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"m6jJZtNXT\",layoutId:\"m6jJZtNXT\",style:{width:\"100%\"},variant:\"WZ3ucfkfO\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bu4mq\",\"data-framer-name\":\"Section\",name:\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vy6iio\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-srywjg\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tkxjj0\",\"data-styles-preset\":\"BnFldrK7h\",children:\"Wall of Love!\"})}),className:\"framer-lufb0a\",\"data-framer-name\":\"Data mastery analytic hub\",fonts:[\"Inter\"],name:\"Data mastery analytic hub\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:1920,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 392px)\",src:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024 576w,https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg 810w\"}},ZSSz3oloN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:1920,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024 576w,https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg 810w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:476,intrinsicWidth:636,pixelHeight:1920,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"909px\",src:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg?scale-down-to=1024 576w,https://framerusercontent.com/images/xFs1RKwAoEbt4hDmeInPRHUmV8M.svg 810w\"},className:\"framer-1on7409\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:447,width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ooq4k9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MNwtckj6q:{variant:\"HSc4r9ckc\"},ZSSz3oloN:{variant:\"yYbmM7tgO\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"TbTtoH_hk\",layoutId:\"TbTtoH_hk\",style:{width:\"100%\"},variant:\"K2y3UT6yu\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-8fjUE { background: var(--token-768d84b5-d35b-471f-b537-a893673b915a, rgb(5, 4, 31)); }`,\".framer-8fjUE.framer-lux5qc, .framer-8fjUE .framer-lux5qc { display: block; }\",\".framer-8fjUE.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-768d84b5-d35b-471f-b537-a893673b915a, #05041f); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-8fjUE .framer-1au2qmy-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-8fjUE .framer-84d8ix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-gq4a8k { 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: 152px 24px 160px 24px; position: relative; width: 100%; z-index: 5; }\",\".framer-8fjUE .framer-1whiesp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 132px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-8fjUE .framer-129qpnb, .framer-8fjUE .framer-1n2j6y1, .framer-8fjUE .framer-1tlyoif, .framer-8fjUE .framer-1mbag9x, .framer-8fjUE .framer-1ro6ndo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 35px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8fjUE .framer-n9rapo, .framer-8fjUE .framer-104p2x0, .framer-8fjUE .framer-145dx56, .framer-8fjUE .framer-84nvb0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-1h6yh6d, .framer-8fjUE .framer-17ar2bn, .framer-8fjUE .framer-ynu50f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-i675px, .framer-8fjUE .framer-180l653, .framer-8fjUE .framer-1960yk6, .framer-8fjUE .framer-18bipth, .framer-8fjUE .framer-80cfnu, .framer-8fjUE .framer-1uif4gx, .framer-8fjUE .framer-1t7ifh0, .framer-8fjUE .framer-qiofuq, .framer-8fjUE .framer-1jsfriu, .framer-8fjUE .framer-ygfxb0, .framer-8fjUE .framer-1unrplf, .framer-8fjUE .framer-1gk4wux, .framer-8fjUE .framer-lufb0a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8fjUE .framer-k26blq, .framer-8fjUE .framer-1ckjx18, .framer-8fjUE .framer-nd2if9, .framer-8fjUE .framer-6224iz, .framer-8fjUE .framer-1jke44j { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8fjUE .framer-14anwyk-container, .framer-8fjUE .framer-qm6xz7-container, .framer-8fjUE .framer-xztq5x-container, .framer-8fjUE .framer-1hji83k-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-8fjUE .framer-7tzrge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8fjUE .framer-pgj48s-container, .framer-8fjUE .framer-zgeh2a-container, .framer-8fjUE .framer-152oalt-container, .framer-8fjUE .framer-c6vd8p-container, .framer-8fjUE .framer-1vzsvs3-container { flex: none; height: 720px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-ox7shy { flex: none; height: 96%; left: calc(50.00000000000002% - 120% / 2); overflow: visible; position: absolute; top: 0px; width: 120%; z-index: 0; }\",\".framer-8fjUE .framer-2qff3j { flex: none; height: 78%; left: -44px; overflow: hidden; position: absolute; top: -202px; width: 103%; z-index: 1; }\",\".framer-8fjUE .framer-117ygne, .framer-8fjUE .framer-jsk049, .framer-8fjUE .framer-5x12kw, .framer-8fjUE .framer-1i5ly8b, .framer-8fjUE .framer-rjwal3 { 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: 80px 24px 80px 24px; position: relative; width: 100%; z-index: 5; }\",\".framer-8fjUE .framer-2yfz4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1044px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-qhcqs8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 122px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-81sfgr, .framer-8fjUE .framer-c10czw { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8fjUE .framer-12e4u3b { --border-bottom-width: 1px; --border-color: var(--token-d982382e-3c16-4217-92f4-bee7d4557da8, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(24px); align-self: start; backdrop-filter: blur(24px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 258px; justify-self: start; overflow: hidden; position: relative; width: 477px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8fjUE .framer-tcoi0x, .framer-8fjUE .framer-3y470z { align-content: flex-start; align-items: flex-start; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; justify-self: start; max-width: 510px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-r20wzz, .framer-8fjUE .framer-o4vi93 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-5mh76m, .framer-8fjUE .framer-1vhn2q2, .framer-8fjUE .framer-1otb37n, .framer-8fjUE .framer-jnupvz, .framer-8fjUE .framer-xx7e5n, .framer-8fjUE .framer-pozlaj, .framer-8fjUE .framer-1e4q99c, .framer-8fjUE .framer-6q8we7, .framer-8fjUE .framer-10ihvwt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8fjUE .framer-1qs54pp-container { align-self: start; flex: none; height: 315px; justify-self: start; position: relative; width: 506px; }\",\".framer-8fjUE .framer-1i940gj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 858px; justify-content: center; left: calc(50.00000000000002% - 864px / 2); overflow: hidden; padding: 0px; position: absolute; top: -4px; width: 864px; z-index: 1; }\",\".framer-8fjUE .framer-1it9eke { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-8fjUE .framer-1hbzgtc, .framer-8fjUE .framer-1wmjvww, .framer-8fjUE .framer-7jey5q, .framer-8fjUE .framer-1w7pcd3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-16ep601, .framer-8fjUE .framer-1nmfsvz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-1j8vnpa, .framer-8fjUE .framer-1bptl5d, .framer-8fjUE .framer-x6xf6j { --border-bottom-width: 1px; --border-color: var(--token-d982382e-3c16-4217-92f4-bee7d4557da8, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(12px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(12px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8fjUE .framer-1nuepzi, .framer-8fjUE .framer-mca6yl, .framer-8fjUE .framer-1n4u1ti { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 472px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8fjUE .framer-693mz5, .framer-8fjUE .framer-zeyyan { --border-bottom-width: 0.24347826838493347px; --border-color: #000000; --border-left-width: 0.24347826838493347px; --border-right-width: 0.24347826838493347px; --border-style: solid; --border-top-width: 0.24347826838493347px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: inset 0px 0px 8px 0.82px var(--token-2cb86bfa-13f7-4b05-9e4b-62158d9723cd, rgba(255, 255, 255, 0.12)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8fjUE .framer-fl5fo9, .framer-8fjUE .framer-ntfyit, .framer-8fjUE .framer-dlax2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-8fjUE .framer-bxl1hg, .framer-8fjUE .framer-noemv2, .framer-8fjUE .framer-1pptgta { background: radial-gradient(100% 100% at 100% 0%, #113afc 0%, rgba(5, 4, 31, 0) 100%); bottom: 0px; box-shadow: inset 0px -40px 56px -16px rgba(255, 255, 255, 0.06); flex: none; left: 0px; opacity: 0.08; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-8fjUE .framer-bp11ua, .framer-8fjUE .framer-1cc1uj4, .framer-8fjUE .framer-depnax { background: radial-gradient(50% 100% at 50% 100%, #ffffff 0%, rgba(5, 4, 31, 0) 100%); bottom: 0px; box-shadow: inset 0px -40px 56px -16px rgba(255, 255, 255, 0.06); flex: none; left: 0px; opacity: 0.02; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8fjUE .framer-1ffiuk8, .framer-8fjUE .framer-a6xsk8, .framer-8fjUE .framer-qvwqwh { aspect-ratio: 1.6666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); left: -50px; overflow: hidden; position: absolute; top: -60px; width: 1200px; z-index: 0; }\",\".framer-8fjUE .framer-16o4i21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-13hginq { --border-bottom-width: 1px; --border-color: var(--token-d982382e-3c16-4217-92f4-bee7d4557da8, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 1340px; overflow: hidden; position: relative; width: 1058px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8fjUE .framer-1jtkihw-container, .framer-8fjUE .framer-1ooq4k9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8fjUE .framer-13bu4mq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-vy6iio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-srywjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8fjUE .framer-1on7409 { --border-bottom-width: 1px; --border-color: var(--token-d982382e-3c16-4217-92f4-bee7d4557da8, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 1506px; overflow: hidden; position: relative; width: 909px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8fjUE.framer-72rtr7, .framer-8fjUE .framer-84d8ix, .framer-8fjUE .framer-gq4a8k, .framer-8fjUE .framer-1whiesp, .framer-8fjUE .framer-129qpnb, .framer-8fjUE .framer-n9rapo, .framer-8fjUE .framer-1h6yh6d, .framer-8fjUE .framer-7tzrge, .framer-8fjUE .framer-117ygne, .framer-8fjUE .framer-2yfz4q, .framer-8fjUE .framer-qhcqs8, .framer-8fjUE .framer-tcoi0x, .framer-8fjUE .framer-r20wzz, .framer-8fjUE .framer-3y470z, .framer-8fjUE .framer-o4vi93, .framer-8fjUE .framer-1i940gj, .framer-8fjUE .framer-jsk049, .framer-8fjUE .framer-1hbzgtc, .framer-8fjUE .framer-1n2j6y1, .framer-8fjUE .framer-104p2x0, .framer-8fjUE .framer-16ep601, .framer-8fjUE .framer-1j8vnpa, .framer-8fjUE .framer-1nuepzi, .framer-8fjUE .framer-693mz5, .framer-8fjUE .framer-fl5fo9, .framer-8fjUE .framer-5x12kw, .framer-8fjUE .framer-1wmjvww, .framer-8fjUE .framer-1tlyoif, .framer-8fjUE .framer-145dx56, .framer-8fjUE .framer-1nmfsvz, .framer-8fjUE .framer-1bptl5d, .framer-8fjUE .framer-mca6yl, .framer-8fjUE .framer-zeyyan, .framer-8fjUE .framer-ntfyit, .framer-8fjUE .framer-1i5ly8b, .framer-8fjUE .framer-7jey5q, .framer-8fjUE .framer-1mbag9x, .framer-8fjUE .framer-84nvb0, .framer-8fjUE .framer-17ar2bn, .framer-8fjUE .framer-x6xf6j, .framer-8fjUE .framer-1n4u1ti, .framer-8fjUE .framer-dlax2, .framer-8fjUE .framer-rjwal3, .framer-8fjUE .framer-1w7pcd3, .framer-8fjUE .framer-1ro6ndo, .framer-8fjUE .framer-16o4i21, .framer-8fjUE .framer-ynu50f, .framer-8fjUE .framer-13bu4mq, .framer-8fjUE .framer-vy6iio, .framer-8fjUE .framer-srywjg { gap: 0px; } .framer-8fjUE.framer-72rtr7 > *, .framer-8fjUE .framer-16ep601 > *, .framer-8fjUE .framer-1nmfsvz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8fjUE.framer-72rtr7 > :first-child, .framer-8fjUE .framer-84d8ix > :first-child, .framer-8fjUE .framer-1whiesp > :first-child, .framer-8fjUE .framer-129qpnb > :first-child, .framer-8fjUE .framer-n9rapo > :first-child, .framer-8fjUE .framer-2yfz4q > :first-child, .framer-8fjUE .framer-qhcqs8 > :first-child, .framer-8fjUE .framer-tcoi0x > :first-child, .framer-8fjUE .framer-r20wzz > :first-child, .framer-8fjUE .framer-3y470z > :first-child, .framer-8fjUE .framer-o4vi93 > :first-child, .framer-8fjUE .framer-1hbzgtc > :first-child, .framer-8fjUE .framer-1n2j6y1 > :first-child, .framer-8fjUE .framer-104p2x0 > :first-child, .framer-8fjUE .framer-16ep601 > :first-child, .framer-8fjUE .framer-1j8vnpa > :first-child, .framer-8fjUE .framer-1nuepzi > :first-child, .framer-8fjUE .framer-1wmjvww > :first-child, .framer-8fjUE .framer-1tlyoif > :first-child, .framer-8fjUE .framer-145dx56 > :first-child, .framer-8fjUE .framer-1nmfsvz > :first-child, .framer-8fjUE .framer-1bptl5d > :first-child, .framer-8fjUE .framer-mca6yl > :first-child, .framer-8fjUE .framer-7jey5q > :first-child, .framer-8fjUE .framer-1mbag9x > :first-child, .framer-8fjUE .framer-84nvb0 > :first-child, .framer-8fjUE .framer-x6xf6j > :first-child, .framer-8fjUE .framer-1n4u1ti > :first-child, .framer-8fjUE .framer-1w7pcd3 > :first-child, .framer-8fjUE .framer-1ro6ndo > :first-child, .framer-8fjUE .framer-16o4i21 > :first-child, .framer-8fjUE .framer-13bu4mq > :first-child, .framer-8fjUE .framer-vy6iio > :first-child { margin-top: 0px; } .framer-8fjUE.framer-72rtr7 > :last-child, .framer-8fjUE .framer-84d8ix > :last-child, .framer-8fjUE .framer-1whiesp > :last-child, .framer-8fjUE .framer-129qpnb > :last-child, .framer-8fjUE .framer-n9rapo > :last-child, .framer-8fjUE .framer-2yfz4q > :last-child, .framer-8fjUE .framer-qhcqs8 > :last-child, .framer-8fjUE .framer-tcoi0x > :last-child, .framer-8fjUE .framer-r20wzz > :last-child, .framer-8fjUE .framer-3y470z > :last-child, .framer-8fjUE .framer-o4vi93 > :last-child, .framer-8fjUE .framer-1hbzgtc > :last-child, .framer-8fjUE .framer-1n2j6y1 > :last-child, .framer-8fjUE .framer-104p2x0 > :last-child, .framer-8fjUE .framer-16ep601 > :last-child, .framer-8fjUE .framer-1j8vnpa > :last-child, .framer-8fjUE .framer-1nuepzi > :last-child, .framer-8fjUE .framer-1wmjvww > :last-child, .framer-8fjUE .framer-1tlyoif > :last-child, .framer-8fjUE .framer-145dx56 > :last-child, .framer-8fjUE .framer-1nmfsvz > :last-child, .framer-8fjUE .framer-1bptl5d > :last-child, .framer-8fjUE .framer-mca6yl > :last-child, .framer-8fjUE .framer-7jey5q > :last-child, .framer-8fjUE .framer-1mbag9x > :last-child, .framer-8fjUE .framer-84nvb0 > :last-child, .framer-8fjUE .framer-x6xf6j > :last-child, .framer-8fjUE .framer-1n4u1ti > :last-child, .framer-8fjUE .framer-1w7pcd3 > :last-child, .framer-8fjUE .framer-1ro6ndo > :last-child, .framer-8fjUE .framer-16o4i21 > :last-child, .framer-8fjUE .framer-13bu4mq > :last-child, .framer-8fjUE .framer-vy6iio > :last-child { margin-bottom: 0px; } .framer-8fjUE .framer-84d8ix > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8fjUE .framer-gq4a8k > *, .framer-8fjUE .framer-117ygne > *, .framer-8fjUE .framer-1i940gj > *, .framer-8fjUE .framer-jsk049 > *, .framer-8fjUE .framer-fl5fo9 > *, .framer-8fjUE .framer-5x12kw > *, .framer-8fjUE .framer-ntfyit > *, .framer-8fjUE .framer-1i5ly8b > *, .framer-8fjUE .framer-dlax2 > *, .framer-8fjUE .framer-rjwal3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8fjUE .framer-gq4a8k > :first-child, .framer-8fjUE .framer-1h6yh6d > :first-child, .framer-8fjUE .framer-7tzrge > :first-child, .framer-8fjUE .framer-117ygne > :first-child, .framer-8fjUE .framer-1i940gj > :first-child, .framer-8fjUE .framer-jsk049 > :first-child, .framer-8fjUE .framer-693mz5 > :first-child, .framer-8fjUE .framer-fl5fo9 > :first-child, .framer-8fjUE .framer-5x12kw > :first-child, .framer-8fjUE .framer-zeyyan > :first-child, .framer-8fjUE .framer-ntfyit > :first-child, .framer-8fjUE .framer-1i5ly8b > :first-child, .framer-8fjUE .framer-17ar2bn > :first-child, .framer-8fjUE .framer-dlax2 > :first-child, .framer-8fjUE .framer-rjwal3 > :first-child, .framer-8fjUE .framer-ynu50f > :first-child, .framer-8fjUE .framer-srywjg > :first-child { margin-left: 0px; } .framer-8fjUE .framer-gq4a8k > :last-child, .framer-8fjUE .framer-1h6yh6d > :last-child, .framer-8fjUE .framer-7tzrge > :last-child, .framer-8fjUE .framer-117ygne > :last-child, .framer-8fjUE .framer-1i940gj > :last-child, .framer-8fjUE .framer-jsk049 > :last-child, .framer-8fjUE .framer-693mz5 > :last-child, .framer-8fjUE .framer-fl5fo9 > :last-child, .framer-8fjUE .framer-5x12kw > :last-child, .framer-8fjUE .framer-zeyyan > :last-child, .framer-8fjUE .framer-ntfyit > :last-child, .framer-8fjUE .framer-1i5ly8b > :last-child, .framer-8fjUE .framer-17ar2bn > :last-child, .framer-8fjUE .framer-dlax2 > :last-child, .framer-8fjUE .framer-rjwal3 > :last-child, .framer-8fjUE .framer-ynu50f > :last-child, .framer-8fjUE .framer-srywjg > :last-child { margin-right: 0px; } .framer-8fjUE .framer-1whiesp > * { margin: 0px; margin-bottom: calc(132px / 2); margin-top: calc(132px / 2); } .framer-8fjUE .framer-129qpnb > *, .framer-8fjUE .framer-1n2j6y1 > *, .framer-8fjUE .framer-1tlyoif > *, .framer-8fjUE .framer-1mbag9x > *, .framer-8fjUE .framer-1ro6ndo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8fjUE .framer-n9rapo > *, .framer-8fjUE .framer-104p2x0 > *, .framer-8fjUE .framer-145dx56 > *, .framer-8fjUE .framer-84nvb0 > *, .framer-8fjUE .framer-16o4i21 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-8fjUE .framer-1h6yh6d > *, .framer-8fjUE .framer-7tzrge > *, .framer-8fjUE .framer-17ar2bn > *, .framer-8fjUE .framer-ynu50f > *, .framer-8fjUE .framer-srywjg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8fjUE .framer-2yfz4q > *, .framer-8fjUE .framer-1hbzgtc > *, .framer-8fjUE .framer-1wmjvww > *, .framer-8fjUE .framer-7jey5q > *, .framer-8fjUE .framer-1w7pcd3 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-8fjUE .framer-qhcqs8 > * { margin: 0px; margin-bottom: calc(122px / 2); margin-top: calc(122px / 2); } .framer-8fjUE .framer-tcoi0x > *, .framer-8fjUE .framer-3y470z > *, .framer-8fjUE .framer-1j8vnpa > *, .framer-8fjUE .framer-1nuepzi > *, .framer-8fjUE .framer-1bptl5d > *, .framer-8fjUE .framer-mca6yl > *, .framer-8fjUE .framer-x6xf6j > *, .framer-8fjUE .framer-1n4u1ti > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8fjUE .framer-r20wzz > *, .framer-8fjUE .framer-o4vi93 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8fjUE .framer-693mz5 > *, .framer-8fjUE .framer-zeyyan > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8fjUE .framer-13bu4mq > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-8fjUE .framer-vy6iio > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-8fjUE { background: var(--token-768d84b5-d35b-471f-b537-a893673b915a, rgb(5, 4, 31)); } .framer-8fjUE.framer-72rtr7 { width: 810px; } .framer-8fjUE .framer-1au2qmy-container { position: fixed; } .framer-8fjUE .framer-gq4a8k { padding: 152px 24px 140px 24px; } .framer-8fjUE .framer-1whiesp { gap: 72px; } .framer-8fjUE .framer-129qpnb, .framer-8fjUE .framer-1n2j6y1, .framer-8fjUE .framer-1tlyoif, .framer-8fjUE .framer-1mbag9x, .framer-8fjUE .framer-1ro6ndo { max-width: 720px; } .framer-8fjUE .framer-81sfgr, .framer-8fjUE .framer-c10czw { gap: 48px; grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-8fjUE .framer-12e4u3b { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 248px; justify-self: center; order: 0; width: 501px; } .framer-8fjUE .framer-tcoi0x, .framer-8fjUE .framer-3y470z { align-content: center; align-items: center; align-self: start; justify-self: center; max-width: 520px; order: 1; } .framer-8fjUE .framer-r20wzz, .framer-8fjUE .framer-o4vi93 { align-content: center; align-items: center; } .framer-8fjUE .framer-1qs54pp-container { height: 469px; order: 2; width: 761px; } .framer-8fjUE .framer-13hginq { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 1113px; width: 729px; } .framer-8fjUE .framer-1on7409 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 1181px; width: 700px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8fjUE .framer-1whiesp, .framer-8fjUE .framer-81sfgr, .framer-8fjUE .framer-c10czw { gap: 0px; } .framer-8fjUE .framer-1whiesp > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-8fjUE .framer-1whiesp > :first-child { margin-top: 0px; } .framer-8fjUE .framer-1whiesp > :last-child { margin-bottom: 0px; } .framer-8fjUE .framer-81sfgr > *, .framer-8fjUE .framer-81sfgr > :first-child, .framer-8fjUE .framer-81sfgr > :last-child, .framer-8fjUE .framer-c10czw > *, .framer-8fjUE .framer-c10czw > :first-child, .framer-8fjUE .framer-c10czw > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-8fjUE { background: var(--token-768d84b5-d35b-471f-b537-a893673b915a, rgb(5, 4, 31)); } .framer-8fjUE.framer-72rtr7 { width: 390px; } .framer-8fjUE .framer-1au2qmy-container { position: fixed; } .framer-8fjUE .framer-gq4a8k { padding: 144px 24px 100px 24px; } .framer-8fjUE .framer-1whiesp { gap: 24px; } .framer-8fjUE .framer-129qpnb, .framer-8fjUE .framer-1n2j6y1, .framer-8fjUE .framer-1tlyoif, .framer-8fjUE .framer-1mbag9x, .framer-8fjUE .framer-1ro6ndo { max-width: 600px; } .framer-8fjUE .framer-7tzrge { justify-content: flex-start; } .framer-8fjUE .framer-zgeh2a-container { height: 210px; } .framer-8fjUE .framer-2qff3j { height: 116%; top: -272px; width: 130%; } .framer-8fjUE .framer-117ygne { flex-direction: column; padding: 64px 24px 64px 24px; } .framer-8fjUE .framer-qhcqs8 { gap: 96px; order: 3; } .framer-8fjUE .framer-81sfgr, .framer-8fjUE .framer-c10czw { gap: 48px; grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-8fjUE .framer-12e4u3b { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 184px; max-width: 392px; order: 0; width: 100%; } .framer-8fjUE .framer-tcoi0x, .framer-8fjUE .framer-3y470z { align-content: center; align-items: center; align-self: start; justify-self: center; max-width: 520px; order: 1; } .framer-8fjUE .framer-r20wzz, .framer-8fjUE .framer-o4vi93 { align-content: center; align-items: center; } .framer-8fjUE .framer-1qs54pp-container { height: 179px; order: 2; width: 342px; } .framer-8fjUE .framer-jsk049, .framer-8fjUE .framer-5x12kw, .framer-8fjUE .framer-1i5ly8b, .framer-8fjUE .framer-rjwal3 { flex-direction: column; padding: 64px 24px 80px 24px; } .framer-8fjUE .framer-13hginq { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 889px; max-width: 392px; width: 100%; } .framer-8fjUE .framer-13bu4mq { padding: 64px 24px 64px 24px; } .framer-8fjUE .framer-1on7409 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 590px; max-width: 392px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8fjUE .framer-1whiesp, .framer-8fjUE .framer-117ygne, .framer-8fjUE .framer-qhcqs8, .framer-8fjUE .framer-81sfgr, .framer-8fjUE .framer-c10czw, .framer-8fjUE .framer-jsk049, .framer-8fjUE .framer-5x12kw, .framer-8fjUE .framer-1i5ly8b, .framer-8fjUE .framer-rjwal3 { gap: 0px; } .framer-8fjUE .framer-1whiesp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8fjUE .framer-1whiesp > :first-child, .framer-8fjUE .framer-117ygne > :first-child, .framer-8fjUE .framer-qhcqs8 > :first-child, .framer-8fjUE .framer-jsk049 > :first-child, .framer-8fjUE .framer-5x12kw > :first-child, .framer-8fjUE .framer-1i5ly8b > :first-child, .framer-8fjUE .framer-rjwal3 > :first-child { margin-top: 0px; } .framer-8fjUE .framer-1whiesp > :last-child, .framer-8fjUE .framer-117ygne > :last-child, .framer-8fjUE .framer-qhcqs8 > :last-child, .framer-8fjUE .framer-jsk049 > :last-child, .framer-8fjUE .framer-5x12kw > :last-child, .framer-8fjUE .framer-1i5ly8b > :last-child, .framer-8fjUE .framer-rjwal3 > :last-child { margin-bottom: 0px; } .framer-8fjUE .framer-117ygne > *, .framer-8fjUE .framer-jsk049 > *, .framer-8fjUE .framer-5x12kw > *, .framer-8fjUE .framer-1i5ly8b > *, .framer-8fjUE .framer-rjwal3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8fjUE .framer-qhcqs8 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-8fjUE .framer-81sfgr > *, .framer-8fjUE .framer-81sfgr > :first-child, .framer-8fjUE .framer-81sfgr > :last-child, .framer-8fjUE .framer-c10czw > *, .framer-8fjUE .framer-c10czw > :first-child, .framer-8fjUE .framer-c10czw > :last-child { margin: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-8fjUE[data-border=\"true\"]::after, .framer-8fjUE [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 11364.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZSSz3oloN\":{\"layout\":[\"fixed\",\"auto\"]},\"MNwtckj6q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8fjUE\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11364.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationFonts,...ButtonBuyButtonFonts,...EmbedFonts,...VideoFonts,...SectionCTAFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"11364.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZSSz3oloN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MNwtckj6q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZiJninaK7", "ZkIF1QTBx", "hbXOpzUo_", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "motion", "cx", "Image2", "RichText", "x", "css", "FramerTidr3SSrd", "withCSS", "Tidr3SSrd_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "PwQSTmZGm_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "ButtonBuyButtonFonts", "Tidr3SSrd_default", "EmbedFonts", "Embed", "VideoFonts", "Video", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "MotionDivWithOptimizedAppearEffect", "SectionCTAFonts", "FhdHJmiBJ_default", "ContainerWithFX", "Container", "SectionFooterFonts", "xK8W4KYP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "transition3", "animation11", "transition4", "animation12", "animation13", "animation14", "transition5", "animation15", "transition6", "animation16", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "x", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
