{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/6FX5p5QmXeZANcFpvgLm/fUBIwqIcmZabQAsUZlJC/iwHZ0ZE1W.js"],
  "sourcesContent": ["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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{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);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </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>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// 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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import NavBar from\"#framer/local/canvasComponent/BbXlbwda5/BbXlbwda5.js\";import Footer from\"#framer/local/canvasComponent/OoWNTqLOW/OoWNTqLOW.js\";import*as sharedStyle from\"#framer/local/css/fdFLbrx9d/fdFLbrx9d.js\";import*as sharedStyle1 from\"#framer/local/css/yeaH44IEc/yeaH44IEc.js\";import metadataProvider from\"#framer/local/webPageMetadata/iwHZ0ZE1W/iwHZ0ZE1W.js\";const NavBarFonts=getFonts(NavBar);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={Hfkw3h63g:\"(min-width: 810px) and (max-width: 1199px)\",mIxfNFQKN:\"(max-width: 809px)\",qsP8UwbG4:\"(min-width: 1200px) and (max-width: 1439px)\",WAUodPvLA:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iG3qB\";const variantClassNames={Hfkw3h63g:\"framer-v-12dkb9e\",mIxfNFQKN:\"framer-v-eakxhw\",qsP8UwbG4:\"framer-v-114bqqc\",WAUodPvLA:\"framer-v-addrtc\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"small desktop\":\"qsP8UwbG4\",Desktop:\"WAUodPvLA\",Phone:\"mIxfNFQKN\",Tablet:\"Hfkw3h63g\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WAUodPvLA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WAUodPvLA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-addrtc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mIxfNFQKN:{width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7l2e63-container\",layoutScroll:true,nodeId:\"AyJxFCO7G\",scopeId:\"iwHZ0ZE1W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mIxfNFQKN:{Fq_ljD2H3:\"eB95mtU4j\",variant:\"CC3TC0brf\"}},children:/*#__PURE__*/_jsx(NavBar,{Fq_ljD2H3:\"gxzxyMvHb\",height:\"100%\",id:\"AyJxFCO7G\",layoutId:\"AyJxFCO7G\",style:{width:\"100%\"},variant:\"sHdu8BP1C\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmmyjp\",\"data-framer-name\":\"Page Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4m14i\",\"data-framer-name\":\"Section 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rbcbb3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gadupa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1j97unt\",\"data-styles-preset\":\"fdFLbrx9d\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Build Your Framer Website\"})}),className:\"framer-14dgw35\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9fwliq\",\"data-styles-preset\":\"yeaH44IEc\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.75)\"},children:\"Start your project with a Framer-expert agency\"})}),className:\"framer-pyworc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zhhqt-container\",isModuleExternal:true,nodeId:\"AHv8wozXy\",scopeId:\"iwHZ0ZE1W\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!DOCTYPE html>\\n<html lang=\"en\">\\n<head>\\n  <meta charset=\"UTF-8\">\\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\\n  <title>Stark Concept - Discovery Call Questionnaire</title>\\n  <style>\\n    /* General Styles */\\n    body {\\n      font-family: \\'Inter\\', sans-serif;\\n      background: #000; /* Black background */\\n      color: #fff; /* White text */\\n      margin: 0;\\n      padding: 0;\\n      display: flex;\\n      justify-content: center;\\n      align-items: center;\\n      min-height: 100vh;\\n    }\\n\\n    .container {\\n      max-width: 800px;\\n      width: 100%;\\n      padding: 20px;\\n    }\\n\\n    h1 {\\n      font-size: 2rem;\\n      margin-bottom: 20px;\\n      text-align: center;\\n      color: #fff; /* White text */\\n      font-weight: 600;\\n    }\\n\\n    p {\\n      font-size: 1rem;\\n      color: #ccc; /* Light gray text */\\n      text-align: center;\\n      margin-bottom: 40px;\\n    }\\n\\n    .quote {\\n      font-style: italic;\\n      color: #FF5F1F; /* Custom color for the quote */\\n      text-align: center;\\n      margin-bottom: 40px;\\n    }\\n\\n    /* Form Styles */\\n    .form-group {\\n      margin-bottom: 20px;\\n    }\\n\\n    .form-group label {\\n      display: block;\\n      font-size: 0.9rem;\\n      color: #ccc; /* Light gray text */\\n      margin-bottom: 8px;\\n    }\\n\\n    .form-group input,\\n    .form-group textarea {\\n      width: 100%;\\n      padding: 12px;\\n      border: 1px solid #444; /* Dark gray border */\\n      border-radius: 8px;\\n      font-size: 1rem;\\n      color: #fff; /* White text */\\n      background: #111; /* Dark background for inputs */\\n      transition: border-color 0.3s ease;\\n    }\\n\\n    .form-group input:focus,\\n    .form-group textarea:focus {\\n      border-color: #FF5F1F; /* Custom color on focus */\\n      outline: none;\\n    }\\n\\n    .form-group textarea {\\n      resize: vertical;\\n      min-height: 120px;\\n    }\\n\\n    .submit-button {\\n      width: 100%;\\n      padding: 12px;\\n      background: #FF5F1F; /* Custom color for the button */\\n      color: #fff;\\n      border: none;\\n      border-radius: 8px;\\n      font-size: 1rem;\\n      cursor: pointer;\\n      transition: background 0.3s ease;\\n    }\\n\\n    .submit-button:hover {\\n      background: #e64a19; /* Darker shade on hover */\\n    }\\n\\n    /* Section Indicator */\\n    .section-indicator {\\n      font-size: 0.9rem;\\n      color: #FF5F1F; /* Custom color for the section indicator */\\n      margin-bottom: 20px;\\n      text-align: center;\\n    }\\n\\n    /* Navigation Buttons */\\n    .nav-buttons {\\n      display: flex;\\n      justify-content: space-between;\\n      margin-top: 20px;\\n    }\\n\\n    .nav-button {\\n      padding: 10px 20px;\\n      background: #FF5F1F; /* Custom color for the buttons */\\n      color: #fff;\\n      border: none;\\n      border-radius: 8px;\\n      font-size: 1rem;\\n      cursor: pointer;\\n      transition: background 0.3s ease;\\n    }\\n\\n    .nav-button:hover {\\n      background: #e64a19; /* Darker shade on hover */\\n    }\\n\\n    .nav-button:disabled {\\n      background: #444; /* Disabled button color */\\n      cursor: not-allowed;\\n    }\\n\\n    /* Hide all sections by default */\\n    .form-section {\\n      display: none;\\n    }\\n\\n    /* Show the active section */\\n    .form-section.active {\\n      display: block;\\n    }\\n\\n    /* Cal.com Embed Styles */\\n    #cal-embed {\\n      display: none; /* Hidden by default */\\n      margin-top: 40px;\\n    }\\n\\n    #cal-embed h2 {\\n      font-size: 1.5rem;\\n      color: #fff; /* White text */\\n      text-align: center;\\n      margin-bottom: 20px;\\n    }\\n\\n    #my-cal-inline {\\n      border: 1px solid #444; /* Dark gray border */\\n      border-radius: 8px;\\n      padding: 20px;\\n      background: #111; /* Dark background for Cal.com embed */\\n    }\\n  </style>\\n</head>\\n<body>\\n  <div class=\"container\">\\n    <h1>Stark Concept - Discovery Call Questionnaire</h1>\\n    <p>Please fill out the form below, and we\\'ll get back to you shortly.</p>\\n    <div class=\"quote\">\\n      \"If your business is not on the Internet, then your business will be out of business.\" - Bill Gates\\n    </div>\\n\\n    <!-- Form -->\\n    <form id=\"discoveryForm\">\\n      <!-- Section 1: Business & Brand Overview -->\\n      <div class=\"form-section active\" id=\"section1\">\\n        <div class=\"section-indicator\">Section 1/6 - Business & Brand Overview</div>\\n        <div class=\"form-group\">\\n          <label for=\"businessName\">What is your business name?</label>\\n          <input type=\"text\" id=\"businessName\" name=\"businessName\" placeholder=\"Your business name\" required>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"businessDescription\">Can you briefly describe what your business does?</label>\\n          <textarea id=\"businessDescription\" name=\"businessDescription\" placeholder=\"Describe your business\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"targetAudience\">Who is your target audience? (Demographics, industries, key customers)</label>\\n          <textarea id=\"targetAudience\" name=\"targetAudience\" placeholder=\"Describe your target audience\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"nextSection(2)\">Next</button>\\n        </div>\\n      </div>\\n\\n      <!-- Section 2: Website Goals & Strategy -->\\n      <div class=\"form-section\" id=\"section2\">\\n        <div class=\"section-indicator\">Section 2/6 - Website Goals & Strategy</div>\\n        <div class=\"form-group\">\\n          <label for=\"websiteGoals\">What are the primary goals for your website? (Lead generation, brand awareness, e-commerce, portfolio, etc.)</label>\\n          <textarea id=\"websiteGoals\" name=\"websiteGoals\" placeholder=\"Describe your website goals\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"visitorActions\">What specific actions do you want visitors to take on your site? (Book a call, request a quote, purchase a product, etc.)</label>\\n          <textarea id=\"visitorActions\" name=\"visitorActions\" placeholder=\"Describe desired visitor actions\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"challenges\">Are there any challenges you currently face with your online presence?</label>\\n          <textarea id=\"challenges\" name=\"challenges\" placeholder=\"Describe your challenges\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"prevSection(1)\">Previous</button>\\n          <button type=\"button\" class=\"nav-button\" onclick=\"nextSection(3)\">Next</button>\\n        </div>\\n      </div>\\n\\n      <!-- Section 3: Design & Functionality Preferences -->\\n      <div class=\"form-section\" id=\"section3\">\\n        <div class=\"section-indicator\">Section 3/6 - Design & Functionality Preferences</div>\\n        <div class=\"form-group\">\\n          <label for=\"existingWebsite\">Do you have an existing website? If yes, what do you like/dislike about it?</label>\\n          <textarea id=\"existingWebsite\" name=\"existingWebsite\" placeholder=\"Describe your existing website\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"inspiration\">What websites inspire you? (Provide links and what you like about them)</label>\\n          <textarea id=\"inspiration\" name=\"inspiration\" placeholder=\"Share links and inspiration\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"branding\">Do you have branding guidelines? (Colors, fonts, logos, etc.)</label>\\n          <textarea id=\"branding\" name=\"branding\" placeholder=\"Describe your branding guidelines\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"features\">What essential features do you need? (CMS, booking system, animations, multilingual support, etc.)</label>\\n          <textarea id=\"features\" name=\"features\" placeholder=\"List essential features\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"prevSection(2)\">Previous</button>\\n          <button type=\"button\" class=\"nav-button\" onclick=\"nextSection(4)\">Next</button>\\n        </div>\\n      </div>\\n\\n      <!-- Section 4: Content & Assets -->\\n      <div class=\"form-section\" id=\"section4\">\\n        <div class=\"section-indicator\">Section 4/6 - Content & Assets</div>\\n        <div class=\"form-group\">\\n          <label for=\"contentReady\">Do you already have content (text, images, videos) ready for your website?</label>\\n          <textarea id=\"contentReady\" name=\"contentReady\" placeholder=\"Describe your content readiness\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"assistanceNeeded\">If not, will you need assistance with copywriting, photography, or design assets?</label>\\n          <textarea id=\"assistanceNeeded\" name=\"assistanceNeeded\" placeholder=\"Describe your needs\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"toneOfVoice\">Do you have a preferred tone of voice for your brand? (Professional, friendly, modern, etc.)</label>\\n          <textarea id=\"toneOfVoice\" name=\"toneOfVoice\" placeholder=\"Describe your tone of voice\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"prevSection(3)\">Previous</button>\\n          <button type=\"button\" class=\"nav-button\" onclick=\"nextSection(5)\">Next</button>\\n        </div>\\n      </div>\\n\\n      <!-- Section 5: SEO & Marketing -->\\n      <div class=\"form-section\" id=\"section5\">\\n        <div class=\"section-indicator\">Section 5/6 - SEO & Marketing</div>\\n        <div class=\"form-group\">\\n          <label for=\"trafficPlan\">How do you plan to drive traffic to your website? (SEO, paid ads, social media, etc.)</label>\\n          <textarea id=\"trafficPlan\" name=\"trafficPlan\" placeholder=\"Describe your traffic plan\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"keywords\">Do you have specific keywords in mind for search rankings?</label>\\n          <textarea id=\"keywords\" name=\"keywords\" placeholder=\"List your keywords\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"seoServices\">Will you need ongoing SEO services or content updates?</label>\\n          <textarea id=\"seoServices\" name=\"seoServices\" placeholder=\"Describe your SEO needs\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"prevSection(4)\">Previous</button>\\n          <button type=\"button\" class=\"nav-button\" onclick=\"nextSection(6)\">Next</button>\\n        </div>\\n      </div>\\n\\n      <!-- Section 6: Timeline & Budget -->\\n      <div class=\"form-section\" id=\"section6\">\\n        <div class=\"section-indicator\">Section 6/6 - Timeline & Budget</div>\\n        <div class=\"form-group\">\\n          <label for=\"timeline\">What is your ideal timeline for launching the website?</label>\\n          <textarea id=\"timeline\" name=\"timeline\" placeholder=\"Describe your timeline\"></textarea>\\n        </div>\\n        <div class=\"form-group\">\\n          <label for=\"budget\">Do you have a budget range in mind for this project?</label>\\n          <textarea id=\"budget\" name=\"budget\" placeholder=\"Describe your budget\"></textarea>\\n        </div>\\n        <div class=\"nav-buttons\">\\n          <button type=\"button\" class=\"nav-button\" onclick=\"prevSection(5)\">Previous</button>\\n          <button type=\"submit\" class=\"nav-button\">Submit</button>\\n        </div>\\n      </div>\\n    </form>\\n\\n    <!-- Cal.com Embed (Hidden by Default) -->\\n    <div id=\"cal-embed\">\\n      <h2>Book Your Discovery Call</h2>\\n      <div id=\"my-cal-inline\"></div>\\n    </div>\\n  </div>\\n\\n  <!-- Cal.com Script -->\\n  <script type=\"text/javascript\">\\n    (function (C, A, L) {\\n      let p = function (a, ar) { a.q.push(ar); };\\n      let d = C.document;\\n      C.Cal = C.Cal || function () {\\n        let cal = C.Cal;\\n        let ar = arguments;\\n        if (!cal.loaded) {\\n          cal.ns = {};\\n          cal.q = cal.q || [];\\n          d.head.appendChild(d.createElement(\"script\")).src = A;\\n          cal.loaded = true;\\n        }\\n        if (ar[0] === L) {\\n          const api = function () { p(api, arguments); };\\n          const namespace = ar[1];\\n          api.q = api.q || [];\\n          if (typeof namespace === \"string\") {\\n            cal.ns[namespace] = cal.ns[namespace] || api;\\n            p(cal.ns[namespace], ar);\\n            p(cal, [\"initNamespace\", namespace]);\\n          } else p(cal, ar);\\n          return;\\n        }\\n        p(cal, ar);\\n      };\\n    })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\n    Cal(\"init\", \"discovery-call\", { origin: \"https://cal.com\" });\\n\\n    Cal.ns[\"discovery-call\"](\"inline\", {\\n      elementOrSelector: \"#my-cal-inline\",\\n      config: { \"layout\": \"month_view\" },\\n      calLink: \"starkconcept/discovery-call\",\\n    });\\n\\n    Cal.ns[\"discovery-call\"](\"ui\", { \"hideEventTypeDetails\": false, \"layout\": \"month_view\" });\\n  </script>\\n\\n  <!-- Form Navigation Script -->\\n  <script>\\n    let currentSection = 1;\\n\\n    function showSection(sectionNumber) {\\n      // Hide all sections\\n      document.querySelectorAll(\".form-section\").forEach((section) => {\\n        section.classList.remove(\"active\");\\n      });\\n\\n      // Show the selected section\\n      document.getElementById(`section${sectionNumber}`).classList.add(\"active\");\\n    }\\n\\n    function nextSection(next) {\\n      if (next > 6) return;\\n      currentSection = next;\\n      showSection(currentSection);\\n    }\\n\\n    function prevSection(prev) {\\n      if (prev < 1) return;\\n      currentSection = prev;\\n      showSection(currentSection);\\n    }\\n\\n    // Initialize the first section\\n    showSection(currentSection);\\n  </script>\\n\\n  <!-- Form Submission Script -->\\n  <script>\\n    document.getElementById(\"discoveryForm\").addEventListener(\"submit\", function (event) {\\n      event.preventDefault();\\n\\n      // Get form data\\n      const formData = new FormData(event.target);\\n      const data = Object.fromEntries(formData.entries());\\n\\n      // Send email (using a simple mailto link for now)\\n      const subject = \"New Discovery Call Submission\";\\n      const body = Object.entries(data)\\n        .map(([key, value]) => `${key}: ${value}`)\\n        .join(\"\\\\n\");\\n      window.location.href = `mailto:hello@starkconcept.design?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`;\\n\\n      // Show Cal.com embed\\n      document.getElementById(\"cal-embed\").style.display = \"block\";\\n\\n      // Optional: Clear the form after submission\\n      event.target.reset();\\n      alert(\"Thank you! Your form has been submitted. You can now book your discovery call.\");\\n    });\\n  </script>\\n</body>\\n</html>',id:\"AHv8wozXy\",layoutId:\"AHv8wozXy\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18w6q93\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mIxfNFQKN:{width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+80+1114.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ndrd8s-container\",nodeId:\"RB9nibvXN\",scopeId:\"iwHZ0ZE1W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hfkw3h63g:{variant:\"OZSwbMXcn\"},mIxfNFQKN:{variant:\"DJlsKfAko\"},qsP8UwbG4:{variant:\"jftbs4KRR\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RB9nibvXN\",layoutId:\"RB9nibvXN\",style:{height:\"100%\",width:\"100%\"},variant:\"Gz0Bow9ou\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iG3qB.framer-pbvd28, .framer-iG3qB .framer-pbvd28 { display: block; }\",\".framer-iG3qB.framer-addrtc { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-iG3qB .framer-7l2e63-container { flex: none; height: auto; left: 24px; position: fixed; right: 24px; top: 12px; z-index: 10; }\",\".framer-iG3qB .framer-1wmmyjp { 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: 80px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-iG3qB .framer-l4m14i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iG3qB .framer-rbcbb3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-iG3qB .framer-gadupa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iG3qB .framer-14dgw35, .framer-iG3qB .framer-pyworc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iG3qB .framer-12zhhqt-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-iG3qB .framer-18w6q93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iG3qB .framer-1ndrd8s-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-iG3qB.framer-addrtc { width: 1200px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-iG3qB.framer-addrtc { width: 810px; }}\",\"@media (max-width: 809px) { .framer-iG3qB.framer-addrtc { width: 390px; } .framer-iG3qB .framer-7l2e63-container { left: 8px; right: 8px; top: 0px; } .framer-iG3qB .framer-1wmmyjp { padding: 80px 8px 0px 8px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1795\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qsP8UwbG4\":{\"layout\":[\"fixed\",\"auto\"]},\"Hfkw3h63g\":{\"layout\":[\"fixed\",\"auto\"]},\"mIxfNFQKN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameriwHZ0ZE1W=withCSS(Component,css,\"framer-iG3qB\");export default FrameriwHZ0ZE1W;FrameriwHZ0ZE1W.displayName=\"Page\";FrameriwHZ0ZE1W.defaultProps={height:1795,width:1440};addFonts(FrameriwHZ0ZE1W,[{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\"}]},...NavBarFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriwHZ0ZE1W\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"1795\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qsP8UwbG4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hfkw3h63g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mIxfNFQKN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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",
  "names": ["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", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavBarFonts", "getFonts", "BbXlbwda5_default", "EmbedFonts", "Embed", "FooterFonts", "OoWNTqLOW_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "BbXlbwda5_default", "RichText2", "x", "Embed", "OoWNTqLOW_default", "css", "FrameriwHZ0ZE1W", "withCSS", "iwHZ0ZE1W_default", "addFonts", "NavBarFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
