{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/7Vzkp1ORK9zU9dYiZ1fu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js", "ssg:https://framerusercontent.com/modules/yeZFHVqCrdkyvehos9FY/lXTyKG6jvTCRKIX3HTie/m80lAFuSf.js", "ssg:https://framerusercontent.com/modules/couXnw7Y0fEc137u9qML/EqBB0CFeZwe97bB96jAL/augiA20Il.js"],
  "sourcesContent": ["import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window['${dataLayerName}']=window['${dataLayerName}']||[];`+(dataLayer?`window['${dataLayerName}'].push(${JSON.stringify(dataLayer)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=\"\";if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);script.crossOrigin=\"anonymous\"// allows for more detailed INP collection\n;return script;};return{getDataLayerScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{return Intl?.DateTimeFormat()?.resolvedOptions()?.timeZone?.startsWith(\"Europe\");};const isEULocale=()=>{const locale=navigator.language??navigator.languages?.[0];return countries.some(country=>locale?.toUpperCase()?.includes(country));};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js\";export function useRegion({content,useRegionFromProps,skipEUCheck}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=banner.style.border?.width?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`],\"framer-lib-cookie-banner\");function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||policy?.link;if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description?.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&policy?.link?\" \":null,policy?.link&&/*#__PURE__*/_jsxs(\"span\",{children:[policy?.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy?.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy?.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}const Button=withCSS(function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:settings.hoverOpacity??.6},whileTap:{opacity:settings.tapOpacity??.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\nexport const __FramerMetadata__ = {\"exports\":{\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/7Vzkp1ORK9zU9dYiZ1fu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const skipLogic=!preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{if(skipLogic)return;// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen,skipLogic]);// Check if user should be prompted\nuseEffect(()=>{if(skipLogic)return;const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed,skipLogic]);useEffect(()=>{if(skipLogic)return;if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes,skipLogic]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),!skipLogic&&/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[blocking&&/*#__PURE__*/_jsx(Backdrop,{color:props.banner.style?.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\",\"framer-lib-cookie-trigger\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f73129a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={S95tX48gU:{hover:true}};const serializationHash=\"framer-OPQGp\";const variantClassNames={S95tX48gU:\"framer-v-132n5n7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,label,link,width,...props})=>{return{...props,hUGT8esx_:link??props.hUGT8esx_,UcAJWx7hT:label??props.UcAJWx7hT??\"More About Price Data\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,UcAJWx7hT,hUGT8esx_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"S95tX48gU\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:hUGT8esx_,motionChild:true,nodeId:\"S95tX48gU\",openInNewTab:false,scopeId:\"m80lAFuSf\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-132n5n7\",className,classNames)} framer-1fcuz4a`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"S95tX48gU\",ref:refBinding,style:{...style},...addPropertyOverrides({\"S95tX48gU-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255)))\"},children:\"More About Price Data\"})}),className:\"framer-6hnf8k\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-Medium\"],layoutDependency:layoutDependency,layoutId:\"YmwHV8wGy\",style:{\"--extracted-r6o4lv\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UcAJWx7hT,variants:{\"S95tX48gU-hover\":{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"S95tX48gU-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"More About Price Data\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pao1bd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EOOaXJcS7-container\",nodeId:\"EOOaXJcS7\",rendersWithMotion:true,scopeId:\"m80lAFuSf\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"nav-arrow-right\",iconSelection:\"Home\",id:\"EOOaXJcS7\",layoutId:\"EOOaXJcS7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"S95tX48gU-hover\":{color:\"rgba(255, 255, 255, 0.7)\",iconSearch:\"arrow-right\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OPQGp.framer-1fcuz4a, .framer-OPQGp .framer-1fcuz4a { display: block; }\",\".framer-OPQGp.framer-132n5n7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OPQGp .framer-6hnf8k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OPQGp .framer-pao1bd-container { flex: none; height: 24px; position: relative; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 182.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ixyoryoRX\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"UcAJWx7hT\":\"label\",\"hUGT8esx_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerm80lAFuSf=withCSS(Component,css,\"framer-OPQGp\");export default Framerm80lAFuSf;Framerm80lAFuSf.displayName=\"Button Links\";Framerm80lAFuSf.defaultProps={height:24,width:182.5};addPropertyControls(Framerm80lAFuSf,{UcAJWx7hT:{defaultValue:\"More About Price Data\",displayTextArea:false,title:\"Label\",type:ControlType.String},hUGT8esx_:{title:\"Link\",type:ControlType.Link}});addFonts(Framerm80lAFuSf,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm80lAFuSf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"182.5\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"UcAJWx7hT\\\":\\\"label\\\",\\\"hUGT8esx_\\\":\\\"link\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ixyoryoRX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m80lAFuSf.map", "// Generated by Framer (f8e3bf6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import Shimmer from\"https://framerusercontent.com/modules/rLgtMjPGk32MtaQtK2iW/Ur1vXafQSw1rOAtv7969/g_s8LqzcU.js\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import ButtonsMainButton from\"#framer/local/canvasComponent/g8PSGZxw8/g8PSGZxw8.js\";import Navigation from\"#framer/local/canvasComponent/kliNrF8Kn/kliNrF8Kn.js\";import ButtonLinks from\"#framer/local/canvasComponent/m80lAFuSf/m80lAFuSf.js\";import SectionsFooter from\"#framer/local/canvasComponent/WnWLUINWq/WnWLUINWq.js\";import*as sharedStyle2 from\"#framer/local/css/mzmVa_BmS/mzmVa_BmS.js\";import*as sharedStyle1 from\"#framer/local/css/y87ARTO1U/y87ARTO1U.js\";import*as sharedStyle from\"#framer/local/css/ZspB1FyjN/ZspB1FyjN.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ButtonsMainButtonFonts=getFonts(ButtonsMainButton);const TickerFonts=getFonts(Ticker);const IconoirFonts=getFonts(Iconoir);const ButtonLinksFonts=getFonts(ButtonLinks);const BlurGradientFonts=getFonts(BlurGradient);const GlobeFonts=getFonts(Globe);const ShimmerFonts=getFonts(Shimmer);const ContainerWithFX=withFX(Container);const SectionsFooterFonts=getFonts(SectionsFooter);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={irf0gQeMI:\"(min-width: 810px) and (max-width: 1199px)\",wj1L1_V5Z:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Ofst2\";const variantClassNames={irf0gQeMI:\"framer-v-1jy2ha2\",wj1L1_V5Z:\"framer-v-dg74w0\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:1.5,duration:8,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:780,y:325};const transition2={delay:.2,duration:5.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:780,y:325};const transition3={delay:.6,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:780,y:325};const transition4={delay:.2,duration:5.9,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:780,y:325};const transition5={delay:2,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:780,y:325};const transition6={delay:2.4,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:780,y:325};const transition7={delay:3.2,duration:7.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:780,y:325};const transition8={delay:1,duration:5,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:780,y:325};const transition9={delay:1,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const transition10={delay:3,duration:5.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition11={delay:2,duration:5.4,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:5.4,duration:5.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition13={delay:2.3,duration:5.8,ease:[.12,.23,.5,1],type:\"tween\"};const transition14={delay:5.4,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const transition15={delay:2,duration:8,ease:[.12,.23,.5,1],type:\"tween\"};const transition16={delay:2,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"wj1L1_V5Z\",Tablet:\"irf0gQeMI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wj1L1_V5Z\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wj1L1_V5Z\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{width:componentViewport?.width||\"100vw\"},wj1L1_V5Z:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1200px\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nl7oxz-container\",nodeId:\"PQimFkPXk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{variant:\"s83EwkOAv\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"PQimFkPXk\",layoutId:\"PQimFkPXk\",style:{height:\"100%\",width:\"100%\"},variant:\"oP7O3rcSI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqmi5g\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pety8k\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lj3wel\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0h84z\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Financial data engineered\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"for AI innovation\"})]})})},wj1L1_V5Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Financial data engineered for\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"AI innovation\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"Financial data engineered\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"for AI innovation\"})]})}),className:\"framer-kpdcux\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Clash Display-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Build smarter financial products faster with AI-ready financial data\u2014no complex setup required.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Build smarter financial products faster with AI-ready\",/*#__PURE__*/_jsx(\"br\",{}),\"financial data\u2014no complex setup required.\"]})}),className:\"framer-1wmpe18\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+64+110+0+0+0+239},wj1L1_V5Z:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+64+96+0+0+0+0+239}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"120px\",y:(componentViewport?.y||0)+0+64+110+0+0+0+258.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-62kpqs-container\",nodeId:\"VNuIZUdRk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{variant:\"mXqMutor2\"}},children:/*#__PURE__*/_jsx(ButtonsMainButton,{AYjRDFoSW:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",Fbe7zPnJY:\"Try for Free\",height:\"100%\",id:\"VNuIZUdRk\",layoutId:\"VNuIZUdRk\",style:{width:\"100%\"},variant:\"R64oadYuL\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+127.1667),pixelHeight:640,pixelWidth:854,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif\",srcSet:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif?scale-down-to=512 512w,https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif 854w\"}},wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+266.5),pixelHeight:640,pixelWidth:854,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif\",srcSet:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif?scale-down-to=512 512w,https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif 854w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+158.5),pixelHeight:640,pixelWidth:854,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif\",srcSet:\"https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif?scale-down-to=512 512w,https://framerusercontent.com/images/5NNJUHyaIWirhHGZFOXpehjjtjQ.gif 854w\"},className:\"framer-fdk2d\",\"data-framer-name\":\"Background Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19l1795\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIEdhbGFubyBOZXVlIFRlc3QgUmVndWxhcg==\",\"--framer-font-family\":'\"RB Galano Neue Test Regular\", \"RB Galano Neue Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7fe706d6-e066-44cd-8368-c485db47cdbe, rgb(136, 136, 136))\"},children:\"Access to 6,000+ U.S. stocks \"})}),className:\"framer-lraitb\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;RB Galano Neue Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kaacl1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hTIKfS7At\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:27,overflow:false},paddingBottom:0,paddingLeft:16,paddingRight:16,paddingTop:0},wj1L1_V5Z:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:27,overflow:false},paddingBottom:0,paddingLeft:16,paddingRight:16,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:2,fadeWidth:100,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"hTIKfS7At\",layoutId:\"hTIKfS7At\",padding:10,paddingBottom:10,paddingLeft:120,paddingPerSide:true,paddingRight:120,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3oa5ni\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oaxy2y\",\"data-framer-name\":\"Adobe Corporate_logo\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:54,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 54.424 14.34\" fill=\"#fa0c00\"><path d=\"M5.996 0H0v14.34zm4.219 0h5.988v14.34zm-2.11 5.285 3.817 9.055H9.418l-1.14-2.883H5.483Zm17.88 3.835.707 2.027c.024.05.059.074.121.074h1.36c.074 0 .086-.035.074-.11l-2.809-7.8c-.011-.063-.023-.075-.086-.075h-1.687c-.047 0-.074.036-.074.086-.024.41-.059.536-.11.657l-2.504 7.12c-.011.087.016.122.086.122h1.215c.074 0 .11-.024.137-.098l.668-2.004ZM23.47 7.794c.367-1.11.851-2.531 1.047-3.344h.011c.242.852.813 2.54 1.07 3.344zm8.388 3.548a5.76 5.76 0 0 0 2.297-.473c.062-.023.074-.05.074-.11a8.119 8.119 0 0 1-.051-.776V2.639c0-.047 0-.07-.059-.07h-1.324c-.05 0-.074.023-.074.085v2.489a4.355 4.355 0 0 0-.523-.035c-2.137 0-3.45 1.41-3.45 3.171 0 2.043 1.348 3.063 3.11 3.063zm.863-1.36c-.219.07-.461.098-.707.098-.969 0-1.762-.547-1.762-1.875 0-1.176.817-1.87 1.899-1.87.218 0 .41.023.57.085zm5.732-4.874c-1.824 0-2.953 1.398-2.953 3.125 0 1.542.899 3.109 2.926 3.109 1.715 0 2.918-1.262 2.918-3.149 0-1.664-1.02-3.085-2.89-3.085zm-.074 1.226c1.031 0 1.469.887 1.469 1.899 0 1.25-.645 1.87-1.395 1.87-.925 0-1.472-.777-1.472-1.898 0-1.152.582-1.87 1.398-1.87zm4.334-3.766c-.05 0-.086.024-.086.086v8.313c0 .035.035.098.086.11a6.165 6.165 0 0 0 1.82.265c1.801 0 3.551-1.117 3.551-3.367 0-1.63-1.117-2.867-2.867-2.867a3.51 3.51 0 0 0-1.106.171l-.015-2.613c0-.086-.024-.098-.11-.098zm3.875 5.555c0 1.348-.922 1.98-1.918 1.98-.207 0-.39-.011-.559-.062V6.494c.192-.074.422-.136.848-.136.961 0 1.629.609 1.629 1.765zm6.438.437c.594 0 1.082-.011 1.25-.05.063-.012.086-.035.098-.086.035-.133.05-.41.05-.75 0-1.156-.695-2.566-2.492-2.566-1.836 0-2.855 1.496-2.855 3.183 0 1.496.789 3.05 3 3.05.828 0 1.363-.132 1.824-.35.047-.024.07-.063.07-.133V9.846c0-.059-.035-.07-.07-.047-.46.195-.96.293-1.508.293-1.238 0-1.8-.684-1.836-1.531zm-2.469-1.046c.098-.594.473-1.239 1.313-1.239.926 0 1.168.778 1.168 1.13v.097c-.051.012-.207.012-.668.012zm0 0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bwlure\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bos60l\",\"data-framer-name\":\"Disney wordmark\",fill:'var(--token-c83340fe-9bbb-48cb-b057-33f5d9aeaf6b, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:294,intrinsicWidth:700,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"700\" height=\"294.4\" viewBox=\"0 0 700 294.423\"><path d=\"M602.2 128.6c-11.7 2.7-42.6 4.2-42.6 4.2l-3.8 12.2s15.3-1.3 26.5-.2c0 0 3.6-.3 4 4 .2 4.4-.3 9-.3 9s-.3 2.7-4 3.4c-4.3.7-33.3 2-33.3 2L544 179s-1.7 3.6 2.2 2.6c3.6-1 34-6.8 38-6 4.2 1 9 6.8 7.6 12-1.6 6.3-32 25.7-50.4 24.4 0 0-9.7.6-17.8-12.5-7.8-12.5 2.7-36 2.7-36s-4.7-11-1.2-15c0 0 2-1.7 8-2.2l7.5-15.4s-8.5.5-13.5-5.7c-4.6-6-5-8.6-1.4-10.2 3.8-2 39-8.3 63.2-7.5 0 0 8.5-1 16 13.7 0 0 3.4 6-2.6 7.4M511 187.8c-3 7.3-11.3 15-21.3 10.3-10.2-4.8-26.3-37.6-26.3-37.6s-6-12.2-7.2-11.8c0 0-1.3-2.4-2 11-1 13.3.2 39.2-5.3 43.3-5 4-11 2.3-14.4-2.4-2.8-4.7-4-16-2.4-35.7 1.8-19.7 6.3-40.7 12-47.2 6-6.6 10.8-1.8 12.6 0 0 0 7.7 7 20.7 27.7l2.2 3.8s11.8 19.7 13 19.6c0 0 1 1 1.8.2 1.2-.3.8-6.7.8-6.7S493 141 482 105c0 0-1.6-4.6-.5-9 1-4 5.3-2 5.3-2s16.6 8 24.7 35c8 27 2.6 51.5-.4 58.8m-81.5-69.3c-1.6 2.8-2.3 6.7-9.2 7.8 0 0-67 4.7-70.3 9.4 0 0-2.2 2.8 1.4 3.5 3.8.8 19 2.8 26.2 3.2 7.8 0 34 .2 43.6 12 0 0 5.5 5.6 5.3 18.3-.2 13-2.5 17.6-7.6 22.3-5.3 4.4-50.7 24.8-80-6.4 0 0-13.4-15 4.7-26.4 0 0 13-8 46.3 1.3 0 0 10 3.6 9.6 7.3-.6 4-8.3 8-19.5 7.8-10.8-.3-18.8-5.5-17.2-4.6 1.5.5-11.7-6.4-15.8-1.7-4 4.4-3 7 1 9.7 10 5.8 49.3 3.7 61-9.4 0 0 4.7-5.3-2.4-9.6-7-4-27.4-6.5-35.3-6.8-7.5-.4-35.6 0-39.8-7.3 0 0-4-5.2.4-19.4 4.6-15 37.3-20.8 51.5-22 0 0 39-1.6 46.3 6.4 0 0 1 1.8-.2 4.5m-110.6 88c-4.7 3.5-14.7 2-17.6-2-2.8-3.5-3.8-17.3-3.3-39 .7-22.2 1-49.4 6-53.8 5-4.3 8-.5 10 2.4 2 3 4.6 6.3 5 13.2.6 7 2.3 43 2.3 43s2.2 32.8-2.3 36.2m9.9-117c-13.8 4.7-23.2 3.2-31.2-.3-3.5 6.3-5.6 8.2-8.2 8.6-4 .4-7.5-6-8-8-.8-1.5-2.7-4.2-.4-10.3-7.8-7-8.4-16.4-7-22.7 1.8-7.4 15-35.2 55-38.5 0 0 19.6-1.4 23 9h.6s19 0 18.6 17c0 17-21 38.2-42.4 45.5M346.8 41c-12.6 2-32 18.8-41.3 32.7 14.3 2.6 39.3 1.6 50.5-21 0 0 5.3-14.2-9.2-11.7m-55.3 11c-4 6.5-4.2 10.4-2.3 13 4.7-7 13-18 25.5-26.6-9.6 1-17.7 5-23.2 13.6m340.7 153.7c-9.2 22.6-17 45.5-21.5 79.8 0 0-1 6.7-6.5 4.5-5.5-2-14.5-11-16.5-23.7-2-16.6 5.4-44.6 20.5-76.8-4.4-7-7.5-17.4-5-32 0 0 4-27 31-51.4 0 0 3.2-2.7 5-1.8 2.2 1 1.3 9.6-.5 14-1.6 4.2-13.6 25-13.6 25s-7.5 14.2-5.4 25.3c14.2-21.8 46.5-66 66.5-52 12.7 9 12.7 38 3.2 54.8-7.5 13.3-28.7 40.8-57 34.4m41.6-68c-7.4 8-20.6 23.2-31 43.8 11-1.2 21.7-7.3 25-10.4 5.3-4.7 17.5-17.4 15.6-34.2 0 0-1.2-8.8-9.6.8m-448 79.7c-35.4 10.8-68.8 5.8-87 1-.5 7.4-1.3 10.5-2.5 11.7-1.4 1.6-13 8.2-19.4-1.2-2.8-4.5-4.2-12.6-5-20-41-18.6-60-46-60.6-47-1-1-10.3-10.7-1-22.7 8.7-10.8 37.5-21.7 63.3-26 1-22 3.4-39 6.5-46.5 3.7-9 8.4-1 12.6 5 3.4 4.5 5.5 23.8 5.7 39.2 16.8-.8 27 .4 45.7 4 24.6 4.2 41 16.8 39.7 31-1.2 14-14 19.8-19 20.2-5 .4-13-3.3-13-3.3-5.6-2.6-.5-5 6-7.8 7.2-3.5 5.6-7 5.6-7-2.6-8-34.5-13.3-66.2-13.3 0 17.5.7 46.5 1.2 63.4 22.2 4.2 38.8 3.3 38.8 3.3s81-2.3 83.3-54c2.5-51.8-81-101.4-142.5-117C56.8 14.4 22 25.8 19 27.3c-3.3 1.6-.3 2.2-.3 2.2S22 30 28 32c6 2 1.2 5 1.2 5C18.7 40.6 7 38.5 4.7 33.7c-2.3-4.7 1.5-9 6-15.3 4.2-6.5 9-6.3 9-6.3 76-26.5 168.8 21 168.8 21 86.8 43.8 101.6 95.3 100 115.3-1.4 19.7-9 53-62.5 69.2M59 146c-8.6 4-2.6 10.4-2.6 10.4 16.2 17.3 36 28.2 55 35 2.2-30 2-40.7 2-55.8C84 137.6 67 142.4 59 146\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jawaq2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-phwjlj\",\"data-framer-name\":\"Cisco logo_blue_2016\",fill:\"black\",intrinsicHeight:114,intrinsicWidth:216,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"216\" height=\"114\" fill=\"#049fd9\"><path d=\"M106.48 76.238c-.282-.077-4.621-1.196-9.232-1.196-8.73 0-13.986 4.714-13.986 11.734 0 6.214 4.397 9.313 9.674 10.98.585.193 1.447.463 2.021.653 2.349.739 4.224 1.837 4.224 3.739 0 2.127-2.167 3.504-6.878 3.504-4.14 0-8.109-1.184-8.945-1.395v8.637c.466.099 5.183 1.025 10.222 1.025 7.248 0 15.539-3.167 15.539-12.595 0-4.573-2.8-8.783-8.947-10.737l-2.613-.832c-1.559-.492-4.342-1.289-4.342-3.574 0-1.805 2.062-3.076 5.859-3.076 3.276 0 7.263 1.101 7.404 1.145zm80.041 18.243c0 5.461-4.183 9.879-9.796 9.879-5.619 0-9.791-4.418-9.791-9.879 0-5.45 4.172-9.87 9.791-9.87 5.613 0 9.796 4.42 9.796 9.87m-9.796-19.427c-11.544 0-19.823 8.707-19.823 19.427 0 10.737 8.279 19.438 19.823 19.438 11.543 0 19.834-8.701 19.834-19.438 0-10.72-8.291-19.427-19.834-19.427M70.561 113.251h-9.472V75.719h9.472\"/><path d=\"M48.07 76.399c-.89-.264-4.18-1.345-8.636-1.345-11.526 0-19.987 8.218-19.987 19.427 0 12.093 9.34 19.438 19.987 19.438 4.23 0 7.459-1.002 8.636-1.336v-10.075c-.407.226-3.503 1.992-7.957 1.992-6.31 0-10.38-4.441-10.38-10.019 0-5.748 4.246-10.011 10.38-10.011 4.53 0 7.576 1.805 7.957 2.004\" id=\"a\"/><use xlink:href=\"#a\" transform=\"translate(98.86)\"/><g id=\"c\"><path d=\"M61.061 4.759c0-2.587-2.113-4.685-4.703-4.685-2.589 0-4.702 2.098-4.702 4.685v49.84a4.701 4.701 0 0 0 4.702 4.699 4.701 4.701 0 0 0 4.703-4.699zM35.232 22.451c0-2.586-2.112-4.687-4.702-4.687s-4.702 2.101-4.702 4.687v22.785a4.701 4.701 0 0 0 4.702 4.699 4.701 4.701 0 0 0 4.702-4.699zM9.404 35.383c0-2.587-2.112-4.684-4.702-4.684C2.115 30.699 0 32.796 0 35.383v9.853a4.703 4.703 0 0 0 9.404 0\" id=\"b\"/><use xlink:href=\"#b\" transform=\"matrix(-1 0 0 1 112.717 0)\"/></g><use xlink:href=\"#c\" transform=\"matrix(-1 0 0 1 216 0)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-njcyxe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wqmt0e\",\"data-framer-name\":\"MSFT Logo\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:148,svg:'<svg width=\"148\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M61.633 6.4v19.2h-3.266V10.533h-.043L52.489 25.6h-2.177l-5.965-15.067h-.044V25.6H41.3V6.4H46l5.4 14.222h.087L57.192 6.4h4.441Zm2.7 1.467c0-.534.174-.978.566-1.334.392-.355.827-.533 1.35-.533.566 0 1.045.178 1.393.533.349.356.566.8.566 1.334 0 .533-.174.977-.566 1.333a1.955 1.955 0 0 1-1.393.533c-.566 0-1.002-.177-1.35-.533-.348-.4-.566-.844-.566-1.333Zm3.527 3.955V25.6h-3.18V11.822h3.179Zm9.623 11.422c.479 0 1.001-.088 1.567-.355A6.835 6.835 0 0 0 80.618 22v3.022a5.486 5.486 0 0 1-1.742.667c-.653.133-1.35.222-2.133.222-2.003 0-3.614-.622-4.834-1.911-1.262-1.289-1.872-2.933-1.872-4.889 0-2.222.653-4.044 1.916-5.467 1.263-1.422 3.048-2.133 5.4-2.133.609 0 1.218.089 1.784.222.61.134 1.089.356 1.437.534v3.11c-.479-.355-1.001-.666-1.48-.844-.523-.177-1.045-.31-1.568-.31-1.262 0-2.264.4-3.048 1.244-.783.844-1.132 1.955-1.132 3.377 0 1.378.392 2.49 1.132 3.245.74.755 1.742 1.155 3.005 1.155ZM89.63 11.6c.261 0 .48 0 .697.044.218.045.392.09.522.134v3.289a1.938 1.938 0 0 0-.74-.356c-.348-.089-.697-.178-1.175-.178-.784 0-1.437.356-1.96 1.023-.522.666-.827 1.688-.827 3.11V25.6h-3.179V11.822h3.179V14h.043c.305-.756.74-1.333 1.307-1.778a3.78 3.78 0 0 1 2.133-.622Zm1.394 7.333c0-2.266.653-4.089 1.872-5.422 1.263-1.333 3.004-2 5.225-2 2.09 0 3.745.622 4.92 1.911 1.176 1.29 1.786 3.022 1.786 5.2 0 2.222-.654 4-1.873 5.334-1.263 1.333-2.96 2-5.138 2-2.09 0-3.744-.623-4.964-1.867-1.219-1.289-1.828-3.022-1.828-5.156Zm3.309-.133c0 1.422.305 2.533.958 3.289.653.755 1.567 1.155 2.743 1.155 1.132 0 2.046-.355 2.656-1.155.61-.756.914-1.867.914-3.378 0-1.467-.304-2.578-.914-3.378-.61-.755-1.524-1.155-2.613-1.155-1.175 0-2.046.4-2.7 1.2-.74.844-1.044 1.955-1.044 3.422Zm15.24-3.333c0 .444.13.844.435 1.11.305.267.915.579 1.916.979 1.263.533 2.177 1.11 2.656 1.733.523.667.784 1.422.784 2.355 0 1.29-.479 2.312-1.481 3.112-.958.8-2.307 1.155-3.962 1.155-.566 0-1.176-.089-1.872-.222-.697-.133-1.263-.311-1.742-.533v-3.2a7.55 7.55 0 0 0 1.872.977c.653.223 1.263.356 1.829.356.697 0 1.263-.089 1.568-.311.348-.222.522-.534.522-1.022 0-.445-.174-.8-.522-1.156-.349-.311-1.045-.667-2.003-1.067-1.176-.489-2.003-1.066-2.482-1.689-.479-.622-.74-1.422-.74-2.4 0-1.244.479-2.266 1.436-3.066.958-.8 2.221-1.2 3.745-1.2a6.77 6.77 0 0 1 1.568.178c.566.133 1.088.266 1.48.4v3.155a9.28 9.28 0 0 0-1.48-.755 4.524 4.524 0 0 0-1.655-.312c-.61 0-1.089.134-1.393.356-.305.311-.479.622-.479 1.067Zm7.141 3.466c0-2.266.653-4.089 1.872-5.422 1.263-1.333 3.004-2 5.225-2 2.09 0 3.745.622 4.92 1.911 1.176 1.29 1.786 3.022 1.786 5.2 0 2.222-.653 4-1.873 5.334-1.262 1.333-2.961 2-5.138 2-2.09 0-3.744-.623-4.964-1.867-1.175-1.289-1.828-3.022-1.828-5.156Zm3.309-.133c0 1.422.305 2.533.958 3.289.653.755 1.567 1.155 2.743 1.155 1.132 0 2.047-.355 2.656-1.155.61-.756.915-1.867.915-3.378 0-1.467-.305-2.578-.915-3.378-.609-.755-1.524-1.155-2.612-1.155-1.176 0-2.047.4-2.7 1.2-.697.844-1.045 1.955-1.045 3.422Zm21.075-4.311h-4.747V25.6h-3.222V14.489h-2.264v-2.667h2.264v-1.91c0-1.423.479-2.623 1.394-3.556.914-.934 2.09-1.378 3.527-1.378.391 0 .74.044 1.045.044.304 0 .566.09.783.178V8a5.194 5.194 0 0 0-.566-.222 2.838 2.838 0 0 0-.914-.134c-.653 0-1.176.223-1.524.623-.348.4-.523 1.066-.523 1.866v1.645h4.747V8.667l3.178-.978v4.089h3.222v2.666h-3.222v6.445c0 .844.174 1.422.436 1.778.304.355.783.533 1.437.533.174 0 .391-.044.653-.133.261-.09.479-.178.653-.311v2.666c-.218.134-.523.222-1.002.311a7.393 7.393 0 0 1-1.393.134c-1.35 0-2.351-.356-3.004-1.067-.654-.711-1.002-1.822-1.002-3.289l.044-7.022Z\" fill=\"#fff\"/><path d=\"M15.392 0H.5v15.2h14.892V0Z\" fill=\"#F25022\"/><path d=\"M31.85 0H16.96v15.2h14.892V0Z\" fill=\"#7FBA00\"/><path d=\"M15.392 16.8H.5V32h14.892V16.8Z\" fill=\"#00A4EF\"/><path d=\"M31.85 16.8H16.96V32h14.892V16.8Z\" fill=\"#FFB900\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h147v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-be3rzd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w1s7xw\",\"data-framer-name\":\"Walmart logo (1)\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 29\"><path d=\"M 69.474 15.434 C 69.474 12.57 68.26 10.039 64.154 10.039 C 62.047 10.039 60.373 10.645 59.466 11.176 L 60.131 13.474 C 60.967 12.945 62.299 12.509 63.557 12.509 C 65.636 12.506 65.977 13.694 65.977 14.457 L 65.977 14.641 C 61.439 14.634 58.571 16.217 58.571 19.441 C 58.571 21.411 60.027 23.259 62.573 23.259 C 64.126 23.259 65.438 22.626 66.222 21.626 L 66.299 21.626 C 66.299 21.626 66.815 23.81 69.673 22.976 C 69.528 22.061 69.474 21.097 69.474 19.926 Z M 66.089 18.458 C 66.089 18.689 66.07 18.93 66.002 19.136 C 65.741 20.018 64.839 20.756 63.717 20.756 C 62.771 20.756 62.028 20.215 62.028 19.081 C 62.028 17.346 63.925 16.869 66.089 16.881 M 0 6.142 C 0 6.142 2.964 18.388 3.435 20.371 C 3.99 22.69 4.984 23.547 7.853 22.976 L 9.706 15.382 C 10.174 13.501 10.492 12.152 10.795 10.235 L 10.846 10.235 C 11.056 12.172 11.359 13.501 11.742 15.389 C 11.742 15.389 12.498 18.838 12.89 20.645 C 13.271 22.453 14.346 23.593 17.161 22.976 L 21.571 6.142 L 18.01 6.142 L 16.497 13.424 C 16.096 15.534 15.732 17.195 15.449 19.129 L 15.398 19.129 C 15.143 17.217 14.818 15.623 14.401 13.556 L 12.833 6.142 L 9.119 6.142 L 7.445 13.366 C 6.968 15.572 6.522 17.341 6.242 19.213 L 6.193 19.213 C 5.857 17.169 5.491 15.13 5.096 13.097 C 5.096 13.097 4.102 7.924 3.751 6.142 M 31.492 15.434 C 31.492 12.57 30.275 10.039 26.169 10.039 C 24.068 10.039 22.391 10.645 21.484 11.176 L 22.149 13.474 C 22.982 12.945 24.313 12.509 25.575 12.509 C 27.654 12.506 27.995 13.694 27.995 14.457 L 27.995 14.641 C 23.457 14.634 20.586 16.217 20.586 19.441 C 20.586 21.411 22.048 23.259 24.582 23.259 C 26.15 23.259 27.45 22.626 28.234 21.626 L 28.313 21.626 C 28.313 21.626 28.833 23.81 31.689 22.976 C 31.542 22.061 31.492 21.097 31.492 19.926 L 31.492 15.434 Z M 28.104 18.458 C 28.104 18.689 28.085 18.93 28.02 19.136 C 27.755 20.018 26.854 20.756 25.73 20.756 C 24.789 20.756 24.043 20.215 24.043 19.081 C 24.043 17.346 25.94 16.869 28.104 16.881 M 33.339 6.142 L 33.339 22.97 L 36.728 22.97 L 36.728 6.142 Z M 79.873 6.142 L 79.873 18.558 C 79.873 20.272 80.192 21.467 80.877 22.199 C 81.479 22.841 82.465 23.259 83.637 23.259 C 84.645 23.259 85.63 23.063 86.095 22.893 L 86.054 20.22 C 85.706 20.302 85.308 20.371 84.762 20.371 C 83.605 20.371 83.223 19.631 83.223 18.093 L 83.223 13.339 L 86.174 13.339 L 86.174 10.124 L 83.224 10.124 L 83.224 6.142 M 71.115 10.331 L 71.115 22.976 L 74.618 22.976 L 74.618 16.5 C 74.618 16.151 74.641 15.851 74.695 15.572 C 74.956 14.206 75.982 13.342 77.461 13.342 C 77.873 13.342 78.153 13.388 78.465 13.437 L 78.465 10.122 C 78.214 10.071 77.959 10.047 77.704 10.05 C 76.393 10.05 74.908 10.89 74.281 12.721 L 74.194 12.721 L 74.194 10.331 M 38.695 10.331 L 38.695 22.976 L 42.109 22.976 L 42.109 15.554 C 42.109 15.206 42.147 14.85 42.269 14.528 C 42.546 13.777 43.234 12.907 44.34 12.907 C 45.714 12.907 46.363 14.077 46.363 15.768 L 46.363 22.976 L 49.768 22.976 L 49.768 15.465 C 49.768 15.137 49.813 14.736 49.908 14.445 C 50.182 13.593 50.927 12.907 51.958 12.907 C 53.347 12.907 54.019 14.053 54.019 16.045 L 54.019 22.976 L 57.421 22.976 L 57.421 15.52 C 57.421 11.603 55.448 10.05 53.207 10.05 C 52.223 10.05 51.438 10.294 50.733 10.733 C 50.137 11.102 49.615 11.622 49.147 12.303 L 49.095 12.303 C 48.556 10.942 47.291 10.05 45.638 10.05 C 43.518 10.05 42.555 11.13 41.988 12.043 L 41.937 12.043 L 41.937 10.331\" fill=\"var(--token-c83340fe-9bbb-48cb-b057-33f5d9aeaf6b, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 104.506 9.764 C 105.175 9.764 105.739 9.411 105.812 8.957 L 106.476 1.367 C 106.476 0.615 105.599 0 104.506 0 C 103.406 0 102.536 0.615 102.536 1.367 L 103.205 8.957 C 103.276 9.411 103.836 9.764 104.506 9.764 M 100.434 12.139 C 100.766 11.546 100.747 10.887 100.389 10.594 L 94.194 6.219 C 93.549 5.84 92.585 6.292 92.033 7.25 C 91.482 8.206 91.594 9.279 92.225 9.651 L 99.084 12.862 C 99.523 13.028 100.097 12.72 100.434 12.133 M 108.576 12.133 C 108.927 12.72 109.502 13.028 109.929 12.871 L 116.788 9.651 C 117.425 9.271 117.52 8.209 116.982 7.252 C 116.431 6.295 115.461 5.846 114.817 6.217 L 108.621 10.588 C 108.277 10.886 108.252 11.547 108.584 12.139 M 104.506 19.245 C 105.175 19.245 105.739 19.598 105.812 20.051 L 106.476 27.642 C 106.476 28.394 105.599 29.003 104.506 29.003 C 103.406 29.003 102.536 28.394 102.536 27.642 L 103.205 20.051 C 103.276 19.598 103.836 19.245 104.506 19.245 M 108.576 16.877 C 108.927 16.288 109.502 15.974 109.929 16.144 L 116.788 19.359 C 117.425 19.73 117.52 20.802 116.982 21.76 C 116.431 22.71 115.461 23.163 114.817 22.79 L 108.621 18.414 C 108.277 18.119 108.252 17.461 108.584 16.876 M 100.434 16.87 C 100.766 17.462 100.747 18.118 100.389 18.415 L 94.194 22.784 C 93.549 23.163 92.585 22.71 92.033 21.759 C 91.482 20.803 91.594 19.73 92.225 19.358 L 99.084 16.144 C 99.523 15.975 100.097 16.286 100.434 16.87 M 118.795 22.124 L 118.88 22.124 C 118.996 22.124 119.043 22.161 119.056 22.255 C 119.081 22.358 119.094 22.428 119.119 22.458 L 119.339 22.458 C 119.32 22.436 119.295 22.379 119.282 22.249 C 119.257 22.136 119.2 22.073 119.119 22.05 L 119.119 22.03 C 119.231 22.004 119.295 21.929 119.295 21.835 C 119.295 21.766 119.268 21.7 119.218 21.652 C 119.146 21.615 119.075 21.587 118.919 21.587 C 118.781 21.587 118.68 21.599 118.599 21.618 L 118.599 22.457 L 118.794 22.457 L 118.794 22.124 Z M 118.801 21.742 L 118.901 21.728 C 119.018 21.728 119.081 21.783 119.081 21.86 C 119.081 21.946 118.996 21.986 118.887 21.986 L 118.801 21.986 Z M 118.925 21.172 C 118.444 21.172 118.062 21.552 118.062 22.018 C 118.062 22.495 118.444 22.874 118.925 22.874 C 119.412 22.874 119.783 22.495 119.783 22.018 C 119.783 21.552 119.413 21.173 118.925 21.173 M 118.925 21.343 C 119.295 21.343 119.57 21.645 119.57 22.018 C 119.57 22.393 119.295 22.704 118.925 22.698 C 118.555 22.698 118.275 22.393 118.275 22.018 C 118.275 21.645 118.555 21.343 118.919 21.343\" fill=\"rgb(255,194,32)\"></path></svg>',svgContentId:10730510300,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eh78xn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5icqgi\",\"data-framer-name\":\"Meta Platforms_Inc._logo (1) 1\",fill:\"black\",intrinsicHeight:191,intrinsicWidth:948,svg:'<svg width=\"948\" height=\"191\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M31.06 125.96c0 10.98 2.41 19.41 5.56 24.51 4.13 6.68 10.29 9.51 16.57 9.51 8.1 0 15.51-2.01 29.79-21.76 11.44-15.83 24.92-38.05 33.99-51.98l15.36-23.6c10.67-16.39 23.02-34.61 37.18-46.96C181.07 5.6 193.54 0 206.09 0c21.07 0 41.14 12.21 56.5 35.11 16.81 25.08 24.97 56.67 24.97 89.27 0 19.38-3.82 33.62-10.32 44.87-6.28 10.88-18.52 21.75-39.11 21.75v-31.02c17.63 0 22.03-16.2 22.03-34.74 0-26.42-6.16-55.74-19.73-76.69-9.63-14.86-22.11-23.94-35.84-23.94-14.85 0-26.8 11.2-40.23 31.17-7.14 10.61-14.47 23.54-22.7 38.13l-9.06 16.05c-18.2 32.27-22.81 39.62-31.91 51.75C84.74 182.95 71.12 191 53.19 191c-21.27 0-34.72-9.21-43.05-23.09C3.34 156.6 0 141.76 0 124.85l31.06 1.11Z\" fill=\"#0081FB\"/><path d=\"M24.49 37.3C38.73 15.35 59.28 0 82.85 0c13.65 0 27.22 4.04 41.39 15.61 15.5 12.65 32.02 33.48 52.63 67.81l7.39 12.32c17.84 29.72 27.99 45.01 33.93 52.22 7.64 9.26 12.99 12.02 19.94 12.02 17.63 0 22.03-16.2 22.03-34.74l27.4-.86c0 19.38-3.82 33.62-10.32 44.87-6.28 10.88-18.52 21.75-39.11 21.75-12.8 0-24.14-2.78-36.68-14.61-9.64-9.08-20.91-25.21-29.58-39.71L146.08 93.6c-12.94-21.62-24.81-37.74-31.68-45.04-7.39-7.85-16.89-17.33-32.05-17.33-12.27 0-22.69 8.61-31.41 21.78L24.49 37.3Z\" fill=\"url(#b)\"/><path d=\"M82.35 31.23c-12.27 0-22.69 8.61-31.41 21.78-12.33 18.61-19.88 46.33-19.88 72.95 0 10.98 2.41 19.41 5.56 24.51l-26.48 17.44C3.34 156.6 0 141.76 0 124.85 0 94.1 8.44 62.05 24.49 37.3 38.73 15.35 59.28 0 82.85 0l-.5 31.23Z\" fill=\"url(#c)\"/><path d=\"M347.939 6.04h35.93l61.09 110.52 61.1-110.52h35.15v181.6h-29.31V48.46l-53.58 96.38h-27.5l-53.57-96.38v139.18h-29.31V6.04Zm285.11 67.71c-21.02 0-33.68 15.82-36.71 35.41h71.34c-1.47-20.18-13.11-35.41-34.63-35.41Zm-65.77 46.57c0-41.22 26.64-71.22 66.28-71.22 38.99 0 62.27 29.62 62.27 73.42v8.05h-99.49c3.53 21.31 17.67 35.67 40.47 35.67 18.19 0 29.56-5.55 40.34-15.7l15.57 19.07c-14.67 13.49-33.33 21.27-56.95 21.27-42.91 0-68.49-31.29-68.49-70.56Zm164.09-43.97h-26.98v-24h26.98V12.66h28.28v39.69h40.99v24h-40.99v60.83c0 20.77 6.64 28.15 22.96 28.15 7.45 0 11.72-.64 18.03-1.69v23.74c-7.86 2.22-15.36 3.24-23.48 3.24-30.53 0-45.79-16.68-45.79-50.07v-64.2Zm188.35 23.34c-5.68-14.34-18.35-24.9-36.97-24.9-24.2 0-39.69 17.17-39.69 45.14 0 27.27 14.26 45.27 38.53 45.27 19.08 0 32.7-11.1 38.13-24.91v-40.6Zm28.28 87.95h-27.76V168.7c-7.76 11.15-21.88 22.18-44.75 22.18-36.78 0-61.36-30.79-61.36-70.95 0-40.54 25.17-70.83 62.92-70.83 18.66 0 33.3 7.46 43.19 20.63V52.35h27.76v135.29Z\" fill=\"#fff\"/></g><defs><linearGradient id=\"b\" x1=\"61\" y1=\"117\" x2=\"259\" y2=\"127\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0064E1\"/><stop offset=\".4\" stop-color=\"#0064E1\"/><stop offset=\".83\" stop-color=\"#0073EE\"/><stop offset=\"1\" stop-color=\"#0082FB\"/></linearGradient><linearGradient id=\"c\" x1=\"45\" y1=\"139\" x2=\"45\" y2=\"66\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0082FB\"/><stop offset=\"1\" stop-color=\"#0064E0\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h948v191H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13k4wtk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4ewqq9\",\"data-framer-name\":\"Palantir-technologies-logo\",fill:'var(--token-c83340fe-9bbb-48cb-b057-33f5d9aeaf6b, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:616,intrinsicWidth:2500,svg:'<svg height=\"616\" viewBox=\"0.133 0.132 26.485 6.324\" width=\"2500\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.588.794h1.64c.61 0 1.006.026 1.35.397.238.264.37.582.37.952a1.3 1.3 0 0 1-.397.953c-.264.264-.608.423-1.481.423h-.794v2.196h-.688zm.688 2.17h.794c.45 0 1.137-.027 1.137-.847 0-.768-.635-.768-1.005-.768h-.926zm4.868 2.751c-.053-.159-.053-.344-.053-.503-.317.556-.767.609-1.058.609-.794 0-1.217-.45-1.217-1.006 0-.264.106-.714.609-1.005.37-.212.9-.212 1.19-.212.159 0 .265 0 .45.027 0-.423 0-.609-.132-.767-.133-.16-.397-.212-.582-.212-.635 0-.688.45-.688.582h-.635c.026-.185.053-.423.238-.635.264-.291.74-.37 1.111-.37.503 0 1.032.158 1.217.502.106.212.106.37.106.53l-.026 1.64c0 .053 0 .503.052.847h-.582zm-.45-1.693c-.264 0-1.243 0-1.243.688 0 .211.132.582.714.582.318 0 .582-.133.741-.37.133-.239.159-.424.159-.9-.106.026-.212 0-.37 0zM13.257.794h.635v4.921h-.635zm3.386 4.921c-.053-.159-.053-.344-.053-.503-.317.556-.767.609-1.058.609-.794 0-1.217-.45-1.217-1.006 0-.264.106-.714.608-1.005.37-.212.9-.212 1.191-.212.159 0 .265 0 .45.027 0-.423 0-.609-.132-.767-.133-.16-.397-.212-.582-.212-.635 0-.688.45-.688.582h-.635c.026-.185.053-.423.238-.635.264-.291.74-.37 1.111-.37.503 0 1.032.158 1.217.502.106.212.106.37.106.53l-.027 1.64c0 .053 0 .503.053.847h-.582zm-.423-1.693c-.265 0-1.244 0-1.244.688 0 .211.133.582.715.582.317 0 .582-.133.74-.37.133-.239.16-.424.16-.9-.133.026-.212 0-.371 0zm1.561-1.323v-.397h.635v.556c.08-.133.317-.609 1.085-.609.317 0 1.243.106 1.243 1.164v2.328h-.661v-2.17c0-.21-.027-.422-.185-.581a.883.883 0 0 0-.609-.238c-.476 0-.9.344-.9 1.032V5.74h-.634V2.7zm3.175-.397h.609V1.56l.635-.212v.926h.767v.477H22.2v2.037c0 .159 0 .45.45.45.132 0 .264-.027.317-.027v.503a2.314 2.314 0 0 1-.53.053c-.608 0-.872-.185-.872-.741V2.752h-.609zm2.46-1.508h.768v.714h-.767zm.054 1.508h.635v3.413h-.635zm1.243.688c0-.238-.026-.476-.026-.688h.635l.026.661c.132-.476.53-.635.82-.661.186-.027.344-.027.45-.027v.635c-.026 0-.08-.026-.132-.026H26.3c-.768 0-.926.45-.926 1.032V5.74h-.635V2.99zM2.646.132C1.323.132.238 1.217.238 2.54s1.085 2.408 2.408 2.408S5.054 3.863 5.054 2.54 3.969.132 2.646.132zm0 4.075C1.72 4.207.979 3.466.979 2.54S1.719.873 2.646.873s1.667.741 1.667 1.667c-.027.926-.768 1.667-1.667 1.667zm2.143.529-2.143.926-2.143-.926-.37.662 2.513 1.058 2.513-1.058z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nnyzu1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1glrd3a\",\"data-framer-name\":\"NVIDIA logo 1\",fill:\"black\",intrinsicHeight:120,intrinsicWidth:656,svg:'<svg width=\"656\" height=\"120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M641.409 96.276V94.48h1.152c.628 0 1.484.048 1.484.816 0 .832-.44.98-1.184.98h-1.452Zm0 1.26h.768l1.788 3.136h1.96l-1.976-3.264c1.02-.076 1.86-.56 1.86-1.936 0-1.708-1.18-2.26-3.172-2.26h-2.884v7.46h1.656v-3.136Zm8.392-.584c0-4.38-3.404-6.92-7.2-6.92-3.82 0-7.22 2.54-7.22 6.92s3.4 6.932 7.22 6.932c3.792 0 7.2-2.552 7.2-6.932Zm-2.08 0c0 3.192-2.348 5.336-5.12 5.336v-.024c-2.852.024-5.156-2.12-5.156-5.312 0-3.188 2.308-5.324 5.156-5.324 2.776 0 5.12 2.136 5.12 5.324ZM385.495 22.828l.008 78.64h22.208v-78.64h-22.216Zm-174.708-.104v78.744h22.412V40.344l17.48.056c5.748 0 9.72 1.38 12.492 4.336 3.516 3.744 4.948 9.776 4.948 20.82v35.912h21.708V57.96c0-31.052-19.792-35.24-39.156-35.24h-39.88l-.004.004Zm210.468.108v78.636h36.024c19.192 0 25.456-3.192 32.228-10.348 4.792-5.024 7.884-16.056 7.884-28.108 0-11.052-2.62-20.912-7.188-27.052-8.228-10.98-20.08-13.128-37.78-13.128h-31.168Zm22.032 17.12h9.548c13.852 0 22.812 6.224 22.812 22.364 0 16.148-8.96 22.368-22.812 22.368h-9.548V39.952Zm-89.812-17.12-18.536 62.32-17.76-62.316-23.972-.004 25.36 78.636h32.012l25.564-78.636h-22.668Zm154.252 78.636h22.212V22.836l-22.22-.004.008 78.636Zm62.256-78.608-31.012 78.58h21.9l4.908-13.888h36.7l4.644 13.888h23.776l-31.248-78.584-29.668.004Zm14.416 14.34 13.456 36.816h-27.332L584.399 37.2Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.556 35.94V25.12a74.657 74.657 0 0 1 3.192-.168c29.6-.928 49.02 25.436 49.02 25.436S98.792 79.516 76.304 79.516a27.319 27.319 0 0 1-8.748-1.4V45.3c11.52 1.392 13.84 6.48 20.768 18.032l15.408-12.992S92.484 35.588 73.524 35.588c-2.06 0-4.032.144-5.968.352Zm0-35.752V16.36a76.776 76.776 0 0 1 3.192-.192c41.16-1.384 67.98 33.76 67.98 33.76s-30.8 37.456-62.892 37.456c-2.94 0-5.696-.272-8.28-.732v9.992c2.212.28 4.504.448 6.896.448 29.86 0 51.456-15.248 72.368-33.3 3.468 2.776 17.664 9.532 20.58 12.492-19.884 16.64-66.22 30.06-92.492 30.06a75.228 75.228 0 0 1-7.352-.384V120h113.5V.188h-113.5Zm0 77.928v8.536c-27.62-4.92-35.288-33.636-35.288-33.636S45.532 38.32 67.556 35.94v9.36l-.044-.004c-11.56-1.388-20.588 9.412-20.588 9.412s5.06 18.176 20.632 23.408ZM18.5 51.772s16.368-24.16 49.056-26.652v-8.768C31.352 19.26 0 49.92 0 49.92s17.756 51.332 67.556 56.032v-9.308C31.012 92.048 18.5 51.772 18.5 51.772Z\" fill=\"#76B900\"/></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ks5oz\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nfijx2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h79o8b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfnpzg\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:\"Real-time U.S. market data for your product\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:[\"Real-time U.S. market\",/*#__PURE__*/_jsx(\"br\",{}),\"data for your product\"]})}),className:\"framer-1n2q9cy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1038+40+0+0+0+0+0+0+59.2),pixelHeight:1024,pixelWidth:1024,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg\",srcSet:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg\",srcSet:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg 1024w\"},className:\"framer-epjea hidden-72rtr7 hidden-1jy2ha2\",\"data-framer-name\":\"Caa5f48f-ca7c-442d-94f6-ef6a3960bf66\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:\"Get up-to-the-second stock prices and data through intuitive APIs\u2014ready to feed your AI tools and apps from day one. We continuously validate, clean, and update at scale, so you can focus on innovation instead of data wrangling.\"})}),className:\"framer-4s37zc\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvebuo\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dj570p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svquu3\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9zvb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DV8OCP2AX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\",height:\"100%\",iconSearch:\"bounce-right\",iconSelection:\"Activity\",id:\"DV8OCP2AX\",layoutId:\"DV8OCP2AX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hmdf9\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"Ultra low latency\"})}),className:\"framer-18l0wwr\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Millisecond updates delivered via WebSocket or REST so you never miss a tick.\"})}),className:\"framer-1iohpn4\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wl1ld5\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sxifkb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vTftiUjHo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\",height:\"100%\",iconSearch:\"percentage\",iconSelection:\"Activity\",id:\"vTftiUjHo\",layoutId:\"vTftiUjHo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azqps0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"99.9 % uptime SLA\"})}),className:\"framer-1b4socx\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Battle tested on Papara\u2019s production rails and monitored around the clock.\"})}),className:\"framer-1de8v1w\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EjhPSlyLV\"},implicitPathVariables:undefined},{href:{webPageId:\"EjhPSlyLV\"},implicitPathVariables:undefined},{href:{webPageId:\"EjhPSlyLV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+1088+40+0+0+454.2},wj1L1_V5Z:{y:(componentViewport?.y||0)+0+1038+40+0+0+0+0+810.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+992+80+0+0+454.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yix3ru-container\",nodeId:\"JbRwhE2zQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{hUGT8esx_:resolvedLinks[1]},wj1L1_V5Z:{hUGT8esx_:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonLinks,{height:\"100%\",hUGT8esx_:resolvedLinks[0],id:\"JbRwhE2zQ\",layoutId:\"JbRwhE2zQ\",UcAJWx7hT:\"More About Price Data\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1088+40+0),pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg\",srcSet:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+992+80+0),pixelHeight:1024,pixelWidth:1024,sizes:\"420px\",src:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg\",srcSet:\"https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzIocIKpWGhZvEFLUw6mISZfdo4.jpg 1024w\"},className:\"framer-1avzzhf hidden-dg74w0\",\"data-framer-name\":\"Caa5f48f-ca7c-442d-94f6-ef6a3960bf66\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g5w9k2\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rjls16\",\"data-framer-name\":\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1646.2+40+0),pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1630.2+80+0),pixelHeight:1024,pixelWidth:1024,sizes:\"420px\",src:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg 1024w\"},className:\"framer-1hvdunq hidden-dg74w0\",\"data-framer-name\":\"Ai-powered-insights-data\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yd3d64\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x98p6f\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:\"30 years of financial data\u2014complete history for smarter AI\"})}),className:\"framer-1bqahtx\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1952.2+40+0+0+0+0+0+0+59.2),pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1NI9i07mbNTvg83lCajb3QDNYoI.jpg 1024w\"},className:\"framer-130akod hidden-72rtr7 hidden-1jy2ha2\",\"data-framer-name\":\"Ai-powered-insights-data\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:\"Empower your AI agents with tools that actually see the big picture. We offer three decades of comprehensive historical data\u2014over 6,000 U.S. stocks in a single platform. Build time-series analyses, visualize long-term patterns, and backtest strategies without juggling multiple data vendors.\"})}),className:\"framer-b2rmuj\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dsonn9\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brnqhs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16c49k2\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ltr34e\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 20 L 22 20 M 5 4 L 19 4 M 3 16.01 L 3.01 15.999 M 21.01 16.01 L 21 15.999 M 4 12.01 L 4.01 11.999 M 20.01 12.01 L 20 11.999 M 5 8.01 L 5.01 7.999 M 19.01 8.01 L 19 7.999 M 12 7 L 12 17 M 12 7 L 10.5 8.5 M 12 7 L 13.5 8.5 M 12 17 L 9 14 M 12 17 L 15 14\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10309739788,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nua8o\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"Depth that matters\"})}),className:\"framer-1fwm807\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Up to 30\u202Fyears of statements, ratios, and technical series\u2014perfectly time aligned for factor tests and LLM fine tuning.\"})}),className:\"framer-1lit013\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9pl2b\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq7eyf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VIir4Wy9G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\",height:\"100%\",iconSearch:\"antenna-signal\",iconSelection:\"Activity\",id:\"VIir4Wy9G\",layoutId:\"VIir4Wy9G\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j8vwwg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"Credible alternative signals\"})}),className:\"framer-63sp88\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Insider transactions, ETF flows, and news archives help you see beyond price alone.\"})}),className:\"framer-5tj3ki\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PhtBsOHGn\"},implicitPathVariables:undefined},{href:{webPageId:\"PhtBsOHGn\"},implicitPathVariables:undefined},{href:{webPageId:\"PhtBsOHGn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+1646.2+40+0+0+458.2},wj1L1_V5Z:{y:(componentViewport?.y||0)+0+1952.2+40+0+0+0+0+794.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+1630.2+80+0+0+458.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1etm15j-container\",nodeId:\"PLmmKe7W1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{hUGT8esx_:resolvedLinks1[1]},wj1L1_V5Z:{hUGT8esx_:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonLinks,{height:\"100%\",hUGT8esx_:resolvedLinks1[0],id:\"PLmmKe7W1\",layoutId:\"PLmmKe7W1\",UcAJWx7hT:\"More About Historical Data\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q5a80p\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtvq3r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kug65g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7r0n16\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:\"Production-ready architecture for streamlined development\"})}),className:\"framer-1ihe1r9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2850.4+40+0+0+0+0+0+0+59.2),pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg 1024w\"},className:\"framer-gksuhm hidden-72rtr7 hidden-1jy2ha2\",\"data-framer-name\":\"Ai-powered-insights-data\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:\"Modern fintech requires more than simple price feeds. Laplace offers a plug-and-play solution that dramatically simplifies backend development:\"})}),className:\"framer-n69vj2\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i58wam\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pysi3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:\"Minimal Backend Setup \u2013\"}),\" Deploy financial applications quickly with our pre-built data infrastructure that requires minimal configuration.\"]})}),className:\"framer-1iq4uz6\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpvmvx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:\"Simplified Market Connectivity \u2013\"}),\" Integrate real-time market data from day one with intuitive APIs that reduce backend complexity.\"]})}),className:\"framer-b4dn46\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xj7k4t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\"},children:\"Accelerated Data Pipeline \u2013\"}),\" Cut backend development time by 80% with our turnkey solution that handles the heavy lifting of data validation, cleaning, and delivery.\"]})}),className:\"framer-1hvyvsi\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2208.4+40+0),pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2272.4+80+0),pixelHeight:1024,pixelWidth:1024,sizes:\"420px\",src:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yMIvtgpmuMYT64oybtMGgVfEg.jpg 1024w\"},className:\"framer-2cp8uz hidden-dg74w0\",\"data-framer-name\":\"Ai-powered-insights-data\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7wci5y\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rp1alp\",\"data-framer-name\":\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2959.6+40+0),pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3103.6+80+0),pixelHeight:1024,pixelWidth:1024,sizes:\"420px\",src:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg 1024w\"},className:\"framer-1aqjjcu hidden-dg74w0\",\"data-framer-name\":\"Insider-trading-image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fh761k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6eubi\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:[\"Alternative data\",/*#__PURE__*/_jsx(\"br\",{}),\"insights\"]})}),className:\"framer-1kbdto3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3937.6+40+0+0+0+0+0+0+59.2),pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/suGGCHStKumYAhVVhScgwNjGLdI.jpg 1024w\"},className:\"framer-l18xj9 hidden-72rtr7 hidden-1jy2ha2\",\"data-framer-name\":\"Insider-trading-image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:\"Go beyond standard market data. Track institutional investor moves, insider transactions, and even political trading patterns\u2014no massive data-crunching required. Our platform automatically structures these signals for instant AI tool consumption, helping you anticipate market shifts before they become headlines.\"})}),className:\"framer-15t37d4\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nchoaj\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5lhdni\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgiazm\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iutx6k\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16.667 10 L 16.667 4.791 C 16.667 4.658 16.614 4.531 16.52 4.437 L 13.897 1.813 C 13.803 1.72 13.676 1.667 13.543 1.667 L 3.833 1.667 C 3.557 1.667 3.333 1.891 3.333 2.167 L 3.333 17.833 C 3.333 18.109 3.557 18.333 3.833 18.333 L 10.833 18.333 M 6.667 8.333 L 13.333 8.333 M 6.667 5 L 10 5 M 6.667 11.667 L 9.167 11.667\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 13.333 1.667 L 13.333 4.5 C 13.333 4.776 13.557 5 13.833 5 L 16.667 5 M 16.66 12.604 L 18.79 13.145 C 19.012 13.202 19.167 13.403 19.161 13.632 C 19.017 18.43 16.25 19.167 16.25 19.167 C 16.25 19.167 13.482 18.43 13.339 13.632 C 13.334 13.403 13.488 13.201 13.71 13.145 L 15.84 12.604 C 16.109 12.536 16.391 12.536 16.66 12.604 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11512909574,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18z1ggy\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"Instant context\"})}),className:\"framer-r6aq9g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Skip 100 page filings; get digestible summaries and trend flags as soon as the data lands.\"})}),className:\"framer-309p6o\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxgk9z\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1chetos\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.333 14.167 L 7.778 14.167 C 6.857 14.167 6.111 13.42 6.111 12.5 L 6.111 10.926 C 6.111 10.463 5 10 5 10 C 5 10 6.111 9.537 6.111 9.074 L 6.111 7.5 C 6.111 6.58 6.857 5.833 7.778 5.833 L 8.333 5.833 M 11.667 14.167 L 12.223 14.167 C 13.143 14.167 13.889 13.42 13.889 12.5 L 13.889 10.926 C 13.889 10.463 15 10 15 10 C 15 10 13.889 9.537 13.889 9.074 L 13.889 7.5 C 13.889 6.58 13.143 5.833 12.223 5.833 L 11.667 5.833\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.5 3 L 17.5 17 C 17.5 17.276 17.276 17.5 17 17.5 L 3 17.5 C 2.724 17.5 2.5 17.276 2.5 17 L 2.5 3 C 2.5 2.724 2.724 2.5 3 2.5 L 17 2.5 C 17.276 2.5 17.5 2.724 17.5 3 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10441530685,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2pmipc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-4jhfyu\",\"data-styles-preset\":\"mzmVa_BmS\",children:\"One call intelligence\"})}),className:\"framer-uryyzl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"},children:\"Each endpoint bundles heavy compute, so your stack stays lean\u2014just cache the JSON.\"})}),className:\"framer-q1nh4f\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JvdaqPvWI\"},implicitPathVariables:undefined},{href:{webPageId:\"JvdaqPvWI\"},implicitPathVariables:undefined},{href:{webPageId:\"JvdaqPvWI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+2959.6+40+0+0+454.2},wj1L1_V5Z:{y:(componentViewport?.y||0)+0+3937.6+40+0+0+0+0+790.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+3103.6+80+0+0+454.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wdd37q-container\",nodeId:\"FZa8UME_T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{hUGT8esx_:resolvedLinks2[1]},wj1L1_V5Z:{hUGT8esx_:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonLinks,{height:\"100%\",hUGT8esx_:resolvedLinks2[0],id:\"FZa8UME_T\",layoutId:\"FZa8UME_T\",UcAJWx7hT:\"More About AI Powered Data Insights\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvsr12\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-foe30r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1913esw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1215j0a\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",children:[\"Free to start, pay as\",/*#__PURE__*/_jsx(\"br\",{}),\"you grow\"]})}),className:\"framer-vc9pu2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4831.8+40+0+0+0+0+0+0+59.2),pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg 1024w\"},className:\"framer-13hzu9p hidden-72rtr7 hidden-1jy2ha2\",\"data-framer-name\":\"Pay-as-you-grow-image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",children:\"Pay only for what you use, with no hidden fees or locked-in enterprise commitments. Our usage-based tiers scale as your user base grows\u2014ideal for vibe coders, solopreneurs, startups and fintech teams looking to stay agile.\"})}),className:\"framer-le7ykx\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3517.8+40+0),pixelHeight:1024,pixelWidth:1024,sizes:\"320px\",src:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3775.6+80+0),pixelHeight:1024,pixelWidth:1024,sizes:\"420px\",src:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjXpaUxqZo021k1YCsJQY803UdI.jpg 1024w\"},className:\"framer-14n620h hidden-dg74w0\",\"data-framer-name\":\"Pay-as-you-grow-image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6nfq58\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mw13t8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4yofzx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckf1in\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Launch faster\"})}),className:\"framer-1m8ou82\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bring your financial product to market in days, not months. With our ready-to-use infrastructure, you can skip the heavy lifting of data engineering and jump straight into building.\"})}),className:\"framer-3tsyle\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f12ncl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8zcmt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x6mfwx\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c21rax\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 19.01 L 12.01 18.999\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 18 18 L 18 21.4 C 18 21.731 17.731 22 17.4 22 L 6.6 22 C 6.269 22 6 21.731 6 21.4 L 6 18 M 18 6 L 18 2.6 C 18 2.269 17.731 2 17.4 2 L 6.6 2 C 6.269 2 6 2.269 6 2.6 L 6 6\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 15.5 8.5 L 19 12 L 15.5 15.5 M 8.5 8.5 L 5 12 L 8.5 15.5\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8843570218,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9ha4u\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Trading Apps\"})})},wj1L1_V5Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Trading Apps\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trading Apps\"})}),className:\"framer-8u73uf\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Create responsive platforms with real-time market data and seamless execution.\"})}),className:\"framer-1ddc6el\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ak4ke\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m7gk1w\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 22 4.6 L 22 17.4 C 22 17.731 21.731 18 21.4 18 L 2.6 18 C 2.269 18 2 17.731 2 17.4 L 2 4.6 C 2 4.269 2.269 4 2.6 4 L 21.4 4 C 21.731 4 22 4.269 22 4.6 Z M 8.5 21.5 L 12 18 L 15.5 21.5 M 12 2 L 12 4 M 9 12 L 9 14 M 12 10 L 12 14 M 15 8 L 15 14\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12793700280,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lh41lb\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"AI Financial Researchers\"})}),className:\"framer-1dubrzk\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Build intelligent assistants that analyze market data and provide customized insights on demand.\"})}),className:\"framer-1eoge1u\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gdy4a4\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13oudam\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16 13 C 13.239 13 11 11.88 11 10.5 C 11 9.12 13.239 8 16 8 C 18.761 8 21 9.12 21 10.5 C 21 11.88 18.761 13 16 13 Z M 11 14.5 C 11 15.88 13.239 17 16 17 C 18.761 17 21 15.88 21 14.5 M 3 9.5 C 3 10.88 5.239 12 8 12 C 9.126 12 10.165 11.814 11 11.5 M 3 13 C 3 14.38 5.239 15.5 8 15.5 C 9.126 15.5 10.164 15.314 11 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 3 5.5 L 3 16.5 C 3 17.88 5.239 19 8 19 C 9.126 19 10.164 18.814 11 18.5 M 13 8.5 L 13 5.5 M 11 10.5 L 11 18.5 C 11 19.88 13.239 21 16 21 C 18.761 21 21 19.88 21 18.5 L 21 10.5\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 8 8 C 5.239 8 3 6.88 3 5.5 C 3 4.12 5.239 3 8 3 C 10.761 3 13 4.12 13 5.5 C 13 6.88 10.761 8 8 8 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9378487476,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mkqik4\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Portfolio Tracking Tools\"})}),className:\"framer-hzv3yy\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Build comprehensive dashboards for monitoring investments across asset classes.\"})}),className:\"framer-1qws2uz\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1364mhk\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lbkf15\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16 20 L 16 12 M 16 12 L 19 15 M 16 12 L 13 15 M 4 14 L 12 6 L 15 9 L 20 4\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-cb65d26f-e3c7-4a83-beee-04cd6574c352, rgb(122, 77, 206))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8905184004,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lm9wfd\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Technical Analysis Algorithms\"})}),className:\"framer-1xhx3ve\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Develop indicator-based systems that identify potential entry and exit points.\"})}),className:\"framer-f3h554\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8c903\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9o17v\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7g5bov\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.303 14.167 C 4.54 13.306 4.856 12.469 5.247 11.667 M 9.583 6.495 C 10.24 6.019 10.937 5.602 11.667 5.247 M 3.75 18.333 C 2.599 18.333 1.667 17.401 1.667 16.25 C 1.667 15.099 2.599 14.167 3.75 14.167 C 4.901 14.167 5.833 15.099 5.833 16.25 C 5.833 17.401 4.901 18.333 3.75 18.333 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.917 10 C 6.766 10 5.833 9.067 5.833 7.917 C 5.833 6.766 6.766 5.833 7.917 5.833 C 9.067 5.833 10 6.766 10 7.917 C 10 9.067 9.067 10 7.917 10 Z M 16.25 5.833 C 15.099 5.833 14.167 4.901 14.167 3.75 C 14.167 2.599 15.099 1.667 16.25 1.667 C 17.401 1.667 18.333 2.599 18.333 3.75 C 18.333 4.901 17.401 5.833 16.25 5.833 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10944179910,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kn64iw\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Pattern Detection Tools\"})}),className:\"framer-1vtq0s2\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Spot classic chart patterns and anomalies across thousands of securities automatically.\"})}),className:\"framer-1yijg97\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2acvbj\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m8hktt\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.083 17.083 L 18.333 18.333 M 12.5 15 C 12.5 16.381 13.619 17.5 15 17.5 C 16.381 17.5 17.5 16.381 17.5 15 C 17.5 13.619 16.381 12.5 15 12.5 C 13.619 12.5 12.5 13.619 12.5 15 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 16.667 10 L 16.667 4.791 C 16.667 4.658 16.614 4.531 16.52 4.437 L 13.897 1.813 C 13.803 1.72 13.676 1.667 13.543 1.667 L 3.833 1.667 C 3.557 1.667 3.333 1.891 3.333 2.167 L 3.333 17.833 C 3.333 18.109 3.557 18.333 3.833 18.333 L 9.167 18.333\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13.333 1.667 L 13.333 4.5 C 13.333 4.776 13.557 5 13.833 5 L 16.667 5\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11773272163,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uscko2\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Trading Journals\"})}),className:\"framer-1oitr8n\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Design smart documentation systems that correlate trade outcomes with market conditions.\"})}),className:\"framer-10reqo0\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i73s1j\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l3j9bw\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 19\"><path d=\"M 10 17.5 C 5.858 17.5 2.5 16.008 2.5 14.167 C 2.5 12.325 5.858 10.833 10 10.833 C 14.142 10.833 17.5 12.325 17.5 14.167 C 17.5 16.008 14.142 17.5 10 17.5 Z M 10 1.667 C 11.381 1.667 12.5 2.786 12.5 4.167 L 12.5 5 L 7.5 5 L 7.5 4.167 C 7.5 2.786 8.619 1.667 10 1.667 Z M 2.917 12.917 L 6.25 7.083 M 17.083 12.917 L 13.75 7.083\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11831614862,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1k7pn\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Market Screeners\"})}),className:\"framer-ifyoqv\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Build customizable filters to discover opportunities matching specific criteria.\"})}),className:\"framer-19kxmpz\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tw3v5p\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yyjij4\",\"data-framer-name\":\"graphic.svg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16.667 16.667 L 3.333 16.667 L 3.333 3.333\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 3.333 13.75 L 10 7.5 L 12.5 10 L 16.25 6.25\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206)) /* {&quot;name&quot;:&quot;Purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10365735207,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h8qfuz\",\"data-framer-name\":\"Title / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62eeb3cb-fb13-41dd-aa58-3592a30d10bc, rgb(255, 255, 255))\"},children:\"Performance Analytics\"})}),className:\"framer-1im6i5l\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"Create tools that measure trading effectiveness against benchmarks and strategies.\"})}),className:\"framer-usv111\",\"data-framer-name\":\"Description\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11vbc0s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"XYsXe5Bka\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:7,borderRadius:\"0px\",direction:\"to bottom\",height:\"100%\",id:\"XYsXe5Bka\",layoutId:\"XYsXe5Bka\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbnexg\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cbizuq\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-afjlls\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aan6z7\",\"data-framer-name\":\"Heading / Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j5gzyq\",\"data-styles-preset\":\"y87ARTO1U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started today.\"})}),className:\"framer-10ow541\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y8dh06\",\"data-styles-preset\":\"ZspB1FyjN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get instant access to institutional-grade financial data with no setup required.\",/*#__PURE__*/_jsx(\"br\",{}),\"Free developer tier includes 10.000 credits for welcoming gift & limitless price data.\"]})}),className:\"framer-10y1cb8\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+5324+40+0+0+0+0+0+0+210.2},wj1L1_V5Z:{y:(componentViewport?.y||0)+0+8061.2+40+0+0+0+0+0+0+210.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+5357.8+80+0+0+0+0+0+0+210.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn8d3d-container\",nodeId:\"LigBI5uL5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wj1L1_V5Z:{variant:\"mXqMutor2\"}},children:/*#__PURE__*/_jsx(ButtonsMainButton,{AYjRDFoSW:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",Fbe7zPnJY:\"Start for Free\",height:\"100%\",id:\"LigBI5uL5\",layoutId:\"LigBI5uL5\",variant:\"R64oadYuL\",width:\"100%\",XdMYLdFe3:\"https://laplace.finfree.co/tr/register\"})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9jszrw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rGe_0kHEQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(0, 0, 0, 0)\",baseColor:\"rgb(51, 51, 51)\",dark:1,diffuse:2,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(25, 24, 26)\",height:\"100%\",id:\"rGe_0kHEQ\",isDraggable:true,layoutId:\"rGe_0kHEQ\",mapBrightness:12,markerArray:[],markerColor:\"rgb(122, 77, 206)\",markerSize:.1,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:0},phi:0,scale:1,speed:1,style:{height:\"100%\",width:\"100%\"},theta:.3,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v97kwp\",\"data-framer-name\":\"Meteor - Frame\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1b3ypce-container\",isModuleExternal:true,nodeId:\"Q8cbWk1u8\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"Q8cbWk1u8\",layoutId:\"Q8cbWk1u8\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-hwotuw-container\",isModuleExternal:true,nodeId:\"xx6NDRtZS\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"xx6NDRtZS\",layoutId:\"xx6NDRtZS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-172996y-container\",isModuleExternal:true,nodeId:\"QFjIyCiPM\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"QFjIyCiPM\",layoutId:\"QFjIyCiPM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-xjlp4z-container\",isModuleExternal:true,nodeId:\"RWBkkIVcQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"RWBkkIVcQ\",layoutId:\"RWBkkIVcQ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5.4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1hhtdli-container\",isModuleExternal:true,nodeId:\"mCZQwiLve\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"mCZQwiLve\",layoutId:\"mCZQwiLve\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-19z43db-container\",isModuleExternal:true,nodeId:\"LHJIWh0xx\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"LHJIWh0xx\",layoutId:\"LHJIWh0xx\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3.2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-10c9u2i-container\",isModuleExternal:true,nodeId:\"e7EGyt6bq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"e7EGyt6bq\",layoutId:\"e7EGyt6bq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-r8jrf1-container\",isModuleExternal:true,nodeId:\"CTMvMnaTq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"CTMvMnaTq\",layoutId:\"CTMvMnaTq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-12eqt19-container\",isModuleExternal:true,nodeId:\"zsnWVKgqC\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"zsnWVKgqC\",layoutId:\"zsnWVKgqC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1jpvzis-container\",isModuleExternal:true,nodeId:\"PLPvDBa5Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"PLPvDBa5Y\",layoutId:\"PLPvDBa5Y\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition11,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1t1cfqc-container\",isModuleExternal:true,nodeId:\"R1_FiQMQl\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"R1_FiQMQl\",layoutId:\"R1_FiQMQl\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-t8v1bb-container\",isModuleExternal:true,nodeId:\"jSBtRJ7uN\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"jSBtRJ7uN\",layoutId:\"jSBtRJ7uN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1a6o4e3-container\",isModuleExternal:true,nodeId:\"LyIXmgN43\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"LyIXmgN43\",layoutId:\"LyIXmgN43\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition14,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-10e6afi-container\",isModuleExternal:true,nodeId:\"HWLcXgIyW\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"HWLcXgIyW\",layoutId:\"HWLcXgIyW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1dr2dy6-container\",isModuleExternal:true,nodeId:\"POlZqELbm\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"POlZqELbm\",layoutId:\"POlZqELbm\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-lz4h3w-container\",isModuleExternal:true,nodeId:\"jzdKEjU52\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"jzdKEjU52\",layoutId:\"jzdKEjU52\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1q8xn1s-container\",isModuleExternal:true,nodeId:\"xjn642iH4\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"xjn642iH4\",layoutId:\"xjn642iH4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b0groa\",\"data-framer-name\":\"Stars_BG\",opacity:.3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 730 396\"><g transform=\"translate(-6.147 -1.342)\"><g transform=\"translate(0 0)\"><path d=\"M 258.624 148.498 C 258.624 147.635 259.325 146.935 260.189 146.935 C 261.053 146.935 261.753 147.635 261.753 148.498 C 261.753 149.361 261.053 150.061 260.189 150.061 C 259.325 150.061 258.624 149.361 258.624 148.498 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 140.311 105.507 C 140.311 104.644 141.012 103.944 141.875 103.944 C 142.739 103.944 143.44 104.644 143.44 105.507 C 143.44 106.37 142.739 107.07 141.875 107.07 C 141.012 107.07 140.311 106.37 140.311 105.507 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 409.202 71.727 C 409.202 70.864 409.902 70.164 410.766 70.164 C 411.63 70.164 412.33 70.864 412.33 71.727 C 412.33 72.59 411.63 73.29 410.766 73.29 C 409.902 73.29 409.202 72.59 409.202 71.727 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 218.674 36.413 C 218.674 35.55 219.374 34.85 220.238 34.85 C 221.102 34.85 221.802 35.55 221.802 36.413 C 221.802 37.277 221.102 37.976 220.238 37.976 C 219.374 37.976 218.674 37.277 218.674 36.413 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 204.845 260.583 C 204.845 259.719 205.546 259.019 206.41 259.019 C 207.274 259.019 207.974 259.719 207.974 260.583 C 207.974 261.446 207.274 262.146 206.41 262.146 C 205.546 262.146 204.845 261.446 204.845 260.583 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 114.191 136.215 C 114.191 135.351 114.891 134.651 115.755 134.651 C 116.619 134.651 117.319 135.351 117.319 136.215 C 117.319 137.078 116.619 137.778 115.755 137.778 C 114.891 137.778 114.191 137.078 114.191 136.215 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 344.668 93.224 C 344.668 92.36 345.369 91.66 346.233 91.66 C 347.097 91.66 347.797 92.36 347.797 93.224 C 347.797 94.087 347.097 94.787 346.233 94.787 C 345.369 94.787 344.668 94.087 344.668 93.224 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 393.837 274.402 C 393.837 273.539 394.538 272.839 395.401 272.839 C 396.265 272.839 396.966 273.539 396.966 274.402 C 396.966 275.265 396.265 275.965 395.401 275.965 C 394.538 275.965 393.837 275.265 393.837 274.402 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 260.159 232.946 C 260.159 232.083 260.86 231.383 261.724 231.383 C 262.588 231.383 263.288 232.083 263.288 232.946 C 263.288 233.809 262.588 234.509 261.724 234.509 C 260.86 234.509 260.159 233.809 260.159 232.946 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 310.864 21.059 C 310.864 20.196 311.565 19.496 312.429 19.496 C 313.292 19.496 313.993 20.196 313.993 21.059 C 313.993 21.922 313.292 22.622 312.429 22.622 C 311.565 22.622 310.864 21.922 310.864 21.059 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 595.121 34.878 C 595.121 34.015 595.821 33.315 596.685 33.315 C 597.549 33.315 598.25 34.015 598.25 34.878 C 598.25 35.742 597.549 36.441 596.685 36.441 C 595.821 36.441 595.121 35.742 595.121 34.878 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 484.492 150.033 C 484.492 149.17 485.192 148.47 486.056 148.47 C 486.92 148.47 487.62 149.17 487.62 150.033 C 487.62 150.896 486.92 151.596 486.056 151.596 C 485.192 151.596 484.492 150.896 484.492 150.033 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 290.89 206.843 C 290.89 205.98 291.591 205.28 292.455 205.28 C 293.319 205.28 294.019 205.98 294.019 206.843 C 294.019 207.707 293.319 208.406 292.455 208.406 C 291.591 208.406 290.89 207.707 290.89 206.843 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 11.244 45.625 C 11.244 44.762 11.944 44.062 12.808 44.062 C 13.672 44.062 14.373 44.762 14.373 45.625 C 14.373 46.489 13.672 47.189 12.808 47.189 C 11.944 47.189 11.244 46.489 11.244 45.625 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 123.41 19.524 C 123.41 18.661 124.11 17.961 124.974 17.961 C 125.838 17.961 126.538 18.661 126.538 19.524 C 126.538 20.387 125.838 21.087 124.974 21.087 C 124.11 21.087 123.41 20.387 123.41 19.524 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 498.319 44.09 C 498.319 43.227 499.019 42.527 499.883 42.527 C 500.747 42.527 501.447 43.227 501.447 44.09 C 501.447 44.954 500.747 45.654 499.883 45.654 C 499.019 45.654 498.319 44.954 498.319 44.09 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 435.322 17.988 C 435.322 17.124 436.022 16.425 436.886 16.425 C 437.75 16.425 438.45 17.124 438.45 17.988 C 438.45 18.851 437.75 19.551 436.886 19.551 C 436.022 19.551 435.322 18.851 435.322 17.988 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 321.62 176.136 C 321.62 175.272 322.321 174.572 323.185 174.572 C 324.049 174.572 324.749 175.272 324.749 176.136 C 324.749 176.999 324.049 177.699 323.185 177.699 C 322.321 177.699 321.62 176.999 321.62 176.136 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 220.21 82.475 C 220.21 81.612 220.91 80.912 221.774 80.912 C 222.638 80.912 223.338 81.612 223.338 82.475 C 223.338 83.339 222.638 84.038 221.774 84.038 C 220.91 84.038 220.21 83.339 220.21 82.475 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 261.696 16.453 C 261.696 15.589 262.396 14.89 263.26 14.89 C 264.124 14.89 264.824 15.589 264.824 16.453 C 264.824 17.316 264.124 18.016 263.26 18.016 C 262.396 18.016 261.696 17.316 261.696 16.453 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 423.03 128.537 C 423.03 127.674 423.73 126.974 424.594 126.974 C 425.458 126.974 426.158 127.674 426.158 128.537 C 426.158 129.401 425.458 130.101 424.594 130.101 C 423.73 130.101 423.03 129.401 423.03 128.537 Z\" fill=\"rgba(255,255,255,0.2)\"></path><path d=\"M 369.253 272.866 C 369.253 272.003 369.953 271.303 370.817 271.303 C 371.681 271.303 372.381 272.003 372.381 272.866 C 372.381 273.729 371.681 274.429 370.817 274.429 C 369.953 274.429 369.253 273.729 369.253 272.866 Z\" fill=\"rgba(255,255,255,0.2)\"></path><g transform=\"translate(0 0)\"><g transform=\"translate(152.065 141.017)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(32.537 97.583)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(304.191 63.457)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(111.705 27.779)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(97.733 254.254)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(6.147 128.606)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(238.995 85.173)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(288.668 268.214)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(153.617 226.332)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(204.843 12.267)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(600.746 18.614)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(488.979 134.954)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(293.389 192.349)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(10.867 29.473)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(124.186 3.102)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(0 141.159)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(502.95 27.922)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(439.305 1.552)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(324.434 161.324)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(221.98 66.701)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(263.893 0)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(426.886 113.237)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(372.557 259.05)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgb(255,255,255)\"></path></g></g><g transform=\"translate(264.282 267.819)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(145.97 224.828)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(414.86 191.048)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(224.332 155.734)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(210.504 379.904)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(119.848 255.536)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(350.327 212.545)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(399.496 393.723)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(265.818 352.267)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(316.523 140.38)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(600.779 154.198)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(490.149 269.354)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(296.549 326.164)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(16.902 164.947)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(129.068 138.845)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(6.147 275.496)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(503.977 163.412)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(440.981 137.309)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(327.279 295.457)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(225.867 201.796)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(267.354 135.774)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(428.688 247.858)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><g transform=\"translate(374.91 392.187)\"><path d=\"M 0 1.042 C 0 0.467 0.467 0 1.043 0 C 1.619 0 2.086 0.467 2.086 1.042 C 2.086 1.618 1.619 2.084 1.043 2.084 C 0.467 2.084 0 1.618 0 1.042 Z\" fill=\"rgba(255,255,255,0.4)\"></path></g><path d=\"M 673.082 152.145 C 673.082 151.57 673.549 151.103 674.125 151.103 C 674.701 151.103 675.168 151.57 675.168 152.145 C 675.168 152.721 674.701 153.187 674.125 153.187 C 673.549 153.187 673.082 152.721 673.082 152.145 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 554.77 109.154 C 554.77 108.579 555.237 108.112 555.813 108.112 C 556.389 108.112 556.856 108.579 556.856 109.154 C 556.856 109.73 556.389 110.196 555.813 110.196 C 555.237 110.196 554.77 109.73 554.77 109.154 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 633.132 40.061 C 633.132 39.485 633.599 39.019 634.175 39.019 C 634.751 39.019 635.218 39.485 635.218 40.061 C 635.218 40.636 634.751 41.103 634.175 41.103 C 633.599 41.103 633.132 40.636 633.132 40.061 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 619.304 264.23 C 619.304 263.654 619.771 263.188 620.347 263.188 C 620.923 263.188 621.39 263.654 621.39 264.23 C 621.39 264.806 620.923 265.272 620.347 265.272 C 619.771 265.272 619.304 264.806 619.304 264.23 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 528.648 139.862 C 528.648 139.286 529.115 138.82 529.691 138.82 C 530.267 138.82 530.734 139.286 530.734 139.862 C 530.734 140.438 530.267 140.904 529.691 140.904 C 529.115 140.904 528.648 140.438 528.648 139.862 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 674.618 236.593 C 674.618 236.018 675.085 235.551 675.661 235.551 C 676.237 235.551 676.704 236.018 676.704 236.593 C 676.704 237.169 676.237 237.635 675.661 237.635 C 675.085 237.635 674.618 237.169 674.618 236.593 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 725.323 24.706 C 725.323 24.131 725.79 23.664 726.366 23.664 C 726.942 23.664 727.408 24.131 727.408 24.706 C 727.408 25.282 726.942 25.748 726.366 25.748 C 725.79 25.748 725.323 25.282 725.323 24.706 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 705.349 210.491 C 705.349 209.915 705.816 209.449 706.392 209.449 C 706.968 209.449 707.435 209.915 707.435 210.491 C 707.435 211.066 706.968 211.533 706.392 211.533 C 705.816 211.533 705.349 211.066 705.349 210.491 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 425.702 49.273 C 425.702 48.697 426.168 48.231 426.744 48.231 C 427.32 48.231 427.787 48.697 427.787 49.273 C 427.787 49.848 427.32 50.315 426.744 50.315 C 426.168 50.315 425.702 49.848 425.702 49.273 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 537.868 23.171 C 537.868 22.596 538.335 22.129 538.911 22.129 C 539.487 22.129 539.954 22.596 539.954 23.171 C 539.954 23.747 539.487 24.213 538.911 24.213 C 538.335 24.213 537.868 23.747 537.868 23.171 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 414.947 159.822 C 414.947 159.247 415.414 158.78 415.99 158.78 C 416.565 158.78 417.032 159.247 417.032 159.822 C 417.032 160.398 416.565 160.865 415.99 160.865 C 415.414 160.865 414.947 160.398 414.947 159.822 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 736.079 179.783 C 736.079 179.207 736.546 178.741 737.122 178.741 C 737.698 178.741 738.164 179.207 738.164 179.783 C 738.164 180.359 737.698 180.825 737.122 180.825 C 736.546 180.825 736.079 180.359 736.079 179.783 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 634.667 86.123 C 634.667 85.547 635.134 85.081 635.71 85.081 C 636.286 85.081 636.753 85.547 636.753 86.123 C 636.753 86.698 636.286 87.165 635.71 87.165 C 635.134 87.165 634.667 86.698 634.667 86.123 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 676.154 20.1 C 676.154 19.525 676.621 19.058 677.197 19.058 C 677.773 19.058 678.24 19.525 678.24 20.1 C 678.24 20.676 677.773 21.142 677.197 21.142 C 676.621 21.142 676.154 20.676 676.154 20.1 Z\" fill=\"rgba(255,255,255,0.7)\"></path></g></g></svg>',svgContentId:12637604363,withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{y:(componentViewport?.y||0)+0+5724},wj1L1_V5Z:{y:(componentViewport?.y||0)+0+7755.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5757.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kprtyc-container\",nodeId:\"VO8p2fUrS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{variant:\"bu7UujSmv\"},wj1L1_V5Z:{variant:\"flTj1JqX0\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"VO8p2fUrS\",layoutId:\"VO8p2fUrS\",style:{width:\"100%\"},variant:\"KI_RSgvIl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined},{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined},{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined},{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined},{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined},{href:{webPageId:\"O7EVr8stJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8bcoco-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uh0W8puVb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{irf0gQeMI:{content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[2],prefix:\"Read our\"},euShowReject:true,euTitle:\"\uD83C\uDF6A Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[3],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"\uD83C\uDF6A Cookie Settings\",worldType:\"advanced\"}},wj1L1_V5Z:{content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[4],prefix:\"Read our\"},euShowReject:true,euTitle:\"\uD83C\uDF6A Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[5],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"\uD83C\uDF6A Cookie Settings\",worldType:\"advanced\"}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(255, 255, 255, 0.1)\",radius:12,width:1},colorBody:\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\",colorTitle:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",fill:\"var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, rgb(0, 0, 0))\",fontBody:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"150%\"},fontTitle:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\"},width:360,zIndex:10},button:{borderRadius:12,direction:\"row\",fluid:true,font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save\"},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,primary:{color:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",fill:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\"},secondary:{color:\"var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, rgb(0, 0, 0))\",fill:\"var(--token-d8da5724-2d7e-46cf-8e20-de3253a09e3d, rgb(255, 255, 255))\",shadow:{shadowBlur:0,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:0}},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[0],prefix:\"Read our\"},euShowReject:true,euTitle:\"\uD83C\uDF6A Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks3[1],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"\uD83C\uDF6A Cookie Settings\",worldType:\"advanced\"},gtmId:\"\",height:\"100%\",id:\"uh0W8puVb\",layoutId:\"uh0W8puVb\",options:{analytics:{description:\"Usage tracking, performance monitoring. Ex: Google Analytics, Hotjar\",title:\"Analytics\"},marketing:{description:\"Campaign tracking, retargeting. Ex: Google Ads, LinkedIn pixels\",title:\"Marketing\"},necessary:{description:\"Authentication, security, load balancing. Ex: Session tokens, CSRF protection\",optional:false,title:\"Essential\"},preferences:{description:\"Usage tracking, performance monitoring. Ex: Google Analytics, Hotjar\",title:\"Prefences\"},preview:false,style:{background:\"var(--token-071978e6-c18c-4d6b-a10f-f76beb6bb7c9, rgba(230, 237, 249, 0.1))\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},fontTitle:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"var(--token-400ad84e-48bf-4d52-96ba-86a868160946, rgb(122, 77, 206))\",toggleColorInactive:\"var(--token-7a81dff5-d4f9-4d57-bc9d-537432b40b07, rgb(189, 189, 189))\"}},preview:true,trigger:{color:\"rgba(255, 255, 255, 0)\",iconSize:24,iconType:\"default\",text:\"\",textFont:{},type:\"text\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ofst2.framer-lux5qc, .framer-Ofst2 .framer-lux5qc { display: block; }\",\".framer-Ofst2.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, #000000); 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-Ofst2 .framer-nl7oxz-container { flex: none; height: 64px; position: relative; width: 1200px; }\",\".framer-Ofst2 .framer-wqmi5g { align-content: center; align-items: center; background-color: var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; min-height: 800px; overflow: hidden; padding: 110px 44px 44px 44px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-pety8k, .framer-Ofst2 .framer-nfijx2, .framer-Ofst2 .framer-rjls16, .framer-Ofst2 .framer-1wtvq3r, .framer-Ofst2 .framer-1rp1alp, .framer-Ofst2 .framer-foe30r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-Ofst2 .framer-1lj3wel { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-Ofst2 .framer-1w0h84z, .framer-Ofst2 .framer-ckf1in, .framer-Ofst2 .framer-1aan6z7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-kpdcux, .framer-Ofst2 .framer-1wmpe18, .framer-Ofst2 .framer-1n2q9cy, .framer-Ofst2 .framer-4s37zc, .framer-Ofst2 .framer-18l0wwr, .framer-Ofst2 .framer-1iohpn4, .framer-Ofst2 .framer-1b4socx, .framer-Ofst2 .framer-1de8v1w, .framer-Ofst2 .framer-1bqahtx, .framer-Ofst2 .framer-b2rmuj, .framer-Ofst2 .framer-1fwm807, .framer-Ofst2 .framer-1lit013, .framer-Ofst2 .framer-63sp88, .framer-Ofst2 .framer-5tj3ki, .framer-Ofst2 .framer-1ihe1r9, .framer-Ofst2 .framer-n69vj2, .framer-Ofst2 .framer-1kbdto3, .framer-Ofst2 .framer-15t37d4, .framer-Ofst2 .framer-r6aq9g, .framer-Ofst2 .framer-309p6o, .framer-Ofst2 .framer-uryyzl, .framer-Ofst2 .framer-q1nh4f, .framer-Ofst2 .framer-vc9pu2, .framer-Ofst2 .framer-le7ykx, .framer-Ofst2 .framer-8u73uf, .framer-Ofst2 .framer-1ddc6el, .framer-Ofst2 .framer-1dubrzk, .framer-Ofst2 .framer-1eoge1u, .framer-Ofst2 .framer-hzv3yy, .framer-Ofst2 .framer-1qws2uz, .framer-Ofst2 .framer-1xhx3ve, .framer-Ofst2 .framer-f3h554, .framer-Ofst2 .framer-1vtq0s2, .framer-Ofst2 .framer-1yijg97, .framer-Ofst2 .framer-1oitr8n, .framer-Ofst2 .framer-10reqo0, .framer-Ofst2 .framer-ifyoqv, .framer-Ofst2 .framer-19kxmpz, .framer-Ofst2 .framer-1im6i5l, .framer-Ofst2 .framer-usv111 { --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-Ofst2 .framer-62kpqs-container { flex: none; height: auto; position: relative; width: 120px; z-index: 2; }\",\".framer-Ofst2 .framer-fdk2d { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 65%) add; flex: none; gap: 10px; height: 919px; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 65%) add; mix-blend-mode: screen; overflow: hidden; pointer-events: none; position: absolute; top: calc(77.25000000000001% - 919px / 2); width: 100%; z-index: 1; }\",\".framer-Ofst2 .framer-19l1795 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Ofst2 .framer-lraitb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre; width: auto; }\",\".framer-Ofst2 .framer-1kaacl1-container { flex: none; height: 32px; position: relative; width: 85%; }\",\".framer-Ofst2 .framer-3oa5ni, .framer-Ofst2 .framer-1bwlure, .framer-Ofst2 .framer-1jawaq2, .framer-Ofst2 .framer-be3rzd, .framer-Ofst2 .framer-eh78xn, .framer-Ofst2 .framer-13k4wtk, .framer-Ofst2 .framer-1nnyzu1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 29px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ofst2 .framer-oaxy2y { aspect-ratio: 3.857142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 89px; }\",\".framer-Ofst2 .framer-bos60l { aspect-ratio: 2.380952380952381 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 62px; }\",\".framer-Ofst2 .framer-phwjlj { aspect-ratio: 1.894736842105263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 53px; }\",\".framer-Ofst2 .framer-njcyxe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 29px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 134px; }\",\".framer-Ofst2 .framer-1wqmt0e { aspect-ratio: 4.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 134px; }\",\".framer-Ofst2 .framer-1w1s7xw { flex: none; height: 29px; position: relative; width: 120px; }\",\".framer-Ofst2 .framer-5icqgi { aspect-ratio: 4.963350785340314 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 114px; }\",\".framer-Ofst2 .framer-4ewqq9 { aspect-ratio: 4.058441558441558 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 102px; }\",\".framer-Ofst2 .framer-1glrd3a { aspect-ratio: 5.466666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 124px; }\",\".framer-Ofst2 .framer-7ks5oz, .framer-Ofst2 .framer-1g5w9k2, .framer-Ofst2 .framer-q5a80p, .framer-Ofst2 .framer-7wci5y, .framer-Ofst2 .framer-1rvsr12, .framer-Ofst2 .framer-6nfq58 { align-content: center; align-items: center; background-color: var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-h79o8b, .framer-Ofst2 .framer-yd3d64, .framer-Ofst2 .framer-kug65g, .framer-Ofst2 .framer-fh761k, .framer-Ofst2 .framer-1913esw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ofst2 .framer-1cfnpzg, .framer-Ofst2 .framer-1x98p6f, .framer-Ofst2 .framer-7r0n16, .framer-Ofst2 .framer-c6eubi, .framer-Ofst2 .framer-1215j0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-Ofst2 .framer-epjea { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-mvebuo, .framer-Ofst2 .framer-1dsonn9, .framer-Ofst2 .framer-1nchoaj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-Ofst2 .framer-dj570p, .framer-Ofst2 .framer-1brnqhs, .framer-Ofst2 .framer-5lhdni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-Ofst2 .framer-svquu3, .framer-Ofst2 .framer-1wl1ld5, .framer-Ofst2 .framer-16c49k2, .framer-Ofst2 .framer-1t9pl2b, .framer-Ofst2 .framer-1wgiazm, .framer-Ofst2 .framer-1pxgk9z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ofst2 .framer-s9zvb-container, .framer-Ofst2 .framer-sxifkb-container, .framer-Ofst2 .framer-lq7eyf-container, .framer-Ofst2 .framer-1iutx6k, .framer-Ofst2 .framer-1chetos, .framer-Ofst2 .framer-7g5bov, .framer-Ofst2 .framer-m8hktt, .framer-Ofst2 .framer-1yyjij4 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-Ofst2 .framer-18hmdf9, .framer-Ofst2 .framer-azqps0, .framer-Ofst2 .framer-19nua8o, .framer-Ofst2 .framer-j8vwwg, .framer-Ofst2 .framer-18z1ggy, .framer-Ofst2 .framer-2pmipc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-yix3ru-container, .framer-Ofst2 .framer-1etm15j-container, .framer-Ofst2 .framer-wdd37q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ofst2 .framer-1avzzhf, .framer-Ofst2 .framer-1hvdunq, .framer-Ofst2 .framer-2cp8uz, .framer-Ofst2 .framer-1aqjjcu, .framer-Ofst2 .framer-14n620h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); overflow: visible; position: relative; width: 420px; }\",\".framer-Ofst2 .framer-130akod, .framer-Ofst2 .framer-gksuhm, .framer-Ofst2 .framer-l18xj9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); overflow: visible; position: relative; width: 300px; }\",\".framer-Ofst2 .framer-ltr34e, .framer-Ofst2 .framer-c21rax, .framer-Ofst2 .framer-m7gk1w, .framer-Ofst2 .framer-13oudam, .framer-Ofst2 .framer-lbkf15 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Ofst2 .framer-1i58wam { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-Ofst2 .framer-pysi3o, .framer-Ofst2 .framer-wpvmvx, .framer-Ofst2 .framer-xj7k4t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-1iq4uz6, .framer-Ofst2 .framer-b4dn46, .framer-Ofst2 .framer-1hvyvsi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ofst2 .framer-13hzu9p { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 280px); overflow: visible; position: relative; width: 300px; }\",\".framer-Ofst2 .framer-1mw13t8, .framer-Ofst2 .framer-cbizuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-Ofst2 .framer-4yofzx, .framer-Ofst2 .framer-afjlls { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-1m8ou82, .framer-Ofst2 .framer-3tsyle, .framer-Ofst2 .framer-10ow541 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ofst2 .framer-1f12ncl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 960px; }\",\".framer-Ofst2 .framer-1m8zcmt, .framer-Ofst2 .framer-1x8c903 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-x6mfwx, .framer-Ofst2 .framer-11ak4ke, .framer-Ofst2 .framer-1gdy4a4, .framer-Ofst2 .framer-p9o17v, .framer-Ofst2 .framer-i73s1j, .framer-Ofst2 .framer-tw3v5p { --border-bottom-width: 1px; --border-color: var(--token-f42c8801-3fd2-4628-91e4-213cd9451d0d, rgba(255, 255, 255, 0.03)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-f42c8801-3fd2-4628-91e4-213cd9451d0d, rgba(255, 255, 255, 0.03)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ofst2 .framer-1r9ha4u, .framer-Ofst2 .framer-1lh41lb, .framer-Ofst2 .framer-1mkqik4, .framer-Ofst2 .framer-1lm9wfd, .framer-Ofst2 .framer-kn64iw, .framer-Ofst2 .framer-uscko2, .framer-Ofst2 .framer-1u1k7pn, .framer-Ofst2 .framer-h8qfuz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-1364mhk, .framer-Ofst2 .framer-2acvbj { --border-bottom-width: 1px; --border-color: var(--token-f42c8801-3fd2-4628-91e4-213cd9451d0d, rgba(255, 255, 255, 0.03)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f42c8801-3fd2-4628-91e4-213cd9451d0d, rgba(255, 255, 255, 0.03)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ofst2 .framer-l3j9bw { flex: none; height: 19px; position: relative; width: 20px; }\",\".framer-Ofst2 .framer-11vbc0s-container { bottom: -1878px; flex: none; height: 100px; left: 0px; pointer-events: none; position: fixed; right: 0px; z-index: 10; }\",\".framer-Ofst2 .framer-1sbnexg { align-content: center; align-items: center; background-color: var(--token-bd2c0545-5eed-4c7a-8dc0-acf68105de26, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 400px; justify-content: flex-start; max-height: 400px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-10y1cb8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-Ofst2 .framer-mn8d3d-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-Ofst2 .framer-9jszrw-container { bottom: -447px; flex: none; height: 780px; left: calc(50.00000000000002% - 780px / 2); position: absolute; width: 780px; z-index: 1; }\",\".framer-Ofst2 .framer-v97kwp { background-color: rgba(255, 255, 255, 0); flex: none; height: 525px; left: 0px; opacity: 0.4; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Ofst2 .framer-1b3ypce-container { flex: none; height: 1px; left: -110px; opacity: 0.6; position: absolute; top: 40px; width: 110px; z-index: 2; }\",\".framer-Ofst2 .framer-hwotuw-container { flex: none; height: 1px; left: -100px; opacity: 0.6; position: absolute; top: 70px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-172996y-container { flex: none; height: 1px; left: -120px; opacity: 0.6; position: absolute; top: 140px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-xjlp4z-container { flex: none; height: 1px; left: -120px; opacity: 0.6; position: absolute; top: 160px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-1hhtdli-container { flex: none; height: 1px; left: -120px; opacity: 0.6; position: absolute; top: calc(52.63157894736844% - 1px / 2); width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-19z43db-container { flex: none; height: 1px; left: -100px; opacity: 0.6; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-10c9u2i-container { flex: none; height: 1px; left: -10px; opacity: 0.6; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-r8jrf1-container { flex: none; height: 1px; left: 50px; opacity: 0.6; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-12eqt19-container { flex: none; height: 1px; left: -90px; opacity: 0.6; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-1jpvzis-container { flex: none; height: 1px; left: 200px; opacity: 0.6; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-1t1cfqc-container { flex: none; height: 1px; left: 290px; opacity: 0.6; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-t8v1bb-container { flex: none; height: 1px; left: 120px; opacity: 0.6; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-1a6o4e3-container { flex: none; height: 1px; left: 140px; opacity: 0.6; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-10e6afi-container { flex: none; height: 1px; left: -100px; opacity: 0.6; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-1dr2dy6-container { flex: none; height: 1px; left: -120px; opacity: 0.6; position: absolute; top: 10px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-lz4h3w-container, .framer-Ofst2 .framer-1q8xn1s-container { flex: none; height: 1px; left: 140px; opacity: 0.6; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-Ofst2 .framer-b0groa { flex: none; height: 396px; left: calc(49.468085106383% - 730px / 2); opacity: 0.3; position: absolute; top: -38px; width: 730px; }\",\".framer-Ofst2 .framer-kprtyc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Ofst2 .framer-8bcoco-container { flex: none; height: auto; left: 824px; position: absolute; top: 654px; width: auto; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-Ofst2[data-border=\"true\"]::after, .framer-Ofst2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Ofst2.framer-72rtr7 { width: 810px; } .framer-Ofst2 .framer-nl7oxz-container, .framer-Ofst2 .framer-1cfnpzg, .framer-Ofst2 .framer-mvebuo, .framer-Ofst2 .framer-dj570p, .framer-Ofst2 .framer-1x98p6f, .framer-Ofst2 .framer-1dsonn9, .framer-Ofst2 .framer-1brnqhs, .framer-Ofst2 .framer-7r0n16, .framer-Ofst2 .framer-c6eubi, .framer-Ofst2 .framer-1nchoaj, .framer-Ofst2 .framer-1215j0a, .framer-Ofst2 .framer-1f12ncl, .framer-Ofst2 .framer-cbizuq { width: 100%; } .framer-Ofst2 .framer-pety8k { gap: 64px; width: 100%; } .framer-Ofst2 .framer-fdk2d { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 79%) add; height: 767px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 79%) add; top: calc(63.83333333333335% - 767px / 2); } .framer-Ofst2 .framer-lraitb { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Ofst2 .framer-7ks5oz, .framer-Ofst2 .framer-1g5w9k2, .framer-Ofst2 .framer-q5a80p, .framer-Ofst2 .framer-7wci5y, .framer-Ofst2 .framer-1rvsr12, .framer-Ofst2 .framer-6nfq58, .framer-Ofst2 .framer-1sbnexg { padding: 40px; } .framer-Ofst2 .framer-nfijx2, .framer-Ofst2 .framer-rjls16, .framer-Ofst2 .framer-1wtvq3r, .framer-Ofst2 .framer-1rp1alp, .framer-Ofst2 .framer-foe30r { flex: 1 0 0px; gap: 64px; width: 1px; } .framer-Ofst2 .framer-h79o8b, .framer-Ofst2 .framer-yd3d64, .framer-Ofst2 .framer-kug65g, .framer-Ofst2 .framer-fh761k, .framer-Ofst2 .framer-1913esw, .framer-Ofst2 .framer-1mw13t8 { flex: 1 0 0px; width: 1px; } .framer-Ofst2 .framer-1avzzhf, .framer-Ofst2 .framer-1hvdunq, .framer-Ofst2 .framer-2cp8uz, .framer-Ofst2 .framer-1aqjjcu, .framer-Ofst2 .framer-14n620h { height: var(--framer-aspect-ratio-supported, 320px); width: 320px; } .framer-Ofst2 .framer-1i58wam { align-self: unset; width: 100%; } .framer-Ofst2 .framer-1m8zcmt, .framer-Ofst2 .framer-1x8c903 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-Ofst2 .framer-x6mfwx, .framer-Ofst2 .framer-11ak4ke, .framer-Ofst2 .framer-1gdy4a4, .framer-Ofst2 .framer-1364mhk, .framer-Ofst2 .framer-p9o17v, .framer-Ofst2 .framer-2acvbj, .framer-Ofst2 .framer-i73s1j, .framer-Ofst2 .framer-tw3v5p { align-self: start; flex: none; height: 100%; justify-self: start; padding: 20px; width: 100%; } .framer-Ofst2 .framer-8bcoco-container { left: 434px; }}\",\"@media (max-width: 809px) { .framer-Ofst2.framer-72rtr7 { overflow: auto; width: 390px; } .framer-Ofst2 .framer-nl7oxz-container { order: 0; width: 100%; z-index: 2; } .framer-Ofst2 .framer-wqmi5g { gap: 72px; min-height: 750px; order: 1; padding: 96px 20px 44px 20px; } .framer-Ofst2 .framer-pety8k { flex-direction: column; gap: 64px; order: 1; width: 100%; } .framer-Ofst2 .framer-1lj3wel { flex: none; padding: 0px; width: 100%; } .framer-Ofst2 .framer-kpdcux, .framer-Ofst2 .framer-1n2q9cy { order: 0; } .framer-Ofst2 .framer-1wmpe18 { order: 1; } .framer-Ofst2 .framer-62kpqs-container, .framer-Ofst2 .framer-h79o8b, .framer-Ofst2 .framer-1cfnpzg, .framer-Ofst2 .framer-mvebuo, .framer-Ofst2 .framer-dj570p, .framer-Ofst2 .framer-yd3d64, .framer-Ofst2 .framer-1x98p6f, .framer-Ofst2 .framer-1dsonn9, .framer-Ofst2 .framer-1brnqhs, .framer-Ofst2 .framer-kug65g, .framer-Ofst2 .framer-7r0n16, .framer-Ofst2 .framer-fh761k, .framer-Ofst2 .framer-c6eubi, .framer-Ofst2 .framer-1nchoaj, .framer-Ofst2 .framer-5lhdni, .framer-Ofst2 .framer-1913esw, .framer-Ofst2 .framer-1215j0a, .framer-Ofst2 .framer-1mw13t8, .framer-Ofst2 .framer-3tsyle, .framer-Ofst2 .framer-1f12ncl, .framer-Ofst2 .framer-cbizuq, .framer-Ofst2 .framer-10y1cb8 { width: 100%; } .framer-Ofst2 .framer-fdk2d { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 82%) add; height: 502px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 57.99999999999999%, rgba(0, 0, 0, 0) 82%) add; order: 0; top: calc(69.00000000000001% - 502px / 2); } .framer-Ofst2 .framer-19l1795, .framer-Ofst2 .framer-4s37zc { order: 2; } .framer-Ofst2 .framer-lraitb { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Ofst2 .framer-7ks5oz { flex-direction: column; order: 3; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-nfijx2, .framer-Ofst2 .framer-rjls16, .framer-Ofst2 .framer-1wtvq3r, .framer-Ofst2 .framer-1rp1alp, .framer-Ofst2 .framer-foe30r { flex-direction: column; gap: 64px; width: 100%; } .framer-Ofst2 .framer-epjea { height: var(--framer-aspect-ratio-supported, 358px); order: 1; } .framer-Ofst2 .framer-1g5w9k2 { flex-direction: column; order: 4; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-130akod, .framer-Ofst2 .framer-gksuhm, .framer-Ofst2 .framer-l18xj9, .framer-Ofst2 .framer-13hzu9p { height: var(--framer-aspect-ratio-supported, 300px); } .framer-Ofst2 .framer-q5a80p { flex-direction: column; order: 5; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-1i58wam { align-self: unset; width: 100%; } .framer-Ofst2 .framer-7wci5y { flex-direction: column; order: 6; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-1rvsr12 { flex-direction: column; order: 7; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-6nfq58 { flex-direction: column; order: 8; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-1m8zcmt, .framer-Ofst2 .framer-1x8c903 { flex-direction: column; } .framer-Ofst2 .framer-x6mfwx, .framer-Ofst2 .framer-11ak4ke, .framer-Ofst2 .framer-1gdy4a4, .framer-Ofst2 .framer-p9o17v, .framer-Ofst2 .framer-i73s1j, .framer-Ofst2 .framer-tw3v5p { align-self: unset; flex: none; height: min-content; padding: 20px; width: 100%; } .framer-Ofst2 .framer-1r9ha4u, .framer-Ofst2 .framer-1lh41lb, .framer-Ofst2 .framer-1mkqik4, .framer-Ofst2 .framer-1lm9wfd, .framer-Ofst2 .framer-kn64iw, .framer-Ofst2 .framer-uscko2, .framer-Ofst2 .framer-1u1k7pn, .framer-Ofst2 .framer-h8qfuz { gap: 12px; } .framer-Ofst2 .framer-1364mhk, .framer-Ofst2 .framer-2acvbj { flex: none; padding: 20px; width: 100%; } .framer-Ofst2 .framer-11vbc0s-container { order: 9; } .framer-Ofst2 .framer-1sbnexg { order: 12; padding: 40px 16px 40px 16px; } .framer-Ofst2 .framer-v97kwp { order: 10; } .framer-Ofst2 .framer-kprtyc-container { order: 11; } .framer-Ofst2 .framer-8bcoco-container { left: 50%; order: 13; top: 796px; transform: translateX(-50%); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6030\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"irf0gQeMI\":{\"layout\":[\"fixed\",\"auto\"]},\"wj1L1_V5Z\":{\"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 FrameraugiA20Il=withCSS(Component,css,\"framer-Ofst2\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6030,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",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/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",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/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...NavigationFonts,...ButtonsMainButtonFonts,...TickerFonts,...IconoirFonts,...ButtonLinksFonts,...BlurGradientFonts,...GlobeFonts,...ShimmerFonts,...SectionsFooterFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"irf0gQeMI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wj1L1_V5Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6030\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "isEULocale", "locale", "navigator", "country", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "skipEUCheck", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "skipLogic", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "label", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "UcAJWx7hT", "hUGT8esx_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerm80lAFuSf", "withCSS", "m80lAFuSf_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "kliNrF8Kn_default", "ButtonsMainButtonFonts", "g8PSGZxw8_default", "TickerFonts", "Ticker", "IconoirFonts", "Icon", "ButtonLinksFonts", "m80lAFuSf_default", "BlurGradientFonts", "BlurGradient_Prod_default", "GlobeFonts", "Globe", "ShimmerFonts", "g_s8LqzcU_default", "ContainerWithFX", "withFX", "Container", "SectionsFooterFonts", "WnWLUINWq_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "transition8", "animation7", "transition9", "transition10", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "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", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "x", "RichText", "getLoadingLazyAtYPosition", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
