{
  "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.4.0/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/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/BYK2Fj9DjEcXqWV2BH2u/jLlrJ1SHhteJIaKcysiI/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);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}: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}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__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\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;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 */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import SparkleLine from\"#framer/local/canvasComponent/CNVheZzvf/CNVheZzvf.js\";import Navbar from\"#framer/local/canvasComponent/ji656zHC1/ji656zHC1.js\";import Icon from\"#framer/local/canvasComponent/Kgza73Auw/Kgza73Auw.js\";import FeatureCard from\"#framer/local/canvasComponent/p2IscBfx0/p2IscBfx0.js\";import Footer from\"#framer/local/canvasComponent/PH1Hvbooc/PH1Hvbooc.js\";import CTA from\"#framer/local/canvasComponent/RGnW9Q5Fe/RGnW9Q5Fe.js\";import*as sharedStyle4 from\"#framer/local/css/a7nQTTPze/a7nQTTPze.js\";import*as sharedStyle1 from\"#framer/local/css/AFpDLzJk7/AFpDLzJk7.js\";import*as sharedStyle3 from\"#framer/local/css/ITXrq3khv/ITXrq3khv.js\";import*as sharedStyle2 from\"#framer/local/css/oQ3fh3UKS/oQ3fh3UKS.js\";import*as sharedStyle from\"#framer/local/css/UAAbiEptW/UAAbiEptW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const SparkleLineFonts=getFonts(SparkleLine);const TickerFonts=getFonts(Ticker);const IconFonts=getFonts(Icon);const FeatureCardFonts=getFonts(FeatureCard);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={D1IxbwGsF:\"(min-width: 768px) and (max-width: 1023px)\",OvYCTG1vz:\"(min-width: 1024px) and (max-width: 1439px)\",veQ2eYiFk:\"(max-width: 767px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HRdCH\";const variantClassNames={D1IxbwGsF:\"framer-v-1yq83xo\",OvYCTG1vz:\"framer-v-dpwfe3\",veQ2eYiFk:\"framer-v-jjjlfg\",WQLkyLRf1:\"framer-v-72rtr7\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"OvYCTG1vz\",Desktop:\"WQLkyLRf1\",Phone:\"veQ2eYiFk\",Tablet:\"D1IxbwGsF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"D1IxbwGsF\",\"veQ2eYiFk\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"veQ2eYiFk\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"veQ2eYiFk\")return true;return false;};const elementId=useRouteElementId(\"WWhwGsla_\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:'html body { background: linear-gradient(180deg, rgb(247, 247, 247) 0%, var(--token-540962e0-6c3b-4fd1-b557-0f66868c7593, rgb(134, 89, 255)) /* {\"name\":\"Button\"} */ 50%); }'}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":WWhwGsla_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WWhwGsla_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WWhwGsla_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WWhwGsla_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kwx17-container\",nodeId:\"w0QwG9NZk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{oTLDVYohL:resolvedLinks[2],variant:\"xUlZYroZu\"},OvYCTG1vz:{oTLDVYohL:resolvedLinks[1],variant:\"pd1xGnQIj\"},veQ2eYiFk:{oTLDVYohL:resolvedLinks[3],variant:\"xUlZYroZu\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"w0QwG9NZk\",layoutId:\"w0QwG9NZk\",oTLDVYohL:resolvedLinks[0],style:{width:\"100%\"},variant:\"ei3pIrrQu\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15u92n0\",\"data-framer-name\":\"Top-Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tp2ixg\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flb3n\",\"data-border\":true,\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i585s1\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+80+0+535}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+80+0+225.7464,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vmvtan-container hidden-1yq83xo hidden-jjjlfg\",nodeId:\"KzfS0zyiW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"KzfS0zyiW\",layoutId:\"KzfS0zyiW\",NgkR7lUoR:\"OdOOTGTwb\",QFlRYo0BQ:\"The Problem\",rNnidkyU3:false,style:{width:\"100%\"},T1vg4rpew:true,variant:\"EgIpy5VOn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ant7n6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bvi8yu\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fe5sse\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-164lny4\",\"data-styles-preset\":\"UAAbiEptW\",style:{\"--framer-text-alignment\":\"center\"},children:[\"All Your Bugs,\",/*#__PURE__*/_jsx(\"br\",{}),\"One Organised Nest.\"]})}),className:\"framer-1nng3b2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Your designers, developers, and clients can capture, track, and resolve issues \",/*#__PURE__*/_jsx(\"br\",{}),\"without missing a deadline.\"]})}),className:\"framer-t1v8he\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-in1h8l\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+0+0+360+0),pixelHeight:636,pixelWidth:1084,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg\",srcSet:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg 1084w\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+0+0+408+0),pixelHeight:636,pixelWidth:1084,sizes:`max(${componentViewport?.width||\"100vw\"} - 128px, 1px)`,src:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg\",srcSet:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg 1084w\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+76+0+0+340+0),pixelHeight:636,pixelWidth:1084,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg\",srcSet:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg 1084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+0+0+408+0),pixelHeight:636,pixelWidth:1084,sizes:\"1080px\",src:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg\",srcSet:\"https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5yFlEEB9TWK3823mQf7kTaI14.svg 1084w\"},className:\"framer-188h4q5\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsxr8w\",\"data-framer-name\":\"Logo\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+834.5+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/hMx2THaD4dgMXp3Zn2AfEdbK9dE.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+1102+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/hMx2THaD4dgMXp3Zn2AfEdbK9dE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+468+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/hMx2THaD4dgMXp3Zn2AfEdbK9dE.svg\"},className:\"framer-7ho3de hidden-jjjlfg\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+834.5+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/EEhdemj8Zm0jIztlU4SOMhnqAMY.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+1102+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/EEhdemj8Zm0jIztlU4SOMhnqAMY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+468+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/EEhdemj8Zm0jIztlU4SOMhnqAMY.svg\"},className:\"framer-1fjzipa hidden-jjjlfg\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+834.5+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/AbvHZb4gaLrT1HHvKzy9LmwY.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+1102+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/AbvHZb4gaLrT1HHvKzy9LmwY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+468+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/AbvHZb4gaLrT1HHvKzy9LmwY.svg\"},className:\"framer-lw29rk hidden-jjjlfg\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+834.5+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/qkEMpG8ShFBrzpJGeUafE0i7B7Q.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+1102+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/qkEMpG8ShFBrzpJGeUafE0i7B7Q.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+468+0),pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/qkEMpG8ShFBrzpJGeUafE0i7B7Q.svg\"},className:\"framer-26ut2t hidden-jjjlfg\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1emi096-container hidden-72rtr7 hidden-dpwfe3 hidden-1yq83xo\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mhYf2BtDy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"mhYf2BtDy\",layoutId:\"mhYf2BtDy\",padding:10,paddingBottom:0,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/hMx2THaD4dgMXp3Zn2AfEdbK9dE.svg\"},className:\"framer-1klbsgz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/EEhdemj8Zm0jIztlU4SOMhnqAMY.svg\"},className:\"framer-1bza2x7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/AbvHZb4gaLrT1HHvKzy9LmwY.svg\"},className:\"framer-ohggrd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:31,pixelWidth:124,src:\"https://framerusercontent.com/images/qkEMpG8ShFBrzpJGeUafE0i7B7Q.svg\"},className:\"framer-10m8h9k\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19bdseh\",\"data-border\":true,\"data-framer-name\":\"Problem Statement\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+1024.5+-9},OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1332+-9},veQ2eYiFk:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+762.5+-9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+698+-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p19atv-container\",nodeId:\"RiUHNpHNj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{T1vg4rpew:true,variant:\"zJgENgNn0\"},OvYCTG1vz:{variant:\"CQoi7x8ZM\"},veQ2eYiFk:{T1vg4rpew:true,variant:\"ky6vMwA6p\"}},children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"RiUHNpHNj\",layoutId:\"RiUHNpHNj\",NgkR7lUoR:\"OdOOTGTwb\",QFlRYo0BQ:\"The Problem\",rNnidkyU3:true,style:{width:\"100%\"},T1vg4rpew:false,variant:\"EgIpy5VOn\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9muhde\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nr9g1e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21g01l\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",children:\"Bug tracking shouldn\u2019t feel like detective work.\"})}),className:\"framer-1nwk6d2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",children:\"Scattered feedback slows launches, frustrates clients, and buries dev teams in \u201CDid you see this?\u201D messages.\"})}),className:\"framer-1eins4e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w8gnr8\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e9l7ps\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{y:(componentViewport?.y||0)+0+0+0+0+0+1024.5+80+0+0+204+0+0+53},OvYCTG1vz:{y:(componentViewport?.y||0)+0+0+0+0+0+1332+80+0+0+212+0+0+53},veQ2eYiFk:{height:25,width:\"26px\",y:(componentViewport?.y||0)+0+0+0+0+0+762.5+80+0+0+0+204+0+0+52.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+0+0+0+698+80+0+0+212+0+0+53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ypdfu9-container\",nodeId:\"jWK5ry8Dn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"jWK5ry8Dn\",layoutId:\"jWK5ry8Dn\",style:{height:\"100%\",width:\"100%\"},variant:\"m3aViPZvv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",children:\"Lost bug reports\"})}),className:\"framer-dv6awn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dszcb5\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{y:(componentViewport?.y||0)+0+0+0+0+0+1024.5+80+0+0+204+0+142+53},OvYCTG1vz:{y:(componentViewport?.y||0)+0+0+0+0+0+1332+80+0+0+212+0+142+53},veQ2eYiFk:{height:25,width:\"26px\",y:(componentViewport?.y||0)+0+0+0+0+0+762.5+80+0+0+0+204+0+142+52.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+0+0+0+698+80+0+0+212+0+142+53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-obwsf4-container\",nodeId:\"OA2f0RizI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"OA2f0RizI\",layoutId:\"OA2f0RizI\",style:{height:\"100%\",width:\"100%\"},variant:\"m3aViPZvv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",children:\"No prioritization\"})}),className:\"framer-r19ksb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wk0f28\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{y:(componentViewport?.y||0)+0+0+0+0+0+1024.5+80+0+0+204+0+284+53},OvYCTG1vz:{y:(componentViewport?.y||0)+0+0+0+0+0+1332+80+0+0+212+0+284+53},veQ2eYiFk:{height:25,width:\"26px\",y:(componentViewport?.y||0)+0+0+0+0+0+762.5+80+0+0+0+204+0+284+52.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+0+0+0+698+80+0+0+212+0+284+53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-64jo86-container\",nodeId:\"MkZdPTJXd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"MkZdPTJXd\",layoutId:\"MkZdPTJXd\",style:{height:\"100%\",width:\"100%\"},variant:\"m3aViPZvv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",children:\"Dev & QA disconnect\"})}),className:\"framer-19w8uc6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1373oo2\",\"data-border\":true,\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1024.5+80+121+12+0),pixelHeight:1408,pixelWidth:1944,src:\"https://framerusercontent.com/images/yGtPd6aCSZP83zMCaq1qUcQSPR0.png\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1332+80+125+12+0),pixelHeight:1408,pixelWidth:1944,src:\"https://framerusercontent.com/images/yGtPd6aCSZP83zMCaq1qUcQSPR0.png\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+762.5+80+0+658+12+0),pixelHeight:1408,pixelWidth:1944,src:\"https://framerusercontent.com/images/yGtPd6aCSZP83zMCaq1qUcQSPR0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+698+80+125+12+0),pixelHeight:1408,pixelWidth:1944,src:\"https://framerusercontent.com/images/yGtPd6aCSZP83zMCaq1qUcQSPR0.png\"},className:\"framer-1mgtj1s\",\"data-border\":true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbcd6u\",\"data-border\":true,\"data-framer-name\":\"Feature Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvm30t\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"left\"},children:\"Store. Track. Squash.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Store. Track. Squash.\"})}),className:\"framer-15pblbm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Everything you need to move from chaos to clarity.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Everything you need to move from chaos to clarity.\"})}),className:\"framer-1kle3ex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4ympa\",\"data-framer-name\":\" Cards Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+0},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+0},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lsghd3-container\",nodeId:\"knOxnuXM_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\",x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"Every report, screenshot, and comment in one workspace\",id:\"knOxnuXM_\",layoutId:\"knOxnuXM_\",mvXknVR6A:\"Central Bug Hub\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderStyle:\"solid\",borderWidth:0},Z98mAS5r3:\"yAR16SxQR\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+0},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+0},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+398}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rh7iel-container\",nodeId:\"sgUmD2dNw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\",x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"Simple but powerful workflow tools\",id:\"sgUmD2dNw\",layoutId:\"sgUmD2dNw\",lbLPXkUK6:addImageAlt({pixelHeight:916,pixelWidth:1200,src:\"https://framerusercontent.com/images/YAXl1DyKN8RRIKG2cNQl4Or3s.png\",srcSet:\"https://framerusercontent.com/images/YAXl1DyKN8RRIKG2cNQl4Or3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/YAXl1DyKN8RRIKG2cNQl4Or3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YAXl1DyKN8RRIKG2cNQl4Or3s.png 1200w\"},\"\"),mvXknVR6A:\"Labels, Priorities, Assignees\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderBottomWidth:0,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},Z98mAS5r3:\"NSjC9unU0\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+398},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+0},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+796}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqdc1a-container\",nodeId:\"MwtW0zC8w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\",x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"Sort by page, priority, assignee, or status in a click\",id:\"MwtW0zC8w\",layoutId:\"MwtW0zC8w\",lbLPXkUK6:addImageAlt({pixelHeight:916,pixelWidth:1200,src:\"https://framerusercontent.com/images/EmsqREZnWBl3X9SiJrnQXsD7cKU.png\",srcSet:\"https://framerusercontent.com/images/EmsqREZnWBl3X9SiJrnQXsD7cKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EmsqREZnWBl3X9SiJrnQXsD7cKU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EmsqREZnWBl3X9SiJrnQXsD7cKU.png 1200w\"},\"\"),mvXknVR6A:\"Kanban & Filters\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderStyle:\"solid\",borderWidth:0},Z98mAS5r3:\"dLVX8j4sn\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rt8ysv hidden-1yq83xo hidden-jjjlfg\",\"data-framer-name\":\"Sparkle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3br28\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lp544c\",\"data-border\":true,\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdno8l\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aezi3p\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bthyle\",\"data-border\":true,\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlgm07\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jj11k3\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uk1qri\",\"data-border\":true,\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6v3gy\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kczk6\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9hrf45\",\"data-border\":true,\"data-framer-name\":\"Dot\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+398},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+398},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+1194}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+398,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y6ojz-container\",nodeId:\"OellSaSDa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\",x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"Instantly know what\u2019s open, resolved, verified\",id:\"OellSaSDa\",layoutId:\"OellSaSDa\",lbLPXkUK6:addImageAlt({pixelHeight:916,pixelWidth:1200,src:\"https://framerusercontent.com/images/8iFdEqIhW62aZDV0rxdEJ0aOr0.png\",srcSet:\"https://framerusercontent.com/images/8iFdEqIhW62aZDV0rxdEJ0aOr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iFdEqIhW62aZDV0rxdEJ0aOr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iFdEqIhW62aZDV0rxdEJ0aOr0.png 1200w\"},\"\"),mvXknVR6A:\"Status Tracking\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderStyle:\"solid\",borderWidth:0},Z98mAS5r3:\"FboPZBIFY\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+796},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+398},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+1592}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+398,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b6mob4-container\",nodeId:\"Pq7to2bQG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:0,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\",x_kF0Qwdn:{borderBottomWidth:1,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"Point-and-click capture directly on staging or live sites\",id:\"Pq7to2bQG\",layoutId:\"Pq7to2bQG\",lbLPXkUK6:addImageAlt({pixelHeight:916,pixelWidth:1200,src:\"https://framerusercontent.com/images/CC2RTwgLogzKag4bo2UOesFXJo.png\",srcSet:\"https://framerusercontent.com/images/CC2RTwgLogzKag4bo2UOesFXJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/CC2RTwgLogzKag4bo2UOesFXJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CC2RTwgLogzKag4bo2UOesFXJo.png 1200w\"},\"\"),mvXknVR6A:\"Visual Annotations\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderBottomWidth:0,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},Z98mAS5r3:\"zHfavGyIO\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+80+246+0+796},OvYCTG1vz:{width:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+80+248+0+398},veQ2eYiFk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+80+208+0+1990}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"413.3333px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+80+248+0+398,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f6o3q5-container\",nodeId:\"lwOzxpn8N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{x_kF0Qwdn:{borderBottomWidth:0,borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}},OvYCTG1vz:{variant:\"xwQWdz2jP\"},veQ2eYiFk:{style:{width:\"100%\"},variant:\"Nbvv2yqk6\"}},children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",HKh0Zt6GJ:\"No login required; clients add context, you get action-ready tickets\",id:\"lwOzxpn8N\",layoutId:\"lwOzxpn8N\",lbLPXkUK6:addImageAlt({pixelHeight:916,pixelWidth:1200,src:\"https://framerusercontent.com/images/00tOAiAI5VT2dDqXZsOZzAQCLqo.png\",srcSet:\"https://framerusercontent.com/images/00tOAiAI5VT2dDqXZsOZzAQCLqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/00tOAiAI5VT2dDqXZsOZzAQCLqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/00tOAiAI5VT2dDqXZsOZzAQCLqo.png 1200w\"},\"\"),mvXknVR6A:\"Client-Friendly Links\",style:{height:\"100%\",width:\"100%\"},variant:\"bVHrKFMQD\",width:\"100%\",x_kF0Qwdn:{borderColor:\"var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, rgb(224, 224, 224))\",borderStyle:\"solid\",borderWidth:0},Z98mAS5r3:\"Uq55HiA6g\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+1802.5+-9},OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2118+-9},veQ2eYiFk:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+1913.5+-9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+1484+-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jft7u0-container\",nodeId:\"tKaoak2TF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{T1vg4rpew:true,variant:\"zJgENgNn0\"},OvYCTG1vz:{variant:\"CQoi7x8ZM\"},veQ2eYiFk:{T1vg4rpew:true,variant:\"ky6vMwA6p\"}},children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"tKaoak2TF\",layoutId:\"tKaoak2TF\",NgkR7lUoR:\"CDNxl_F7N\",QFlRYo0BQ:\"Core Features\",rNnidkyU3:true,style:{width:\"100%\"},T1vg4rpew:false,variant:\"EgIpy5VOn\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ee0at0\",\"data-border\":true,\"data-framer-name\":\"How it Works Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9hxjl\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"left\"},children:\"From first report to final fix.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"center\"},children:\"From first report to final fix.\"})}),className:\"framer-wa641d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"left\"},children:\"BugNest slides seamlessly into your existing process.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"BugNest slides seamlessly into your existing process.\"})}),className:\"framer-cvgog\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18m7lv7\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oinsw4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3402.5+80+246+0+0+0),pixelHeight:72,pixelWidth:30,src:\"https://framerusercontent.com/images/4GB09E4EECDi5RVsX1Z9fYtVJsA.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3322+80+248+32+0+0),pixelHeight:72,pixelWidth:30,src:\"https://framerusercontent.com/images/4GB09E4EECDi5RVsX1Z9fYtVJsA.svg\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4637.5+80+248+0+0+0+0),pixelHeight:72,pixelWidth:30,src:\"https://framerusercontent.com/images/4GB09E4EECDi5RVsX1Z9fYtVJsA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2688+80+248+40+0+0),pixelHeight:72,pixelWidth:30,src:\"https://framerusercontent.com/images/4GB09E4EECDi5RVsX1Z9fYtVJsA.svg\"},className:\"framer-19uxlor\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9mwh54\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5xhlbt\",\"data-styles-preset\":\"ITXrq3khv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Support reports a bug\"})}),className:\"framer-ml2tw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"To simplify and streamline how dev  teams To simplify and streamline.\"})}),className:\"framer-10ibvtw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3402.5+80+246+13.4153),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},transformTemplate:transformTemplate2},OvYCTG1vz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3322+80+248+10),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2688+80+248+10),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},className:\"framer-s0l7z8 hidden-jjjlfg\",\"data-framer-name\":\"Arrow\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3402.5+80+246+13.4153),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},transformTemplate:transformTemplate2},OvYCTG1vz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3322+80+248+10),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2688+80+248+10),pixelHeight:30,pixelWidth:176,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/TEPzzCG7ICJidnt3gl1VDcfb44.svg\"},className:\"framer-1z03qul hidden-jjjlfg\",\"data-framer-name\":\"Arrow\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sg61t9\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3402.5+80+246+0+0+0),pixelHeight:72,pixelWidth:48,src:\"https://framerusercontent.com/images/oeXgGf2BFT6WvbsS6ldTJyqBA.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3322+80+248+32+0+0),pixelHeight:72,pixelWidth:48,src:\"https://framerusercontent.com/images/oeXgGf2BFT6WvbsS6ldTJyqBA.svg\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4637.5+80+248+0+322+0+0),pixelHeight:72,pixelWidth:48,src:\"https://framerusercontent.com/images/oeXgGf2BFT6WvbsS6ldTJyqBA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2688+80+248+40+0+0),pixelHeight:72,pixelWidth:48,src:\"https://framerusercontent.com/images/oeXgGf2BFT6WvbsS6ldTJyqBA.svg\"},className:\"framer-ggle4p\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ywq7y\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5xhlbt\",\"data-styles-preset\":\"ITXrq3khv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tag it, assign it, prioritize it\"})}),className:\"framer-f8fuc2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Auto-assign owners, discuss inline, and update status in real time\"})}),className:\"framer-14zpc9n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-no9m3u\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3402.5+80+246+0+0+0),pixelHeight:72,pixelWidth:52,src:\"https://framerusercontent.com/images/UR5UjVYupQjsVcgY5l78CTsxo.svg\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3322+80+248+32+0+0),pixelHeight:72,pixelWidth:52,src:\"https://framerusercontent.com/images/UR5UjVYupQjsVcgY5l78CTsxo.svg\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4637.5+80+248+0+644+0+0),pixelHeight:72,pixelWidth:52,src:\"https://framerusercontent.com/images/UR5UjVYupQjsVcgY5l78CTsxo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2688+80+248+40+0+0),pixelHeight:72,pixelWidth:52,src:\"https://framerusercontent.com/images/UR5UjVYupQjsVcgY5l78CTsxo.svg\"},className:\"framer-1ui6k3m\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgcg9n\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5xhlbt\",\"data-styles-preset\":\"ITXrq3khv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Mark as resolved\"})}),className:\"framer-sfr92o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Done tickets notify clients instantly; dashboards prove you\u2019re launch-ready\"})}),className:\"framer-11r5cg6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+3402.5+-9},OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+3322+-9},veQ2eYiFk:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+4637.5+-9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+2688+-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ko6t2-container\",nodeId:\"W5XYTVRsC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{T1vg4rpew:true,variant:\"zJgENgNn0\"},OvYCTG1vz:{variant:\"CQoi7x8ZM\"},veQ2eYiFk:{T1vg4rpew:true,variant:\"ky6vMwA6p\"}},children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"W5XYTVRsC\",layoutId:\"W5XYTVRsC\",NgkR7lUoR:\"RUcRiKXJV\",QFlRYo0BQ:\"How It Work\",rNnidkyU3:true,style:{width:\"100%\"},T1vg4rpew:false,variant:\"EgIpy5VOn\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ep4fvc\",\"data-border\":true,\"data-framer-name\":\"Integrations Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127bop1\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"left\"},children:\"Connect BugNest to the tools you already use.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-yfhtxb\",\"data-styles-preset\":\"oQ3fh3UKS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Connect BugNest to the tools you already use.\"})}),className:\"framer-18xt229\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{veQ2eYiFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Keep feedback flowing and statuses synced\u2014no extra logins.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k45yvr\",\"data-styles-preset\":\"AFpDLzJk7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Keep feedback flowing and statuses synced\u2014no extra logins.\"})}),className:\"framer-yfsy1k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wyotn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8j1i8\",\"data-framer-name\":\"Illustration\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1p8opcf\",\"data-framer-name\":\"Illustration\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:196,intrinsicWidth:1008,svg:'<svg width=\"1008\" height=\"196\" viewBox=\"0 0 1008 196\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_593_15417)\">\\n<path d=\"M503 810.959C834.371 810.959 1103 642.842 1103 435.459C1103 228.076 834.371 59.959 503 59.959C171.629 59.959 -97 228.076 -97 435.459C-97 642.842 171.629 810.959 503 810.959Z\" fill=\"url(#paint0_radial_593_15417)\"/>\\n<path d=\"M1102.25 435.459C1102.25 538.799 1035.32 632.469 926.866 700.342C818.425 768.208 668.567 810.209 503 810.209C337.433 810.209 187.575 768.208 79.134 700.342C-29.318 632.469 -96.25 538.799 -96.25 435.459C-96.25 332.119 -29.318 238.449 79.134 170.576C187.575 102.71 337.433 60.709 503 60.709C668.567 60.709 818.425 102.709 926.866 170.576C1035.32 238.449 1102.25 332.119 1102.25 435.459Z\" stroke=\"url(#paint1_radial_593_15417)\" stroke-opacity=\"0.3\" stroke-width=\"1.5\"/>\\n</g>\\n<rect x=\"445\" width=\"118\" height=\"118\" rx=\"59\" fill=\"#635BFF\" fill-opacity=\"0.06\"/>\\n<rect x=\"451\" y=\"6\" width=\"106.875\" height=\"106.875\" rx=\"53.4375\" fill=\"#635BFF\" fill-opacity=\"0.12\"/>\\n<rect x=\"457\" y=\"12\" width=\"95\" height=\"95\" rx=\"47.5\" fill=\"#635BFF\"/>\\n<rect x=\"457\" y=\"12\" width=\"95\" height=\"95\" rx=\"47.5\" fill=\"url(#paint2_linear_593_15417)\"/>\\n<g clip-path=\"url(#clip1_593_15417)\">\\n<path d=\"M528.549 64.976C526.502 64.2215 524.397 63.632 522.254 63.2076C522.225 61.9277 522.106 60.6514 521.9 59.388C523.836 58.6203 525.675 57.6296 527.382 56.4361C527.926 56.0136 528.284 55.3964 528.381 54.7147C528.479 54.033 528.307 53.3402 527.903 52.7824C527.5 52.2247 526.895 51.8457 526.217 51.7254C525.539 51.6051 524.841 51.753 524.27 52.1378C514.562 59.2112 492.864 59.2112 483.173 52.1378C482.603 51.7251 481.893 51.5557 481.198 51.6669C480.503 51.7781 479.881 52.1608 479.468 52.7308C479.055 53.3008 478.886 54.0114 478.997 54.7062C479.108 55.4011 479.491 56.0233 480.061 56.4361C481.768 57.6291 483.607 58.6217 485.543 59.388C485.336 60.6514 485.218 61.9277 485.189 63.2076C483.048 63.632 480.945 64.2215 478.894 64.976C478.569 65.1014 478.272 65.2896 478.019 65.5298C477.767 65.7701 477.564 66.0577 477.423 66.3763C477.282 66.6949 477.205 67.0381 477.196 67.3865C477.188 67.7348 477.248 68.0814 477.373 68.4066C477.498 68.7317 477.687 69.0289 477.927 69.2813C478.167 69.5336 478.455 69.7362 478.773 69.8774C479.092 70.0187 479.435 70.0957 479.784 70.1043C480.132 70.1129 480.479 70.0527 480.804 69.9273C482.342 69.3491 483.921 68.8826 485.526 68.5315C485.745 69.8089 486.058 71.0683 486.462 72.2993C484.258 73.6317 482.267 75.2881 480.556 77.2129C480.106 77.748 479.883 78.4379 479.936 79.1351C479.988 79.8323 480.311 80.4814 480.835 80.9435C481.36 81.4056 482.045 81.6441 482.743 81.6078C483.441 81.5716 484.097 81.2635 484.571 80.7496C485.768 79.3931 487.142 78.2035 488.655 77.2129C490.133 79.9653 492.311 82.2794 494.968 83.9219C497.626 85.5645 500.669 86.4774 503.792 86.5686C506.907 86.4552 509.937 85.5248 512.578 83.8707C515.22 82.2166 517.38 79.897 518.842 77.1445C520.356 78.1348 521.73 79.3231 522.926 80.6812C523.158 80.9449 523.44 81.1602 523.755 81.3149C524.071 81.4696 524.413 81.5607 524.764 81.5829C525.115 81.6051 525.466 81.5581 525.799 81.4444C526.131 81.3308 526.438 81.1527 526.702 80.9205C526.965 80.6883 527.181 80.4064 527.335 80.091C527.49 79.7755 527.581 79.4327 527.603 79.0821C527.625 78.7315 527.578 78.3799 527.465 78.0474C527.351 77.715 527.173 77.4082 526.941 77.1445C525.23 75.2189 523.239 73.5616 521.035 72.2285C521.44 70.9978 521.754 69.7387 521.971 68.4608C523.576 68.8145 525.154 69.2789 526.693 69.859C527.195 70.1577 527.781 70.2827 528.361 70.2146C528.941 70.1466 529.482 69.8892 529.901 69.4824C530.32 69.0756 530.593 68.5421 530.678 67.9644C530.763 67.3867 530.655 66.7971 530.371 66.2869C530.182 65.9484 529.921 65.6556 529.606 65.4291C529.291 65.2026 528.93 65.0479 528.549 64.976ZM491.414 64.3229C491.414 63.3849 491.786 62.4853 492.45 61.822C493.113 61.1588 494.012 60.7862 494.95 60.7862C495.888 60.7862 496.788 61.1588 497.451 61.822C498.114 62.4853 498.487 63.3849 498.487 64.3229C498.487 65.2608 498.114 66.1604 497.451 66.8237C496.788 67.4869 495.888 67.8595 494.95 67.8595C494.012 67.8595 493.113 67.4869 492.45 66.8237C491.786 66.1604 491.414 65.2608 491.414 64.3229ZM500.255 79.4952C499.317 79.4952 498.418 79.1226 497.755 78.4594C497.091 77.7961 496.719 76.8965 496.719 75.9586C496.719 75.0206 497.091 74.121 497.755 73.4577C498.418 72.7945 499.317 72.4219 500.255 72.4219C501.193 72.4219 502.093 72.7945 502.756 73.4577C503.42 74.121 503.792 75.0206 503.792 75.9586C503.792 76.8965 503.42 77.7961 502.756 78.4594C502.093 79.1226 501.193 79.4952 500.255 79.4952ZM512.634 70.6535C511.696 70.6535 510.796 70.2809 510.133 69.6177C509.47 68.9544 509.097 68.0548 509.097 67.1168C509.097 66.1789 509.47 65.2793 510.133 64.616C510.796 63.9528 511.696 63.5802 512.634 63.5802C513.572 63.5802 514.471 63.9528 515.135 64.616C515.798 65.2793 516.171 66.1789 516.171 67.1168C516.171 68.0548 515.798 68.9544 515.135 69.6177C514.471 70.2809 513.572 70.6535 512.634 70.6535ZM492.616 40.4667C493.493 41.6692 494.564 42.7137 495.783 43.5625C493.269 45.0755 491.124 47.1293 489.504 49.5749C498.741 52.9272 508.862 52.9272 518.099 49.5749C516.479 47.1293 514.334 45.0755 511.82 43.5625C513.041 42.7074 514.111 41.6557 514.987 40.4502C515.699 40.4943 516.407 40.308 517.005 39.9188C517.603 39.5297 518.06 38.9583 518.309 38.2893C518.557 37.6202 518.584 36.889 518.384 36.2038C518.185 35.5185 517.771 34.9155 517.202 34.484C516.634 34.0526 515.941 33.8155 515.228 33.8078C514.514 33.8002 513.817 34.0223 513.239 34.4415C512.662 34.8607 512.235 35.4546 512.021 36.1355C511.807 36.8163 511.817 37.5479 512.051 38.2221C510.881 39.8462 509.247 41.0789 507.364 41.7588C505.04 41.1934 502.615 41.1934 500.291 41.7588C498.409 41.0785 496.776 39.8459 495.606 38.2221C495.836 37.5495 495.844 36.8208 495.63 36.143C495.416 35.4652 494.989 34.874 494.414 34.4562C493.839 34.0384 493.145 33.8159 492.434 33.8215C491.723 33.8271 491.033 34.0605 490.464 34.4873C489.896 34.9142 489.479 35.512 489.275 36.1931C489.072 36.8742 489.092 37.6027 489.332 38.2716C489.573 38.9406 490.022 39.5147 490.613 39.9098C491.204 40.3049 491.906 40.5001 492.616 40.4667Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter0_d_593_15417)\">\\n<rect x=\"325\" y=\"44\" width=\"60\" height=\"60\" rx=\"30\" fill=\"#4A164B\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"325.5\" y=\"44.5\" width=\"59\" height=\"59\" rx=\"29.5\" stroke=\"#E0E0E0\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M346.324 77.9616C346.324 79.7039 344.916 81.112 343.174 81.112C341.432 81.112 340.023 79.7039 340.023 77.9616C340.023 76.2194 341.432 74.8113 343.174 74.8113H346.324V77.9616ZM347.899 77.9616C347.899 76.2194 349.307 74.8113 351.05 74.8113C352.792 74.8113 354.2 76.2194 354.2 77.9616V85.8375C354.2 87.5797 352.792 88.9878 351.05 88.9878C349.307 88.9878 347.899 87.5797 347.899 85.8375V77.9616Z\" fill=\"#E01D5A\"/>\\n<path d=\"M351.05 65.3127C349.308 65.3127 347.9 63.9045 347.9 62.1623C347.9 60.4201 349.308 59.012 351.05 59.012C352.792 59.012 354.2 60.4201 354.2 62.1623V65.3127H351.05ZM351.05 66.9117C352.792 66.9117 354.2 68.3198 354.2 70.062C354.2 71.8043 352.792 73.2124 351.05 73.2124H343.15C341.408 73.2124 340 71.8043 340 70.062C340 68.3198 341.408 66.9117 343.15 66.9117H351.05Z\" fill=\"#36C5EF\"/>\\n<path d=\"M363.673 70.062C363.673 68.3198 365.081 66.9117 366.823 66.9117C368.565 66.9117 369.973 68.3198 369.973 70.062C369.973 71.8043 368.565 73.2124 366.823 73.2124H363.673V70.062ZM362.098 70.062C362.098 71.8043 360.689 73.2124 358.947 73.2124C357.205 73.2124 355.797 71.8043 355.797 70.062V62.1623C355.797 60.4201 357.205 59.012 358.947 59.012C360.689 59.012 362.098 60.4201 362.098 62.1623V70.062Z\" fill=\"#2DB57C\"/>\\n<path d=\"M358.947 82.6871C360.689 82.6871 362.098 84.0953 362.098 85.8375C362.098 87.5797 360.689 88.9878 358.947 88.9878C357.205 88.9878 355.797 87.5797 355.797 85.8375V82.6871H358.947ZM358.947 81.112C357.205 81.112 355.797 79.7039 355.797 77.9616C355.797 76.2194 357.205 74.8113 358.947 74.8113H366.847C368.589 74.8113 369.997 76.2194 369.997 77.9616C369.997 79.7039 368.589 81.112 366.847 81.112H358.947Z\" fill=\"#ECB12F\"/>\\n</g>\\n<g filter=\"url(#filter1_d_593_15417)\">\\n<rect x=\"612\" y=\"44\" width=\"60\" height=\"60\" rx=\"30\" fill=\"#5D6AD1\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"612.5\" y=\"44.5\" width=\"59\" height=\"59\" rx=\"29.5\" stroke=\"#E0E0E0\" shape-rendering=\"crispEdges\"/>\\n<g clip-path=\"url(#clip2_593_15417)\">\\n<path d=\"M627.368 77.4568C627.301 77.1723 627.64 76.9931 627.847 77.1997L638.8 88.1534C639.007 88.3601 638.828 88.6991 638.543 88.6324C633.015 87.3356 628.664 82.9845 627.368 77.4568ZM627.001 73.0667C626.995 73.1517 627.027 73.2347 627.087 73.2949L642.705 88.9125C642.765 88.9728 642.848 89.0048 642.933 88.9994C643.644 88.9551 644.341 88.8614 645.022 88.7216C645.251 88.6745 645.331 88.3928 645.165 88.2272L627.773 70.8345C627.607 70.669 627.325 70.7487 627.278 70.978C627.139 71.6586 627.045 72.356 627.001 73.0667ZM628.263 67.9116C628.213 68.0238 628.239 68.1548 628.326 68.2416L647.758 87.6744C647.845 87.7612 647.976 87.7867 648.088 87.7367C648.624 87.498 649.144 87.2289 649.644 86.9315C649.81 86.8331 649.835 86.6055 649.699 86.4693L629.531 66.301C629.394 66.1648 629.167 66.1903 629.068 66.356C628.771 66.8565 628.502 67.3758 628.263 67.9116ZM630.798 64.4222C630.687 64.3112 630.68 64.1331 630.784 64.016C633.534 60.9378 637.533 59 641.986 59C650.278 59 657 65.7222 657 74.0144C657 78.4666 655.062 82.4661 651.984 85.2157C651.867 85.3203 651.689 85.3134 651.578 85.2024L630.798 64.4222Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter2_d_593_15417)\">\\n<rect x=\"215\" y=\"75\" width=\"50\" height=\"50\" rx=\"25\" fill=\"white\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"215.5\" y=\"75.5\" width=\"49\" height=\"49\" rx=\"24.5\" stroke=\"#E0E0E0\" shape-rendering=\"crispEdges\"/>\\n<g clip-path=\"url(#clip3_593_15417)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M239.956 85.459C231.772 85.459 225.156 92.1235 225.156 100.368C225.156 106.959 229.395 112.538 235.276 114.512C236.011 114.661 236.28 114.192 236.28 113.797C236.28 113.451 236.256 112.266 236.256 111.032C232.139 111.921 231.282 109.255 231.282 109.255C230.62 107.527 229.64 107.083 229.64 107.083C228.293 106.169 229.738 106.169 229.738 106.169C231.233 106.268 232.017 107.7 232.017 107.7C233.34 109.971 235.472 109.329 236.329 108.934C236.452 107.971 236.844 107.305 237.261 106.935C233.977 106.589 230.522 105.305 230.522 99.5784C230.522 97.9492 231.11 96.6163 232.041 95.5797C231.894 95.2095 231.38 93.6788 232.189 91.63C232.189 91.63 233.438 91.235 236.256 93.1605C237.462 92.8341 238.706 92.6681 239.956 92.6667C241.205 92.6667 242.479 92.8397 243.656 93.1605C246.473 91.235 247.723 91.63 247.723 91.63C248.532 93.6788 248.017 95.2095 247.87 95.5797C248.826 96.6163 249.389 97.9492 249.389 99.5784C249.389 105.305 245.934 106.564 242.626 106.935C243.166 107.403 243.631 108.292 243.631 109.699C243.631 111.698 243.607 113.303 243.607 113.797C243.607 114.192 243.876 114.661 244.611 114.513C250.492 112.538 254.731 106.959 254.731 100.368C254.755 92.1235 248.115 85.459 239.956 85.459Z\" fill=\"#292929\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter3_d_593_15417)\">\\n<rect x=\"732\" y=\"75\" width=\"50\" height=\"50\" rx=\"25\" fill=\"white\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"732.5\" y=\"75.5\" width=\"49\" height=\"49\" rx=\"24.5\" stroke=\"#E0E0E0\" shape-rendering=\"crispEdges\"/>\\n<g clip-path=\"url(#clip4_593_15417)\">\\n<path d=\"M770.753 91.562L762.262 99.9991L770.753 108.436C770.907 108.115 771 107.761 771 107.382V92.6163C771 92.2375 770.907 91.8829 770.753 91.562ZM768.539 90.1554H745.461C745.082 90.1554 744.727 90.2485 744.407 90.402L755.26 101.201C756.22 102.16 757.78 102.16 758.74 101.201L769.593 90.402C769.273 90.2485 768.918 90.1554 768.539 90.1554ZM743.247 91.562C743.093 91.8829 743 92.2375 743 92.6163V107.382C743 107.761 743.093 108.115 743.247 108.436L751.738 99.9991L743.247 91.562Z\" fill=\"#292929\"/>\\n<path d=\"M761.101 101.159L759.9 102.36C758.301 103.959 755.699 103.959 754.1 102.36L752.898 101.159L744.406 109.596C744.727 109.749 745.082 109.843 745.461 109.843H768.539C768.918 109.843 769.272 109.749 769.593 109.596L761.101 101.159Z\" fill=\"#292929\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter4_df_593_15417)\">\\n<path d=\"M115 140C115 128.954 123.954 120 135 120V120C146.046 120 155 128.954 155 140V140C155 151.046 146.046 160 135 160V160C123.954 160 115 151.046 115 140V140Z\" fill=\"white\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M135 120.375C145.839 120.375 154.625 129.161 154.625 140C154.625 150.839 145.839 159.625 135 159.625C124.161 159.625 115.375 150.839 115.375 140C115.375 129.161 124.161 120.375 135 120.375Z\" stroke=\"#E0E0E0\" stroke-width=\"0.75\" shape-rendering=\"crispEdges\"/>\\n<g clip-path=\"url(#clip5_593_15417)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M134.965 128.367C128.418 128.367 123.125 133.699 123.125 140.295C123.125 145.567 126.516 150.03 131.221 151.61C131.809 151.729 132.024 151.353 132.024 151.038C132.024 150.761 132.005 149.813 132.005 148.826C128.711 149.537 128.025 147.404 128.025 147.404C127.496 146.021 126.712 145.666 126.712 145.666C125.634 144.935 126.79 144.935 126.79 144.935C127.986 145.014 128.614 146.16 128.614 146.16C129.672 147.976 131.377 147.463 132.063 147.147C132.161 146.377 132.475 145.844 132.808 145.548C130.182 145.271 127.418 144.244 127.418 139.663C127.418 138.359 127.888 137.293 128.633 136.464C128.516 136.168 128.104 134.943 128.751 133.304C128.751 133.304 129.751 132.988 132.005 134.528C132.97 134.267 133.965 134.134 134.965 134.133C135.964 134.133 136.983 134.272 137.924 134.528C140.179 132.988 141.178 133.304 141.178 133.304C141.825 134.943 141.413 136.168 141.296 136.464C142.061 137.293 142.511 138.359 142.511 139.663C142.511 144.244 139.748 145.251 137.101 145.548C137.533 145.923 137.905 146.634 137.905 147.759C137.905 149.359 137.885 150.643 137.885 151.037C137.885 151.353 138.101 151.729 138.689 151.61C143.393 150.03 146.785 145.567 146.785 140.295C146.804 133.699 141.492 128.367 134.965 128.367Z\" fill=\"#292929\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter5_df_593_15417)\">\\n<path d=\"M842 140C842 128.954 850.954 120 862 120V120C873.046 120 882 128.954 882 140V140C882 151.046 873.046 160 862 160V160C850.954 160 842 151.046 842 140V140Z\" fill=\"white\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M862 120.375C872.839 120.375 881.625 129.161 881.625 140C881.625 150.839 872.839 159.625 862 159.625C851.161 159.625 842.375 150.839 842.375 140C842.375 129.161 851.161 120.375 862 120.375Z\" stroke=\"#E0E0E0\" stroke-width=\"0.75\" shape-rendering=\"crispEdges\"/>\\n<g clip-path=\"url(#clip6_593_15417)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M861.965 128.367C855.418 128.367 850.125 133.699 850.125 140.295C850.125 145.567 853.516 150.03 858.221 151.61C858.809 151.729 859.024 151.353 859.024 151.038C859.024 150.761 859.005 149.813 859.005 148.826C855.711 149.537 855.025 147.404 855.025 147.404C854.496 146.021 853.712 145.666 853.712 145.666C852.634 144.935 853.79 144.935 853.79 144.935C854.986 145.014 855.614 146.16 855.614 146.16C856.672 147.976 858.377 147.463 859.063 147.147C859.161 146.377 859.475 145.844 859.808 145.548C857.182 145.271 854.418 144.244 854.418 139.663C854.418 138.359 854.888 137.293 855.633 136.464C855.516 136.168 855.104 134.943 855.751 133.304C855.751 133.304 856.751 132.988 859.005 134.528C859.97 134.267 860.965 134.134 861.965 134.133C862.964 134.133 863.983 134.272 864.924 134.528C867.179 132.988 868.178 133.304 868.178 133.304C868.825 134.943 868.413 136.168 868.296 136.464C869.061 137.293 869.511 138.359 869.511 139.663C869.511 144.244 866.748 145.251 864.101 145.548C864.533 145.923 864.905 146.634 864.905 147.759C864.905 149.359 864.885 150.643 864.885 151.037C864.885 151.353 865.101 151.729 865.689 151.61C870.393 150.03 873.785 145.567 873.785 140.295C873.804 133.699 868.492 128.367 861.965 128.367Z\" fill=\"#292929\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_593_15417\" x=\"313\" y=\"36\" width=\"84\" height=\"84\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"6\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_593_15417\" x=\"600\" y=\"36\" width=\"84\" height=\"84\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"6\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_593_15417\" x=\"205\" y=\"69\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_d_593_15417\" x=\"722\" y=\"69\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter4_df_593_15417\" x=\"109\" y=\"116\" width=\"52\" height=\"53\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"3\"/>\\n<feGaussianBlur stdDeviation=\"3\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"2\" result=\"effect2_foregroundBlur_593_15417\"/>\\n</filter>\\n<filter id=\"filter5_df_593_15417\" x=\"836\" y=\"116\" width=\"52\" height=\"53\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"3\"/>\\n<feGaussianBlur stdDeviation=\"3\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_593_15417\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_593_15417\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"2\" result=\"effect2_foregroundBlur_593_15417\"/>\\n</filter>\\n<radialGradient id=\"paint0_radial_593_15417\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(503 59.959) rotate(90) scale(751 799)\">\\n<stop offset=\"0.108\" stop-color=\"#EFEFF2\"/>\\n<stop offset=\"0.33\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_593_15417\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(503 59.959) rotate(90) scale(315 503.329)\">\\n<stop stop-color=\"#E0E0E0\"/>\\n<stop offset=\"1\" stop-color=\"#565656\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_593_15417\" x1=\"504.5\" y1=\"12\" x2=\"504.5\" y2=\"107\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9579FF\"/>\\n<stop offset=\"1\" stop-color=\"#7E4FFF\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_593_15417\">\\n<rect width=\"1008\" height=\"136\" fill=\"white\" transform=\"translate(0 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_593_15417\">\\n<rect width=\"54.2292\" height=\"56.5869\" fill=\"white\" transform=\"translate(477.195 31.416)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_593_15417\">\\n<rect width=\"30\" height=\"30\" fill=\"white\" transform=\"translate(627 59)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_593_15417\">\\n<rect width=\"29.6875\" height=\"29.0816\" fill=\"white\" transform=\"translate(225.156 85.459)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_593_15417\">\\n<rect width=\"28\" height=\"28\" fill=\"white\" transform=\"translate(743 86)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_593_15417\">\\n<rect width=\"23.75\" height=\"23.2653\" fill=\"white\" transform=\"translate(123.125 128.367)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_593_15417\">\\n<rect width=\"23.75\" height=\"23.2653\" fill=\"white\" transform=\"translate(850.125 128.367)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pf9xa8\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qr9wqu\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5xhlbt\",\"data-styles-preset\":\"ITXrq3khv\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u201CFinally, a bug tracker that doesn\u2019t feel like a bug itself.\u201D \"})}),className:\"framer-jr2mep\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-txobmo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4070.5+80+226+0+196+16+56+2),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/aQRuX0BHJHWgdBQO5FJTRUjWQ.png\"}},OvYCTG1vz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4056+80+248+0+196+0+56+2),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/aQRuX0BHJHWgdBQO5FJTRUjWQ.png\"}},veQ2eYiFk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5951.5+80+248+0+170+0+56+2),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/aQRuX0BHJHWgdBQO5FJTRUjWQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3438+80+248+0+196+0+56+2),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/aQRuX0BHJHWgdBQO5FJTRUjWQ.png\"},className:\"framer-1v2x68g\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ir64zr\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijeii2\",\"data-styles-preset\":\"a7nQTTPze\",style:{\"--framer-text-color\":\"var(--token-1351b8aa-c6e6-4add-9df3-163db68e1e21, rgb(23, 23, 23))\"},children:\"Beta User\"})}),className:\"framer-1fw5vv5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-1351b8aa-c6e6-4add-9df3-163db68e1e21, rgb(23, 23, 23))\"},children:\"Project manager\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-1351b8aa-c6e6-4add-9df3-163db68e1e21, rgb(23, 23, 23))\"},children:\"Project manager\"})}),className:\"framer-1hckeua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+4070.5+-9},OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+4056+-9},veQ2eYiFk:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+5951.5+-9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+3438+-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzsj0d-container\",nodeId:\"BFZQebyi3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{T1vg4rpew:true,variant:\"zJgENgNn0\"},OvYCTG1vz:{variant:\"CQoi7x8ZM\"},veQ2eYiFk:{T1vg4rpew:true,variant:\"ky6vMwA6p\"}},children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"BFZQebyi3\",layoutId:\"BFZQebyi3\",NgkR7lUoR:\"l1O8GUham\",QFlRYo0BQ:\"Integrations\",rNnidkyU3:true,style:{width:\"100%\"},T1vg4rpew:false,variant:\"EgIpy5VOn\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OvYCTG1vz:{width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:(componentViewport?.y||0)+0+0+0+0+0+4056+704-9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"1260px\",y:(componentViewport?.y||0)+0+0+0+0+0+3438+704-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yu1xt2-container hidden-1yq83xo hidden-jjjlfg\",nodeId:\"L7apHTSOu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OvYCTG1vz:{style:{height:\"100%\",width:\"100%\"},variant:\"CQoi7x8ZM\"}},children:/*#__PURE__*/_jsx(SparkleLine,{height:\"100%\",id:\"L7apHTSOu\",layoutId:\"L7apHTSOu\",NgkR7lUoR:\"l1O8GUham\",QFlRYo0BQ:\"Integrations\",rNnidkyU3:false,style:{width:\"100%\"},T1vg4rpew:false,variant:\"EgIpy5VOn\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{y:(componentViewport?.y||0)+0+0+0+4768.5},OvYCTG1vz:{y:(componentViewport?.y||0)+0+0+0+4760},veQ2eYiFk:{y:(componentViewport?.y||0)+0+0+0+6629.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+4142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1thwwdd-container\",nodeId:\"lU7STphBR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{variant:\"mxwanI5qz\"},OvYCTG1vz:{variant:\"Emo0omMLl\"},veQ2eYiFk:{variant:\"k3thp0vlq\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"lU7STphBR\",layoutId:\"lU7STphBR\",style:{width:\"100%\"},variant:\"Glz9biS8k\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:componentViewport?.width||\"100vw\",y:520,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6waz0-container\",layoutScroll:true,nodeId:\"cHAXgUMJU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D1IxbwGsF:{variant:\"Te2cwJiIU\"},OvYCTG1vz:{variant:\"L7MlguW8K\"},veQ2eYiFk:{variant:\"n4L5H1WVC\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cHAXgUMJU\",layoutId:\"cHAXgUMJU\",style:{width:\"100%\"},variant:\"BwpgV7b6_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HRdCH.framer-lux5qc, .framer-HRdCH .framer-lux5qc { display: block; }\",\".framer-HRdCH.framer-72rtr7 { align-content: center; align-items: center; background: linear-gradient(180deg, #f7f7f7 0%, var(--token-540962e0-6c3b-4fd1-b557-0f66868c7593, rgb(134, 89, 255)) 50%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 464px 0px; position: relative; width: 1440px; }\",\".framer-HRdCH .framer-1kwx17-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-HRdCH .framer-15u92n0 { align-content: center; align-items: center; background-color: var(--token-5624a39d-1285-4f75-9dba-cad16b03c990, #f7f7f7); border-bottom-left-radius: 12px; border-bottom-right-radius: 278px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-HRdCH .framer-1tp2ixg { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; z-index: 2; }\",\".framer-HRdCH .framer-1flb3n { --border-bottom-width: 0px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 120px 0px; position: relative; width: 1240px; }\",\".framer-HRdCH .framer-1i585s1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 80px 60px 80px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-1vmvtan-container { flex: none; height: auto; left: -10px; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); z-index: 1; }\",\".framer-HRdCH .framer-1ant7n6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-bvi8yu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-fe5sse { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-1nng3b2, .framer-HRdCH .framer-t1v8he, .framer-HRdCH .framer-1nwk6d2, .framer-HRdCH .framer-1eins4e, .framer-HRdCH .framer-15pblbm, .framer-HRdCH .framer-1kle3ex, .framer-HRdCH .framer-wa641d, .framer-HRdCH .framer-cvgog, .framer-HRdCH .framer-ml2tw, .framer-HRdCH .framer-10ibvtw, .framer-HRdCH .framer-f8fuc2, .framer-HRdCH .framer-14zpc9n, .framer-HRdCH .framer-sfr92o, .framer-HRdCH .framer-11r5cg6, .framer-HRdCH .framer-18xt229, .framer-HRdCH .framer-yfsy1k, .framer-HRdCH .framer-jr2mep { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HRdCH .framer-in1h8l { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-HRdCH .framer-188h4q5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 634px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HRdCH .framer-hsxr8w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-7ho3de, .framer-HRdCH .framer-1fjzipa, .framer-HRdCH .framer-lw29rk, .framer-HRdCH .framer-26ut2t { aspect-ratio: 4.133333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 124px; }\",\".framer-HRdCH .framer-1emi096-container { flex: none; height: 24px; position: relative; width: 168%; }\",\".framer-HRdCH .framer-1klbsgz, .framer-HRdCH .framer-1bza2x7, .framer-HRdCH .framer-ohggrd, .framer-HRdCH .framer-10m8h9k { aspect-ratio: 4.133333333333334 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 99px; }\",\".framer-HRdCH .framer-19bdseh { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 1240px; }\",\".framer-HRdCH .framer-1p19atv-container, .framer-HRdCH .framer-1jft7u0-container, .framer-HRdCH .framer-16ko6t2-container, .framer-HRdCH .framer-1pzsj0d-container { flex: none; height: auto; left: -10px; position: absolute; right: -10px; top: -9px; z-index: 1; }\",\".framer-HRdCH .framer-9muhde { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HRdCH .framer-nr9g1e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HRdCH .framer-21g01l, .framer-HRdCH .framer-1mvm30t, .framer-HRdCH .framer-1h9hxjl, .framer-HRdCH .framer-127bop1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-w8gnr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-e9l7ps, .framer-HRdCH .framer-dszcb5, .framer-HRdCH .framer-wk0f28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-ypdfu9-container, .framer-HRdCH .framer-obwsf4-container, .framer-HRdCH .framer-64jo86-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-HRdCH .framer-dv6awn, .framer-HRdCH .framer-r19ksb, .framer-HRdCH .framer-19w8uc6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HRdCH .framer-1373oo2 { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 47%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRdCH .framer-1mgtj1s { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.3806818181818181 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 352px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRdCH .framer-pbcd6u { --border-bottom-width: 0px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; scroll-margin-top: 80px; width: 1240px; }\",\".framer-HRdCH .framer-s4ympa { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-1lsghd3-container, .framer-HRdCH .framer-rh7iel-container, .framer-HRdCH .framer-aqdc1a-container, .framer-HRdCH .framer-y6ojz-container, .framer-HRdCH .framer-1b6mob4-container, .framer-HRdCH .framer-f6o3q5-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-HRdCH .framer-rt8ysv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; left: -10px; overflow: visible; padding: 0px; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); z-index: 1; }\",\".framer-HRdCH .framer-1m3br28, .framer-HRdCH .framer-aezi3p, .framer-HRdCH .framer-jj11k3, .framer-HRdCH .framer-7kczk6 { align-content: center; align-items: center; background-color: var(--token-5624a39d-1285-4f75-9dba-cad16b03c990, #f7f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: min-content; }\",\".framer-HRdCH .framer-lp544c, .framer-HRdCH .framer-1bthyle, .framer-HRdCH .framer-uk1qri, .framer-HRdCH .framer-9hrf45 { --border-bottom-width: 1px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRdCH .framer-1mdno8l, .framer-HRdCH .framer-1nlgm07, .framer-HRdCH .framer-g6v3gy { background-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-HRdCH .framer-ee0at0, .framer-HRdCH .framer-1ep4fvc { --border-bottom-width: 0px; --border-color: var(--token-151d9004-ded3-4554-89bc-bcaa2c5df9cf, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 1240px; }\",\".framer-HRdCH .framer-18m7lv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-oinsw4, .framer-HRdCH .framer-1sg61t9, .framer-HRdCH .framer-no9m3u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HRdCH .framer-19uxlor { aspect-ratio: 0.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 28px; }\",\".framer-HRdCH .framer-9mwh54, .framer-HRdCH .framer-13ywq7y, .framer-HRdCH .framer-1qgcg9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-s0l7z8 { aspect-ratio: 2.9 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 325px; overflow: visible; position: absolute; top: 10px; width: 174px; z-index: 1; }\",\".framer-HRdCH .framer-1z03qul { aspect-ratio: 2.9 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: absolute; right: 325px; top: 10px; width: 174px; z-index: 1; }\",\".framer-HRdCH .framer-ggle4p { aspect-ratio: 0.6571428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 46px; }\",\".framer-HRdCH .framer-1ui6k3m { aspect-ratio: 0.7142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 50px; }\",\".framer-HRdCH .framer-7wyotn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-1x8j1i8 { flex: none; height: 196px; overflow: visible; position: relative; width: 1008px; }\",\".framer-HRdCH .framer-1p8opcf { aspect-ratio: 5.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 196px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-HRdCH .framer-1pf9xa8 { -webkit-filter: blur(71.25px); background-color: rgba(149, 121, 255, 0.32); filter: blur(71.25px); flex: none; height: 82px; left: calc(50.00000000000002% - 118px / 2); overflow: visible; position: absolute; top: calc(30.102040816326554% - 82px / 2); width: 118px; }\",\".framer-HRdCH .framer-qr9wqu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 336px; }\",\".framer-HRdCH .framer-txobmo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRdCH .framer-1v2x68g { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRdCH .framer-1ir64zr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HRdCH .framer-1fw5vv5, .framer-HRdCH .framer-1hckeua { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HRdCH .framer-1yu1xt2-container { bottom: -9px; flex: none; height: auto; left: -10px; position: absolute; right: -10px; z-index: 1; }\",\".framer-HRdCH .framer-1thwwdd-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HRdCH .framer-g6waz0-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; right: 0px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-HRdCH[data-border=\"true\"]::after, .framer-HRdCH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-HRdCH.framer-72rtr7 { width: 1024px; } .framer-HRdCH .framer-1tp2ixg { padding: 0px 32px 0px 32px; } .framer-HRdCH .framer-1flb3n, .framer-HRdCH .framer-pbcd6u, .framer-HRdCH .framer-ee0at0, .framer-HRdCH .framer-1ep4fvc { width: 100%; } .framer-HRdCH .framer-1i585s1 { padding: 0px 32px 60px 32px; } .framer-HRdCH .framer-1vmvtan-container { top: 535px; transform: unset; } .framer-HRdCH .framer-in1h8l { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; } .framer-HRdCH .framer-188h4q5 { aspect-ratio: 1.7034700315457414 / 1; height: var(--framer-aspect-ratio-supported, 526px); min-height: unset; } .framer-HRdCH .framer-19bdseh { padding: 80px 32px 80px 32px; width: 100%; } .framer-HRdCH .framer-1mgtj1s { height: var(--framer-aspect-ratio-supported, 289px); } .framer-HRdCH .framer-rt8ysv { top: 50%; } .framer-HRdCH .framer-18m7lv7 { gap: 32px; padding: 32px 24px 32px 24px; } .framer-HRdCH .framer-oinsw4 { order: 0; } .framer-HRdCH .framer-s0l7z8 { height: var(--framer-aspect-ratio-supported, 56px); left: 33%; order: 1; transform: translateX(-50%); width: 162px; } .framer-HRdCH .framer-1z03qul { height: var(--framer-aspect-ratio-supported, 56px); left: 67%; order: 3; right: unset; transform: translateX(-50%); width: 162px; } .framer-HRdCH .framer-1sg61t9 { order: 2; } .framer-HRdCH .framer-no9m3u { order: 4; } .framer-HRdCH .framer-1x8j1i8 { aspect-ratio: 5.142857142857143 / 1; height: var(--framer-aspect-ratio-supported, 187px); width: 100%; } .framer-HRdCH .framer-1p8opcf { right: unset; width: 100%; } .framer-HRdCH .framer-1pzsj0d-container { top: 0%; transform: translateY(-50%); } .framer-HRdCH .framer-1yu1xt2-container { height: 18px; }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-HRdCH.framer-72rtr7 { padding: 0px 0px 388px 0px; width: 768px; } .framer-HRdCH .framer-1tp2ixg { padding: 0px; } .framer-HRdCH .framer-1flb3n { --border-left-width: 0px; --border-right-width: 0px; padding: 80px 0px 80px 0px; width: 100%; } .framer-HRdCH .framer-1i585s1 { gap: 52px; padding: 0px 24px 52px 24px; } .framer-HRdCH .framer-1ant7n6 { gap: 20px; padding: 80px 0px 0px 0px; } .framer-HRdCH .framer-in1h8l { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; } .framer-HRdCH .framer-188h4q5 { aspect-ratio: 1.7041420118343196 / 1; height: var(--framer-aspect-ratio-supported, 117px); min-height: unset; } .framer-HRdCH .framer-19bdseh, .framer-HRdCH .framer-pbcd6u, .framer-HRdCH .framer-ee0at0 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 80px 24px 80px 24px; width: 100%; } .framer-HRdCH .framer-1p19atv-container, .framer-HRdCH .framer-1jft7u0-container, .framer-HRdCH .framer-16ko6t2-container, .framer-HRdCH .framer-1pzsj0d-container { left: 50%; right: unset; top: 0%; transform: translate(-50%, -50%); width: 100%; } .framer-HRdCH .framer-9muhde { gap: 28px; } .framer-HRdCH .framer-nr9g1e { flex: none; gap: 18px; width: 48%; } .framer-HRdCH .framer-21g01l, .framer-HRdCH .framer-1mvm30t, .framer-HRdCH .framer-1h9hxjl, .framer-HRdCH .framer-127bop1 { gap: 12px; } .framer-HRdCH .framer-1373oo2 { width: 48%; } .framer-HRdCH .framer-1mgtj1s { aspect-ratio: 0.9886363636363636 / 1; height: var(--framer-aspect-ratio-supported, 202px); } .framer-HRdCH .framer-s4ympa { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-HRdCH .framer-18m7lv7 { gap: 10px; padding: 0px; } .framer-HRdCH .framer-s0l7z8 { height: var(--framer-aspect-ratio-supported, 69px); left: 67%; top: 13%; transform: translate(-50%, -50%); width: 17%; } .framer-HRdCH .framer-1z03qul { height: var(--framer-aspect-ratio-supported, 69px); left: 32%; right: unset; top: 13%; transform: translate(-50%, -50%); width: 17%; } .framer-HRdCH .framer-1ep4fvc { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 40px; padding: 80px 24px 80px 24px; width: 100%; } .framer-HRdCH .framer-1x8j1i8 { aspect-ratio: 5.142857142857143 / 1; height: var(--framer-aspect-ratio-supported, 39px); width: 100%; } .framer-HRdCH .framer-1p8opcf { height: var(--framer-aspect-ratio-supported, 39px); right: unset; width: 100%; } .framer-HRdCH .framer-qr9wqu { padding: 16px 0px 0px 0px; }}\",\"@media (max-width: 767px) { .framer-HRdCH.framer-72rtr7 { width: 393px; } .framer-HRdCH .framer-1kwx17-container { left: 0px; position: fixed; transform: unset; } .framer-HRdCH .framer-1tp2ixg { padding: 0px; } .framer-HRdCH .framer-1flb3n { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 76px 0px 80px 0px; width: 100%; } .framer-HRdCH .framer-1i585s1 { gap: 40px; padding: 0px 24px 40px 24px; } .framer-HRdCH .framer-1ant7n6 { gap: 24px; padding: 80px 0px 0px 0px; } .framer-HRdCH .framer-bvi8yu, .framer-HRdCH .framer-hsxr8w { gap: 16px; } .framer-HRdCH .framer-in1h8l { --border-bottom-width: 0.5px; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-top-width: 0.5px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; } .framer-HRdCH .framer-188h4q5 { aspect-ratio: 1.7037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 117px); min-height: unset; } .framer-HRdCH .framer-19bdseh, .framer-HRdCH .framer-ee0at0, .framer-HRdCH .framer-1ep4fvc { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 80px 24px 80px 24px; width: 100%; } .framer-HRdCH .framer-1p19atv-container, .framer-HRdCH .framer-1jft7u0-container, .framer-HRdCH .framer-16ko6t2-container, .framer-HRdCH .framer-1pzsj0d-container { left: 50%; right: unset; top: 0%; transform: translate(-50%, -50%); width: 100%; } .framer-HRdCH .framer-9muhde { flex-direction: column; gap: 40px; } .framer-HRdCH .framer-nr9g1e { flex: none; gap: 18px; width: 100%; } .framer-HRdCH .framer-21g01l { gap: 12px; } .framer-HRdCH .framer-ypdfu9-container, .framer-HRdCH .framer-obwsf4-container, .framer-HRdCH .framer-64jo86-container { height: var(--framer-aspect-ratio-supported, 25px); width: 26px; } .framer-HRdCH .framer-1373oo2 { width: 100%; } .framer-HRdCH .framer-1mgtj1s { aspect-ratio: 1.0388349514563107 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 193px); } .framer-HRdCH .framer-pbcd6u { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 20px; padding: 80px 24px 48px 24px; scroll-margin-top: 320px; width: 100%; } .framer-HRdCH .framer-s4ympa { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-HRdCH .framer-1lsghd3-container, .framer-HRdCH .framer-rh7iel-container, .framer-HRdCH .framer-aqdc1a-container, .framer-HRdCH .framer-y6ojz-container, .framer-HRdCH .framer-1b6mob4-container, .framer-HRdCH .framer-f6o3q5-container { height: auto; } .framer-HRdCH .framer-18m7lv7 { flex-direction: column; padding: 0px; } .framer-HRdCH .framer-oinsw4, .framer-HRdCH .framer-1sg61t9, .framer-HRdCH .framer-no9m3u { flex: none; width: 100%; } .framer-HRdCH .framer-1x8j1i8 { aspect-ratio: 5.142857142857143 / 1; height: var(--framer-aspect-ratio-supported, 39px); width: 254%; } .framer-HRdCH .framer-1p8opcf { height: var(--framer-aspect-ratio-supported, 39px); right: unset; width: 100%; } .framer-HRdCH .framer-1pf9xa8 { aspect-ratio: 1.4390243902439024 / 1; height: var(--framer-aspect-ratio-supported, 139px); left: 50%; top: 30%; transform: translate(-50%, -50%); width: 14%; } .framer-HRdCH .framer-qr9wqu { width: 300px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5086\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OvYCTG1vz\":{\"layout\":[\"fixed\",\"auto\"]},\"D1IxbwGsF\":{\"layout\":[\"fixed\",\"auto\"]},\"veQ2eYiFk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WWhwGsla_\":{\"pattern\":\":WWhwGsla_\",\"name\":\"product\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HRdCH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5086,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavbarFonts,...SparkleLineFonts,...TickerFonts,...IconFonts,...FeatureCardFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5086\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"WWhwGsla_\\\":{\\\"pattern\\\":\\\":WWhwGsla_\\\",\\\"name\\\":\\\"product\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OvYCTG1vz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D1IxbwGsF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"veQ2eYiFk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "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", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavbarFonts", "getFonts", "ji656zHC1_default", "SparkleLineFonts", "CNVheZzvf_default", "TickerFonts", "Ticker", "IconFonts", "Kgza73Auw_default", "FeatureCardFonts", "p2IscBfx0_default", "CTAFonts", "RGnW9Q5Fe_default", "FooterFonts", "PH1Hvbooc_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
