{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/NNYrsmBuBhbZxwEPT10X/U6eD2c3u00Ik0blpxSau/M8fbBlJkh.js", "ssg:https://framerusercontent.com/modules/v6W0KdQR14UysHNSyTl2/C7yoxP9EtdAYePWuAu6C/fI2UJFxKZ.js", "ssg:https://framerusercontent.com/modules/ueOQnZyempWbWeylNQIV/eNpiSqV6XFX7k6SWd2jy/WrHPhP43e.js", "ssg:https://framerusercontent.com/modules/ElsIktQ3FvhfEWXGKOhX/fPS7NdiuJMvYtEweBwXZ/WYjswQDlB.js", "ssg:https://framerusercontent.com/modules/OdXw9Ahsz4wKl6XdHpdu/tTSe6TK2y1XdB0AeVTP5/SVG_Component.js", "ssg:https://framerusercontent.com/modules/d8KD8qGAS1x1Rd3H7tjz/9ZrxIsYcYyLU10vsyFV7/xxCDyIdBJ.js", "ssg:https://framerusercontent.com/modules/3jy3W3LBi5quH7p5R2EI/zMAcfqjHpsweBH4E49q2/NX5rqE3er.js"],
  "sourcesContent": ["function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (fd7a51d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Hendrix Regular\",\"CUSTOM;BR Hendrix SemiBold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Hendrix Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bKOTxbUOFMDRBo022CByInbiqIg.woff2\"},{family:\"BR Hendrix SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/sACELSkW0qhZ8tU4nCmxXFULwBg.woff2\"}]}];export const css=['.framer-D0YFs .framer-styles-preset-182xi6q:not(.rich-text-wrapper), .framer-D0YFs .framer-styles-preset-182xi6q.rich-text-wrapper p { --framer-font-family: \"BR Hendrix Regular\", \"BR Hendrix Regular Placeholder\", sans-serif; --framer-font-family-bold: \"BR Hendrix SemiBold\", \"BR Hendrix SemiBold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 150%; --framer-paragraph-spacing: 12px; --framer-text-alignment: start; --framer-text-color: var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, #121212); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-D0YFs\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Hendrix SemiBold\"]);export const fonts=[{family:\"BR Hendrix SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/sACELSkW0qhZ8tU4nCmxXFULwBg.woff2\"}];export const css=['.framer-I0w1P .framer-styles-preset-15xvcz1:not(.rich-text-wrapper), .framer-I0w1P .framer-styles-preset-15xvcz1.rich-text-wrapper p { --framer-font-family: \"BR Hendrix SemiBold\", \"BR Hendrix SemiBold Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, #121212); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-I0w1P\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (04e0834)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-agw27 .framer-styles-preset-1qbtuce:not(.rich-text-wrapper), .framer-agw27 .framer-styles-preset-1qbtuce.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, #121212) /* {\"name\":\"Fg / Default\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, #545659); --framer-link-text-decoration: none; }'];export const className=\"framer-agw27\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (78454af)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-PKE3b .framer-styles-preset-187qyhg:not(.rich-text-wrapper), .framer-PKE3b .framer-styles-preset-187qyhg.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, #ffffff) /* {\"name\":\"Fg / Inverse\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, #898989); --framer-link-text-decoration: none; }'];export const className=\"framer-PKE3b\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import React from\"react\";class SVG extends React.Component{componentDidMount(){this.injectAttributes();}componentDidUpdate(){this.injectAttributes();}injectAttributes(){const{svgCode,strokeWidth,customColor,color}=this.props;if(!this.containerRef.current)return;// Create a temporary div to hold the SVG code\nconst tempDiv=document.createElement(\"div\");tempDiv.innerHTML=svgCode;// Select path elements with the 'fill' attribute in the SVG code and set their fill color\nconst pathElements=tempDiv.querySelectorAll(\"path[fill]\");pathElements.forEach(element=>{if(customColor){element.setAttribute(\"fill\",color);}});// Select elements with the 'stroke' attribute in the SVG code and set their stroke color and width\nconst strokeElements=tempDiv.querySelectorAll(\"[stroke]\");strokeElements.forEach(element=>{if(customColor){element.setAttribute(\"stroke\",color);}if(strokeWidth!==undefined){element.setAttribute(\"stroke-width\",strokeWidth);}});// Set the width and height of the SVG element to 100%\nconst svgElement=tempDiv.querySelector(\"svg\");if(svgElement){svgElement.setAttribute(\"width\",\"100%\");svgElement.setAttribute(\"height\",\"100%\");}// Update the container with the modified SVG code\nthis.containerRef.current.innerHTML=tempDiv.innerHTML;}render(){const{padding}=this.props;return /*#__PURE__*/_jsx(\"div\",{ref:this.containerRef,style:{overflow:\"visible\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",padding:padding}});}constructor(props){super(props);this.containerRef=/*#__PURE__*/React.createRef();}}SVG.defaultProps={svgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path d=\"M18.9012 1.71359H22.5816L14.5416 10.428L24 22.2852H16.5936L10.794 15.0936L4.1568 22.2852H0.4728L9.0732 12.9648L0 1.71359H7.5936L12.8376 8.28719L18.9012 1.71359ZM17.61 20.1972H19.65L6.4848 3.69359H4.296L17.61 20.1972Z\" fill=\"#717171\"/>\n  </svg>`,strokeWidth:1,customColor:false,color:\"#000\",padding:0};addPropertyControls(SVG,{svgCode:{type:ControlType.String,title:\"SVG Code\",defaultValue:SVG.defaultProps.svgCode,placeholder:\"<svg>...</svg>\",displayTextArea:false},customColor:{type:ControlType.Boolean,title:\"Custom Color\",defaultValue:SVG.defaultProps.customColor},color:{type:ControlType.Color,title:\"Color\",defaultValue:SVG.defaultProps.color,hidden(props){return!props.customColor;}},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:SVG.defaultProps.padding,min:0,step:1,displayStepper:true},strokeWidth:{type:ControlType.Number,title:\"Stroke Width\",min:.5,step:.25,displayStepper:true,defaultValue:SVG.defaultProps.strokeWidth,hidden(props){// Hide the control if the SVG code does not contain the 'stroke' attribute\nreturn!props.svgCode.includes(\"stroke\");}}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Component.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/OdXw9Ahsz4wKl6XdHpdu/tTSe6TK2y1XdB0AeVTP5/SVG_Component.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/NNYrsmBuBhbZxwEPT10X/U6eD2c3u00Ik0blpxSau/M8fbBlJkh.js\";const SVGFonts=getFonts(SVG);const enabledGestures={fBy0VCPch:{hover:true}};const cycleOrder=[\"fBy0VCPch\"];const serializationHash=\"framer-0SfHU\";const variantClassNames={fBy0VCPch:\"framer-v-1nf7zn7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({color,height,hoverColor,iconSVG,id,label,link,width,...props})=>{return{...props,DLq9nIRl0:color??props.DLq9nIRl0??\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",Fdiv7OABt:link??props.Fdiv7OABt,Np4T3QLfa:label??props.Np4T3QLfa??\"Social\",QBFrVdQpG:iconSVG??props.QBFrVdQpG??'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M15.7511 1.42847H18.818L12.1179 8.68999L20 18.5713H13.8284L8.99457 12.5783L3.46359 18.5713H0.394943L7.5613 10.8043L0 1.42847H6.32829L10.6976 6.90627L15.7511 1.42847ZM14.6749 16.8307H16.3741L5.4049 3.0777H3.58133L14.6749 16.8307Z\" fill=\"#545659\"/> </svg>',YPw4bQ3GX:hoverColor??props.YPw4bQ3GX??\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,QBFrVdQpG,DLq9nIRl0,Fdiv7OABt,Np4T3QLfa,YPw4bQ3GX,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fBy0VCPch\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Fdiv7OABt,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1nf7zn7\",className,classNames)} framer-1n3iwts`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fBy0VCPch\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"fBy0VCPch-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1phx8rr-container\",layoutDependency:layoutDependency,layoutId:\"E7qsAGqoa-container\",children:/*#__PURE__*/_jsx(SVG,{color:DLq9nIRl0,customColor:true,height:\"100%\",id:\"E7qsAGqoa\",layoutId:\"E7qsAGqoa\",padding:0,strokeWidth:1,style:{height:\"100%\",width:\"100%\"},svgCode:QBFrVdQpG,width:\"100%\",...addPropertyOverrides({\"fBy0VCPch-hover\":{color:YPw4bQ3GX}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-DLq9nIRl0-xxCDyIdBJ))\"},children:\"Social\"})}),className:\"framer-8vlcz1\",\"data-framer-name\":\"Discord\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ODyqLGpK7\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-DLq9nIRl0-xxCDyIdBJ)\",\"--framer-paragraph-spacing\":\"8px\",\"--variable-reference-DLq9nIRl0-xxCDyIdBJ\":DLq9nIRl0,\"--variable-reference-YPw4bQ3GX-xxCDyIdBJ\":YPw4bQ3GX},text:Np4T3QLfa,variants:{\"fBy0VCPch-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-YPw4bQ3GX-xxCDyIdBJ)\",\"--variable-reference-YPw4bQ3GX-xxCDyIdBJ\":YPw4bQ3GX}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"fBy0VCPch-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-YPw4bQ3GX-xxCDyIdBJ))\"},children:\"Social\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0SfHU.framer-1n3iwts, .framer-0SfHU .framer-1n3iwts { display: block; }\",\".framer-0SfHU.framer-1nf7zn7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-0SfHU .framer-1phx8rr-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-0SfHU .framer-8vlcz1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0SfHU.framer-1nf7zn7 { gap: 0px; } .framer-0SfHU.framer-1nf7zn7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-0SfHU.framer-1nf7zn7 > :first-child { margin-left: 0px; } .framer-0SfHU.framer-1nf7zn7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 71\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"UyUNoBLrG\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"QBFrVdQpG\":\"iconSVG\",\"DLq9nIRl0\":\"color\",\"Fdiv7OABt\":\"link\",\"Np4T3QLfa\":\"label\",\"YPw4bQ3GX\":\"hoverColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxxCDyIdBJ=withCSS(Component,css,\"framer-0SfHU\");export default FramerxxCDyIdBJ;FramerxxCDyIdBJ.displayName=\"Social Link Item\";FramerxxCDyIdBJ.defaultProps={height:24,width:71};addPropertyControls(FramerxxCDyIdBJ,{QBFrVdQpG:{defaultValue:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M15.7511 1.42847H18.818L12.1179 8.68999L20 18.5713H13.8284L8.99457 12.5783L3.46359 18.5713H0.394943L7.5613 10.8043L0 1.42847H6.32829L10.6976 6.90627L15.7511 1.42847ZM14.6749 16.8307H16.3741L5.4049 3.0777H3.58133L14.6749 16.8307Z\" fill=\"#545659\"/> </svg>',displayTextArea:false,placeholder:\"<svg>...</svg>\",title:\"Icon SVG\",type:ControlType.String},DLq9nIRl0:{defaultValue:'var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)) /* {\"name\":\"Fg / Muted\"} */',title:\"Color\",type:ControlType.Color},Fdiv7OABt:{title:\"Link\",type:ControlType.Link},Np4T3QLfa:{defaultValue:\"Social\",displayTextArea:false,title:\"Label\",type:ControlType.String},YPw4bQ3GX:{defaultValue:'var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)) /* {\"name\":\"Fg / Default\"} */',title:\"Hover Color\",type:ControlType.Color}});addFonts(FramerxxCDyIdBJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxxCDyIdBJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"71\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UyUNoBLrG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"QBFrVdQpG\\\":\\\"iconSVG\\\",\\\"DLq9nIRl0\\\":\\\"color\\\",\\\"Fdiv7OABt\\\":\\\"link\\\",\\\"Np4T3QLfa\\\":\\\"label\\\",\\\"YPw4bQ3GX\\\":\\\"hoverColor\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/F4ttHaWrEaQNE0c8kX8G/ayW9nudbg71RsThEEO0y/E0JCJe1gi.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/v6W0KdQR14UysHNSyTl2/C7yoxP9EtdAYePWuAu6C/fI2UJFxKZ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/NNYrsmBuBhbZxwEPT10X/U6eD2c3u00Ik0blpxSau/M8fbBlJkh.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/ueOQnZyempWbWeylNQIV/eNpiSqV6XFX7k6SWd2jy/WrHPhP43e.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/ElsIktQ3FvhfEWXGKOhX/fPS7NdiuJMvYtEweBwXZ/WYjswQDlB.js\";import SocialLinkItem from\"https://framerusercontent.com/modules/d8KD8qGAS1x1Rd3H7tjz/9ZrxIsYcYyLU10vsyFV7/xxCDyIdBJ.js\";const SocialLinkItemFonts=getFonts(SocialLinkItem);const cycleOrder=[\"hs9SGKJmN\",\"p6L20e9am\",\"GE8aOfZqZ\",\"Vhy4EAp7p\",\"ZypV1mgEA\",\"ufwv6Pj1e\"];const serializationHash=\"framer-EMOF6\";const variantClassNames={GE8aOfZqZ:\"framer-v-1kafzc9\",hs9SGKJmN:\"framer-v-mo0zpa\",p6L20e9am:\"framer-v-1x9cf6v\",ufwv6Pj1e:\"framer-v-m1sbpi\",Vhy4EAp7p:\"framer-v-kq0lr3\",ZypV1mgEA:\"framer-v-k1ijsk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark / Desktop\":\"Vhy4EAp7p\",\"Dark / Phone\":\"ufwv6Pj1e\",\"Dark / Tablet\":\"ZypV1mgEA\",Desktop:\"hs9SGKJmN\",Phone:\"GE8aOfZqZ\",Tablet:\"p6L20e9am\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hs9SGKJmN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hs9SGKJmN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-mo0zpa\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hs9SGKJmN\",ref:ref??ref1,style:{backgroundColor:\"var(--token-b1448873-0032-4c9f-9ee0-24e9bdcc33bc, rgb(255, 255, 255))\",...style},variants:{ufwv6Pj1e:{backgroundColor:\"var(--token-4ae90ac1-4ccc-4e18-9bc0-f04bd9a07db2, rgb(9, 9, 9))\"},Vhy4EAp7p:{backgroundColor:\"var(--token-4ae90ac1-4ccc-4e18-9bc0-f04bd9a07db2, rgb(9, 9, 9))\"},ZypV1mgEA:{backgroundColor:\"var(--token-4ae90ac1-4ccc-4e18-9bc0-f04bd9a07db2, rgb(9, 9, 9))\"}},...addPropertyOverrides({GE8aOfZqZ:{\"data-framer-name\":\"Phone\"},p6L20e9am:{\"data-framer-name\":\"Tablet\"},ufwv6Pj1e:{\"data-framer-name\":\"Dark / Phone\"},Vhy4EAp7p:{\"data-framer-name\":\"Dark / Desktop\"},ZypV1mgEA:{\"data-framer-name\":\"Dark / Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wi1l90\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"FTWjjHhte\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tgv8ss\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"k0gktTyoq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-12ewpuf\",\"data-styles-preset\":\"E0JCJe1gi\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"Enterprise GenAI Stack.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"LLMs on your cloud & data.\"})]})}),className:\"framer-y9c6dw\",\"data-framer-name\":\"Enterprise GenAI Stack.\\u2028LLMs on your cloud & data.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hB9iEQlsm\",style:{\"--extracted-1w3ko1f\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--extracted-c9yw3e\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ufwv6Pj1e:{\"--extracted-1w3ko1f\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\",\"--extracted-c9yw3e\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{\"--extracted-1w3ko1f\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\",\"--extracted-c9yw3e\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{\"--extracted-1w3ko1f\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\",\"--extracted-c9yw3e\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-12ewpuf\",\"data-styles-preset\":\"E0JCJe1gi\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Enterprise GenAI Stack.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"LLMs on your cloud & data.\"})]})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-12ewpuf\",\"data-styles-preset\":\"E0JCJe1gi\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Enterprise GenAI Stack.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"LLMs on your cloud & data.\"})]})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-12ewpuf\",\"data-styles-preset\":\"E0JCJe1gi\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Enterprise GenAI Stack.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"LLMs on your cloud & data.\"})]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:\"\\xa9 2025 NimbleBox, Inc.\"})}),className:\"framer-11dq2vo\",\"data-framer-name\":\"\\xa9 2024 NimbleBox, Inc.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h672XT3l2\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},variants:{ufwv6Pj1e:{\"--extracted-r6o4lv\":\"var(--token-1bccc6bb-1355-4dfb-bb11-868d204257a8, rgb(166, 166, 168))\"},Vhy4EAp7p:{\"--extracted-r6o4lv\":\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\"},ZypV1mgEA:{\"--extracted-r6o4lv\":\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1bccc6bb-1355-4dfb-bb11-868d204257a8, rgb(166, 166, 168)))\"},children:\"\\xa9 2025 NimbleBox, Inc.\"})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137)))\"},children:\"\\xa9 2025 NimbleBox, Inc.\"})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137)))\"},children:\"\\xa9 2025 NimbleBox, Inc.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:\"https://azuremarketplace.microsoft.com/en-gb/marketplace/apps/tunehq_ai.tuneai-enterprise\",nodeId:\"rbguqJ83o\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+0+0+0+302),pixelHeight:163,pixelWidth:450,src:\"https://framerusercontent.com/images/dSPpGX04tISYs9wNd2yShMyNb4.png\"},className:\"framer-1ebxwg3 framer-hnawe8\",\"data-framer-name\":\"MS Azure_Marketplace\",layoutDependency:layoutDependency,layoutId:\"rbguqJ83o\",...addPropertyOverrides({GE8aOfZqZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+0+0+0+0+302),pixelHeight:163,pixelWidth:450,src:\"https://framerusercontent.com/images/dSPpGX04tISYs9wNd2yShMyNb4.png\"}},p6L20e9am:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+0+0+0+0+302),pixelHeight:163,pixelWidth:450,src:\"https://framerusercontent.com/images/dSPpGX04tISYs9wNd2yShMyNb4.png\"}},ufwv6Pj1e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+0+0+0+0+302),pixelHeight:163,pixelWidth:450,src:\"https://framerusercontent.com/images/dSPpGX04tISYs9wNd2yShMyNb4.png\"}},ZypV1mgEA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+0+0+0+0+302),pixelHeight:163,pixelWidth:450,src:\"https://framerusercontent.com/images/dSPpGX04tISYs9wNd2yShMyNb4.png\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sdzabf\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"NuHTKT0fS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ibknij\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"VYJ_cz5JM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"Product\"})}),className:\"framer-iitbth\",\"data-framer-name\":\"Product\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Enci0FMuV\",style:{\"--extracted-r6o4lv\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ufwv6Pj1e:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Product\"})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Product\"})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TLRlOhDrB\"},nodeId:\"MoPdeemL_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Tune Chat\"})})})}),className:\"framer-jn2wnk\",\"data-framer-name\":\"Tune Chat\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MoPdeemL_\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TLRlOhDrB\"},nodeId:\"MoPdeemL_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Chat\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TLRlOhDrB\"},nodeId:\"MoPdeemL_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Chat\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TLRlOhDrB\"},nodeId:\"MoPdeemL_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Chat\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q9p3_ZoLe\"},nodeId:\"uaJOUshtk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Tune Studio\"})})})}),className:\"framer-17wndqw\",\"data-framer-name\":\"Tune Studio\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uaJOUshtk\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q9p3_ZoLe\"},nodeId:\"uaJOUshtk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Studio\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q9p3_ZoLe\"},nodeId:\"uaJOUshtk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Studio\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q9p3_ZoLe\"},nodeId:\"uaJOUshtk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Tune Studio\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRXwKa9sT\"},nodeId:\"lgQEKdJbA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Integrations\"})})})}),className:\"framer-60k84g\",\"data-framer-name\":\"Enterprise\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lgQEKdJbA\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRXwKa9sT\"},nodeId:\"lgQEKdJbA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Integrations\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRXwKa9sT\"},nodeId:\"lgQEKdJbA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Integrations\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jRXwKa9sT\"},nodeId:\"lgQEKdJbA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Integrations\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wgqwWnuqj\"},nodeId:\"z1iPmwbIm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Developers\"})})})}),className:\"framer-1acolk6\",\"data-framer-name\":\"Enterprise\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z1iPmwbIm\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wgqwWnuqj\"},nodeId:\"z1iPmwbIm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Developers\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wgqwWnuqj\"},nodeId:\"z1iPmwbIm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Developers\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wgqwWnuqj\"},nodeId:\"z1iPmwbIm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Developers\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PxYHJckiM\"},nodeId:\"u1l8Q3GJG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Enterprise\"})})})}),className:\"framer-1h8ay2n\",\"data-framer-name\":\"Enterprise\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u1l8Q3GJG\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PxYHJckiM\"},nodeId:\"u1l8Q3GJG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Enterprise\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PxYHJckiM\"},nodeId:\"u1l8Q3GJG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Enterprise\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PxYHJckiM\"},nodeId:\"u1l8Q3GJG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Enterprise\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqlAJseXP\"},nodeId:\"vkBiIaRt4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"On-Prem\"})})})}),className:\"framer-rz9i1y\",\"data-framer-name\":\"Enterprise\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vkBiIaRt4\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqlAJseXP\"},nodeId:\"vkBiIaRt4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"On-Prem\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqlAJseXP\"},nodeId:\"vkBiIaRt4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"On-Prem\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqlAJseXP\"},nodeId:\"vkBiIaRt4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"On-Prem\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrMB8TL8c\"},nodeId:\"Cz9WyIDvW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Pricing\"})})})}),className:\"framer-cnjt5u\",\"data-framer-name\":\"Pricing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cz9WyIDvW\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrMB8TL8c\"},nodeId:\"Cz9WyIDvW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Pricing\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrMB8TL8c\"},nodeId:\"Cz9WyIDvW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Pricing\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrMB8TL8c\"},nodeId:\"Cz9WyIDvW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Pricing\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rvCyFWjqz\"},nodeId:\"ke8ZIvrkn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Contact Sales\"})})})}),className:\"framer-1ppaksy\",\"data-framer-name\":\"Contact Sales\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ke8ZIvrkn\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rvCyFWjqz\"},nodeId:\"ke8ZIvrkn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Contact Sales\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rvCyFWjqz\"},nodeId:\"ke8ZIvrkn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Contact Sales\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rvCyFWjqz\"},nodeId:\"ke8ZIvrkn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Contact Sales\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-100tbhg\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"AU103Rk5t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"Resources\"})}),className:\"framer-6sknpe\",\"data-framer-name\":\"Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pO5IBH77C\",style:{\"--extracted-r6o4lv\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ufwv6Pj1e:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Resources\"})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Resources\"})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Resources\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"UJB0vbznN\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Blog\"})})})}),className:\"framer-lpg48j\",\"data-framer-name\":\"Blog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UJB0vbznN\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"UJB0vbznN\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Blog\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"UJB0vbznN\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Blog\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"UJB0vbznN\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Blog\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qsFLdS50d\"},nodeId:\"Nyl4QyfDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Case Studies\"})})})}),className:\"framer-gpviru\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nyl4QyfDR\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qsFLdS50d\"},nodeId:\"Nyl4QyfDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Case Studies\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qsFLdS50d\"},nodeId:\"Nyl4QyfDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Case Studies\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qsFLdS50d\"},nodeId:\"Nyl4QyfDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Case Studies\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AEwvWQaJg\"},nodeId:\"YnOthMII6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Ebook\"})})})}),className:\"framer-r19n0q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YnOthMII6\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AEwvWQaJg\"},nodeId:\"YnOthMII6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Ebook\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AEwvWQaJg\"},nodeId:\"YnOthMII6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Ebook\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AEwvWQaJg\"},nodeId:\"YnOthMII6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Ebook\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K5S_HJmow\"},nodeId:\"kGJn4_c_G\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Events\"})})})}),className:\"framer-ztwfvt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kGJn4_c_G\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"kGJn4_c_G\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Events\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"kGJn4_c_G\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Events\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r76DR2yGN\"},nodeId:\"kGJn4_c_G\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Events\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zqPh09YXs\"},nodeId:\"nyNlouOww\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Careers\"})})})}),className:\"framer-sf41fa\",\"data-framer-name\":\"Careers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nyNlouOww\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zqPh09YXs\"},nodeId:\"nyNlouOww\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Careers\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zqPh09YXs\"},nodeId:\"nyNlouOww\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Careers\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zqPh09YXs\"},nodeId:\"nyNlouOww\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Careers\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/faqs\",nodeId:\"iaUbTtSbG\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"FAQs\"})})})}),className:\"framer-lkkqns\",\"data-framer-name\":\"FAQs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iaUbTtSbG\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/faqs\",nodeId:\"iaUbTtSbG\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"FAQs\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/faqs\",nodeId:\"iaUbTtSbG\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"FAQs\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/faqs\",nodeId:\"iaUbTtSbG\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"FAQs\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/changelog\",nodeId:\"qGmMBsnz0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Changelog\"})})})}),className:\"framer-livuzy\",\"data-framer-name\":\"Changelog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qGmMBsnz0\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/changelog\",nodeId:\"qGmMBsnz0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Changelog\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/changelog\",nodeId:\"qGmMBsnz0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Changelog\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/getting-started/changelog\",nodeId:\"qGmMBsnz0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Changelog\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs\",nodeId:\"PKZydkoff\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Docs\"})})})}),className:\"framer-8g4tev\",\"data-framer-name\":\"Docs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PKZydkoff\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs\",nodeId:\"PKZydkoff\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Docs\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs\",nodeId:\"PKZydkoff\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Docs\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs\",nodeId:\"PKZydkoff\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Docs\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/api-reference/completions/chat-completion\",nodeId:\"Ww6mS9Cud\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"API Reference\"})})})}),className:\"framer-mqd8xd\",\"data-framer-name\":\"API Reference\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ww6mS9Cud\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/api-reference/completions/chat-completion\",nodeId:\"Ww6mS9Cud\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"API Reference\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/api-reference/completions/chat-completion\",nodeId:\"Ww6mS9Cud\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"API Reference\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://studio.tune.app/docs/api-reference/completions/chat-completion\",nodeId:\"Ww6mS9Cud\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"API Reference\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a47cqe\",\"data-framer-name\":\"Link Group\",layoutDependency:layoutDependency,layoutId:\"eOgxoc_vl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"Socials\"})}),className:\"framer-12fwscw\",\"data-framer-name\":\"Socials\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"petuA3RwP\",style:{\"--extracted-r6o4lv\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ufwv6Pj1e:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Socials\"})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Socials\"})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Socials\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+96+0+0+0+0+136,...addPropertyOverrides({GE8aOfZqZ:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+136},p6L20e9am:{y:(componentViewport?.y||0)+96+0+0+416+0+0+136},ufwv6Pj1e:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+136},ZypV1mgEA:{y:(componentViewport?.y||0)+96+0+0+416+0+0+136}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vjelmb-container\",layoutDependency:layoutDependency,layoutId:\"Ma_sysjaH-container\",children:/*#__PURE__*/_jsx(SocialLinkItem,{DLq9nIRl0:\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",Fdiv7OABt:\"https://discord.com/invite/KhF38hrAJ2\",height:\"100%\",id:\"Ma_sysjaH\",layoutId:\"Ma_sysjaH\",Np4T3QLfa:\"Discord\",QBFrVdQpG:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.9556 3.76C15.6518 3.17 14.2671 2.74 12.8218 2.5C12.6399 2.81 12.4377 3.23 12.2962 3.56C10.759 3.33999 9.23279 3.33999 7.71672 3.56C7.57521 3.23 7.36295 2.81 7.19112 2.5C5.73573 2.74 4.35105 3.17 3.05634 3.76C0.438605 7.57998 -0.268894 11.31 0.0848541 14.9899C1.82327 16.2399 3.50106 17 5.14953 17.5C5.55382 16.96 5.91768 16.3799 6.231 15.77C5.63468 15.55 5.06868 15.28 4.5229 14.9599C4.6644 14.86 4.8059 14.75 4.93729 14.64C8.2322 16.13 11.801 16.13 15.0555 14.64C15.197 14.75 15.3284 14.86 15.4699 14.9599C14.9241 15.28 14.3581 15.55 13.7618 15.77C14.0751 16.3799 14.439 16.96 14.8432 17.5C16.4907 17 18.1786 16.2399 19.9079 14.9899C20.3425 10.73 19.2196 7.03002 16.9556 3.76ZM6.68581 12.72C5.6953 12.72 4.88674 11.83 4.88674 10.74C4.88674 9.65002 5.67509 8.75997 6.68581 8.75997C7.68639 8.75997 8.50504 9.65002 8.48483 10.74C8.48483 11.83 7.68639 12.72 6.68581 12.72ZM13.3272 12.72C12.3367 12.72 11.5271 11.83 11.5271 10.74C11.5271 9.65002 12.3164 8.75997 13.3272 8.75997C14.3278 8.75997 15.1464 9.65002 15.1262 10.74C15.1262 11.83 14.3379 12.72 13.3272 12.72Z\" fill=\"#545659\"/> </svg>',width:\"100%\",YPw4bQ3GX:\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",...addPropertyOverrides({ufwv6Pj1e:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+96+0+0+0+0+176,...addPropertyOverrides({GE8aOfZqZ:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+176},p6L20e9am:{y:(componentViewport?.y||0)+96+0+0+416+0+0+176},ufwv6Pj1e:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+176},ZypV1mgEA:{y:(componentViewport?.y||0)+96+0+0+416+0+0+176}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3cyzv1-container\",layoutDependency:layoutDependency,layoutId:\"nq3bxKHXM-container\",children:/*#__PURE__*/_jsx(SocialLinkItem,{DLq9nIRl0:\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",Fdiv7OABt:\"https://www.linkedin.com/company/tuneai/\",height:\"100%\",id:\"nq3bxKHXM\",layoutId:\"nq3bxKHXM\",Np4T3QLfa:\"LinkedIn\",QBFrVdQpG:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.5 1.25H2.49609C1.80859 1.25 1.25 1.81641 1.25 2.51172V17.4883C1.25 18.1836 1.80859 18.75 2.49609 18.75H17.5C18.1875 18.75 18.75 18.1836 18.75 17.4883V2.51172C18.75 1.81641 18.1875 1.25 17.5 1.25ZM6.53906 16.25H3.94531V7.89844H6.54297V16.25H6.53906ZM5.24219 6.75781C4.41016 6.75781 3.73828 6.08203 3.73828 5.25391C3.73828 4.42578 4.41016 3.75 5.24219 3.75C6.07031 3.75 6.74609 4.42578 6.74609 5.25391C6.74609 6.08594 6.07422 6.75781 5.24219 6.75781ZM16.2617 16.25H13.668V12.1875C13.668 11.2188 13.6484 9.97266 12.3203 9.97266C10.9688 9.97266 10.7617 11.0273 10.7617 12.1172V16.25H8.16797V7.89844H10.6562V9.03906H10.6914C11.0391 8.38281 11.8867 7.69141 13.1484 7.69141C15.7734 7.69141 16.2617 9.42188 16.2617 11.6719V16.25Z\" fill=\"#545659\"/> </svg>',width:\"100%\",YPw4bQ3GX:\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",...addPropertyOverrides({ufwv6Pj1e:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+96+0+0+0+0+216,...addPropertyOverrides({GE8aOfZqZ:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+216},p6L20e9am:{y:(componentViewport?.y||0)+96+0+0+416+0+0+216},ufwv6Pj1e:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+216},ZypV1mgEA:{y:(componentViewport?.y||0)+96+0+0+416+0+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q8amx9-container\",layoutDependency:layoutDependency,layoutId:\"bfwbiv_df-container\",children:/*#__PURE__*/_jsx(SocialLinkItem,{DLq9nIRl0:\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",Fdiv7OABt:\"https://x.com/TuneHQ_AI\",height:\"100%\",id:\"bfwbiv_df\",layoutId:\"bfwbiv_df\",Np4T3QLfa:\"X\",QBFrVdQpG:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M15.7511 1.42847H18.818L12.1179 8.68999L20 18.5713H13.8284L8.99457 12.5783L3.46359 18.5713H0.394943L7.5613 10.8043L0 1.42847H6.32829L10.6976 6.90627L15.7511 1.42847ZM14.6749 16.8307H16.3741L5.4049 3.0777H3.58133L14.6749 16.8307Z\" fill=\"#545659\"/> </svg>',width:\"100%\",YPw4bQ3GX:\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",...addPropertyOverrides({ufwv6Pj1e:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+96+0+0+0+0+256,...addPropertyOverrides({GE8aOfZqZ:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+256},p6L20e9am:{y:(componentViewport?.y||0)+96+0+0+416+0+0+256},ufwv6Pj1e:{y:(componentViewport?.y||0)+48+0+0+416+0+424+0+256},ZypV1mgEA:{y:(componentViewport?.y||0)+96+0+0+416+0+0+256}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rcdyaq-container\",layoutDependency:layoutDependency,layoutId:\"a8ug3Y7UE-container\",children:/*#__PURE__*/_jsx(SocialLinkItem,{DLq9nIRl0:\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",Fdiv7OABt:\"https://github.com/TuneHQ\",height:\"100%\",id:\"a8ug3Y7UE\",layoutId:\"a8ug3Y7UE\",Np4T3QLfa:\"GitHub\",QBFrVdQpG:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1891_13643)\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0001 0C4.47791 0 0 4.59039 0 10.2532C0 14.7833 2.86533 18.6266 6.83867 19.9824C7.33844 20.0773 7.52192 19.76 7.52192 19.4891C7.52192 19.2446 7.51265 18.437 7.50834 17.5802C4.72631 18.2005 4.13927 16.3705 4.13927 16.3705C3.68437 15.1854 3.02894 14.8702 3.02894 14.8702C2.12163 14.2339 3.09733 14.2469 3.09733 14.2469C4.10151 14.3193 4.63026 15.3035 4.63026 15.3035C5.52217 16.871 6.96965 16.4178 7.5403 16.1559C7.63006 15.4932 7.88921 15.0409 8.1752 14.7848C5.95405 14.5256 3.61913 13.6464 3.61913 9.71766C3.61913 8.59825 4.00977 7.6836 4.64947 6.96556C4.54564 6.70731 4.20335 5.66448 4.74635 4.25218C4.74635 4.25218 5.58609 3.97661 7.49708 5.30317C8.29476 5.07599 9.15024 4.96206 10.0001 4.95816C10.8499 4.96206 11.7061 5.07599 12.5052 5.30317C14.4139 3.97661 15.2525 4.25218 15.2525 4.25218C15.7968 5.66448 15.4544 6.70731 15.3505 6.96556C15.9917 7.6836 16.3797 8.59825 16.3797 9.71766C16.3797 13.6557 14.0403 14.5228 11.8135 14.7767C12.1722 15.0949 12.4918 15.7188 12.4918 16.6754C12.4918 18.0473 12.4802 19.1514 12.4802 19.4891C12.4802 19.762 12.6602 20.0817 13.1671 19.981C17.1383 18.6237 20 14.7818 20 10.2532C20 4.59039 15.5227 0 10.0001 0Z\" fill=\"#545659\"/> </g> <defs> <clipPath id=\"clip0_1891_13643\"> <rect width=\"20\" height=\"20\" fill=\"white\"/> </clipPath> </defs> </svg>',width:\"100%\",YPw4bQ3GX:\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",...addPropertyOverrides({ufwv6Pj1e:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{DLq9nIRl0:\"var(--token-d0fe3fcc-27e7-4bdf-9565-b7646d265f05, rgb(137, 137, 137))\",YPw4bQ3GX:\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rano1k\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"Ugy_5BAFz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18)))\"},children:\"Legal\"})}),className:\"framer-vlo4ab\",\"data-framer-name\":\"Legal\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ippqlbumX\",style:{\"--extracted-r6o4lv\":\"var(--token-62384f20-bb9d-4eef-9216-9660fa5aa172, rgb(18, 18, 18))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ufwv6Pj1e:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},Vhy4EAp7p:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"},ZypV1mgEA:{\"--extracted-r6o4lv\":\"var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Legal\"})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Legal\"})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15xvcz1\",\"data-styles-preset\":\"fI2UJFxKZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc6a8bee-ee31-4142-abc7-2b7bec875e1c, rgb(255, 255, 255)))\"},children:\"Legal\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o7AysRIYs\"},nodeId:\"X26VLMBju\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Terms of Service\"})})})}),className:\"framer-nb11bm\",\"data-framer-name\":\"Terms of Service\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X26VLMBju\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o7AysRIYs\"},nodeId:\"X26VLMBju\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Terms of Service\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o7AysRIYs\"},nodeId:\"X26VLMBju\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Terms of Service\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o7AysRIYs\"},nodeId:\"X26VLMBju\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Terms of Service\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pnprxrICG\"},nodeId:\"hZVwEwvil\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qbtuce\",\"data-styles-preset\":\"WrHPhP43e\",children:\"Privacy Policy\"})})})}),className:\"framer-1teepa7\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hZVwEwvil\",style:{\"--extracted-r6o4lv\":\"var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ufwv6Pj1e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pnprxrICG\"},nodeId:\"hZVwEwvil\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Privacy Policy\"})})})})},Vhy4EAp7p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pnprxrICG\"},nodeId:\"hZVwEwvil\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Privacy Policy\"})})})})},ZypV1mgEA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-182xi6q\",\"data-styles-preset\":\"M8fbBlJkh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2edcd068-dd4a-43a0-8803-2a845ecf65e0, rgb(84, 86, 89)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pnprxrICG\"},nodeId:\"hZVwEwvil\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-187qyhg\",\"data-styles-preset\":\"WYjswQDlB\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EMOF6.framer-hnawe8, .framer-EMOF6 .framer-hnawe8 { display: block; }\",\".framer-EMOF6.framer-mo0zpa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 32px 96px 32px; position: relative; width: 1280px; }\",\".framer-EMOF6 .framer-wi1l90 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EMOF6 .framer-1tgv8ss { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EMOF6 .framer-y9c6dw, .framer-EMOF6 .framer-11dq2vo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EMOF6 .framer-1ebxwg3 { aspect-ratio: 2.7607361963190185 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; text-decoration: none; width: 182px; }\",\".framer-EMOF6 .framer-sdzabf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EMOF6 .framer-ibknij, .framer-EMOF6 .framer-100tbhg, .framer-EMOF6 .framer-a47cqe, .framer-EMOF6 .framer-1rano1k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EMOF6 .framer-iitbth, .framer-EMOF6 .framer-jn2wnk, .framer-EMOF6 .framer-17wndqw, .framer-EMOF6 .framer-60k84g, .framer-EMOF6 .framer-1acolk6, .framer-EMOF6 .framer-1h8ay2n, .framer-EMOF6 .framer-rz9i1y, .framer-EMOF6 .framer-cnjt5u, .framer-EMOF6 .framer-1ppaksy, .framer-EMOF6 .framer-6sknpe, .framer-EMOF6 .framer-lpg48j, .framer-EMOF6 .framer-gpviru, .framer-EMOF6 .framer-r19n0q, .framer-EMOF6 .framer-ztwfvt, .framer-EMOF6 .framer-sf41fa, .framer-EMOF6 .framer-lkkqns, .framer-EMOF6 .framer-livuzy, .framer-EMOF6 .framer-8g4tev, .framer-EMOF6 .framer-mqd8xd, .framer-EMOF6 .framer-vlo4ab, .framer-EMOF6 .framer-nb11bm, .framer-EMOF6 .framer-1teepa7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EMOF6 .framer-12fwscw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 155px; word-break: break-word; word-wrap: break-word; }\",\".framer-EMOF6 .framer-vjelmb-container, .framer-EMOF6 .framer-3cyzv1-container, .framer-EMOF6 .framer-q8amx9-container, .framer-EMOF6 .framer-1rcdyaq-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EMOF6.framer-mo0zpa, .framer-EMOF6 .framer-wi1l90, .framer-EMOF6 .framer-1tgv8ss, .framer-EMOF6 .framer-sdzabf, .framer-EMOF6 .framer-ibknij, .framer-EMOF6 .framer-100tbhg, .framer-EMOF6 .framer-a47cqe, .framer-EMOF6 .framer-1rano1k { gap: 0px; } .framer-EMOF6.framer-mo0zpa > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-EMOF6.framer-mo0zpa > :first-child, .framer-EMOF6 .framer-1tgv8ss > :first-child, .framer-EMOF6 .framer-ibknij > :first-child, .framer-EMOF6 .framer-100tbhg > :first-child, .framer-EMOF6 .framer-a47cqe > :first-child, .framer-EMOF6 .framer-1rano1k > :first-child { margin-top: 0px; } .framer-EMOF6.framer-mo0zpa > :last-child, .framer-EMOF6 .framer-1tgv8ss > :last-child, .framer-EMOF6 .framer-ibknij > :last-child, .framer-EMOF6 .framer-100tbhg > :last-child, .framer-EMOF6 .framer-a47cqe > :last-child, .framer-EMOF6 .framer-1rano1k > :last-child { margin-bottom: 0px; } .framer-EMOF6 .framer-wi1l90 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-EMOF6 .framer-wi1l90 > :first-child, .framer-EMOF6 .framer-sdzabf > :first-child { margin-left: 0px; } .framer-EMOF6 .framer-wi1l90 > :last-child, .framer-EMOF6 .framer-sdzabf > :last-child { margin-right: 0px; } .framer-EMOF6 .framer-1tgv8ss > *, .framer-EMOF6 .framer-ibknij > *, .framer-EMOF6 .framer-100tbhg > *, .framer-EMOF6 .framer-a47cqe > *, .framer-EMOF6 .framer-1rano1k > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-EMOF6 .framer-sdzabf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\".framer-EMOF6.framer-v-1x9cf6v.framer-mo0zpa, .framer-EMOF6.framer-v-k1ijsk.framer-mo0zpa { width: 810px; }\",\".framer-EMOF6.framer-v-1x9cf6v .framer-wi1l90, .framer-EMOF6.framer-v-1kafzc9 .framer-wi1l90, .framer-EMOF6.framer-v-k1ijsk .framer-wi1l90, .framer-EMOF6.framer-v-m1sbpi .framer-wi1l90 { flex-direction: column; gap: 48px; }\",\".framer-EMOF6.framer-v-1x9cf6v .framer-1tgv8ss, .framer-EMOF6.framer-v-1x9cf6v .framer-sdzabf, .framer-EMOF6.framer-v-1kafzc9 .framer-1tgv8ss, .framer-EMOF6.framer-v-k1ijsk .framer-1tgv8ss, .framer-EMOF6.framer-v-k1ijsk .framer-sdzabf, .framer-EMOF6.framer-v-m1sbpi .framer-1tgv8ss { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EMOF6.framer-v-1x9cf6v .framer-wi1l90 { gap: 0px; } .framer-EMOF6.framer-v-1x9cf6v .framer-wi1l90 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-EMOF6.framer-v-1x9cf6v .framer-wi1l90 > :first-child { margin-top: 0px; } .framer-EMOF6.framer-v-1x9cf6v .framer-wi1l90 > :last-child { margin-bottom: 0px; } }\",\".framer-EMOF6.framer-v-1kafzc9.framer-mo0zpa, .framer-EMOF6.framer-v-m1sbpi.framer-mo0zpa { padding: 48px 20px 48px 20px; width: 390px; }\",\".framer-EMOF6.framer-v-1kafzc9 .framer-sdzabf, .framer-EMOF6.framer-v-m1sbpi .framer-sdzabf { align-content: unset; align-items: unset; display: grid; flex: none; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: center; width: 100%; }\",\".framer-EMOF6.framer-v-1kafzc9 .framer-ibknij, .framer-EMOF6.framer-v-1kafzc9 .framer-100tbhg, .framer-EMOF6.framer-v-1kafzc9 .framer-a47cqe, .framer-EMOF6.framer-v-1kafzc9 .framer-1rano1k, .framer-EMOF6.framer-v-m1sbpi .framer-ibknij, .framer-EMOF6.framer-v-m1sbpi .framer-100tbhg, .framer-EMOF6.framer-v-m1sbpi .framer-a47cqe, .framer-EMOF6.framer-v-m1sbpi .framer-1rano1k { align-self: start; flex: none; justify-self: start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EMOF6.framer-v-1kafzc9 .framer-wi1l90, .framer-EMOF6.framer-v-1kafzc9 .framer-sdzabf { gap: 0px; } .framer-EMOF6.framer-v-1kafzc9 .framer-wi1l90 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-EMOF6.framer-v-1kafzc9 .framer-wi1l90 > :first-child { margin-top: 0px; } .framer-EMOF6.framer-v-1kafzc9 .framer-wi1l90 > :last-child { margin-bottom: 0px; } .framer-EMOF6.framer-v-1kafzc9 .framer-sdzabf > *, .framer-EMOF6.framer-v-1kafzc9 .framer-sdzabf > :first-child, .framer-EMOF6.framer-v-1kafzc9 .framer-sdzabf > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EMOF6.framer-v-k1ijsk .framer-wi1l90 { gap: 0px; } .framer-EMOF6.framer-v-k1ijsk .framer-wi1l90 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-EMOF6.framer-v-k1ijsk .framer-wi1l90 > :first-child { margin-top: 0px; } .framer-EMOF6.framer-v-k1ijsk .framer-wi1l90 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EMOF6.framer-v-m1sbpi .framer-wi1l90, .framer-EMOF6.framer-v-m1sbpi .framer-sdzabf { gap: 0px; } .framer-EMOF6.framer-v-m1sbpi .framer-wi1l90 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-EMOF6.framer-v-m1sbpi .framer-wi1l90 > :first-child { margin-top: 0px; } .framer-EMOF6.framer-v-m1sbpi .framer-wi1l90 > :last-child { margin-bottom: 0px; } .framer-EMOF6.framer-v-m1sbpi .framer-sdzabf > *, .framer-EMOF6.framer-v-m1sbpi .framer-sdzabf > :first-child, .framer-EMOF6.framer-v-m1sbpi .framer-sdzabf > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 576\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p6L20e9am\":{\"layout\":[\"fixed\",\"auto\"]},\"GE8aOfZqZ\":{\"layout\":[\"fixed\",\"auto\"]},\"Vhy4EAp7p\":{\"layout\":[\"fixed\",\"auto\"]},\"ZypV1mgEA\":{\"layout\":[\"fixed\",\"auto\"]},\"ufwv6Pj1e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNX5rqE3er=withCSS(Component,css,\"framer-EMOF6\");export default FramerNX5rqE3er;FramerNX5rqE3er.displayName=\"Footer v2\";FramerNX5rqE3er.defaultProps={height:576,width:1280};addPropertyControls(FramerNX5rqE3er,{variant:{options:[\"hs9SGKJmN\",\"p6L20e9am\",\"GE8aOfZqZ\",\"Vhy4EAp7p\",\"ZypV1mgEA\",\"ufwv6Pj1e\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Dark / Desktop\",\"Dark / Tablet\",\"Dark / Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNX5rqE3er,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SocialLinkItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNX5rqE3er\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p6L20e9am\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GE8aOfZqZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vhy4EAp7p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZypV1mgEA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ufwv6Pj1e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"576\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "i", "e", "Animate", "s", "o", "n", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SVG", "e", "svgCode", "strokeWidth", "customColor", "color", "tempDiv", "element", "svgElement", "padding", "p", "props", "addPropertyControls", "ControlType", "SVG_Component_default", "SVGFonts", "getFonts", "SVG_Component_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "hoverColor", "iconSVG", "id", "label", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "QBFrVdQpG", "DLq9nIRl0", "Fdiv7OABt", "Np4T3QLfa", "YPw4bQ3GX", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerxxCDyIdBJ", "withCSS", "xxCDyIdBJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SocialLinkItemFonts", "getFonts", "xxCDyIdBJ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerNX5rqE3er", "withCSS", "NX5rqE3er_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
