{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.3.1/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js", "ssg:https://framerusercontent.com/modules/qs7so9tcsyTTWQEDnE7Z/VR0fbPABQZZXCsxlgNZy/B4gTYp3p0.js", "ssg:https://framerusercontent.com/modules/QACS2v6HZqMczByvYqmT/hiczaVnEol2S9nZ0m9AL/Tk6Cjt0uU.js", "ssg:https://framerusercontent.com/modules/qG2ClLa1j6APltKv16xo/1BykrFcSEFosRTEwgjyB/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { Children, useEffect, useState, useRef, useMemo, createRef, useCallback, cloneElement } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { useAnimationFrame, useReducedMotion, LayoutGroup, useInView, useMotionValue, useTransform, motion, wrap } from \"framer-motion\";\nimport { resize } from \"@motionone/dom\";\nconst directionTransformers = {\n  left: offset => `translateX(-${offset}px)`,\n  right: offset => `translateX(${offset}px)`,\n  top: offset => `translateY(-${offset}px)`,\n  bottom: offset => `translateY(${offset}px)`\n};\nconst supportsAcceleratedAnimations = typeof Animation !== \"undefined\" && typeof Animation.prototype.updatePlaybackRate === \"function\"; /**\n                                                                                                                                        *\n                                                                                                                                        * @framerIntrinsicWidth 400\n                                                                                                                                        * @framerIntrinsicHeight 200\n                                                                                                                                        *\n                                                                                                                                        * @framerDisableUnlink\n                                                                                                                                        *\n                                                                                                                                        * @framerSupportedLayoutWidth fixed\n                                                                                                                                        * @framerSupportedLayoutHeight fixed\n                                                                                                                                        */\nexport default function Ticker(props) {\n  /* Props */let {\n    slots,\n    gap,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    speed,\n    hoverFactor,\n    direction,\n    alignment,\n    sizingOptions,\n    fadeOptions,\n    style\n  } = props;\n  const {\n    fadeContent,\n    overflow,\n    fadeWidth,\n    fadeInset,\n    fadeAlpha\n  } = fadeOptions;\n  const {\n    widthType,\n    heightType\n  } = sizingOptions;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`; /* Checks */\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const numChildren = Children.count(slots);\n  const hasChildren = numChildren > 0;\n  if (direction === true) {\n    direction = \"left\";\n  }\n  const isHorizontal = direction === \"left\" || direction === \"right\";\n  const offset = useMotionValue(0);\n  const transformer = directionTransformers[direction];\n  const transform = useTransform(offset, transformer); /* Refs and State */\n  const parentRef = useRef(null);\n  const childrenRef = useMemo(() => {\n    return [/*#__PURE__*/createRef(), /*#__PURE__*/createRef()];\n  }, []);\n  const [size, setSize] = useState({\n    parent: null,\n    children: null\n  }); /* Arrays */\n  let clonedChildren = [];\n  let dupedChildren = []; /* Duplicate value */\n  let duplicateBy = 0;\n  let opacity = 0;\n  if (isCanvas) {\n    // duplicateBy = 10\n    duplicateBy = numChildren ? Math.floor(10 / numChildren) : 0;\n    opacity = 1;\n  }\n  if (!isCanvas && hasChildren && size.parent) {\n    duplicateBy = Math.round(size.parent / size.children * 2) + 1;\n    opacity = 1;\n  } /* Measure parent and child */\n  const measure = useCallback(() => {\n    if (hasChildren && parentRef.current) {\n      const parentLength = isHorizontal ? parentRef.current.offsetWidth : parentRef.current.offsetHeight;\n      const start = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetLeft : childrenRef[0].current.offsetTop : 0;\n      const end = childrenRef[1].current ? isHorizontal ? childrenRef[1].current.offsetLeft + childrenRef[1].current.offsetWidth : childrenRef[1].current.offsetTop + childrenRef[1].current.offsetHeight : 0;\n      const childrenLength = end - start + gap;\n      setSize({\n        parent: parentLength,\n        children: childrenLength\n      });\n    }\n  }, []);\n  const childrenStyles = isCanvas ? {\n    contentVisibility: \"auto\"\n  } : {}; /* Add refs to first and last child */\n  if (hasChildren) {\n    // TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\n    if (!isCanvas) {\n      /**\n      * Track whether this is the initial resize event. By default this will fire on mount,\n      * which we do in the useEffect. We should only fire it on subsequent resizes.\n      */\n      let initialResize = useRef(true);\n      useEffect(() => {\n        measure();\n        return resize(parentRef.current, ({\n          contentSize\n        }) => {\n          if (!initialResize.current && (contentSize.width || contentSize.height)) {\n            measure();\n          }\n          initialResize.current = false;\n        });\n      }, []);\n    }\n    clonedChildren = Children.map(slots, (child, index) => {\n      var ref, ref1, ref2, ref3;\n      let ref4;\n      if (index === 0) {\n        ref4 = childrenRef[0];\n      }\n      if (index === slots.length - 1) {\n        ref4 = childrenRef[1];\n      }\n      const size = {\n        width: widthType ? (ref = child.props) === null || ref === void 0 ? void 0 : ref.width : \"100%\",\n        height: heightType ? (ref1 = child.props) === null || ref1 === void 0 ? void 0 : ref1.height : \"100%\"\n      };\n      return /*#__PURE__*/_jsx(LayoutGroup, {\n        inherit: \"id\",\n        children: /*#__PURE__*/_jsx(\"li\", {\n          ref: ref4,\n          style: size,\n          children: /*#__PURE__*/cloneElement(child, {\n            style: {\n              ...((ref2 = child.props) === null || ref2 === void 0 ? void 0 : ref2.style),\n              ...size,\n              flexShrink: 0,\n              ...childrenStyles\n            },\n            layoutId: child.props.layoutId ? child.props.layoutId + \"-original-\" + index : undefined\n          }, (ref3 = child.props) === null || ref3 === void 0 ? void 0 : ref3.children)\n        })\n      });\n    });\n  }\n  if (!isCanvas) {\n    for (let i = 0; i < duplicateBy; i++) {\n      dupedChildren = [...dupedChildren, ...Children.map(slots, (child, childIndex) => {\n        var ref, ref1, ref2, ref3;\n        return /*#__PURE__*/_jsx(LayoutGroup, {\n          inherit: \"id\",\n          children: /*#__PURE__*/_jsx(\"li\", {\n            style: {\n              display: \"contents\"\n            },\n            \"aria-hidden\": true,\n            children: /*#__PURE__*/cloneElement(child, {\n              key: i + \" \" + childIndex,\n              style: {\n                ...((ref = child.props) === null || ref === void 0 ? void 0 : ref.style),\n                width: widthType ? (ref1 = child.props) === null || ref1 === void 0 ? void 0 : ref1.width : \"100%\",\n                height: heightType ? (ref2 = child.props) === null || ref2 === void 0 ? void 0 : ref2.height : \"100%\",\n                flexShrink: 0,\n                ...childrenStyles\n              },\n              layoutId: child.props.layoutId ? child.props.layoutId + \"-dupe-\" + i : undefined\n            }, (ref3 = child.props) === null || ref3 === void 0 ? void 0 : ref3.children)\n          }, i + \"li\" + childIndex)\n        }, i + \"lg\" + childIndex);\n      })];\n    }\n  }\n  const animateToValue = size.children + size.children * Math.round(size.parent / size.children);\n  const initialTime = useRef(null);\n  const prevTime = useRef(null);\n  const xOrY = useRef(0);\n  const isHover = useRef(false);\n  const isInView = useInView(parentRef);\n  const isReducedMotion = useReducedMotion();\n  const listRef = useRef(null);\n  const animationRef = useRef(null); /**\n                                     * Setup animations\n                                     */\n  if (!isCanvas) {\n    /**\n    * If this is an animation we can hardware accelerate, animate with WAAPI\n    */\n    if (supportsAcceleratedAnimations) {\n      useEffect(() => {\n        if (isReducedMotion || !animateToValue || !speed) {\n          return;\n        }\n        animationRef.current = listRef.current.animate({\n          transform: [transformer(0), transformer(animateToValue)]\n        }, {\n          duration: Math.abs(animateToValue) / speed * 1e3,\n          iterations: Infinity,\n          easing: \"linear\"\n        });\n        return () => animationRef.current.cancel();\n      }, [hoverFactor, animateToValue, speed]);\n    } else {\n      /**\n      * If we can't accelerate this animation because we have a hoverFactor defined\n      * animate with a rAF loop.\n      */\n      useAnimationFrame(t => {\n        if (!animateToValue || isReducedMotion || supportsAcceleratedAnimations) {\n          return;\n        } /**\n          * In case this animation is delayed from starting because we're running a bunch\n          * of other work, we want to set an initial time rather than counting from 0.\n          * That ensures that if the animation is delayed, it starts from the first frame\n          * rather than jumping.\n          */\n        if (initialTime.current === null) {\n          initialTime.current = t;\n        }\n        t = t - initialTime.current;\n        const timeSince = prevTime.current === null ? 0 : t - prevTime.current;\n        let delta = timeSince * (speed / 1e3);\n        if (isHover.current) {\n          delta *= hoverFactor;\n        }\n        xOrY.current += delta;\n        xOrY.current = wrap(0, animateToValue, xOrY.current);\n        prevTime.current = t;\n        if (!isInView) return;\n        offset.set(xOrY.current);\n      });\n    }\n  } /* Fades */\n  const fadeDirection = isHorizontal ? \"to right\" : \"to bottom\";\n  const fadeWidthStart = fadeWidth / 2;\n  const fadeWidthEnd = 100 - fadeWidth / 2;\n  const fadeInsetStart = clamp(fadeInset, 0, fadeWidthStart);\n  const fadeInsetEnd = 100 - fadeInset;\n  const fadeMask = `linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`; /* Empty state */\n  if (!hasChildren) {\n    return /*#__PURE__*/_jsxs(\"section\", {\n      style: placeholderStyles,\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: emojiStyles,\n        children: \"\u2728\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: titleStyles,\n        children: \"Connect to Content\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: subtitleStyles,\n        children: \"Add layers or components to infinitely loop on your page.\"\n      })]\n    });\n  }\n  return /*#__PURE__*/_jsx(\"section\", {\n    style: {\n      ...containerStyle,\n      opacity: opacity,\n      WebkitMaskImage: fadeContent ? fadeMask : undefined,\n      MozMaskImage: fadeContent ? fadeMask : undefined,\n      maskImage: fadeContent ? fadeMask : undefined,\n      overflow: overflow ? \"visible\" : \"hidden\",\n      padding: paddingValue\n    },\n    ref: parentRef,\n    children: /*#__PURE__*/_jsxs(motion.ul, {\n      ref: listRef,\n      style: {\n        ...containerStyle,\n        gap: gap,\n        top: direction === \"bottom\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        left: direction === \"right\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        placeItems: alignment,\n        position: \"relative\",\n        flexDirection: isHorizontal ? \"row\" : \"column\",\n        ...style,\n        transform: supportsAcceleratedAnimations ? undefined : transform,\n        willChange: \"transform\"\n      },\n      onMouseEnter: () => {\n        isHover.current = true;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(hoverFactor);\n        }\n      },\n      onMouseLeave: () => {\n        isHover.current = false;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(1);\n        }\n      },\n      children: [clonedChildren, dupedChildren]\n    })\n  });\n}\n; /* Default Properties */\nTicker.defaultProps = {\n  gap: 10,\n  padding: 10,\n  sizingOptions: {\n    widthType: true,\n    heightType: true\n  },\n  fadeOptions: {\n    fadeContent: true,\n    overflow: false,\n    fadeWidth: 25,\n    fadeAlpha: 0,\n    fadeInset: 0\n  },\n  direction: true\n}; /* Property Controls */\naddPropertyControls(Ticker, {\n  slots: {\n    type: ControlType.Array,\n    title: \"Children\",\n    control: {\n      type: ControlType.ComponentInstance\n    }\n  },\n  speed: {\n    type: ControlType.Number,\n    title: \"Speed\",\n    min: 0,\n    max: 1e3,\n    defaultValue: 100,\n    unit: \"%\",\n    displayStepper: true,\n    step: 5\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    defaultValue: \"left\",\n    displaySegmentedControl: true\n  },\n  alignment: {\n    type: ControlType.Enum,\n    title: \"Align\",\n    options: [\"flex-start\", \"center\", \"flex-end\"],\n    optionIcons: {\n      direction: {\n        right: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        left: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        top: [\"align-left\", \"align-center\", \"align-right\"],\n        bottom: [\"align-left\", \"align-center\", \"align-right\"]\n      }\n    },\n    defaultValue: \"center\",\n    displaySegmentedControl: true\n  },\n  gap: {\n    type: ControlType.Number,\n    title: \"Gap\"\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  },\n  sizingOptions: {\n    type: ControlType.Object,\n    title: \"Sizing\",\n    controls: {\n      widthType: {\n        type: ControlType.Boolean,\n        title: \"Width\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      },\n      heightType: {\n        type: ControlType.Boolean,\n        title: \"Height\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      }\n    }\n  },\n  fadeOptions: {\n    type: ControlType.Object,\n    title: \"Clipping\",\n    controls: {\n      fadeContent: {\n        type: ControlType.Boolean,\n        title: \"Fade\",\n        defaultValue: true\n      },\n      overflow: {\n        type: ControlType.Boolean,\n        title: \"Overflow\",\n        enabledTitle: \"Show\",\n        disabledTitle: \"Hide\",\n        defaultValue: false,\n        hidden(props) {\n          return props.fadeContent === true;\n        }\n      },\n      fadeWidth: {\n        type: ControlType.Number,\n        title: \"Width\",\n        defaultValue: 25,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        defaultValue: 0,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeAlpha: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: 0,\n        min: 0,\n        max: 1,\n        step: .05,\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      }\n    }\n  },\n  hoverFactor: {\n    type: ControlType.Number,\n    title: \"Hover\",\n    min: 0,\n    max: 1,\n    unit: \"x\",\n    defaultValue: 1,\n    step: .1,\n    displayStepper: true,\n    description: \"Slows down the speed while you are hovering.\"\n  }\n}); /* Placeholder Styles */\nconst containerStyle = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  maxWidth: \"100%\",\n  maxHeight: \"100%\",\n  placeItems: \"center\",\n  margin: 0,\n  padding: 0,\n  listStyleType: \"none\",\n  textIndent: \"none\"\n}; /* Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\",\n  padding: \"20px 20px 30px 20px\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 150,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n}; /* Clamp function, used for fadeInset */\nconst clamp = (num, min, max) => Math.min(Math.max(num, min), max);\nconst isValidNumber = value => typeof value === \"number\" && !isNaN(value);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Ticker\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"400\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Ticker.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useCallback, useState } from \"react\";\nimport { addPropertyControls, ControlType, withCSS, useRouter, inferInitialRouteFromPath } from \"framer\";\nimport { motion, useAnimationControls } from \"framer-motion\";\nconst emailRegex = /^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\nconst mailchimpRegex = /^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;\nconst validateEmail = email => {\n  return emailRegex.test(String(email).toLowerCase());\n};\nconst parseMailChimpUrl = url => {\n  var ref;\n  const [, domain, parameters] = (ref = url.replace(\"&amp;\", \"&\").match(mailchimpRegex)) !== null && ref !== void 0 ? ref : [null, null, null];\n  return [domain, parameters ? new URLSearchParams(parameters) : null];\n};\nfunction isExternalURL(url) {\n  try {\n    return !!new URL(url);\n  } catch {}\n  try {\n    return !!new URL(`https://${url}`);\n  } catch {}\n  return false;\n} /**\n  * Increment the number whenever shipping a new version to customers.\n  * This will ensure that multiple versions of this component can exist\n  * in the same project without css rules overlapping. Only use valid css class characters.\n  */\nconst VERSION = \"v1\"; /**\n                      * INPUT\n                      * By Benjamin den Boer\n                      *\n                      * @framerDisableUnlink\n                      *\n                      * @framerIntrinsicWidth 300\n                      * @framerIntrinsicHeight 40\n                      *\n                      * @framerSupportedLayoutWidth fixed\n                      * @framerSupportedLayoutHeight any\n                      */\nconst Input = withCSS(function Input({\n  service,\n  redirectAs,\n  mailchimpURL,\n  loopsID,\n  formsparkID,\n  getwaitlistAPI,\n  input,\n  button,\n  font,\n  layout,\n  link,\n  gap,\n  style,\n  onSubmit\n}) {\n  const [email, setEmail] = useState(\"\");\n  const [isError, setError] = useState(false);\n  const [isLoading, setLoading] = useState(false);\n  const [isFocus, setFocus] = useState(false); // Padding\n  const {\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    padding,\n    borderRadius,\n    borderObject,\n    focusObject,\n    shadowObject,\n    height,\n    fixedHeight\n  } = input;\n  const {\n    buttonPaddingPerSide,\n    buttonPaddingTop,\n    buttonPaddingRight,\n    buttonPaddingBottom,\n    buttonPaddingLeft,\n    buttonPadding\n  } = button;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${button.isDocked ? paddingRight + button.widthWhenDocked : paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px ${button.isDocked ? padding + button.widthWhenDocked : padding}px ${padding}px ${padding}px`;\n  const buttonPaddingValue = buttonPaddingPerSide ? `${button.isDocked ? 0 : buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked ? 0 : buttonPaddingBottom}px ${buttonPaddingLeft}px` : `${button.isDocked ? 0 : buttonPadding}px ${buttonPadding}px ${button.isDocked ? 0 : buttonPadding}px ${buttonPadding}px`;\n  const router = useRouter();\n  const onSuccess = () => {\n    /* Reset */setLoading(false);\n    setFocus(false);\n    setEmail(\"\");\n    if (redirectAs === \"link\" && link && !isError) {\n      const [path, hash] = link.split(\"#\");\n      const {\n        routeId,\n        pathVariables\n      } = inferInitialRouteFromPath(router.routes, path);\n      if (routeId) {\n        router.navigate(routeId, hash, pathVariables);\n      }\n      if (isExternalURL(link)) {\n        setError(true);\n        formControls.start(\"error\");\n        return false;\n      }\n    }\n  };\n  const validateForm = useCallback(email => {\n    if (email === \"\" || !validateEmail(email)) {\n      setError(true);\n      formControls.start(\"error\");\n      return false;\n    }\n    return true;\n  }, [validateEmail]);\n  const handleChange = useCallback(event => {\n    setError(false);\n    setEmail(event.target.value);\n  }, []);\n  const handleFocus = useCallback(event => {\n    setFocus(true);\n  }, []);\n  const handleBlur = useCallback(event => {\n    setFocus(false);\n    setError(false);\n  }, []);\n  const handleSubmit = useCallback(event => {\n    event.preventDefault(); // Prevent submitting while submitting\n    if (isLoading) return;\n    setLoading(true);\n    if (service === \"mailchimp\") {\n      const [domain, parameters] = parseMailChimpUrl(mailchimpURL);\n      if (!validateForm(email) || !domain || !parameters) {\n        setLoading(false);\n        return;\n      } // MERGE0 is Mailchimp\u2019s email field name\n      parameters.set(\"MERGE0\", email);\n      fetch(`https://${domain}/subscribe/post`, {\n        method: \"POST\",\n        mode: \"no-cors\",\n        headers: {\n          \"Content-Type\": \"application/x-www-form-urlencoded;charset=UTF-8\"\n        },\n        body: parameters.toString()\n      }).then(response => {\n        onSuccess();\n        if (redirectAs === \"overlay\") onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit();\n      }).catch(error => {\n        console.error(error);\n        setLoading(false);\n        setError(true);\n        formControls.start(\"error\");\n      });\n    }\n    if (service === \"loops\") {\n      if (!validateForm(email)) {\n        setLoading(false);\n        return;\n      }\n      const formBody = `email=${encodeURIComponent(email)}`;\n      fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/x-www-form-urlencoded\"\n        },\n        body: formBody\n      }).then(() => {\n        onSuccess();\n        if (redirectAs === \"overlay\") onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit();\n      }).catch(error => {\n        console.error(error);\n        setLoading(false);\n        setError(true);\n        formControls.start(\"error\");\n      });\n    }\n    if (service === \"formspark\") {\n      if (!validateForm(email)) {\n        setLoading(false);\n        return;\n      }\n      const data = new FormData(event.target);\n      const entries = Object.fromEntries(data.entries());\n      fetch(`https://submit-form.com/${formsparkID}`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n          Accept: \"application/json\"\n        },\n        body: JSON.stringify(entries)\n      }).then(() => {\n        onSuccess();\n        onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit();\n      }).catch(error => {\n        console.error(error);\n        setLoading(false);\n        setError(true);\n        formControls.start(\"error\");\n      });\n    }\n    if (service === \"getwaitlist\") {\n      if (!validateForm(email)) {\n        setLoading(false);\n        return;\n      }\n      const data1 = new FormData(event.target);\n      const entries1 = Object.fromEntries(data1.entries());\n      fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n          Accept: \"application/json\"\n        },\n        body: JSON.stringify(entries1)\n      }).then(() => {\n        onSuccess();\n        if (redirectAs === \"overlay\") onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit();\n      }).catch(error => {\n        console.error(error);\n        setLoading(false);\n        setError(true);\n        formControls.start(\"error\");\n      });\n    }\n  }, [mailchimpURL, formsparkID, email, onSubmit, validateForm, isLoading]); // Animation\n  const formControls = useAnimationControls(); // Input Box Shadow Stylees\n  const focusStylesFrom = input.focusObject ? `inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}` : null;\n  const focusStylesTo = input.focusObject ? `inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}` : null;\n  const shadowStyles = input.shadowObject ? `${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}` : null;\n  const borderStyles = input.borderObject ? `inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}` : null; // Shake or wiggle as error\n  const formVariants = {\n    default: {\n      x: 0\n    },\n    error: {\n      x: [0, -4, 4, 0],\n      transition: {\n        duration: .2\n      }\n    }\n  };\n  const inputVariants = {\n    default: {\n      boxShadow: dynamicBoxShadow(focusStylesFrom, shadowStyles, borderStyles)\n    },\n    focused: {\n      boxShadow: dynamicBoxShadow(focusStylesTo, shadowStyles, borderStyles)\n    }\n  };\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      ...style,\n      ...containerStyles,\n      \"--framer-custom-placeholder-color\": input.placeholderColor\n    },\n    variants: formVariants,\n    animate: formControls,\n    children: /*#__PURE__*/_jsxs(\"form\", {\n      style: {\n        width: \"100%\",\n        height: \"auto\",\n        display: \"flex\",\n        position: \"relative\",\n        flexDirection: layout === \"vertical\" ? \"column\" : \"row\",\n        color: button.color,\n        gap: button.isDocked ? 0 : gap\n      },\n      onSubmit: handleSubmit,\n      method: \"POST\",\n      children: [service === \"getwaitlist\" && /*#__PURE__*/_jsx(\"input\", {\n        type: \"hidden\",\n        name: \"api_key\",\n        value: getwaitlistAPI\n      }), /*#__PURE__*/_jsx(motion.input, {\n        type: \"email\",\n        name: \"email\",\n        placeholder: input.placeholder,\n        value: email,\n        className: `${VERSION} framer-custom-input`,\n        onChange: handleChange,\n        onFocus: handleFocus,\n        onBlur: handleBlur,\n        autoComplete: \"off\",\n        autoCapitalize: \"off\",\n        autoCorrect: \"off\",\n        spellCheck: \"false\",\n        style: {\n          ...defaultStyle,\n          padding: paddingValue,\n          borderRadius,\n          fontSize: 16,\n          ...font,\n          background: input.fill,\n          height: height ? \"auto\" : fixedHeight,\n          color: input.color,\n          boxShadow: dynamicBoxShadow(focusStylesFrom, shadowStyles, borderStyles)\n        },\n        variants: inputVariants,\n        initial: false,\n        animate: isFocus ? \"focused\" : \"default\",\n        transition: {\n          duration: .3\n        }\n      }), !button.shouldAppear && isLoading && /*#__PURE__*/_jsx(Spinner, {\n        shouldAppear: button.shouldAppear,\n        paddingPerSide: paddingPerSide,\n        paddingTop: paddingTop,\n        paddingRight: paddingRight,\n        padding: padding,\n        color: input.color\n      }), button.shouldAppear && /*#__PURE__*/_jsxs(\"div\", {\n        style: {\n          position: button.isDocked ? \"absolute\" : \"relative\",\n          top: button.isDocked ? button.insetWhenDocked : 0,\n          right: button.isDocked ? button.insetWhenDocked : 0,\n          bottom: button.isDocked ? button.insetWhenDocked : 0\n        },\n        children: [/*#__PURE__*/_jsx(motion.input, {\n          type: \"submit\",\n          value: button.label,\n          style: {\n            ...defaultStyle,\n            width: button.isDocked ? button.widthWhenDocked : \"100%\",\n            height: height ? \"100%\" : fixedHeight,\n            cursor: \"pointer\",\n            padding: buttonPaddingValue,\n            borderRadius: button.isDocked ? borderRadius - button.insetWhenDocked : borderRadius,\n            fontWeight: button.fontWeight,\n            fontSize: 16,\n            ...button.buttonFont,\n            background: button.fill,\n            color: button.color,\n            zIndex: 1,\n            boxShadow: getButtonShadow(button)\n          }\n        }), isLoading && /*#__PURE__*/_jsx(\"div\", {\n          style: {\n            borderRadius: button.isDocked ? borderRadius - button.insetWhenDocked : borderRadius,\n            position: \"absolute\",\n            display: \"flex\",\n            justifyContent: \"center\",\n            alignItems: \"center\",\n            width: \"100%\",\n            height: \"100%\",\n            inset: 0,\n            zIndex: 2,\n            color: button.color,\n            background: button.fill\n          },\n          children: /*#__PURE__*/_jsx(Spinner, {\n            color: button.color\n          })\n        })]\n      })]\n    })\n  });\n}, [`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);\nconst Spinner = props => {\n  const noButtonStyles = !props.shouldAppear ? {\n    position: \"absolute\",\n    top: `calc(50% - 8px)`,\n    right: props.paddingPerSide ? props.paddingRight : props.padding\n  } : {};\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      height: 16,\n      width: 16,\n      ...noButtonStyles\n    },\n    initial: {\n      rotate: 0\n    },\n    animate: {\n      rotate: 360\n    },\n    transition: {\n      duration: 1,\n      repeat: Infinity\n    },\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: {\n        scale: 0\n      },\n      animate: {\n        scale: 1\n      },\n      children: /*#__PURE__*/_jsxs(\"svg\", {\n        xmlns: \"http://www.w3.org/2000/svg\",\n        width: \"16\",\n        height: \"16\",\n        style: {\n          fill: \"currentColor\",\n          color: props.color\n        },\n        children: [/*#__PURE__*/_jsx(\"path\", {\n          d: \"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",\n          fill: \"currentColor\",\n          opacity: \"0.2\"\n        }), /*#__PURE__*/_jsx(\"path\", {\n          d: \"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",\n          fill: \"currentColor\"\n        })]\n      })\n    })\n  });\n};\naddPropertyControls(Input, {\n  service: {\n    title: \"Service\",\n    type: ControlType.Enum,\n    options: [\"loops\", \"formspark\", \"mailchimp\", \"getwaitlist\"],\n    optionTitles: [\"Loops\", \"FormSpark\", \"MailChimp\", \"Get Waitlist\"],\n    defaultValue: \"loops\"\n  },\n  mailchimpURL: {\n    title: \"URL\",\n    placeholder: \"https://***.us6.list-manage.com/subscribe/post?u=***\",\n    type: ControlType.String,\n    hidden: props => props.service !== \"mailchimp\"\n  },\n  loopsID: {\n    title: \"ID\",\n    placeholder: \"klm2jxy0i98abzr01pq7defg5\",\n    type: ControlType.String,\n    hidden: props => props.service !== \"loops\"\n  },\n  formsparkID: {\n    title: \"ID\",\n    placeholder: \"7PbPpGN3\",\n    type: ControlType.String,\n    hidden: props => props.service !== \"formspark\"\n  },\n  getwaitlistAPI: {\n    title: \"ID\",\n    placeholder: \"9148\",\n    type: ControlType.String,\n    hidden: props => props.service !== \"getwaitlist\"\n  },\n  redirectAs: {\n    title: \"Success\",\n    type: ControlType.Enum,\n    options: [\"link\", \"overlay\"],\n    optionTitles: [\"Open Link\", \"Show Overlay\"],\n    defaultValue: \"link\"\n  },\n  link: {\n    title: \"Redirect\",\n    type: ControlType.Link,\n    hidden: props => props.redirectAs === \"overlay\"\n  },\n  onSubmit: {\n    title: \"Submit\",\n    type: ControlType.EventHandler,\n    hidden: props => props.redirectAs === \"link\"\n  },\n  layout: {\n    title: \"Layout\",\n    type: ControlType.Enum,\n    options: [\"horizontal\", \"vertical\"],\n    displaySegmentedControl: true,\n    hidden: props => props.button.isDocked\n  },\n  font: {\n    type: ControlType.Font,\n    title: \"Font\",\n    controls: \"extended\"\n  },\n  input: {\n    title: \"Input\",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"name@email.com\"\n      },\n      placeholderColor: {\n        title: \" \",\n        type: ControlType.Color,\n        defaultValue: \"rgba(0, 0, 0, 0.3)\"\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#EBEBEB\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      height: {\n        title: \"Height\",\n        type: ControlType.Boolean,\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Fixed\"\n      },\n      fixedHeight: {\n        title: \" \",\n        type: ControlType.Number,\n        displayStepper: true,\n        min: 0,\n        defaultValue: 50,\n        hidden: props => props.height\n      },\n      padding: {\n        title: \"Padding\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\"Padding\", \"Padding per side\"],\n        defaultValue: 15,\n        valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n        valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n        min: 0\n      },\n      borderRadius: {\n        title: \"Radius\",\n        type: ControlType.Number,\n        displayStepper: true,\n        min: 0,\n        defaultValue: 8\n      },\n      focusObject: {\n        type: ControlType.Object,\n        title: \"Focus\",\n        optional: true,\n        controls: {\n          focusWidthFrom: {\n            title: \"From\",\n            type: ControlType.Number,\n            displayStepper: true,\n            defaultValue: 0\n          },\n          focusWidthTo: {\n            title: \"To\",\n            type: ControlType.Number,\n            displayStepper: true,\n            defaultValue: 2\n          },\n          focusColor: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"#09F\"\n          }\n        }\n      },\n      borderObject: {\n        type: ControlType.Object,\n        title: \"Border\",\n        optional: true,\n        controls: {\n          borderWidth: {\n            title: \"Width\",\n            type: ControlType.Number,\n            displayStepper: true,\n            defaultValue: 1\n          },\n          borderColor: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(200,200,200,0.5)\"\n          }\n        }\n      },\n      shadowObject: {\n        type: ControlType.Object,\n        title: \"Shadow\",\n        optional: true,\n        controls: {\n          shadowColor: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(0,0,0,0.25)\"\n          },\n          shadowX: {\n            title: \"Shadow X\",\n            type: ControlType.Number,\n            min: -100,\n            max: 100,\n            defaultValue: 0\n          },\n          shadowY: {\n            title: \"Shadow Y\",\n            type: ControlType.Number,\n            min: -100,\n            max: 100,\n            defaultValue: 2\n          },\n          shadowBlur: {\n            title: \"Shadow B\",\n            type: ControlType.Number,\n            min: 0,\n            max: 100,\n            defaultValue: 4\n          }\n        }\n      }\n    }\n  },\n  button: {\n    title: \"Button\",\n    type: ControlType.Object,\n    controls: {\n      shouldAppear: {\n        title: \"Show\",\n        type: ControlType.Boolean,\n        defaultValue: true\n      },\n      label: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Subscribe\"\n      },\n      buttonFont: {\n        type: ControlType.Font,\n        title: \"Font\",\n        controls: \"extended\"\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#333\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#FFF\"\n      },\n      isDocked: {\n        title: \"Docked\",\n        type: ControlType.Boolean,\n        defaultValue: false\n      },\n      widthWhenDocked: {\n        title: \"Width\",\n        type: ControlType.Number,\n        min: 0,\n        defaultValue: 100,\n        displayStepper: true,\n        hidden: props => !props.isDocked\n      },\n      insetWhenDocked: {\n        title: \"Inset\",\n        type: ControlType.Number,\n        min: 0,\n        defaultValue: 5,\n        displayStepper: true,\n        hidden: props => !props.isDocked\n      },\n      buttonPadding: {\n        title: \"Padding\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"buttonPaddingPerSide\",\n        toggleTitles: [\"Padding\", \"Padding per side\"],\n        defaultValue: 15,\n        valueKeys: [\"buttonPaddingTop\", \"buttonPaddingRight\", \"buttonPaddingBottom\", \"buttonPaddingLeft\"],\n        valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n        min: 0\n      },\n      buttonShadow: {\n        type: ControlType.Object,\n        title: \"Shadow\",\n        optional: true,\n        controls: {\n          shadowColor: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(0,0,0,0.25)\"\n          },\n          shadowX: {\n            title: \"Shadow X\",\n            type: ControlType.Number,\n            min: -100,\n            max: 100,\n            defaultValue: 0\n          },\n          shadowY: {\n            title: \"Shadow Y\",\n            type: ControlType.Number,\n            min: -100,\n            max: 100,\n            defaultValue: 2\n          },\n          shadowBlur: {\n            title: \"Shadow B\",\n            type: ControlType.Number,\n            min: 0,\n            max: 100,\n            defaultValue: 4\n          }\n        }\n      }\n    }\n  },\n  gap: {\n    title: \"Gap\",\n    type: ControlType.Number,\n    displayStepper: true,\n    min: 0,\n    defaultValue: 10,\n    hidden: props => props.button.isDocked\n  }\n});\nconst defaultStyle = {\n  WebkitAppearance: \"none\",\n  appearance: \"none\",\n  width: \"100%\",\n  height: \"auto\",\n  outline: \"none\",\n  border: \"none\"\n};\nconst containerStyles = {\n  position: \"relative\",\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n};\nfunction getButtonShadow(button) {\n  if (button.buttonShadow) {\n    return `${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;\n  } else return \"none\";\n}\nfunction dynamicBoxShadow(...shadows) {\n  const output = [];\n  shadows.forEach(shadow => shadow && output.push(shadow));\n  return output.join(\", \");\n}\nexport default Input;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Input\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"40\",\n        \"framerIntrinsicWidth\": \"300\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerSupportedLayoutHeight\": \"any\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Input.map", "// Generated by Framer (2add0ca)\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addFonts, cx, Link, RichText, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst enabledGestures = {\n  d8vfFtzqV: {\n    hover: true\n  }\n};\nconst cycleOrder = [\"d8vfFtzqV\"];\nconst variantClassNames = {\n  d8vfFtzqV: \"framer-v-r9ta11\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {};\nconst transitions = {\n  default: {\n    duration: 0,\n    type: \"tween\"\n  }\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"d8vfFtzqV\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"d8vfFtzqV\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-AN4ZB\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(Link, {\n          href: \"https://www.instagram.com/timedpieces_/?igshid=NTc4MTIwNjQ2YQ%3D%3D\",\n          ...addPropertyOverrides({\n            \"d8vfFtzqV-hover\": {\n              openInNewTab: true\n            }\n          }, baseVariant, gestureVariant),\n          children: /*#__PURE__*/_jsx(motion.a, {\n            ...restProps,\n            className: `${cx(\"framer-r9ta11\", className)} framer-10g2zck`,\n            \"data-framer-name\": \"Variant 1\",\n            layoutDependency: layoutDependency,\n            layoutId: \"d8vfFtzqV\",\n            ref: ref,\n            style: {\n              backgroundColor: \"rgba(0, 0, 0, 0)\",\n              ...style\n            },\n            variants: {\n              \"d8vfFtzqV-hover\": {\n                backgroundColor: \"rgb(255, 255, 255)\"\n              }\n            },\n            ...addPropertyOverrides({\n              \"d8vfFtzqV-hover\": {\n                \"data-framer-name\": undefined\n              }\n            }, baseVariant, gestureVariant),\n            children: /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  style: {\n                    \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                    \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                    \"--framer-font-weight\": \"500\",\n                    \"--framer-text-alignment\": \"center\",\n                    \"--framer-text-color\": \"var(--extracted-r6o4lv)\",\n                    \"--framer-text-transform\": \"uppercase\"\n                  },\n                  children: \"Instagram\"\n                })\n              }),\n              className: \"framer-1es1gty\",\n              \"data-framer-name\": \"Instagram\",\n              fonts: [\"GF;Source Code Pro-500\"],\n              layoutDependency: layoutDependency,\n              layoutId: \"iHVqXEBAT\",\n              style: {\n                \"--extracted-r6o4lv\": \"rgb(247, 247, 247)\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              transformTemplate: transformTemplate,\n              verticalAlignment: \"top\",\n              withExternalLayout: true,\n              ...addPropertyOverrides({\n                \"d8vfFtzqV-hover\": {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Instagram\"\n                    })\n                  })\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-AN4ZB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-AN4ZB .framer-10g2zck { display: block; }\", \".framer-AN4ZB .framer-r9ta11 { height: 19px; overflow: hidden; position: relative; text-decoration: none; width: 87px; }\", \".framer-AN4ZB .framer-1es1gty { flex: none; height: auto; left: 49%; position: absolute; top: 47%; white-space: pre; width: auto; }\", \".framer-AN4ZB .framer-v-r9ta11 .framer-r9ta11 { cursor: pointer; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicHeight 19\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicWidth 87\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hWhTDXc7i\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      */\nconst FramerB4gTYp3p0 = withCSS(Component, css, \"framer-AN4ZB\");\nexport default FramerB4gTYp3p0;\nFramerB4gTYp3p0.displayName = \"Text Component\";\nFramerB4gTYp3p0.defaultProps = {\n  height: 19,\n  width: 87\n};\naddFonts(FramerB4gTYp3p0, [{\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/B4gTYp3p0:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\",\n  weight: \"500\"\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerB4gTYp3p0\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"87\",\n        \"framerIntrinsicHeight\": \"19\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hWhTDXc7i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./B4gTYp3p0.map", "// Generated by Framer (4431e6b)\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, RichText, useActiveVariantCallback, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"frGblmsLI\", \"ipbBAgBDw\"];\nconst variantClassNames = {\n  frGblmsLI: \"framer-v-4ka8cv\",\n  ipbBAgBDw: \"framer-v-tos67g\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"frGblmsLI\",\n  \"Variant 2\": \"ipbBAgBDw\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"frGblmsLI\",\n  tap: SPZ9ENdka,\n  title: jcBCFsJQc = \"OK\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"frGblmsLI\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onTap1y0vtwd = activeVariantCallback(async (...args) => {\n    if (SPZ9ENdka) {\n      const res = await SPZ9ENdka(...args);\n      if (res === false) return false;\n    }\n  });\n  const onMouseEnter1iwh0vb = activeVariantCallback(async (...args) => {\n    setVariant(\"ipbBAgBDw\");\n  });\n  const onMouseLeavenc4l73 = activeVariantCallback(async (...args) => {\n    setVariant(\"frGblmsLI\");\n  });\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-xGn4x\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          className: cx(\"framer-4ka8cv\", className),\n          \"data-framer-name\": \"Variant 1\",\n          \"data-highlight\": true,\n          layoutDependency: layoutDependency,\n          layoutId: \"frGblmsLI\",\n          onMouseEnter: onMouseEnter1iwh0vb,\n          onTap: onTap1y0vtwd,\n          ref: ref,\n          style: {\n            \"--border-bottom-width\": \"0px\",\n            \"--border-color\": \"rgba(0, 0, 0, 0)\",\n            \"--border-left-width\": \"0px\",\n            \"--border-right-width\": \"0px\",\n            \"--border-style\": \"solid\",\n            \"--border-top-width\": \"0px\",\n            backgroundColor: \"rgb(10, 10, 10)\",\n            ...style\n          },\n          variants: {\n            ipbBAgBDw: {\n              \"--border-bottom-width\": \"1px\",\n              \"--border-color\": \"rgb(248, 248, 248)\",\n              \"--border-left-width\": \"1px\",\n              \"--border-right-width\": \"1px\",\n              \"--border-style\": \"solid\",\n              \"--border-top-width\": \"1px\"\n            }\n          },\n          ...addPropertyOverrides({\n            ipbBAgBDw: {\n              \"data-border\": true,\n              \"data-framer-name\": \"Variant 2\",\n              onMouseLeave: onMouseLeavenc4l73\n            }\n          }, baseVariant, gestureVariant),\n          children: /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.p, {\n                style: {\n                  \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                  \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                  \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                },\n                children: \"OK\"\n              })\n            }),\n            className: \"framer-gdn1h5\",\n            fonts: [\"GF;Source Code Pro-regular\"],\n            layoutDependency: layoutDependency,\n            layoutId: \"jKYooF250\",\n            style: {\n              \"--extracted-r6o4lv\": \"rgb(248, 248, 248)\",\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: jcBCFsJQc,\n            transformTemplate: transformTemplate,\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-xGn4x [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-xGn4x .framer-1hseudb { display: block; }\", \".framer-xGn4x .framer-4ka8cv { cursor: pointer; height: 54px; overflow: hidden; position: relative; width: 223px; }\", \".framer-xGn4x .framer-gdn1h5 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicHeight 54\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicWidth 223\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ipbBAgBDw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerVariables {\"SPZ9ENdka\":\"tap\",\"jcBCFsJQc\":\"title\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          */\nconst FramerTk6Cjt0uU = withCSS(Component, css, \"framer-xGn4x\");\nexport default FramerTk6Cjt0uU;\nFramerTk6Cjt0uU.displayName = \"BUTTON\";\nFramerTk6Cjt0uU.defaultProps = {\n  height: 54,\n  width: 223\n};\naddPropertyControls(FramerTk6Cjt0uU, {\n  variant: {\n    options: [\"frGblmsLI\", \"ipbBAgBDw\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  SPZ9ENdka: {\n    title: \"Tap\",\n    type: ControlType.EventHandler\n  },\n  jcBCFsJQc: {\n    defaultValue: \"OK\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerTk6Cjt0uU, [{\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/Tk6Cjt0uU:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\",\n  weight: \"400\"\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerTk6Cjt0uU\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"223\",\n        \"framerVariables\": \"{\\\"SPZ9ENdka\\\":\\\"tap\\\",\\\"jcBCFsJQc\\\":\\\"title\\\"}\",\n        \"framerIntrinsicHeight\": \"54\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ipbBAgBDw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Tk6Cjt0uU.map", "// Generated by Framer (f501c86)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useLocaleInfo, useOverlayState, useRouter, withCSS } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport Ticker from \"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";\nimport Input from \"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js\";\nimport TextComponent from \"https://framerusercontent.com/modules/qs7so9tcsyTTWQEDnE7Z/VR0fbPABQZZXCsxlgNZy/B4gTYp3p0.js\";\nimport BUTTON from \"https://framerusercontent.com/modules/QACS2v6HZqMczByvYqmT/hiczaVnEol2S9nZ0m9AL/Tk6Cjt0uU.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/uFtNHvPCRN0NOMEMnwae/bmOh4Q4NiqeOMk3WYtkX/augiA20Il.js\";\nconst TickerFonts = getFonts(Ticker);\nconst InputFonts = getFonts(Input);\nconst BUTTONFonts = getFonts(BUTTON);\nconst TextComponentFonts = getFonts(TextComponent);\nconst cycleOrder = [\"WQLkyLRf1\", \"ZBUmmvPht\", \"PZoZkbxwc\"];\nconst breakpoints = {\n  PZoZkbxwc: \"(max-width: 809px)\",\n  WQLkyLRf1: \"(min-width: 1200px)\",\n  ZBUmmvPht: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-lNnrS\";\nconst variantClassNames = {\n  PZoZkbxwc: \"framer-v-14ij7c5\",\n  WQLkyLRf1: \"framer-v-72rtr7\",\n  ZBUmmvPht: \"framer-v-1gg9ewj\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  delay: .7,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 30\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 30\n};\nconst animation3 = {\n  opacity: .4,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst transition2 = {\n  delay: 1,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation4 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 150\n};\nconst animation5 = {\n  opacity: .3,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation6 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 150\n};\nconst transition3 = {\n  delay: 0,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 30\n};\nconst animation8 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst transformTemplate1 = (_, t) => `translateX(-50%) ${t}`;\nconst transition4 = {\n  delay: .2,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation9 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 30\n};\nconst transition5 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation10 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 10,\n  rotateY: -10,\n  scale: 1,\n  transition: transition5\n};\nconst animation11 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 0\n};\nconst transition6 = {\n  delay: 0,\n  duration: .9,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation12 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition6,\n  x: 0,\n  y: 0\n};\nconst transformTemplate2 = (_, t) => `perspective(1200px) translateX(-50%) ${t}`;\nconst animation13 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition6,\n  x: 0,\n  y: 0\n};\nconst animation14 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transition7 = {\n  delay: .6,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation15 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition7,\n  x: 0,\n  y: 30\n};\nconst animation16 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition7,\n  x: 0,\n  y: 0\n};\nconst Overlay = ({\n  children,\n  blockDocumentScrolling\n}) => {\n  const [visible, setVisible] = useOverlayState({\n    blockDocumentScrolling\n  });\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible\n  });\n};\nconst transition8 = {\n  delay: 0,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation17 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition8,\n  x: 0,\n  y: 0\n};\nconst animation18 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition8,\n  x: 0,\n  y: 0\n};\nconst transition9 = {\n  delay: .3,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation19 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition9,\n  x: -30,\n  y: 0\n};\nconst animation20 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition9,\n  x: 0,\n  y: 0\n};\nconst animation21 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: -30,\n  y: 0\n};\nconst transformTemplate3 = (_, t) => `translateY(-50%) ${t}`;\nconst transition10 = {\n  delay: .4,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation22 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition10,\n  x: -30,\n  y: 0\n};\nconst animation23 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition10,\n  x: 0,\n  y: 0\n};\nconst animation24 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition9,\n  x: 30,\n  y: 0\n};\nconst animation25 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 30,\n  y: 0\n};\nconst animation26 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition10,\n  x: 30,\n  y: 0\n};\nconst transformTemplate4 = (_, t) => `perspective(1200px) translateY(-50%) ${t}`;\nconst transition11 = {\n  delay: 0,\n  duration: 1.5,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation27 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition11,\n  x: 0,\n  y: 0\n};\nconst animation28 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition11,\n  x: 0,\n  y: 0\n};\nconst transformTemplate5 = (_, t) => `perspective(1200px) translate(-50%, -50%) ${t}`;\nconst transition12 = {\n  delay: .5,\n  duration: 1,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation29 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition12,\n  x: 0,\n  y: 30\n};\nconst animation30 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition12,\n  x: 0,\n  y: 0\n};\nconst transformTemplate6 = (_, t) => `translate(-50%, -50%) ${t}`;\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"PZoZkbxwc\",\n  Tablet: \"ZBUmmvPht\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"WQLkyLRf1\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n      return () => {\n        document.body.classList.remove(metadata1.bodyClassName);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const onSubmit42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const tapzn6atv = overlay => activeVariantCallback(async (...args) => {\n    overlay.hide();\n  });\n  const ref1 = React.useRef(null);\n  const isDisplayed = () => {\n    if (baseVariant === \"ZBUmmvPht\") return !isBrowser();\n    return true;\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"PZoZkbxwc\") return !isBrowser();\n    return true;\n  };\n  const router = useRouter();\n  const isDisplayed2 = () => {\n    if (baseVariant === \"PZoZkbxwc\") return true;\n    return !isBrowser();\n  };\n  const isDisplayed3 = () => {\n    if (baseVariant === \"ZBUmmvPht\") return true;\n    return !isBrowser();\n  };\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQLkyLRf1\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-lNnrS\", ...sharedStyleClassNames),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-72rtr7\", className),\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"1kvmd17\",\n                animate: optimizeAppear(\"animate\", \"1kvmd17\", animation3, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"1kvmd17\", animation2, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1kvmd17\", transformTemplate)\n              },\n              ZBUmmvPht: {\n                \"data-framer-appear-id\": \"exsfs\",\n                animate: optimizeAppear(\"animate\", \"exsfs\", animation1, \"1gg9ewj\"),\n                initial: optimizeAppear(\"initial\", \"exsfs\", animation2, \"1gg9ewj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"exsfs\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              animate: optimizeAppear(\"animate\", \"w3pjj5\", animation1, \"72rtr7\"),\n              className: \"framer-w3pjj5-container\",\n              \"data-framer-appear-id\": \"w3pjj5\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"w3pjj5\", animation2, \"72rtr7\"),\n              transformTemplate: optimizeAppearTransformTemplate(\"w3pjj5\", transformTemplate),\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  PZoZkbxwc: {\n                    speed: 30\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Ticker, {\n                  alignment: \"center\",\n                  direction: \"left\",\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: true,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: false\n                  },\n                  gap: 10,\n                  height: \"100%\",\n                  hoverFactor: 1,\n                  id: \"VotVl1BOC\",\n                  layoutId: \"VotVl1BOC\",\n                  padding: 10,\n                  paddingBottom: 10,\n                  paddingLeft: 10,\n                  paddingPerSide: false,\n                  paddingRight: 10,\n                  paddingTop: 10,\n                  sizingOptions: {\n                    heightType: true,\n                    widthType: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-188xpxp\",\n                    \"data-framer-name\": \"Logo scroller\",\n                    name: \"Logo scroller\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-ecfz8d\",\n                      \"data-framer-name\": \"Frame 16\",\n                      name: \"Frame 16\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"stretch\",\n                          sizes: \"165.9942px\",\n                          src: \"https://framerusercontent.com/images/wgDK22ZbCLesNIRd9jwGDfGEu88.png\",\n                          srcSet: \"https://framerusercontent.com/images/wgDK22ZbCLesNIRd9jwGDfGEu88.png?scale-down-to=512 512w, https://framerusercontent.com/images/wgDK22ZbCLesNIRd9jwGDfGEu88.png 664w\"\n                        },\n                        className: \"framer-1i4i5et\",\n                        \"data-framer-name\": \"Daco_341602 2\",\n                        name: \"Daco_341602 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"stretch\",\n                          sizes: \"165.6471px\",\n                          src: \"https://framerusercontent.com/images/rKr2zTMH0B1irzEyrJD8C58t90U.png\",\n                          srcSet: \"https://framerusercontent.com/images/rKr2zTMH0B1irzEyrJD8C58t90U.png?scale-down-to=512 512w, https://framerusercontent.com/images/rKr2zTMH0B1irzEyrJD8C58t90U.png 664w\"\n                        },\n                        className: \"framer-x27uv0\",\n                        \"data-framer-name\": \"1280px-Omega_Logo 2\",\n                        name: \"1280px-Omega_Logo 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 71,\n                          intrinsicWidth: 159,\n                          pixelHeight: 71,\n                          pixelWidth: 159,\n                          src: \"https://framerusercontent.com/images/Z3DykN54co9vtMArPVDx1jHys6I.png\"\n                        },\n                        className: \"framer-6jqoar\",\n                        \"data-framer-name\": \"Daco_341602 2\",\n                        name: \"Daco_341602 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 117,\n                          intrinsicWidth: 420,\n                          pixelHeight: 117,\n                          pixelWidth: 420,\n                          src: \"https://framerusercontent.com/images/ToUhf02Xj1BueBzBkR5GKi1H18s.png\"\n                        },\n                        className: \"framer-yw5gex\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"stretch\",\n                          intrinsicHeight: 88,\n                          intrinsicWidth: 290,\n                          pixelHeight: 88,\n                          pixelWidth: 290,\n                          src: \"https://framerusercontent.com/images/bLSzlY4KVAiB8hGDU6UJHjjIBpc.png\"\n                        },\n                        className: \"framer-1v47qlz\",\n                        \"data-framer-name\": \"Audemars_Pigue_logo\",\n                        name: \"Audemars_Pigue_logo\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          sizes: \"155.4903px\",\n                          src: \"https://framerusercontent.com/images/5dI2sU5RMDbzmxyKYIiDWHCqha4.png\",\n                          srcSet: \"https://framerusercontent.com/images/5dI2sU5RMDbzmxyKYIiDWHCqha4.png?scale-down-to=512 512w, https://framerusercontent.com/images/5dI2sU5RMDbzmxyKYIiDWHCqha4.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/5dI2sU5RMDbzmxyKYIiDWHCqha4.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/5dI2sU5RMDbzmxyKYIiDWHCqha4.png 2191w\"\n                        },\n                        className: \"framer-1jxdn6l\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 69,\n                          intrinsicWidth: 140,\n                          pixelHeight: 69,\n                          pixelWidth: 140,\n                          src: \"https://framerusercontent.com/images/cLf2FE9oMPdz6dkQvL4J3h8MOw.png\"\n                        },\n                        className: \"framer-5lv0bm\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 518,\n                          intrinsicWidth: 3953,\n                          pixelHeight: 518,\n                          pixelWidth: 3953,\n                          sizes: \"165.6471px\",\n                          src: \"https://framerusercontent.com/images/TjhTQIGJ1TF07Ufx6oQb406dfA.png\",\n                          srcSet: \"https://framerusercontent.com/images/TjhTQIGJ1TF07Ufx6oQb406dfA.png?scale-down-to=512 512w, https://framerusercontent.com/images/TjhTQIGJ1TF07Ufx6oQb406dfA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/TjhTQIGJ1TF07Ufx6oQb406dfA.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/TjhTQIGJ1TF07Ufx6oQb406dfA.png 3953w\"\n                        },\n                        className: \"framer-1m680od\",\n                        \"data-framer-name\": \"1280px-Omega_Logo 2\",\n                        name: \"1280px-Omega_Logo 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 21,\n                          intrinsicWidth: 89,\n                          pixelHeight: 21,\n                          pixelWidth: 89,\n                          src: \"https://framerusercontent.com/images/D5ekyDF5L5IP9p1ZVENZghUWEQ.png\"\n                        },\n                        className: \"framer-w3yho6\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"stretch\",\n                          sizes: \"213.3333px\",\n                          src: \"https://framerusercontent.com/images/VAJcOUnXKAbCZzMF07P9PB8DM.png\",\n                          srcSet: \"https://framerusercontent.com/images/VAJcOUnXKAbCZzMF07P9PB8DM.png?scale-down-to=512 512w, https://framerusercontent.com/images/VAJcOUnXKAbCZzMF07P9PB8DM.png 856w\"\n                        },\n                        className: \"framer-1s9i7r2\",\n                        \"data-framer-name\": \"Audemars_Pigue_logo\",\n                        name: \"Audemars_Pigue_logo\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 88,\n                          intrinsicWidth: 141,\n                          pixelHeight: 88,\n                          pixelWidth: 141,\n                          src: \"https://framerusercontent.com/images/rN6gytB8c8vwVFGvHbRLXzVGeI.png\"\n                        },\n                        className: \"framer-1fp8lxl\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 320,\n                          intrinsicWidth: 1120,\n                          pixelHeight: 320,\n                          pixelWidth: 1120,\n                          sizes: \"155.4903px\",\n                          src: \"https://framerusercontent.com/images/CVPVvhEW7HRmsJaIL9BVZNg0WbA.png\",\n                          srcSet: \"https://framerusercontent.com/images/CVPVvhEW7HRmsJaIL9BVZNg0WbA.png?scale-down-to=512 512w, https://framerusercontent.com/images/CVPVvhEW7HRmsJaIL9BVZNg0WbA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/CVPVvhEW7HRmsJaIL9BVZNg0WbA.png 1120w\"\n                        },\n                        className: \"framer-a8fa86\",\n                        \"data-framer-name\": \"Daco_4532209 2\",\n                        name: \"Daco_4532209 2\"\n                      })]\n                    })\n                  })],\n                  speed: 25,\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"h5zqx4\",\n                animate: optimizeAppear(\"animate\", \"h5zqx4\", animation5, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"h5zqx4\", animation6, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"h5zqx4\", transformTemplate)\n              },\n              ZBUmmvPht: {\n                \"data-framer-appear-id\": \"1uk4p7\",\n                animate: optimizeAppear(\"animate\", \"1uk4p7\", animation5, \"1gg9ewj\"),\n                initial: optimizeAppear(\"initial\", \"1uk4p7\", animation6, \"1gg9ewj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1uk4p7\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(motion.div, {\n              animate: optimizeAppear(\"animate\", \"1mf7t3r\", animation5, \"72rtr7\"),\n              className: \"framer-1mf7t3r\",\n              \"data-framer-appear-id\": \"1mf7t3r\",\n              \"data-framer-name\": \"Ellipse 5\",\n              exit: animation4,\n              initial: optimizeAppear(\"initial\", \"1mf7t3r\", animation6, \"72rtr7\"),\n              name: \"Ellipse 5\",\n              transformTemplate: optimizeAppearTransformTemplate(\"1mf7t3r\", transformTemplate)\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-rcwbke\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"dx13x0\",\n                  animate: optimizeAppear(\"animate\", \"dx13x0\", animation8, \"14ij7c5\"),\n                  initial: optimizeAppear(\"initial\", \"dx13x0\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"dx13x0\", transformTemplate)\n                },\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"1ecadcl\",\n                  animate: optimizeAppear(\"animate\", \"1ecadcl\", animation8, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"1ecadcl\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1ecadcl\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"1k51vbz\", animation8, \"72rtr7\"),\n                className: \"framer-1k51vbz\",\n                \"data-framer-appear-id\": \"1k51vbz\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"1k51vbz\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1k51vbz\", transformTemplate),\n                children: isDisplayed() && /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    PZoZkbxwc: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                            \"--framer-font-family\": '\"Roboto Serif\", serif',\n                            \"--framer-font-size\": \"24px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-letter-spacing\": \"7.3px\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                          },\n                          children: \"PIECES\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                          \"--framer-font-family\": '\"Roboto Serif\", serif',\n                          \"--framer-font-size\": \"64px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"7.3px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                        },\n                        children: \"PIECES\"\n                      })\n                    }),\n                    className: \"framer-1ugybzb hidden-1gg9ewj\",\n                    \"data-framer-name\": \"TIMED\",\n                    fonts: [\"GF;Roboto Serif-500\"],\n                    name: \"TIMED\",\n                    transformTemplate: transformTemplate1,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"1pudgyn\",\n                  animate: optimizeAppear(\"animate\", \"1pudgyn\", animation8, \"14ij7c5\"),\n                  initial: optimizeAppear(\"initial\", \"1pudgyn\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1pudgyn\", transformTemplate)\n                },\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"12vvmf7\",\n                  animate: optimizeAppear(\"animate\", \"12vvmf7\", animation8, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"12vvmf7\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"12vvmf7\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"ujirqq\", animation8, \"72rtr7\"),\n                className: \"framer-ujirqq\",\n                \"data-framer-appear-id\": \"ujirqq\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"ujirqq\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"ujirqq\", transformTemplate),\n                children: isDisplayed() && /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    PZoZkbxwc: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                            \"--framer-font-family\": '\"Roboto Serif\", serif',\n                            \"--framer-font-size\": \"24px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-letter-spacing\": \"7.3px\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                          },\n                          children: \"TIMED\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                          \"--framer-font-family\": '\"Roboto Serif\", serif',\n                          \"--framer-font-size\": \"64px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"7.3px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                        },\n                        children: \"TIMED\"\n                      })\n                    }),\n                    className: \"framer-1r1fwd4 hidden-1gg9ewj\",\n                    \"data-framer-name\": \"TIMED\",\n                    fonts: [\"GF;Roboto Serif-500\"],\n                    name: \"TIMED\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), isDisplayed1() && /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1lzk3p1 hidden-14ij7c5\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"h7ix9d\",\n                    animate: optimizeAppear(\"animate\", \"h7ix9d\", animation11, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"h7ix9d\", animation2, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"h7ix9d\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  animate: optimizeAppear(\"animate\", \"kimcva\", animation11, \"72rtr7\"),\n                  background: {\n                    alt: \"\",\n                    fit: \"fit\",\n                    intrinsicHeight: 817,\n                    intrinsicWidth: 818,\n                    pixelHeight: 817,\n                    pixelWidth: 818,\n                    src: \"https://framerusercontent.com/images/j25ir5RIDuZwFmbH4Z07NMV60.png\"\n                  },\n                  className: \"framer-kimcva\",\n                  \"data-framer-appear-id\": \"kimcva\",\n                  exit: animation9,\n                  initial: optimizeAppear(\"initial\", \"kimcva\", animation2, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"kimcva\", transformTemplate),\n                  whileHover: animation10\n                })\n              })\n            })]\n          }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ZBUmmvPht: {\n                \"data-framer-appear-id\": \"y47rku\",\n                animate: optimizeAppear(\"animate\", \"y47rku\", animation13, \"1gg9ewj\"),\n                initial: optimizeAppear(\"initial\", \"y47rku\", animation14, \"1gg9ewj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"y47rku\", transformTemplate2)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"17u9oqd\", animation13, \"72rtr7\"),\n              className: \"framer-17u9oqd hidden-14ij7c5\",\n              \"data-framer-appear-id\": \"17u9oqd\",\n              \"data-framer-name\": \"Frame 13\",\n              exit: animation12,\n              initial: optimizeAppear(\"initial\", \"17u9oqd\", animation14, \"72rtr7\"),\n              name: \"Frame 13\",\n              transformTemplate: optimizeAppearTransformTemplate(\"17u9oqd\", transformTemplate2),\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"10px\",\n                      \"--framer-text-alignment\": \"right\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"10px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Privacy policy\"\n                    })\n                  })\n                }),\n                className: \"framer-3d8hvu\",\n                \"data-framer-name\": \"Privacy policy\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"Privacy policy\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"14px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                      },\n                      children: \"/\"\n                    })\n                  })\n                }),\n                className: \"framer-1o2ym52\",\n                \"data-framer-name\": \"/\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"/\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"10px\",\n                      \"--framer-text-alignment\": \"right\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"10px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Terms of use\"\n                    })\n                  })\n                }),\n                className: \"framer-vz6ya7\",\n                \"data-framer-name\": \"Terms of use\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"Terms of use\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(Overlay, {\n            children: overlay => /*#__PURE__*/_jsx(_Fragment, {\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  PZoZkbxwc: {\n                    \"data-framer-appear-id\": \"11i519e\",\n                    animate: optimizeAppear(\"animate\", \"11i519e\", animation16, \"14ij7c5\"),\n                    initial: optimizeAppear(\"initial\", \"11i519e\", animation2, \"14ij7c5\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"11i519e\", transformTemplate2)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Container, {\n                  animate: optimizeAppear(\"animate\", \"1pvc9jx\", animation16, \"72rtr7\"),\n                  className: \"framer-1pvc9jx-container hidden-1gg9ewj\",\n                  \"data-framer-appear-id\": \"1pvc9jx\",\n                  exit: animation15,\n                  initial: optimizeAppear(\"initial\", \"1pvc9jx\", animation2, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1pvc9jx\", transformTemplate2),\n                  children: [/*#__PURE__*/_jsx(Input, {\n                    button: {\n                      buttonFont: {\n                        fontFamily: '\"Source Code Pro\", monospace',\n                        fontSize: \"16px\",\n                        fontStyle: \"normal\",\n                        fontWeight: 400,\n                        letterSpacing: \"0em\",\n                        lineHeight: \"1em\"\n                      },\n                      buttonPadding: 15,\n                      buttonPaddingBottom: 15,\n                      buttonPaddingLeft: 15,\n                      buttonPaddingPerSide: false,\n                      buttonPaddingRight: 15,\n                      buttonPaddingTop: 15,\n                      color: \"rgb(255, 255, 255)\",\n                      fill: \"rgb(10, 10, 10)\",\n                      insetWhenDocked: 5,\n                      isDocked: false,\n                      label: \"SUBMIT\",\n                      shouldAppear: true,\n                      widthWhenDocked: 100\n                    },\n                    font: {\n                      fontFamily: '\"Source Code Pro\", monospace',\n                      fontSize: \"16px\",\n                      fontStyle: \"normal\",\n                      fontWeight: 400,\n                      letterSpacing: \"0em\",\n                      lineHeight: \"1em\"\n                    },\n                    formsparkID: \"\",\n                    gap: 8,\n                    getwaitlistAPI: \"\",\n                    height: \"100%\",\n                    id: \"at_n4BFEs\",\n                    input: {\n                      borderObject: {\n                        borderColor: \"rgba(255, 255, 255, 0.5)\",\n                        borderWidth: 1\n                      },\n                      borderRadius: 0,\n                      color: \"rgb(255, 255, 255)\",\n                      fill: \"rgb(10, 10, 10)\",\n                      fixedHeight: 50,\n                      focusObject: {\n                        focusColor: \"rgb(255, 255, 255)\",\n                        focusWidthFrom: 0,\n                        focusWidthTo: 2\n                      },\n                      height: true,\n                      padding: 15,\n                      paddingBottom: 15,\n                      paddingLeft: 15,\n                      paddingPerSide: false,\n                      paddingRight: 15,\n                      paddingTop: 15,\n                      placeholder: \"enter your email\",\n                      placeholderColor: \"rgba(255, 255, 255, 0.3)\"\n                    },\n                    layout: \"vertical\",\n                    layoutId: \"at_n4BFEs\",\n                    link: resolveLink({\n                      webPageId: \"XrHtCxaeU\"\n                    }, router),\n                    loopsID: \"\",\n                    mailchimpURL: \"https://timedpieces.us21.list-manage.com/subscribe/post?u=7fb5fcf6e7336425d404782dd&amp;id=e8ca7843f0&amp;f_id=005c58e1f0\",\n                    onSubmit: onSubmit42m929(overlay),\n                    redirectAs: \"overlay\",\n                    service: \"mailchimp\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  }), /*#__PURE__*/_jsx(AnimatePresence, {\n                    children: overlay.visible && /*#__PURE__*/_jsx(_Fragment, {\n                      children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          animate: {\n                            opacity: 1,\n                            transition: {\n                              delay: 0,\n                              duration: .3,\n                              ease: [.5, 0, .88, .77],\n                              type: \"tween\"\n                            }\n                          },\n                          className: \"framer-61hck4\",\n                          exit: {\n                            opacity: 0,\n                            transition: {\n                              delay: 0,\n                              duration: 0,\n                              ease: [0, 0, 1, 1],\n                              type: \"tween\"\n                            }\n                          },\n                          initial: {\n                            opacity: 0\n                          },\n                          onTap: () => overlay.hide()\n                        }, \"Ael7w9NH3\"), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-wagsae\",\n                          \"data-framer-name\": \"Overlay\",\n                          name: \"Overlay\",\n                          children: [/*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-b0derc\",\n                            children: [/*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                                  },\n                                  children: \"YOU'RE ON THE LIST\"\n                                })\n                              }),\n                              className: \"framer-1va67ww\",\n                              fonts: [\"GF;Source Code Pro-regular\"],\n                              transformTemplate: transformTemplate1,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            }), /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                                    \"--framer-font-size\": \"12px\",\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                                  },\n                                  children: \"CHECK BACK SOON FOR UPDATES\"\n                                })\n                              }),\n                              className: \"framer-xmy4xx\",\n                              fonts: [\"GF;Source Code Pro-regular\"],\n                              transformTemplate: transformTemplate1,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          }), /*#__PURE__*/_jsx(Image, {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              intrinsicHeight: 256,\n                              intrinsicWidth: 256,\n                              pixelHeight: 512,\n                              pixelWidth: 512,\n                              src: \"https://framerusercontent.com/images/NN9oENR9dt7DAmfudcH0owSZa0.png\"\n                            },\n                            className: \"framer-yvhdmi\",\n                            \"data-framer-name\": \"Wordmark_with_Pusher\",\n                            name: \"Wordmark_with_Pusher\",\n                            transformTemplate: transformTemplate1\n                          }), /*#__PURE__*/_jsx(Container, {\n                            className: \"framer-10ppfsz-container\",\n                            children: /*#__PURE__*/_jsx(BUTTON, {\n                              height: \"100%\",\n                              id: \"Qj7C7n4Wx\",\n                              layoutId: \"Qj7C7n4Wx\",\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              tap: tapzn6atv(overlay),\n                              title: \"OK\",\n                              variant: \"frGblmsLI\",\n                              width: \"100%\"\n                            })\n                          })]\n                        })]\n                      }), document.querySelector(\"#overlay\"))\n                    })\n                  })]\n                })\n              })\n            })\n          }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ZBUmmvPht: {\n                \"data-framer-appear-id\": \"1v9gvai\",\n                animate: optimizeAppear(\"animate\", \"1v9gvai\", animation18, \"1gg9ewj\"),\n                initial: optimizeAppear(\"initial\", \"1v9gvai\", animation14, \"1gg9ewj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1v9gvai\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"80idvd\", animation18, \"72rtr7\"),\n              className: \"framer-80idvd hidden-14ij7c5\",\n              \"data-framer-appear-id\": \"80idvd\",\n              \"data-framer-name\": \"Group 5\",\n              exit: animation17,\n              initial: optimizeAppear(\"initial\", \"80idvd\", animation14, \"72rtr7\"),\n              name: \"Group 5\",\n              transformTemplate: optimizeAppearTransformTemplate(\"80idvd\", transformTemplate),\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"osps6j\",\n                    animate: optimizeAppear(\"animate\", \"osps6j\", animation20, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"osps6j\", animation21, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"osps6j\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"1j0vhab\", animation20, \"72rtr7\"),\n                  className: \"framer-1j0vhab\",\n                  \"data-framer-appear-id\": \"1j0vhab\",\n                  exit: animation19,\n                  initial: optimizeAppear(\"initial\", \"1j0vhab\", animation21, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1j0vhab\", transformTemplate),\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--framer-font-size\": \"16px\",\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTYwMA==\",\n                            \"--framer-font-family\": '\"Source Code Pro\"',\n                            \"--framer-font-size\": \"16px\",\n                            \"--framer-font-weight\": \"600\",\n                            \"--framer-text-color\": \"rgba(247, 247, 247, 1)\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: \"Follow us\"\n                        })\n                      })\n                    }),\n                    className: \"framer-7dbow4\",\n                    \"data-framer-name\": \"Follow us\",\n                    fonts: [\"GF;Source Code Pro-600\"],\n                    name: \"Follow us\",\n                    transformTemplate: transformTemplate3,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"41cblj\",\n                    animate: optimizeAppear(\"animate\", \"41cblj\", animation23, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"41cblj\", animation21, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"41cblj\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"o38rqy\", animation23, \"72rtr7\"),\n                  className: \"framer-o38rqy\",\n                  \"data-framer-appear-id\": \"o38rqy\",\n                  \"data-framer-name\": \"Frame 7\",\n                  exit: animation22,\n                  initial: optimizeAppear(\"initial\", \"o38rqy\", animation21, \"72rtr7\"),\n                  name: \"Frame 7\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"o38rqy\", transformTemplate),\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                            \"--framer-font-family\": '\"Source Code Pro\"',\n                            \"--framer-font-size\": \"24px\",\n                            \"--framer-font-weight\": \"300\",\n                            \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                          },\n                          children: \"[\"\n                        })\n                      })\n                    }),\n                    className: \"framer-f42k1j\",\n                    \"data-framer-name\": \"[\",\n                    fonts: [\"GF;Source Code Pro-300\"],\n                    name: \"[\",\n                    verticalAlignment: \"center\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(\"div\", {\n                    className: \"framer-1d9vumy\",\n                    \"data-framer-name\": \"Frame 5\",\n                    name: \"Frame 5\",\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1qmtn24-container\",\n                      children: /*#__PURE__*/_jsx(TextComponent, {\n                        height: \"100%\",\n                        id: \"FHJnANtpG\",\n                        layoutId: \"FHJnANtpG\",\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                            \"--framer-font-family\": '\"Source Code Pro\"',\n                            \"--framer-font-size\": \"24px\",\n                            \"--framer-font-weight\": \"300\",\n                            \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                          },\n                          children: \"]\"\n                        })\n                      })\n                    }),\n                    className: \"framer-2a84k8\",\n                    \"data-framer-name\": \"]\",\n                    fonts: [\"GF;Source Code Pro-300\"],\n                    name: \"]\",\n                    verticalAlignment: \"center\",\n                    withExternalLayout: true\n                  })]\n                })\n              })]\n            })\n          }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ZBUmmvPht: {\n                \"data-framer-appear-id\": \"19hr1x5\",\n                animate: optimizeAppear(\"animate\", \"19hr1x5\", animation18, \"1gg9ewj\"),\n                initial: optimizeAppear(\"initial\", \"19hr1x5\", animation14, \"1gg9ewj\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"19hr1x5\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"3ar4qk\", animation18, \"72rtr7\"),\n              className: \"framer-3ar4qk hidden-14ij7c5\",\n              \"data-framer-appear-id\": \"3ar4qk\",\n              \"data-framer-name\": \"Group 6\",\n              exit: animation17,\n              initial: optimizeAppear(\"initial\", \"3ar4qk\", animation14, \"72rtr7\"),\n              name: \"Group 6\",\n              transformTemplate: optimizeAppearTransformTemplate(\"3ar4qk\", transformTemplate),\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"npmpv\",\n                    animate: optimizeAppear(\"animate\", \"npmpv\", animation20, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"npmpv\", animation25, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"npmpv\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"1m0wkvd\", animation20, \"72rtr7\"),\n                  className: \"framer-1m0wkvd\",\n                  \"data-framer-appear-id\": \"1m0wkvd\",\n                  exit: animation24,\n                  initial: optimizeAppear(\"initial\", \"1m0wkvd\", animation25, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1m0wkvd\", transformTemplate),\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--framer-font-size\": \"16px\"\n                        },\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTYwMA==\",\n                            \"--framer-font-family\": '\"Source Code Pro\"',\n                            \"--framer-font-size\": \"16px\",\n                            \"--framer-font-weight\": \"600\",\n                            \"--framer-text-color\": \"rgba(247, 247, 247, 1)\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: \"Coming soon\"\n                        })\n                      })\n                    }),\n                    className: \"framer-rjw3bg\",\n                    \"data-framer-name\": \"Coming soon\",\n                    fonts: [\"GF;Source Code Pro-600\"],\n                    name: \"Coming soon\",\n                    transformTemplate: transformTemplate3,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"fvio24\",\n                    animate: optimizeAppear(\"animate\", \"fvio24\", animation23, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"fvio24\", animation25, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"fvio24\", transformTemplate)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"1zgs8v\", animation23, \"72rtr7\"),\n                  className: \"framer-1zgs8v\",\n                  \"data-framer-appear-id\": \"1zgs8v\",\n                  \"data-framer-name\": \"Frame 8\",\n                  exit: animation26,\n                  initial: optimizeAppear(\"initial\", \"1zgs8v\", animation25, \"72rtr7\"),\n                  name: \"Frame 8\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"1zgs8v\", transformTemplate)\n                })\n              })]\n            })\n          }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"1kdx1qh\",\n                animate: optimizeAppear(\"animate\", \"1kdx1qh\", animation1, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"1kdx1qh\", animation2, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1kdx1qh\", transformTemplate2)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"1n2r1op\", animation1, \"72rtr7\"),\n              className: \"framer-1n2r1op hidden-72rtr7 hidden-1gg9ewj\",\n              \"data-framer-appear-id\": \"1n2r1op\",\n              \"data-framer-name\": \"Frame 8\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"1n2r1op\", animation2, \"72rtr7\"),\n              name: \"Frame 8\",\n              transformTemplate: optimizeAppearTransformTemplate(\"1n2r1op\", transformTemplate2),\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"300\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                      },\n                      children: \"[\"\n                    })\n                  })\n                }),\n                className: \"framer-zdboow\",\n                \"data-framer-name\": \"[\",\n                fonts: [\"GF;Source Code Pro-300\"],\n                name: \"[\",\n                verticalAlignment: \"center\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                      \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                      \"--framer-font-weight\": \"500\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"COMING SOON\"\n                  })\n                }),\n                className: \"framer-1sde9q3\",\n                \"data-framer-name\": \"launching fall 2023\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"launching fall 2023\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"300\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                      },\n                      children: \"]\"\n                    })\n                  })\n                }),\n                className: \"framer-o011qe\",\n                \"data-framer-name\": \"]\",\n                fonts: [\"GF;Source Code Pro-300\"],\n                name: \"]\",\n                verticalAlignment: \"center\",\n                withExternalLayout: true\n              })]\n            })\n          }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"vyew5q\",\n                animate: optimizeAppear(\"animate\", \"vyew5q\", animation16, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"vyew5q\", animation2, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"vyew5q\", transformTemplate2)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"1a7nkd3\", animation16, \"72rtr7\"),\n              className: \"framer-1a7nkd3 hidden-72rtr7 hidden-1gg9ewj\",\n              \"data-framer-appear-id\": \"1a7nkd3\",\n              \"data-framer-name\": \"Frame 7\",\n              exit: animation15,\n              initial: optimizeAppear(\"initial\", \"1a7nkd3\", animation2, \"72rtr7\"),\n              name: \"Frame 7\",\n              transformTemplate: optimizeAppearTransformTemplate(\"1a7nkd3\", transformTemplate2),\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"300\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                      },\n                      children: \"[\"\n                    })\n                  })\n                }),\n                className: \"framer-lkcoar\",\n                \"data-framer-name\": \"[\",\n                fonts: [\"GF;Source Code Pro-300\"],\n                name: \"[\",\n                verticalAlignment: \"center\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-1kwgjh5\",\n                \"data-framer-name\": \"Frame 5\",\n                name: \"Frame 5\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-b2chhh-container\",\n                  children: /*#__PURE__*/_jsx(TextComponent, {\n                    height: \"100%\",\n                    id: \"TXrlZEBNP\",\n                    layoutId: \"TXrlZEBNP\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTMwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"300\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\"\n                      },\n                      children: \"]\"\n                    })\n                  })\n                }),\n                className: \"framer-vtjcnz\",\n                \"data-framer-name\": \"]\",\n                fonts: [\"GF;Source Code Pro-300\"],\n                name: \"]\",\n                verticalAlignment: \"center\",\n                withExternalLayout: true\n              })]\n            })\n          }), isDisplayed3() && /*#__PURE__*/_jsx(Overlay, {\n            children: overlay1 => /*#__PURE__*/_jsx(_Fragment, {\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ZBUmmvPht: {\n                    \"data-framer-appear-id\": \"18yntyt\",\n                    animate: optimizeAppear(\"animate\", \"18yntyt\", animation13, \"1gg9ewj\"),\n                    initial: optimizeAppear(\"initial\", \"18yntyt\", animation14, \"1gg9ewj\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"18yntyt\", transformTemplate2)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Container, {\n                  animate: optimizeAppear(\"animate\", \"n913zh\", animation13, \"72rtr7\"),\n                  className: \"framer-n913zh-container hidden-72rtr7 hidden-14ij7c5\",\n                  \"data-framer-appear-id\": \"n913zh\",\n                  exit: animation12,\n                  initial: optimizeAppear(\"initial\", \"n913zh\", animation14, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"n913zh\", transformTemplate2),\n                  children: [/*#__PURE__*/_jsx(Input, {\n                    button: {\n                      buttonFont: {\n                        fontFamily: '\"Source Code Pro\", monospace',\n                        fontSize: \"16px\",\n                        fontStyle: \"normal\",\n                        fontWeight: 400,\n                        letterSpacing: \"0em\",\n                        lineHeight: \"1em\"\n                      },\n                      buttonPadding: 15,\n                      buttonPaddingBottom: 15,\n                      buttonPaddingLeft: 15,\n                      buttonPaddingPerSide: false,\n                      buttonPaddingRight: 15,\n                      buttonPaddingTop: 15,\n                      color: \"rgb(255, 255, 255)\",\n                      fill: \"rgb(10, 10, 10)\",\n                      insetWhenDocked: 5,\n                      isDocked: false,\n                      label: \"SUBMIT\",\n                      shouldAppear: true,\n                      widthWhenDocked: 100\n                    },\n                    font: {\n                      fontFamily: '\"Source Code Pro\", monospace',\n                      fontSize: \"16px\",\n                      fontStyle: \"normal\",\n                      fontWeight: 400,\n                      letterSpacing: \"0em\",\n                      lineHeight: \"1em\"\n                    },\n                    formsparkID: \"\",\n                    gap: 8,\n                    getwaitlistAPI: \"\",\n                    height: \"100%\",\n                    id: \"YUChbprOb\",\n                    input: {\n                      borderObject: {\n                        borderColor: \"rgba(255, 255, 255, 0.5)\",\n                        borderWidth: 1\n                      },\n                      borderRadius: 0,\n                      color: \"rgb(255, 255, 255)\",\n                      fill: \"rgb(10, 10, 10)\",\n                      fixedHeight: 50,\n                      focusObject: {\n                        focusColor: \"rgb(255, 255, 255)\",\n                        focusWidthFrom: 0,\n                        focusWidthTo: 2\n                      },\n                      height: true,\n                      padding: 15,\n                      paddingBottom: 15,\n                      paddingLeft: 15,\n                      paddingPerSide: false,\n                      paddingRight: 15,\n                      paddingTop: 15,\n                      placeholder: \"enter your email\",\n                      placeholderColor: \"rgba(255, 255, 255, 0.3)\"\n                    },\n                    layout: \"vertical\",\n                    layoutId: \"YUChbprOb\",\n                    link: resolveLink({\n                      webPageId: \"XrHtCxaeU\"\n                    }, router),\n                    loopsID: \"\",\n                    mailchimpURL: \"https://timedpieces.us21.list-manage.com/subscribe/post?u=7fb5fcf6e7336425d404782dd&amp;id=e8ca7843f0&amp;f_id=005c58e1f0\",\n                    onSubmit: onSubmit42m929(overlay1),\n                    redirectAs: \"overlay\",\n                    service: \"mailchimp\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  }), /*#__PURE__*/_jsx(AnimatePresence, {\n                    children: overlay1.visible && /*#__PURE__*/_jsx(_Fragment, {\n                      children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          animate: {\n                            opacity: 1,\n                            transition: {\n                              delay: 0,\n                              duration: 0,\n                              ease: [.5, 0, .88, .77],\n                              type: \"tween\"\n                            }\n                          },\n                          className: \"framer-bfee0u\",\n                          exit: {\n                            opacity: 0,\n                            transition: {\n                              delay: 0,\n                              duration: 0,\n                              ease: [.12, .23, .5, 1],\n                              type: \"tween\"\n                            }\n                          },\n                          initial: {\n                            opacity: 0\n                          },\n                          onTap: () => overlay1.hide()\n                        }, \"v0JfKO3O0\"), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-16nuxn8\",\n                          \"data-framer-name\": \"Overlay\",\n                          name: \"Overlay\",\n                          children: [/*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-12gde78\",\n                            children: [/*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                                  },\n                                  children: \"YOU'RE ON THE LIST\"\n                                })\n                              }),\n                              className: \"framer-1sp6dqt\",\n                              fonts: [\"GF;Source Code Pro-regular\"],\n                              transformTemplate: transformTemplate1,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            }), /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                                    \"--framer-font-size\": \"12px\",\n                                    \"--framer-text-alignment\": \"center\",\n                                    \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                                  },\n                                  children: \"CHECK BACK SOON FOR UPDATES\"\n                                })\n                              }),\n                              className: \"framer-1awpxb7\",\n                              fonts: [\"GF;Source Code Pro-regular\"],\n                              transformTemplate: transformTemplate1,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          }), /*#__PURE__*/_jsx(Image, {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              intrinsicHeight: 256,\n                              intrinsicWidth: 256,\n                              pixelHeight: 512,\n                              pixelWidth: 512,\n                              src: \"https://framerusercontent.com/images/NN9oENR9dt7DAmfudcH0owSZa0.png\"\n                            },\n                            className: \"framer-1fg13wz\",\n                            \"data-framer-name\": \"Wordmark_with_Pusher\",\n                            name: \"Wordmark_with_Pusher\",\n                            transformTemplate: transformTemplate1\n                          }), /*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1lakrhi-container\",\n                            children: /*#__PURE__*/_jsx(BUTTON, {\n                              height: \"100%\",\n                              id: \"mUwXJlNy8\",\n                              layoutId: \"mUwXJlNy8\",\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              tap: tapzn6atv(overlay1),\n                              title: \"OK\",\n                              variant: \"frGblmsLI\",\n                              width: \"100%\"\n                            })\n                          })]\n                        })]\n                      }), document.querySelector(\"#overlay\"))\n                    })\n                  })]\n                })\n              })\n            })\n          }), isDisplayed3() && /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1p4x7l3 hidden-72rtr7 hidden-14ij7c5\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"gb4t2n\",\n                  animate: optimizeAppear(\"animate\", \"gb4t2n\", animation8, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"gb4t2n\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"gb4t2n\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"1vg03xi\", animation8, \"72rtr7\"),\n                className: \"framer-1vg03xi\",\n                \"data-framer-appear-id\": \"1vg03xi\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"1vg03xi\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1vg03xi\", transformTemplate),\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                        \"--framer-font-family\": '\"Roboto Serif\", serif',\n                        \"--framer-font-size\": \"56px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-letter-spacing\": \"7.3px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                      },\n                      children: \"PIECES\"\n                    })\n                  }),\n                  className: \"framer-2ulvr7\",\n                  \"data-framer-name\": \"TIMED\",\n                  fonts: [\"GF;Roboto Serif-500\"],\n                  name: \"TIMED\",\n                  transformTemplate: transformTemplate3,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"qymfao\",\n                  animate: optimizeAppear(\"animate\", \"qymfao\", animation8, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"qymfao\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"qymfao\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"1iyui2i\", animation8, \"72rtr7\"),\n                className: \"framer-1iyui2i\",\n                \"data-framer-appear-id\": \"1iyui2i\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"1iyui2i\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1iyui2i\", transformTemplate),\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    ZBUmmvPht: {\n                      \"data-framer-appear-id\": \"t1tcf2\",\n                      animate: optimizeAppear(\"animate\", \"t1tcf2\", animation8, \"1gg9ewj\"),\n                      initial: optimizeAppear(\"initial\", \"t1tcf2\", animation2, \"1gg9ewj\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"t1tcf2\", transformTemplate4)\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    animate: optimizeAppear(\"animate\", \"4nmnmp\", animation8, \"72rtr7\"),\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                          \"--framer-font-family\": '\"Roboto Serif\", serif',\n                          \"--framer-font-size\": \"56px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"7.3px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                        },\n                        children: \"TIMED\"\n                      })\n                    }),\n                    className: \"framer-4nmnmp\",\n                    \"data-framer-appear-id\": \"4nmnmp\",\n                    \"data-framer-name\": \"TIMED\",\n                    exit: animation7,\n                    fonts: [\"GF;Roboto Serif-500\"],\n                    initial: optimizeAppear(\"initial\", \"4nmnmp\", animation2, \"72rtr7\"),\n                    name: \"TIMED\",\n                    transformTemplate: optimizeAppearTransformTemplate(\"4nmnmp\", transformTemplate4),\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"19nowkv\",\n                  animate: optimizeAppear(\"animate\", \"19nowkv\", animation11, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"19nowkv\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"19nowkv\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(Image, {\n                animate: optimizeAppear(\"animate\", \"1ab7q04\", animation11, \"72rtr7\"),\n                background: {\n                  alt: \"\",\n                  fit: \"fit\",\n                  intrinsicHeight: 817,\n                  intrinsicWidth: 818,\n                  pixelHeight: 817,\n                  pixelWidth: 818,\n                  src: \"https://framerusercontent.com/images/j25ir5RIDuZwFmbH4Z07NMV60.png\"\n                },\n                className: \"framer-1ab7q04\",\n                \"data-framer-appear-id\": \"1ab7q04\",\n                exit: animation9,\n                initial: optimizeAppear(\"initial\", \"1ab7q04\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1ab7q04\", transformTemplate)\n              })\n            })]\n          }), isDisplayed2() && /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-18784l hidden-72rtr7 hidden-1gg9ewj\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"279cqu\",\n                  animate: optimizeAppear(\"animate\", \"279cqu\", animation8, \"14ij7c5\"),\n                  initial: optimizeAppear(\"initial\", \"279cqu\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"279cqu\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"bovqat\", animation8, \"72rtr7\"),\n                className: \"framer-bovqat\",\n                \"data-framer-appear-id\": \"bovqat\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"bovqat\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"bovqat\", transformTemplate),\n                children: isDisplayed2() && /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                        \"--framer-font-family\": '\"Roboto Serif\", serif',\n                        \"--framer-font-size\": \"34px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-letter-spacing\": \"3.8px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                      },\n                      children: \"PIECES\"\n                    })\n                  }),\n                  className: \"framer-hbru50 hidden-72rtr7\",\n                  \"data-framer-name\": \"TIMED\",\n                  fonts: [\"GF;Roboto Serif-500\"],\n                  name: \"TIMED\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"5eyrh5\",\n                  animate: optimizeAppear(\"animate\", \"5eyrh5\", animation8, \"14ij7c5\"),\n                  initial: optimizeAppear(\"initial\", \"5eyrh5\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"5eyrh5\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"1jye3tc\", animation8, \"72rtr7\"),\n                className: \"framer-1jye3tc\",\n                \"data-framer-appear-id\": \"1jye3tc\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"1jye3tc\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1jye3tc\", transformTemplate),\n                children: isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    PZoZkbxwc: {\n                      \"data-framer-appear-id\": \"kvv3go\",\n                      animate: optimizeAppear(\"animate\", \"kvv3go\", animation8, \"14ij7c5\"),\n                      initial: optimizeAppear(\"initial\", \"kvv3go\", animation2, \"14ij7c5\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"kvv3go\", transformTemplate)\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    animate: optimizeAppear(\"animate\", \"1s8q9mm\", animation8, \"72rtr7\"),\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7Um9ib3RvIFNlcmlmLTUwMA==\",\n                          \"--framer-font-family\": '\"Roboto Serif\", serif',\n                          \"--framer-font-size\": \"34px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"3.8px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                        },\n                        children: \"TIMED\"\n                      })\n                    }),\n                    className: \"framer-1s8q9mm hidden-72rtr7\",\n                    \"data-framer-appear-id\": \"1s8q9mm\",\n                    \"data-framer-name\": \"TIMED\",\n                    exit: animation7,\n                    fonts: [\"GF;Roboto Serif-500\"],\n                    initial: optimizeAppear(\"initial\", \"1s8q9mm\", animation2, \"72rtr7\"),\n                    name: \"TIMED\",\n                    transformTemplate: optimizeAppearTransformTemplate(\"1s8q9mm\", transformTemplate),\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            })]\n          }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"1k616bo\",\n                animate: optimizeAppear(\"animate\", \"1k616bo\", animation28, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"1k616bo\", animation14, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"1k616bo\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Image, {\n              animate: optimizeAppear(\"animate\", \"1kz7pc6\", animation28, \"72rtr7\"),\n              background: {\n                alt: \"\",\n                fit: \"fit\",\n                intrinsicHeight: 817,\n                intrinsicWidth: 818,\n                pixelHeight: 817,\n                pixelWidth: 818,\n                src: \"https://framerusercontent.com/images/j25ir5RIDuZwFmbH4Z07NMV60.png\"\n              },\n              className: \"framer-1kz7pc6 hidden-72rtr7 hidden-1gg9ewj\",\n              \"data-framer-appear-id\": \"1kz7pc6\",\n              exit: animation27,\n              initial: optimizeAppear(\"initial\", \"1kz7pc6\", animation14, \"72rtr7\"),\n              transformTemplate: optimizeAppearTransformTemplate(\"1kz7pc6\", transformTemplate)\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-96u3ve\",\n            children: isDisplayed() && /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"1pgcly2\",\n                  animate: optimizeAppear(\"animate\", \"1pgcly2\", animation16, \"14ij7c5\"),\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTYwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"600\",\n                        \"--framer-letter-spacing\": \"-1.44px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Real watches, real low fees.\"\n                    })\n                  }),\n                  initial: optimizeAppear(\"initial\", \"1pgcly2\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1pgcly2\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                animate: optimizeAppear(\"animate\", \"17pe5by\", animation16, \"72rtr7\"),\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--framer-font-size\": \"24px\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: /*#__PURE__*/_jsx(\"span\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTYwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\"',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"600\",\n                        \"--framer-letter-spacing\": \"-1.44px\",\n                        \"--framer-text-color\": \"rgba(247, 247, 247, 1)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Real watches, real low fees.\"\n                    })\n                  })\n                }),\n                className: \"framer-17pe5by hidden-1gg9ewj\",\n                \"data-framer-appear-id\": \"17pe5by\",\n                \"data-framer-name\": \"Real watches, real low fees.\",\n                exit: animation15,\n                fonts: [\"GF;Source Code Pro-600\"],\n                initial: optimizeAppear(\"initial\", \"17pe5by\", animation2, \"72rtr7\"),\n                name: \"Real watches, real low fees.\",\n                transformTemplate: optimizeAppearTransformTemplate(\"17pe5by\", transformTemplate2),\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-n04cqx\",\n            children: isDisplayed() && /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                PZoZkbxwc: {\n                  \"data-framer-appear-id\": \"1mabzld\",\n                  animate: optimizeAppear(\"animate\", \"1mabzld\", animation1, \"14ij7c5\"),\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                        \"--framer-font-size\": \"12px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"COMING SOON. Get on the waitlist.\"\n                    })\n                  }),\n                  initial: optimizeAppear(\"initial\", \"1mabzld\", animation2, \"14ij7c5\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1mabzld\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                animate: optimizeAppear(\"animate\", \"c981wk\", animation1, \"72rtr7\"),\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                      \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                      \"--framer-font-size\": \"14px\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"COMING SOON. Get on the waitlist.\"\n                  })\n                }),\n                className: \"framer-c981wk hidden-1gg9ewj\",\n                \"data-framer-appear-id\": \"c981wk\",\n                \"data-framer-name\": \"Lorem ipsum dolor sit amet. Get on the waitlist.\",\n                exit: animation,\n                fonts: [\"GF;Source Code Pro-regular\"],\n                initial: optimizeAppear(\"initial\", \"c981wk\", animation2, \"72rtr7\"),\n                name: \"Lorem ipsum dolor sit amet. Get on the waitlist.\",\n                transformTemplate: optimizeAppearTransformTemplate(\"c981wk\", transformTemplate5),\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            })\n          }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PZoZkbxwc: {\n                \"data-framer-appear-id\": \"88jg5g\",\n                animate: optimizeAppear(\"animate\", \"88jg5g\", animation13, \"14ij7c5\"),\n                initial: optimizeAppear(\"initial\", \"88jg5g\", animation14, \"14ij7c5\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"88jg5g\", transformTemplate2)\n              }\n            },\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              animate: optimizeAppear(\"animate\", \"z3xlow\", animation13, \"72rtr7\"),\n              className: \"framer-z3xlow hidden-72rtr7 hidden-1gg9ewj\",\n              \"data-framer-appear-id\": \"z3xlow\",\n              \"data-framer-name\": \"Frame 13\",\n              exit: animation12,\n              initial: optimizeAppear(\"initial\", \"z3xlow\", animation14, \"72rtr7\"),\n              name: \"Frame 13\",\n              transformTemplate: optimizeAppearTransformTemplate(\"z3xlow\", transformTemplate2),\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                      \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                      \"--framer-font-size\": \"10px\",\n                      \"--framer-font-weight\": \"500\",\n                      \"--framer-text-alignment\": \"right\",\n                      \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"Privacy policy\"\n                  })\n                }),\n                className: \"framer-rbw6f5\",\n                \"data-framer-name\": \"Privacy policy\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"Privacy policy\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                      \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                      \"--framer-font-size\": \"14px\",\n                      \"--framer-font-weight\": \"500\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(247, 247, 247)\"\n                    },\n                    children: \"/\"\n                  })\n                }),\n                className: \"framer-sgi3on\",\n                \"data-framer-name\": \"/\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"/\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTUwMA==\",\n                      \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                      \"--framer-font-size\": \"10px\",\n                      \"--framer-font-weight\": \"500\",\n                      \"--framer-text-alignment\": \"right\",\n                      \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"Terms of use\"\n                  })\n                }),\n                className: \"framer-nu3gwk\",\n                \"data-framer-name\": \"Terms of use\",\n                fonts: [\"GF;Source Code Pro-500\"],\n                name: \"Terms of use\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })\n          }), isDisplayed3() && /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-jjqeja hidden-72rtr7 hidden-14ij7c5\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"1i17d30\",\n                  animate: optimizeAppear(\"animate\", \"1i17d30\", animation30, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"1i17d30\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1i17d30\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"mkx9xa\", animation30, \"72rtr7\"),\n                className: \"framer-mkx9xa\",\n                \"data-framer-appear-id\": \"mkx9xa\",\n                exit: animation29,\n                initial: optimizeAppear(\"initial\", \"mkx9xa\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"mkx9xa\", transformTemplate),\n                children: isDisplayed3() && /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLTYwMA==\",\n                        \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"600\",\n                        \"--framer-letter-spacing\": \"-1.44px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Real watches, real low fees.\"\n                    })\n                  }),\n                  className: \"framer-14y375y hidden-72rtr7\",\n                  \"data-framer-name\": \"Real watches, real low fees.\",\n                  fonts: [\"GF;Source Code Pro-600\"],\n                  name: \"Real watches, real low fees.\",\n                  transformTemplate: transformTemplate6,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ZBUmmvPht: {\n                  \"data-framer-appear-id\": \"1lnctbi\",\n                  animate: optimizeAppear(\"animate\", \"1lnctbi\", animation16, \"1gg9ewj\"),\n                  initial: optimizeAppear(\"initial\", \"1lnctbi\", animation2, \"1gg9ewj\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1lnctbi\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"13pt8t6\", animation16, \"72rtr7\"),\n                className: \"framer-13pt8t6\",\n                \"data-framer-appear-id\": \"13pt8t6\",\n                exit: animation15,\n                initial: optimizeAppear(\"initial\", \"13pt8t6\", animation2, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"13pt8t6\", transformTemplate),\n                children: isDisplayed3() && /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Source Code Pro\", monospace',\n                        \"--framer-font-size\": \"14px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(247, 247, 247)\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"COMING SOON. Get on the waitlist.\"\n                    })\n                  }),\n                  className: \"framer-1n0g9ho hidden-72rtr7\",\n                  \"data-framer-name\": \"Lorem ipsum dolor sit amet. Get on the waitlist.\",\n                  fonts: [\"GF;Source Code Pro-regular\"],\n                  name: \"Lorem ipsum dolor sit amet. Get on the waitlist.\",\n                  transformTemplate: transformTemplate6,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-lNnrS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: #0A0A0A; }`, \".framer-lNnrS .framer-lux5qc { display: block; }\", \".framer-lNnrS .framer-72rtr7 { background-color: #0a0a0a; height: 909px; overflow: hidden; position: relative; width: 1200px; }\", \".framer-lNnrS .framer-w3pjj5-container { flex: none; height: 200px; left: 0px; position: absolute; right: 0px; top: 395px; transform: perspective(1200px); }\", \".framer-lNnrS .framer-188xpxp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 224px; justify-content: center; opacity: 0.4; overflow: visible; padding: 0px 72px 0px 0px; position: relative; width: min-content; }\", \".framer-lNnrS .framer-ecfz8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; opacity: 0.2; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-lNnrS .framer-1i4i5et, .framer-lNnrS .framer-6jqoar { aspect-ratio: 1.8862972259521484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 166px; }\", \".framer-lNnrS .framer-x27uv0, .framer-lNnrS .framer-1m680od { aspect-ratio: 1.8823530023748225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 166px; }\", \".framer-lNnrS .framer-yw5gex, .framer-lNnrS .framer-1jxdn6l, .framer-lNnrS .framer-5lv0bm, .framer-lNnrS .framer-w3yho6, .framer-lNnrS .framer-1fp8lxl, .framer-lNnrS .framer-a8fa86 { aspect-ratio: 1.7669355219060725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 155px; }\", \".framer-lNnrS .framer-1v47qlz, .framer-lNnrS .framer-1s9i7r2 { aspect-ratio: 2.424242366443981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 213px; }\", \".framer-lNnrS .framer-1mf7t3r { -webkit-filter: blur(150px); aspect-ratio: 1 / 1; background-color: #ae0000; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(150px); flex: none; height: var(--framer-aspect-ratio-supported, 1326px); left: -63px; opacity: 0.3; position: absolute; right: -63px; top: 608px; transform: perspective(1200px); }\", \".framer-lNnrS .framer-rcwbke { flex: none; height: 289px; left: calc(51.33333333333335% - 732px / 2); overflow: hidden; position: absolute; top: calc(36.85368536853687% - 289px / 2); width: 732px; }\", \".framer-lNnrS .framer-1k51vbz { bottom: 91px; flex: none; height: 77px; overflow: hidden; position: absolute; right: 0px; transform: perspective(1200px); width: 290px; }\", \".framer-lNnrS .framer-1ugybzb { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: -10px; transform: translateX(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-ujirqq { bottom: 91px; flex: none; height: 77px; left: 0px; overflow: hidden; position: absolute; transform: perspective(1200px); width: 267px; }\", \".framer-lNnrS .framer-1r1fwd4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 0px; top: -10px; white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1lzk3p1 { bottom: 0px; flex: none; left: calc(47.81420765027325% - 268px / 2); overflow: hidden; position: absolute; top: 0px; width: 268px; }\", \".framer-lNnrS .framer-kimcva { flex: none; height: 201px; left: 0px; position: absolute; right: 0px; top: calc(49.82698961937718% - 201px / 2); transform: perspective(1200px); }\", \".framer-lNnrS .framer-17u9oqd, .framer-lNnrS .framer-z3xlow { align-content: center; align-items: center; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; transform: perspective(1200px) translateX(-50%); width: min-content; }\", \".framer-lNnrS .framer-3d8hvu, .framer-lNnrS .framer-vz6ya7, .framer-lNnrS .framer-1sde9q3, .framer-lNnrS .framer-hbru50, .framer-lNnrS .framer-rbw6f5, .framer-lNnrS .framer-nu3gwk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1o2ym52, .framer-lNnrS .framer-f42k1j, .framer-lNnrS .framer-2a84k8, .framer-lNnrS .framer-zdboow, .framer-lNnrS .framer-o011qe, .framer-lNnrS .framer-lkcoar, .framer-lNnrS .framer-vtjcnz, .framer-lNnrS .framer-sgi3on { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.3; position: relative; white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1pvc9jx-container { flex: none; height: auto; left: 50%; position: absolute; top: 514px; transform: perspective(1200px) translateX(-50%); width: 300px; }\", \".framer-lNnrS .framer-61hck4, .framer-lNnrS .framer-bfee0u { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\", \".framer-lNnrS .framer-wagsae, .framer-lNnrS .framer-16nuxn8 { background-color: #0a0a0a; flex: none; height: 236px; left: calc(50.00000000000002% - 276px / 2); overflow: hidden; position: fixed; top: calc(50.055005500550074% - 236px / 2); width: 276px; }\", \".framer-lNnrS .framer-b0derc, .framer-lNnrS .framer-12gde78 { flex: none; height: 43px; left: 40px; overflow: hidden; position: absolute; top: 91px; width: 196px; }\", \".framer-lNnrS .framer-1va67ww, .framer-lNnrS .framer-1sp6dqt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 1px; transform: translateX(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-xmy4xx, .framer-lNnrS .framer-1awpxb7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 1px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-yvhdmi, .framer-lNnrS .framer-1fg13wz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); left: 50%; overflow: visible; position: absolute; top: 24px; transform: translateX(-50%); width: 67px; }\", \".framer-lNnrS .framer-10ppfsz-container, .framer-lNnrS .framer-1lakrhi-container { bottom: 32px; flex: none; height: 54px; left: calc(50.00000000000002% - 223px / 2); position: absolute; width: 223px; }\", \".framer-lNnrS .framer-80idvd { flex: none; height: 50px; left: 48px; overflow: visible; position: absolute; top: 405px; transform: perspective(1200px); width: 219px; }\", \".framer-lNnrS .framer-1j0vhab { flex: none; height: 19px; left: 4px; overflow: hidden; position: absolute; top: 0px; transform: perspective(1200px); width: 87px; }\", \".framer-lNnrS .framer-7dbow4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-o38rqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 20px; transform: perspective(1200px); width: min-content; }\", \".framer-lNnrS .framer-1d9vumy, .framer-lNnrS .framer-1kwgjh5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-lNnrS .framer-1qmtn24-container, .framer-lNnrS .framer-b2chhh-container { flex: none; height: 19px; position: relative; width: 87px; }\", \".framer-lNnrS .framer-3ar4qk { flex: none; height: 50px; overflow: visible; position: absolute; right: 48px; top: 405px; transform: perspective(1200px); width: 213px; }\", \".framer-lNnrS .framer-1m0wkvd { flex: none; height: 19px; overflow: hidden; position: absolute; right: 4px; top: 0px; transform: perspective(1200px); width: 106px; }\", \".framer-lNnrS .framer-rjw3bg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 0px; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1zgs8v { align-content: center; align-items: center; bottom: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 29px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; transform: perspective(1200px); width: min-content; }\", \".framer-lNnrS .framer-1n2r1op { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 647px; transform: perspective(1200px) translateX(-50%); width: min-content; }\", \".framer-lNnrS .framer-1a7nkd3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 557px; transform: perspective(1200px) translateX(-50%); width: min-content; }\", \".framer-lNnrS .framer-n913zh-container { flex: none; height: auto; left: 50%; position: absolute; top: 546px; transform: perspective(1200px) translateX(-50%); width: 300px; }\", \".framer-lNnrS .framer-1p4x7l3 { flex: none; height: 219px; left: calc(50.24691358024693% - 692px / 2); overflow: hidden; position: absolute; top: 162px; width: 692px; }\", \".framer-lNnrS .framer-1vg03xi { bottom: 57px; flex: none; height: 200px; overflow: hidden; position: absolute; right: -4px; transform: perspective(1200px); width: 200px; }\", \".framer-lNnrS .framer-2ulvr7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 0px; top: 49%; transform: translateY(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1iyui2i { bottom: 57px; flex: none; height: 200px; left: 28px; overflow: hidden; position: absolute; transform: perspective(1200px); width: 201px; }\", \".framer-lNnrS .framer-4nmnmp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 0px; top: 49%; transform: perspective(1200px) translateY(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1ab7q04 { bottom: 0px; flex: none; height: 201px; left: calc(50.00000000000002% - 268px / 2); position: absolute; transform: perspective(1200px); width: 268px; }\", \".framer-lNnrS .framer-18784l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 70px; transform: translateX(-50%); width: min-content; }\", \".framer-lNnrS .framer-bovqat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 29px; min-width: 116px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: min-content; }\", \".framer-lNnrS .framer-1jye3tc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 29px; min-width: 106px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: min-content; }\", \".framer-lNnrS .framer-1s8q9mm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1kz7pc6 { flex: none; height: 153px; left: calc(50.00000000000002% - 296px / 2); position: absolute; top: 137px; transform: perspective(1200px); width: 296px; }\", \".framer-lNnrS .framer-96u3ve { flex: none; height: 30px; left: calc(50.00000000000002% - 364px / 2); overflow: hidden; position: absolute; top: 650px; width: 364px; }\", \".framer-lNnrS .framer-17pe5by { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: perspective(1200px) translateX(-50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-n04cqx { flex: none; height: 18px; left: calc(50.00000000000002% - 404px / 2); overflow: hidden; position: absolute; top: 692px; width: 404px; }\", \".framer-lNnrS .framer-c981wk { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: perspective(1200px) translate(-50%, -50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-jjqeja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; left: calc(50.00000000000002% - 382px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 682px; width: 382px; }\", \".framer-lNnrS .framer-mkx9xa, .framer-lNnrS .framer-13pt8t6 { flex: none; height: 200px; overflow: hidden; position: relative; transform: perspective(1200px); width: 200px; }\", \".framer-lNnrS .framer-14y375y { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\", \".framer-lNnrS .framer-1n0g9ho { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 47%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lNnrS .framer-188xpxp, .framer-lNnrS .framer-ecfz8d, .framer-lNnrS .framer-17u9oqd, .framer-lNnrS .framer-o38rqy, .framer-lNnrS .framer-1d9vumy, .framer-lNnrS .framer-1zgs8v, .framer-lNnrS .framer-1n2r1op, .framer-lNnrS .framer-1a7nkd3, .framer-lNnrS .framer-1kwgjh5, .framer-lNnrS .framer-18784l, .framer-lNnrS .framer-bovqat, .framer-lNnrS .framer-1jye3tc, .framer-lNnrS .framer-z3xlow, .framer-lNnrS .framer-jjqeja { gap: 0px; } .framer-lNnrS .framer-188xpxp > *, .framer-lNnrS .framer-o38rqy > *, .framer-lNnrS .framer-1zgs8v > *, .framer-lNnrS .framer-1n2r1op > *, .framer-lNnrS .framer-1a7nkd3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lNnrS .framer-188xpxp > :first-child, .framer-lNnrS .framer-ecfz8d > :first-child, .framer-lNnrS .framer-17u9oqd > :first-child, .framer-lNnrS .framer-o38rqy > :first-child, .framer-lNnrS .framer-1d9vumy > :first-child, .framer-lNnrS .framer-1zgs8v > :first-child, .framer-lNnrS .framer-1n2r1op > :first-child, .framer-lNnrS .framer-1a7nkd3 > :first-child, .framer-lNnrS .framer-1kwgjh5 > :first-child, .framer-lNnrS .framer-bovqat > :first-child, .framer-lNnrS .framer-1jye3tc > :first-child, .framer-lNnrS .framer-z3xlow > :first-child { margin-left: 0px; } .framer-lNnrS .framer-188xpxp > :last-child, .framer-lNnrS .framer-ecfz8d > :last-child, .framer-lNnrS .framer-17u9oqd > :last-child, .framer-lNnrS .framer-o38rqy > :last-child, .framer-lNnrS .framer-1d9vumy > :last-child, .framer-lNnrS .framer-1zgs8v > :last-child, .framer-lNnrS .framer-1n2r1op > :last-child, .framer-lNnrS .framer-1a7nkd3 > :last-child, .framer-lNnrS .framer-1kwgjh5 > :last-child, .framer-lNnrS .framer-bovqat > :last-child, .framer-lNnrS .framer-1jye3tc > :last-child, .framer-lNnrS .framer-z3xlow > :last-child { margin-right: 0px; } .framer-lNnrS .framer-ecfz8d > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-lNnrS .framer-17u9oqd > *, .framer-lNnrS .framer-1d9vumy > *, .framer-lNnrS .framer-1kwgjh5 > *, .framer-lNnrS .framer-z3xlow > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-lNnrS .framer-18784l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lNnrS .framer-18784l > :first-child, .framer-lNnrS .framer-jjqeja > :first-child { margin-top: 0px; } .framer-lNnrS .framer-18784l > :last-child, .framer-lNnrS .framer-jjqeja > :last-child { margin-bottom: 0px; } .framer-lNnrS .framer-bovqat > *, .framer-lNnrS .framer-1jye3tc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lNnrS .framer-jjqeja > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \"@media (min-width: 1200px) { .framer-lNnrS .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-lNnrS .hidden-1gg9ewj { display: none !important; } .${metadata.bodyClassName} { background: #0A0A0A; } .framer-lNnrS .framer-72rtr7 { width: 810px; } .framer-lNnrS .framer-1mf7t3r { height: var(--framer-aspect-ratio-supported, 936px); } .framer-lNnrS .framer-kimcva { height: 0px; left: unset; top: 0px; width: 238px; } .framer-lNnrS .framer-17u9oqd { width: 181px; } .framer-lNnrS .framer-80idvd { left: 16px; } .framer-lNnrS .framer-3ar4qk { right: 16px; } .framer-lNnrS .framer-1vg03xi { height: 67px; width: 260px; } .framer-lNnrS .framer-1iyui2i { height: 67px; width: 238px; } .framer-lNnrS .framer-mkx9xa { height: 29px; width: 364px; } .framer-lNnrS .framer-13pt8t6 { height: 17px; width: 278px; }}`, `@media (max-width: 809px) { .framer-lNnrS .hidden-14ij7c5 { display: none !important; } .${metadata.bodyClassName} { background: #0A0A0A; } .framer-lNnrS .framer-72rtr7 { height: 771px; width: 390px; } .framer-lNnrS .framer-w3pjj5-container { opacity: 0.4; top: 175px; } .framer-lNnrS .framer-1mf7t3r { height: var(--framer-aspect-ratio-supported, 516px); top: 528px; } .framer-lNnrS .framer-1k51vbz { bottom: unset; right: -176px; top: 126px; } .framer-lNnrS .framer-1ugybzb { top: 426px; } .framer-lNnrS .framer-ujirqq { bottom: unset; left: -166px; top: 126px; } .framer-lNnrS .framer-1r1fwd4 { top: 397px; } .framer-lNnrS .framer-1pvc9jx-container { left: 50%; top: 333px; } .framer-lNnrS .framer-b2chhh-container { order: 0; } .framer-lNnrS .framer-bovqat { min-height: unset; min-width: unset; order: 1; } .framer-lNnrS .framer-1jye3tc { min-height: unset; min-width: unset; order: 0; } .framer-lNnrS .framer-96u3ve { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 0px 0px 0px 0px; top: 469px; transform: translateX(-50%); width: min-content; } .framer-lNnrS .framer-17pe5by, .framer-lNnrS .framer-c981wk { left: unset; position: relative; top: unset; transform: perspective(1200px); } .framer-lNnrS .framer-n04cqx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 0px 0px 0px 0px; top: 511px; transform: translateX(-50%); width: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lNnrS .framer-96u3ve, .framer-lNnrS .framer-n04cqx { gap: 0px; } .framer-lNnrS .framer-96u3ve > *, .framer-lNnrS .framer-n04cqx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lNnrS .framer-96u3ve > :first-child, .framer-lNnrS .framer-n04cqx > :first-child { margin-top: 0px; } .framer-lNnrS .framer-96u3ve > :last-child, .framer-lNnrS .framer-n04cqx > :last-child { margin-bottom: 0px; } }}`]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicHeight 909\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZBUmmvPht\":{\"layout\":[\"fixed\",\"fixed\"]},\"PZoZkbxwc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerImmutableVariables false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-lNnrS\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 909,\n  width: 1200\n};\naddFonts(FrameraugiA20Il, [{\n  family: \"Roboto Serif\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\",\n  weight: \"500\"\n}, {\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\",\n  weight: \"500\"\n}, {\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\",\n  weight: \"600\"\n}, {\n  family: \"Source Code Pro\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\",\n  weight: \"300\"\n}, ...TickerFonts, ...InputFonts, ...BUTTONFonts, ...TextComponentFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerImmutableVariables\": \"false\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZBUmmvPht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PZoZkbxwc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"909\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "ref", "domain", "parameters", "isExternalURL", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "validateForm", "te", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "formBody", "data", "entries", "data1", "entries1", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "RichText", "x", "css", "FramerB4gTYp3p0", "withCSS", "B4gTYp3p0_default", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "SPZ9ENdka", "jcBCFsJQc", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y0vtwd", "args", "onMouseEnter1iwh0vb", "onMouseLeavenc4l73", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "RichText", "x", "css", "FramerTk6Cjt0uU", "withCSS", "Tk6Cjt0uU_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "InputFonts", "Input_default", "BUTTONFonts", "Tk6Cjt0uU_default", "TextComponentFonts", "B4gTYp3p0_default", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "removeHiddenBreakpointLayers", "breakpoints", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "animation6", "transition3", "animation7", "animation8", "transformTemplate1", "transition4", "animation9", "transition5", "animation10", "animation11", "transition6", "animation12", "transformTemplate2", "animation13", "animation14", "transition7", "animation15", "animation16", "Overlay", "children", "blockDocumentScrolling", "visible", "setVisible", "useOverlayState", "transition8", "animation17", "animation18", "transition9", "animation19", "animation20", "animation21", "transformTemplate3", "transition10", "animation22", "animation23", "animation24", "animation25", "animation26", "transformTemplate4", "transition11", "animation27", "animation28", "transformTemplate5", "transition12", "animation29", "animation30", "transformTemplate6", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit42m929", "overlay", "args", "tapzn6atv", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "Ticker", "Image2", "x", "RichText", "l", "Input_default", "resolveLink", "AnimatePresence", "qa", "Tk6Cjt0uU_default", "B4gTYp3p0_default", "overlay1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "TickerFonts", "InputFonts", "BUTTONFonts", "TextComponentFonts", "__FramerMetadata__"]
}
