@layer base,components,utilities;@layer base{:root{--clr-bg-0: #050912;--clr-bg-1: #090f1e;--clr-bg-2: #0d1526;--clr-bg-card: #0f1a30;--clr-bg-card-hover: #142040;--clr-cyan: #00c9ff;--clr-cyan-dim: #0090b8;--clr-purple: #8b5cf6;--clr-purple-dim: #6d3fd8;--clr-green: #10b981;--clr-amber: #f59e0b;--clr-text-0: #f1f5f9;--clr-text-1: #cbd5e1;--clr-text-2: #94a3b8;--clr-text-3: #64748b;--clr-border: rgba(255, 255, 255, .08);--clr-border-hover: rgba(0, 201, 255, .3);--grad-brand: linear-gradient(135deg, var(--clr-cyan) 0%, var(--clr-purple) 100%);--grad-card: linear-gradient(135deg, rgba(0, 201, 255, .05) 0%, rgba(139, 92, 246, .05) 100%);--font-sans: "Inter", system-ui, -apple-system, sans-serif;--font-display: "Space Grotesk", "Inter", system-ui, sans-serif;--text-xs: clamp(.8rem, 1.5vw, .875rem);--text-sm: clamp(.9rem, 1.8vw, 1rem);--text-base: clamp(1rem, 2vw, 1.0625rem);--text-lg: clamp(1.0625rem, 2.2vw, 1.1875rem);--text-xl: clamp(1.1875rem, 2.5vw, 1.3125rem);--text-2xl: clamp(1.375rem, 3vw, 1.625rem);--text-3xl: clamp(1.625rem, 4vw, 2rem);--text-4xl: clamp(2.125rem, 5vw, 2.625rem);--text-5xl: clamp(2.625rem, 6vw, 3.625rem);--text-6xl: clamp(3.125rem, 7vw, 4.625rem);--space-1: .25rem;--space-2: .5rem;--space-3: .75rem;--space-4: 1rem;--space-5: 1.25rem;--space-6: 1.5rem;--space-8: 2rem;--space-10: 2.5rem;--space-12: 3rem;--space-16: 4rem;--space-20: 5rem;--space-24: 6rem;--space-32: 8rem;--max-w: 1200px;--section-py: clamp(4rem, 8vw, 8rem);--radius-sm: .375rem;--radius: .75rem;--radius-lg: 1.25rem;--radius-xl: 2rem;--radius-full: 9999px;--shadow-glow-cyan: 0 0 40px rgba(0, 201, 255, .15);--shadow-glow-purple: 0 0 40px rgba(139, 92, 246, .15);--shadow-card: 0 4px 24px rgba(0, 0, 0, .4);--shadow-card-hover: 0 8px 40px rgba(0, 0, 0, .6);--transition: .2s cubic-bezier(.4, 0, .2, 1);--transition-slow: .4s cubic-bezier(.4, 0, .2, 1)}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}body{font-family:var(--font-sans);font-size:var(--text-base);line-height:1.6;color:var(--clr-text-1);background-color:var(--clr-bg-0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{font-family:var(--font-display);font-weight:700;line-height:1.15;color:var(--clr-text-0);letter-spacing:-.02em}a{color:inherit;text-decoration:none}img{max-width:100%;display:block}input,textarea,select,button{font-family:inherit;font-size:inherit}:focus-visible{outline:2px solid var(--clr-cyan);outline-offset:3px;border-radius:var(--radius-sm)}::selection{background:#00c9ff40;color:var(--clr-text-0)}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:var(--clr-bg-1)}::-webkit-scrollbar-thumb{background:var(--clr-bg-card);border-radius:var(--radius-full)}::-webkit-scrollbar-thumb:hover{background:var(--clr-cyan-dim)}}@layer components{.container{width:100%;max-width:var(--max-w);margin-inline:auto;padding-inline:clamp(1rem,5vw,2.5rem)}.section{padding-block:var(--section-py)}.btn{display:inline-flex;align-items:center;gap:var(--space-2);padding:.75rem 1.75rem;border-radius:var(--radius-full);font-family:var(--font-display);font-weight:600;font-size:var(--text-sm);letter-spacing:.01em;cursor:pointer;border:none;transition:all var(--transition);white-space:nowrap;text-decoration:none}.btn-primary{background:var(--grad-brand);color:#fff;box-shadow:0 0 #00c9ff66}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px #00c9ff59}.btn-primary:active{transform:translateY(0)}.btn-outline{background:transparent;color:var(--clr-text-0);border:1.5px solid var(--clr-border);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.btn-outline:hover{border-color:var(--clr-cyan);color:var(--clr-cyan);box-shadow:inset 0 0 20px #00c9ff0d}.btn-ghost{background:transparent;color:var(--clr-text-2);padding-inline:0;border-radius:0}.btn-ghost:hover{color:var(--clr-cyan)}.badge{display:inline-flex;align-items:center;gap:var(--space-1);padding:.25rem .875rem;border-radius:var(--radius-full);font-size:var(--text-xs);font-weight:600;font-family:var(--font-display);letter-spacing:.05em;text-transform:uppercase}.badge-cyan{background:#00c9ff1a;color:var(--clr-cyan);border:1px solid rgba(0,201,255,.2)}.badge-purple{background:#8b5cf61a;color:var(--clr-purple);border:1px solid rgba(139,92,246,.2)}.badge-green{background:#10b9811a;color:var(--clr-green);border:1px solid rgba(16,185,129,.2)}.card{background:var(--clr-bg-card);border:1px solid var(--clr-border);border-radius:var(--radius-lg);padding:var(--space-8);transition:all var(--transition-slow);position:relative;overflow:hidden}.card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:var(--grad-card);opacity:0;transition:opacity var(--transition-slow);pointer-events:none}.card:hover{border-color:var(--clr-border-hover);box-shadow:var(--shadow-card-hover);transform:translateY(-4px)}.card:hover:before{opacity:1}.section-label{display:inline-flex;align-items:center;gap:var(--space-2);font-family:var(--font-display);font-size:var(--text-xs);font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--clr-cyan);margin-bottom:var(--space-4)}.section-label:before{content:"";display:block;width:1.5rem;height:2px;background:var(--clr-cyan);border-radius:var(--radius-full)}.gradient-text{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.divider{height:1px;background:var(--clr-border);border:none}}@layer utilities{.text-center{text-align:center}.text-left{text-align:left}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}}@keyframes fade-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.fade-up{animation:fade-up .6s cubic-bezier(.4,0,.2,1) both}.header.svelte-115pfcb.svelte-115pfcb{position:fixed;inset-block-start:0;inset-inline:0;z-index:100;padding-block:1.25rem;transition:all .3s cubic-bezier(.4,0,.2,1)}.header.scrolled.svelte-115pfcb.svelte-115pfcb{padding-block:.875rem;background:#050912d9;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--clr-border);box-shadow:0 4px 30px #0006}.inner.svelte-115pfcb.svelte-115pfcb{display:flex;align-items:center;gap:var(--space-8)}.logo.svelte-115pfcb.svelte-115pfcb{display:flex;align-items:baseline;gap:0;font-family:var(--font-display);font-size:1.5rem;font-weight:800;letter-spacing:-.03em;flex-shrink:0;transition:opacity var(--transition)}.logo.svelte-115pfcb.svelte-115pfcb:hover{opacity:.85}.logo-mark.svelte-115pfcb.svelte-115pfcb{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.logo-word.svelte-115pfcb.svelte-115pfcb{color:var(--clr-text-0)}.nav.svelte-115pfcb.svelte-115pfcb{display:flex;align-items:center;gap:var(--space-6);margin-inline-start:auto}.nav-link.svelte-115pfcb.svelte-115pfcb{font-family:var(--font-display);font-size:var(--text-sm);font-weight:500;color:var(--clr-text-2);transition:color var(--transition);position:relative;padding-block:.25rem}.nav-link.svelte-115pfcb.svelte-115pfcb:after{content:"";position:absolute;inset-block-end:-2px;inset-inline-start:0;width:0;height:2px;background:var(--grad-brand);border-radius:var(--radius-full);transition:width var(--transition)}.nav-link.svelte-115pfcb.svelte-115pfcb:hover{color:var(--clr-text-0)}.nav-link.svelte-115pfcb.svelte-115pfcb:hover:after,.nav-link.active.svelte-115pfcb.svelte-115pfcb:after{width:100%}.nav-link.active.svelte-115pfcb.svelte-115pfcb{color:var(--clr-text-0)}.cta-btn.svelte-115pfcb.svelte-115pfcb{margin-inline-start:var(--space-4);font-size:var(--text-xs);padding:.6rem 1.25rem}.hamburger.svelte-115pfcb.svelte-115pfcb{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem;margin-inline-start:auto;position:relative;z-index:101}.hamburger.svelte-115pfcb span.svelte-115pfcb{display:block;width:22px;height:2px;background:var(--clr-text-0);border-radius:var(--radius-full);transition:all .3s cubic-bezier(.4,0,.2,1);transform-origin:center}.hamburger.open.svelte-115pfcb span.svelte-115pfcb:nth-child(1){transform:translateY(7px) rotate(45deg)}.hamburger.open.svelte-115pfcb span.svelte-115pfcb:nth-child(2){opacity:0;transform:scaleX(0)}.hamburger.open.svelte-115pfcb span.svelte-115pfcb:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.mobile-overlay.svelte-115pfcb.svelte-115pfcb{position:fixed;top:0;right:0;bottom:0;left:0;background:#050912b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:98}.mobile-menu.svelte-115pfcb.svelte-115pfcb{position:fixed;inset-block-start:0;inset-inline-end:0;inset-block-end:0;width:min(320px,80vw);background:var(--clr-bg-1);border-inline-start:1px solid var(--clr-border);z-index:99;padding:5rem 2rem 2rem;display:flex;flex-direction:column}.mobile-menu.svelte-115pfcb nav.svelte-115pfcb{display:flex;flex-direction:column;gap:var(--space-2)}.mobile-link.svelte-115pfcb.svelte-115pfcb{font-family:var(--font-display);font-size:var(--text-xl);font-weight:600;color:var(--clr-text-2);padding-block:var(--space-3);border-block-end:1px solid var(--clr-border);transition:color var(--transition)}.mobile-link.svelte-115pfcb.svelte-115pfcb:hover,.mobile-link.active.svelte-115pfcb.svelte-115pfcb{color:var(--clr-cyan)}@media (max-width: 768px){.nav.svelte-115pfcb.svelte-115pfcb,.cta-btn.svelte-115pfcb.svelte-115pfcb{display:none}.hamburger.svelte-115pfcb.svelte-115pfcb{display:flex}}.footer.svelte-1sa4xaa.svelte-1sa4xaa{position:relative;background:var(--clr-bg-1);border-top:1px solid var(--clr-border);padding-block-start:var(--space-16);padding-block-end:var(--space-8);overflow:hidden}.glow-bar.svelte-1sa4xaa.svelte-1sa4xaa{position:absolute;inset-block-start:0;inset-inline-start:50%;translate:-50% 0;width:60%;height:1px;background:var(--grad-brand);filter:blur(2px)}.footer-grid.svelte-1sa4xaa.svelte-1sa4xaa{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:var(--space-12);margin-block-end:var(--space-12)}.logo.svelte-1sa4xaa.svelte-1sa4xaa{display:inline-flex;align-items:baseline;font-family:var(--font-display);font-size:1.4rem;font-weight:800;letter-spacing:-.03em;margin-block-end:var(--space-4)}.logo-mark.svelte-1sa4xaa.svelte-1sa4xaa{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.logo-word.svelte-1sa4xaa.svelte-1sa4xaa{color:var(--clr-text-0)}.tagline.svelte-1sa4xaa.svelte-1sa4xaa{font-size:var(--text-sm);color:var(--clr-text-3);line-height:1.7;max-width:28ch;margin-block-end:var(--space-6)}.socials.svelte-1sa4xaa.svelte-1sa4xaa{display:flex;gap:var(--space-3)}.social-link.svelte-1sa4xaa.svelte-1sa4xaa{display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border-radius:var(--radius-full);border:1px solid var(--clr-border);color:var(--clr-text-3);transition:all var(--transition)}.social-link.svelte-1sa4xaa.svelte-1sa4xaa:hover{border-color:var(--clr-cyan);color:var(--clr-cyan);box-shadow:0 0 15px #00c9ff33}.links-col.svelte-1sa4xaa h4.svelte-1sa4xaa,.contact-col.svelte-1sa4xaa h4.svelte-1sa4xaa{font-family:var(--font-display);font-size:var(--text-sm);font-weight:600;color:var(--clr-text-0);margin-block-end:var(--space-5);letter-spacing:.01em}.links-col.svelte-1sa4xaa ul.svelte-1sa4xaa{list-style:none;display:flex;flex-direction:column;gap:var(--space-3)}.links-col.svelte-1sa4xaa a.svelte-1sa4xaa{font-size:var(--text-sm);color:var(--clr-text-3);transition:color var(--transition)}.links-col.svelte-1sa4xaa a.svelte-1sa4xaa:hover{color:var(--clr-cyan)}.contact-col.svelte-1sa4xaa p.svelte-1sa4xaa{font-size:var(--text-sm);color:var(--clr-text-3);line-height:1.7;margin-block-end:var(--space-5);max-width:24ch}.footer-cta.svelte-1sa4xaa.svelte-1sa4xaa{font-size:var(--text-xs);padding:.625rem 1.25rem}.divider.svelte-1sa4xaa.svelte-1sa4xaa{height:1px;background:var(--clr-border);border:none;margin-block-end:var(--space-6)}.footer-bottom.svelte-1sa4xaa.svelte-1sa4xaa{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:var(--space-4)}.copyright.svelte-1sa4xaa.svelte-1sa4xaa,.built-with.svelte-1sa4xaa.svelte-1sa4xaa{font-size:var(--text-xs);color:var(--clr-text-3)}.built-with.svelte-1sa4xaa.svelte-1sa4xaa{opacity:.6}@media (max-width: 1024px){.footer-grid.svelte-1sa4xaa.svelte-1sa4xaa{grid-template-columns:1fr 1fr}.brand-col.svelte-1sa4xaa.svelte-1sa4xaa{grid-column:span 2}}@media (max-width: 640px){.footer-grid.svelte-1sa4xaa.svelte-1sa4xaa{grid-template-columns:1fr}.brand-col.svelte-1sa4xaa.svelte-1sa4xaa{grid-column:span 1}}.backdrop.svelte-114f9pn.svelte-114f9pn{position:fixed;top:0;right:0;bottom:0;left:0;background:#050912d9;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:200;display:flex;align-items:center;justify-content:center;padding:1.5rem;animation:svelte-114f9pn-fade-in .2s ease both}@keyframes svelte-114f9pn-fade-in{0%{opacity:0}to{opacity:1}}@keyframes svelte-114f9pn-slide-up{0%{opacity:0;transform:translateY(24px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.modal.svelte-114f9pn.svelte-114f9pn{background:var(--clr-bg-1);border:1px solid var(--clr-border);border-radius:var(--radius-xl);width:100%;max-width:620px;max-height:90dvh;overflow-y:auto;box-shadow:0 24px 80px #000000b3,0 0 0 1px #00c9ff0d;animation:svelte-114f9pn-slide-up .3s cubic-bezier(.34,1.56,.64,1) both}.modal-head.svelte-114f9pn.svelte-114f9pn{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:1.75rem 1.75rem 1.25rem;border-bottom:1px solid var(--clr-border);position:sticky;top:0;background:var(--clr-bg-1);z-index:10}.tier-badge.svelte-114f9pn.svelte-114f9pn{display:inline-block;padding:.2rem .65rem;border-radius:var(--radius-full);font-size:.65rem;font-weight:700;font-family:var(--font-display);letter-spacing:.08em;text-transform:uppercase;margin-bottom:.5rem}.tier-1.svelte-114f9pn.svelte-114f9pn{background:#10b9811f;color:var(--clr-green);border:1px solid rgba(16,185,129,.25)}.tier-2.svelte-114f9pn.svelte-114f9pn{background:#00c9ff1f;color:var(--clr-cyan);border:1px solid rgba(0,201,255,.25)}.tier-3.svelte-114f9pn.svelte-114f9pn{background:#8b5cf61f;color:var(--clr-purple);border:1px solid rgba(139,92,246,.25)}.modal-title.svelte-114f9pn.svelte-114f9pn{font-size:1.25rem;font-weight:700;color:var(--clr-text-0);margin-bottom:.2rem}.modal-price.svelte-114f9pn.svelte-114f9pn{font-size:.8rem;color:var(--clr-text-3);font-family:var(--font-display)}.close-btn.svelte-114f9pn.svelte-114f9pn{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:var(--radius-full);border:1px solid var(--clr-border);background:transparent;color:var(--clr-text-3);cursor:pointer;transition:all var(--transition)}.close-btn.svelte-114f9pn.svelte-114f9pn:hover{border-color:var(--clr-text-2);color:var(--clr-text-0)}.progress-wrap.svelte-114f9pn.svelte-114f9pn{padding:1.25rem 1.75rem 0}.progress-track.svelte-114f9pn.svelte-114f9pn{height:3px;background:var(--clr-border);border-radius:var(--radius-full);overflow:hidden;margin-bottom:1rem}.progress-fill.svelte-114f9pn.svelte-114f9pn{height:100%;background:var(--grad-brand);border-radius:var(--radius-full);transition:width .4s cubic-bezier(.4,0,.2,1)}.step-labels.svelte-114f9pn.svelte-114f9pn{display:flex;gap:.25rem;flex-wrap:wrap}.step-label.svelte-114f9pn.svelte-114f9pn{display:flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:500;color:var(--clr-text-3);font-family:var(--font-display);transition:color var(--transition);flex:1;min-width:80px}.step-label.active.svelte-114f9pn.svelte-114f9pn{color:var(--clr-cyan)}.step-label.done.svelte-114f9pn.svelte-114f9pn{color:var(--clr-green)}.step-dot.svelte-114f9pn.svelte-114f9pn{display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;border-radius:var(--radius-full);font-size:.6rem;font-weight:700;background:var(--clr-bg-0);border:1.5px solid currentColor;flex-shrink:0}.modal-body.svelte-114f9pn.svelte-114f9pn{padding:1.5rem 1.75rem}.step-title.svelte-114f9pn.svelte-114f9pn{font-size:1.05rem;font-weight:700;color:var(--clr-text-0);margin-bottom:.4rem}.step-sub.svelte-114f9pn.svelte-114f9pn{font-size:.85rem;color:var(--clr-text-3);margin-bottom:1.5rem;line-height:1.6}.fields.svelte-114f9pn.svelte-114f9pn{display:flex;flex-direction:column;gap:1.1rem}.field.svelte-114f9pn.svelte-114f9pn{display:flex;flex-direction:column;gap:.35rem}.field.svelte-114f9pn label.svelte-114f9pn,.group-label.svelte-114f9pn.svelte-114f9pn{font-size:.8rem;font-weight:600;color:var(--clr-text-1);font-family:var(--font-display);letter-spacing:.01em}.req.svelte-114f9pn.svelte-114f9pn{color:var(--clr-cyan)}.hint.svelte-114f9pn.svelte-114f9pn{font-size:.72rem;color:var(--clr-text-3);line-height:1.5}input[type=text].svelte-114f9pn.svelte-114f9pn,input[type=email].svelte-114f9pn.svelte-114f9pn,input[type=url].svelte-114f9pn.svelte-114f9pn,textarea.svelte-114f9pn.svelte-114f9pn,select.svelte-114f9pn.svelte-114f9pn{background:var(--clr-bg-0);border:1.5px solid var(--clr-border);border-radius:var(--radius);padding:.65rem .875rem;color:var(--clr-text-0);font-size:.875rem;transition:border-color var(--transition),box-shadow var(--transition);width:100%}input.svelte-114f9pn.svelte-114f9pn:focus,textarea.svelte-114f9pn.svelte-114f9pn:focus,select.svelte-114f9pn.svelte-114f9pn:focus{outline:none;border-color:var(--clr-cyan);box-shadow:0 0 0 3px #00c9ff1f}input.svelte-114f9pn.svelte-114f9pn::placeholder,textarea.svelte-114f9pn.svelte-114f9pn::placeholder{color:var(--clr-text-3)}textarea.svelte-114f9pn.svelte-114f9pn{resize:vertical;min-height:90px}select.svelte-114f9pn.svelte-114f9pn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .875rem center;padding-right:2.5rem;cursor:pointer}.radio-group.svelte-114f9pn.svelte-114f9pn,.checkbox-group.svelte-114f9pn.svelte-114f9pn{display:flex;flex-direction:column;gap:.5rem}.radio-opt.svelte-114f9pn.svelte-114f9pn,.check-opt.svelte-114f9pn.svelte-114f9pn{display:flex;align-items:center;gap:.6rem;cursor:pointer;padding:.5rem .75rem;border-radius:var(--radius);border:1.5px solid var(--clr-border);transition:all var(--transition);font-size:.85rem;color:var(--clr-text-1)}.radio-opt.svelte-114f9pn.svelte-114f9pn:hover,.check-opt.svelte-114f9pn.svelte-114f9pn:hover{border-color:var(--clr-cyan);background:#00c9ff0a}.radio-opt.svelte-114f9pn input.svelte-114f9pn,.check-opt.svelte-114f9pn input.svelte-114f9pn{accent-color:var(--clr-cyan);width:auto;flex-shrink:0}.submit-error.svelte-114f9pn.svelte-114f9pn{margin-top:1rem;padding:.75rem 1rem;background:#ef444414;border:1px solid rgba(239,68,68,.25);border-radius:var(--radius);font-size:.82rem;color:#f87171;line-height:1.5}.modal-actions.svelte-114f9pn.svelte-114f9pn{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid var(--clr-border)}.spinner.svelte-114f9pn.svelte-114f9pn{display:inline-block;width:1rem;height:1rem;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:svelte-114f9pn-spin .7s linear infinite}@keyframes svelte-114f9pn-spin{to{transform:rotate(360deg)}}.success-state.svelte-114f9pn.svelte-114f9pn{padding:2.5rem 1.75rem;text-align:center;display:flex;flex-direction:column;align-items:center;gap:1rem}.success-icon.svelte-114f9pn.svelte-114f9pn{width:4rem;height:4rem;border-radius:50%;background:#10b9811f;border:1.5px solid var(--clr-green);display:flex;align-items:center;justify-content:center;color:var(--clr-green);margin-bottom:.5rem}.success-state.svelte-114f9pn h3.svelte-114f9pn{font-size:1.3rem;color:var(--clr-text-0)}.success-state.svelte-114f9pn p.svelte-114f9pn{font-size:.9rem;color:var(--clr-text-2);max-width:40ch;line-height:1.7}.success-state.svelte-114f9pn strong.svelte-114f9pn{color:var(--clr-text-0)}.success-note.svelte-114f9pn.svelte-114f9pn{font-size:.8rem!important;color:var(--clr-text-3)!important;background:var(--clr-bg-0);border:1px solid var(--clr-border);border-radius:var(--radius);padding:.875rem 1rem}.fade-in.svelte-114f9pn.svelte-114f9pn{animation:svelte-114f9pn-fade-in .25s ease both}@media (max-width: 480px){.modal.svelte-114f9pn.svelte-114f9pn{max-height:95dvh;border-radius:var(--radius-lg)}.modal-head.svelte-114f9pn.svelte-114f9pn{padding:1.25rem 1.25rem 1rem}.modal-body.svelte-114f9pn.svelte-114f9pn{padding:1.25rem}.progress-wrap.svelte-114f9pn.svelte-114f9pn{padding:1rem 1.25rem 0}.modal-actions.svelte-114f9pn.svelte-114f9pn{flex-direction:column-reverse}.modal-actions.svelte-114f9pn .btn.svelte-114f9pn{width:100%;justify-content:center}}main.svelte-6cymq0{min-height:100dvh}
