:root{--color-body-bg: #f8fafc;--color-text: #0f172a;--color-text-muted: #475467;--color-text-subtle: #64748b;--color-surface: #ffffff;--color-surface-muted: #f1f5f9;--color-surface-alt: #eef2ff;--color-border: rgba(15, 23, 42, .08);--color-border-strong: rgba(15, 23, 42, .12);--color-accent: #2563eb;--color-accent-strong: #1d4ed8;--color-accent-contrast: #ffffff;--color-success: #16a34a;--color-success-bg: #d1fae5;--color-success-border: #a7f3d0;--color-success-text: #065f46;--color-warning: #d97706;--color-warning-bg: #fef3c7;--color-warning-border: #fde68a;--color-warning-text: #92400e;--color-error: #dc2626;--color-error-bg: #fee2e2;--color-error-border: #fecaca;--color-error-text: #991b1b;--gradient-hero: linear-gradient(135deg, #2563eb, #7c3aed);--gradient-brand: linear-gradient(135deg, #4A7DFF 0%, #6B5CE7 100%);--radius-sm: 6px;--radius-md: 8px;--radius-lg: 10px;--radius-xl: 12px;--radius-full: 9999px;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1);--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1);--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1);--transition-fast: .15s;--transition-normal: .2s;--transition-slow: .3s;--easing-default: cubic-bezier(.4, 0, .2, 1);--z-dropdown: 100;--z-sticky: 200;--z-sidebar: 300;--z-overlay: 400;--z-modal: 1000;--sidebar-width: 260px;color-scheme:light}:root[data-theme=dark]{--color-body-bg: #040816;--color-text: #f8fafc;--color-text-muted: #cbd5f5;--color-text-subtle: #9ca3af;--color-surface: #0f172a;--color-surface-muted: #0d1528;--color-surface-alt: rgba(79, 70, 229, .12);--color-border: rgba(148, 163, 184, .25);--color-border-strong: rgba(148, 163, 184, .35);--color-accent: #a5b4fc;--color-accent-strong: #c4b5fd;--color-accent-contrast: #111827;--gradient-hero: linear-gradient(135deg, #3b82f6, #8b5cf6);--gradient-brand: linear-gradient(135deg, #3b82f6, #8b5cf6);--color-success-bg: rgba(22, 163, 74, .15);--color-success-border: rgba(22, 163, 74, .3);--color-success-text: #4ade80;--color-warning-bg: rgba(217, 119, 6, .15);--color-warning-border: rgba(217, 119, 6, .3);--color-warning-text: #fbbf24;--color-error-bg: rgba(220, 38, 38, .15);--color-error-border: rgba(220, 38, 38, .3);--color-error-text: #f87171;color-scheme:dark}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;background-color:var(--color-body-bg);color:var(--color-text);line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{min-height:100vh}:focus-visible{outline:2px solid var(--color-accent);outline-offset:2px}.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.25rem;background:var(--gradient-brand);color:var(--color-accent-contrast);border:none;border-radius:var(--radius-lg);font-size:.9375rem;font-weight:600;cursor:pointer;transition:all var(--transition-normal) var(--easing-default)}.btn-primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 12px #4a7dff59}.btn-primary:disabled{opacity:.6;cursor:not-allowed;transform:none}.btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.25rem;background:var(--color-surface);color:var(--color-accent);border:1px solid var(--color-accent);border-radius:var(--radius-lg);font-size:.9375rem;font-weight:600;cursor:pointer;transition:all var(--transition-normal) var(--easing-default)}.btn-secondary:hover:not(:disabled){background:var(--color-surface-alt)}.btn-secondary:disabled{opacity:.6;cursor:not-allowed}.btn-danger{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.25rem;background:var(--color-error);color:#fff;border:none;border-radius:var(--radius-lg);font-size:.9375rem;font-weight:600;cursor:pointer;transition:all var(--transition-normal) var(--easing-default)}.btn-danger:hover:not(:disabled){background:#b91c1c}.btn-cancel{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.25rem;background:var(--color-surface-muted);color:var(--color-text-muted);border:1px solid var(--color-border-strong);border-radius:var(--radius-lg);font-size:.9375rem;font-weight:600;cursor:pointer;transition:all var(--transition-normal) var(--easing-default)}.btn-cancel:hover:not(:disabled){background:var(--color-border-strong)}.form-group{margin-bottom:1rem}.form-group label{display:block;font-weight:500;color:var(--color-text);margin-bottom:.375rem;font-size:.875rem}.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem;border:1.5px solid var(--color-border-strong);border-radius:var(--radius-lg);font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:border-color var(--transition-normal),box-shadow var(--transition-normal)}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #2563eb1a}.form-group input:disabled,.form-group select:disabled{background:var(--color-surface-muted);cursor:not-allowed;color:var(--color-text-subtle)}.form-group input::placeholder{color:var(--color-text-subtle)}.form-error{background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error-text);padding:.75rem 1rem;border-radius:var(--radius-md);margin-bottom:1rem;font-size:.875rem}.field-error{display:block;font-size:.8rem;color:var(--color-error);margin-top:.25rem}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;display:flex;align-items:center;justify-content:center;padding:1rem;z-index:var(--z-modal)}.modal{background:var(--color-surface);border-radius:var(--radius-xl);width:100%;max-width:420px;box-shadow:var(--shadow-xl);max-height:calc(100vh - 2rem);overflow-y:auto}.modal.modal-sm{max-width:320px}.modal.modal-lg{max-width:560px}.modal.modal-xl{max-width:720px}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;border-bottom:1px solid var(--color-border)}.modal-header h3{margin:0;font-size:1.1rem;font-weight:600}.modal-body{padding:1.5rem}.modal-actions{display:flex;gap:.75rem;justify-content:flex-end;padding:1.5rem;padding-top:0}.btn-close{background:none;border:none;font-size:1.5rem;color:var(--color-text-subtle);cursor:pointer;line-height:1}.spinner{width:32px;height:32px;border:3px solid var(--color-border-strong);border-top-color:var(--color-accent);border-radius:50%;animation:spin .8s linear infinite}.spinner-small{width:16px;height:16px;border-width:2px}.spinner-large{width:48px;height:48px;border-width:4px}@keyframes spin{to{transform:rotate(360deg)}}.status-badge{display:inline-block;padding:.25rem .75rem;border-radius:var(--radius-full);font-size:.75rem;font-weight:600;text-transform:capitalize}.status-badge.status-active,.status-badge.status-success{background:var(--color-success-bg);color:var(--color-success-text)}.status-badge.status-pending,.status-badge.status-warning{background:var(--color-warning-bg);color:var(--color-warning-text)}.status-badge.status-inactive,.status-badge.status-error{background:var(--color-error-bg);color:var(--color-error-text)}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@media(max-width:768px){.modal{max-width:calc(100% - 2rem)}.modal-actions{flex-direction:column-reverse}.modal-actions button{width:100%}}.spinner-light.svelte-oagnpm{border-color:#ffffff4d;border-top-color:#fff}.login-container.svelte-1qhlx2k{min-height:100vh;display:flex;flex-direction:row}.form-panel.svelte-1qhlx2k{flex:1;display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--color-body-bg)}.form-content.svelte-1qhlx2k{width:100%;max-width:380px}.welcome-section.svelte-1qhlx2k{text-align:center;margin-bottom:2rem;display:flex;flex-direction:column;align-items:center}.welcome-text.svelte-1qhlx2k{font-size:.75rem;font-weight:600;letter-spacing:.15em;color:var(--color-text-muted);margin-bottom:.75rem}.logo-icon.svelte-1qhlx2k{width:64px;height:64px;border-radius:14px;margin-bottom:.75rem}.logo-text.svelte-1qhlx2k{font-size:1.75rem;font-weight:700;color:var(--color-text);letter-spacing:-.02em;margin-bottom:.5rem}.subtitle.svelte-1qhlx2k{font-size:.875rem;color:var(--color-text-muted);line-height:1.5}.error-message.svelte-1qhlx2k{display:flex;align-items:center;gap:.75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error);padding:.875rem 1rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem;animation:svelte-1qhlx2k-shake .5s ease-in-out}.error-message.svelte-1qhlx2k svg:where(.svelte-1qhlx2k){width:20px;height:20px;flex-shrink:0}@keyframes svelte-1qhlx2k-shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}form.svelte-1qhlx2k{display:flex;flex-direction:column;gap:1rem}.form-group.svelte-1qhlx2k{display:flex;flex-direction:column}.input-wrapper.svelte-1qhlx2k{position:relative;display:flex;align-items:center}.input-icon.svelte-1qhlx2k{position:absolute;left:1rem;width:20px;height:20px;color:var(--color-text-subtle);pointer-events:none;transition:color .2s ease}.input-wrapper.svelte-1qhlx2k:focus-within .input-icon:where(.svelte-1qhlx2k){color:var(--color-accent)}input[type=email].svelte-1qhlx2k,input[type=password].svelte-1qhlx2k,input[type=text].svelte-1qhlx2k{width:100%;padding:.875rem 1rem .875rem 3rem;border:1.5px solid var(--color-border-strong);border-radius:10px;font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:all .2s ease}input.svelte-1qhlx2k::placeholder{color:var(--color-text-subtle)}input.svelte-1qhlx2k:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff1a}input.svelte-1qhlx2k:disabled{background:var(--color-surface-muted);cursor:not-allowed}.password-toggle.svelte-1qhlx2k{position:absolute;right:1rem;background:none;border:none;cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;color:var(--color-text-subtle);transition:color .2s ease}.password-toggle.svelte-1qhlx2k:hover{color:var(--color-accent)}.password-toggle.svelte-1qhlx2k svg:where(.svelte-1qhlx2k){width:20px;height:20px}.options-row.svelte-1qhlx2k{display:flex;justify-content:space-between;align-items:center;margin-top:.25rem}.remember-me.svelte-1qhlx2k{display:flex;align-items:center;gap:.5rem;cursor:pointer;font-size:.875rem;color:var(--color-text-muted)}.remember-me.svelte-1qhlx2k input[type=checkbox]:where(.svelte-1qhlx2k){width:18px;height:18px;accent-color:var(--color-accent);cursor:pointer}.forgot-link.svelte-1qhlx2k{background:none;border:none;color:var(--color-accent);font-size:.875rem;cursor:pointer;font-weight:500;transition:color .2s ease}.forgot-link.svelte-1qhlx2k:hover{color:var(--color-accent-strong);text-decoration:underline}.btn-primary.svelte-1qhlx2k{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.875rem 1.5rem;margin-top:.5rem;background:var(--gradient-brand);color:#fff;border:none;border-radius:10px;font-size:.9375rem;font-weight:600;letter-spacing:.05em;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-1qhlx2k:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-1qhlx2k:active:not(:disabled){transform:translateY(0)}.btn-primary.svelte-1qhlx2k:disabled{opacity:.7;cursor:not-allowed}.signup-link.svelte-1qhlx2k{text-align:center;margin-top:1.5rem;font-size:.875rem;color:var(--color-text-muted)}.signup-link.svelte-1qhlx2k button:where(.svelte-1qhlx2k){background:none;border:none;color:var(--color-accent);font-weight:600;cursor:pointer;text-decoration:underline;transition:color .2s ease}.signup-link.svelte-1qhlx2k button:where(.svelte-1qhlx2k):hover{color:var(--color-accent-strong)}.divider.svelte-1qhlx2k{display:flex;align-items:center;margin:1.5rem 0;gap:1rem}.divider.svelte-1qhlx2k:before,.divider.svelte-1qhlx2k:after{content:"";flex:1;height:1px;background:var(--color-border-strong)}.divider.svelte-1qhlx2k span:where(.svelte-1qhlx2k){font-size:.75rem;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.1em}.social-text.svelte-1qhlx2k{text-align:center;font-size:.8125rem;color:var(--color-text-subtle);margin-bottom:1rem}.social-buttons.svelte-1qhlx2k{display:flex;justify-content:center;gap:1rem}.social-btn.svelte-1qhlx2k{width:48px;height:48px;border-radius:50%;border:1.5px solid var(--color-border-strong);background:var(--color-surface);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.social-btn.svelte-1qhlx2k:hover:not(:disabled){border-color:var(--color-accent);transform:translateY(-2px);box-shadow:0 4px 12px #0000001a}.social-btn.svelte-1qhlx2k:disabled{opacity:.5;cursor:not-allowed}.social-btn.svelte-1qhlx2k svg:where(.svelte-1qhlx2k){width:24px;height:24px}.version.svelte-1qhlx2k{text-align:center;margin-top:2rem;font-size:.75rem;color:var(--color-text-subtle)}.brand-panel.svelte-1qhlx2k{flex:1;display:flex;align-items:center;justify-content:center;background:var(--gradient-brand);position:relative;overflow:hidden}.brand-content.svelte-1qhlx2k{text-align:center;color:#fff;z-index:1;padding:2rem}.circle.svelte-1qhlx2k{position:absolute;border-radius:50%;background:#ffffff1a}.circle-1.svelte-1qhlx2k{width:300px;height:300px;top:-100px;right:-50px}.circle-2.svelte-1qhlx2k{width:200px;height:200px;bottom:-50px;left:-50px}.circle-3.svelte-1qhlx2k{width:150px;height:150px;top:50%;right:10%;background:#ffffff0d}.brand-logo.svelte-1qhlx2k{width:100px;height:100px;margin:0 auto 1.5rem}.brand-logo-img.svelte-1qhlx2k{width:100%;height:100%;border-radius:20px;filter:drop-shadow(0 4px 20px rgba(0,0,0,.15))}.brand-name.svelte-1qhlx2k{font-size:2.5rem;font-weight:700;margin-bottom:.5rem;letter-spacing:-.02em}.brand-tagline.svelte-1qhlx2k{font-size:1.1rem;font-weight:600;opacity:.95;margin-bottom:1rem}.brand-description.svelte-1qhlx2k{font-size:.95rem;line-height:1.6;opacity:.85;max-width:320px;margin:0 auto 1.25rem}.app-link.svelte-1qhlx2k{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.5rem;background:var(--color-surface);color:var(--color-accent);border-radius:10px;font-weight:600;font-size:1rem;text-decoration:none;transition:all .2s cubic-bezier(.4,0,.2,1);box-shadow:0 4px 12px #00000026}.app-link.svelte-1qhlx2k:hover{transform:translateY(-2px);box-shadow:0 6px 20px #0003}.app-link.svelte-1qhlx2k svg:where(.svelte-1qhlx2k){width:18px;height:18px}@media(max-width:968px){.login-container.svelte-1qhlx2k{flex-direction:column-reverse}.brand-panel.svelte-1qhlx2k{padding:3rem 2rem;min-height:auto}.brand-logo.svelte-1qhlx2k{width:70px;height:70px;margin-bottom:1rem}.brand-name.svelte-1qhlx2k{font-size:1.75rem}.brand-tagline.svelte-1qhlx2k{font-size:.875rem}.circle-1.svelte-1qhlx2k{width:150px;height:150px;top:-50px;right:-30px}.circle-2.svelte-1qhlx2k{width:100px;height:100px;bottom:-30px;left:-30px}.circle-3.svelte-1qhlx2k{display:none}.form-panel.svelte-1qhlx2k{padding:2rem 1.5rem 3rem}}@media(max-width:480px){.form-content.svelte-1qhlx2k{max-width:100%}.logo-text.svelte-1qhlx2k{font-size:1.5rem}.options-row.svelte-1qhlx2k{flex-direction:column;gap:.75rem;align-items:flex-start}}.forgot-container.svelte-1dyzpel{min-height:100vh;display:flex;flex-direction:row}.form-panel.svelte-1dyzpel{flex:1;display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--color-body-bg)}.form-content.svelte-1dyzpel{width:100%;max-width:380px}.header-section.svelte-1dyzpel{text-align:center;margin-bottom:2rem}.logo-container.svelte-1dyzpel{display:flex;align-items:center;justify-content:center;gap:.75rem;margin-bottom:1.5rem}.logo-icon.svelte-1dyzpel{width:40px;height:40px;border-radius:10px}.logo-text.svelte-1dyzpel{font-size:1.5rem;font-weight:700;color:var(--color-text);letter-spacing:-.02em}h1.svelte-1dyzpel{font-size:1.75rem;font-weight:700;color:var(--color-text);margin-bottom:.5rem}.subtitle.svelte-1dyzpel{font-size:.875rem;color:var(--color-text-muted);line-height:1.5}.success-message.svelte-1dyzpel{display:flex;align-items:flex-start;gap:.75rem;background:var(--color-success-bg);border:1px solid var(--color-success-border);color:var(--color-success-text);padding:1rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem;animation:svelte-1dyzpel-slideIn .3s ease-out}.success-message.svelte-1dyzpel svg:where(.svelte-1dyzpel){width:22px;height:22px;flex-shrink:0;margin-top:2px}.success-content.svelte-1dyzpel{display:flex;flex-direction:column;gap:.25rem}.success-content.svelte-1dyzpel strong:where(.svelte-1dyzpel){font-weight:600}.success-content.svelte-1dyzpel span:where(.svelte-1dyzpel){opacity:.9}@keyframes svelte-1dyzpel-slideIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.error-message.svelte-1dyzpel{display:flex;align-items:center;gap:.75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error);padding:.875rem 1rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem;animation:svelte-1dyzpel-shake .5s ease-in-out}.error-message.svelte-1dyzpel svg:where(.svelte-1dyzpel){width:20px;height:20px;flex-shrink:0}@keyframes svelte-1dyzpel-shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}form.svelte-1dyzpel{display:flex;flex-direction:column;gap:1rem}.form-group.svelte-1dyzpel{display:flex;flex-direction:column}.input-wrapper.svelte-1dyzpel{position:relative;display:flex;align-items:center}.input-icon.svelte-1dyzpel{position:absolute;left:1rem;width:20px;height:20px;color:var(--color-text-subtle);pointer-events:none;transition:color .2s ease}.input-wrapper.svelte-1dyzpel:focus-within .input-icon:where(.svelte-1dyzpel){color:var(--color-accent)}input[type=email].svelte-1dyzpel{width:100%;padding:.875rem 1rem .875rem 3rem;border:1.5px solid var(--color-border-strong);border-radius:10px;font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:all .2s ease}input.svelte-1dyzpel::placeholder{color:var(--color-text-subtle)}input.svelte-1dyzpel:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff1a}input.svelte-1dyzpel:disabled{background:var(--color-surface-muted);cursor:not-allowed}.btn-primary.svelte-1dyzpel{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.875rem 1.5rem;margin-top:.5rem;background:var(--gradient-brand);color:#fff;border:none;border-radius:10px;font-size:.9375rem;font-weight:600;letter-spacing:.05em;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-1dyzpel:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-1dyzpel:active:not(:disabled){transform:translateY(0)}.btn-primary.svelte-1dyzpel:disabled{opacity:.7;cursor:not-allowed}.links.svelte-1dyzpel{margin-top:1.5rem;display:flex;justify-content:center}.back-link.svelte-1dyzpel{display:flex;align-items:center;gap:.5rem;background:none;border:none;color:var(--color-accent);font-size:.9375rem;font-weight:500;cursor:pointer;transition:all .2s ease;padding:.5rem 1rem;border-radius:8px}.back-link.svelte-1dyzpel:hover{background:#4a7dff1a}.back-link.svelte-1dyzpel svg:where(.svelte-1dyzpel){width:18px;height:18px}.divider.svelte-1dyzpel{display:flex;align-items:center;margin:1.5rem 0;gap:1rem}.divider.svelte-1dyzpel:before,.divider.svelte-1dyzpel:after{content:"";flex:1;height:1px;background:var(--color-border-strong)}.divider.svelte-1dyzpel span:where(.svelte-1dyzpel){font-size:.75rem;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.1em}.signup-link.svelte-1dyzpel{text-align:center;font-size:.875rem;color:var(--color-text-muted)}.signup-link.svelte-1dyzpel button:where(.svelte-1dyzpel){background:none;border:none;color:var(--color-accent);font-weight:600;cursor:pointer;text-decoration:underline;transition:color .2s ease}.signup-link.svelte-1dyzpel button:where(.svelte-1dyzpel):hover{color:var(--color-accent-strong)}.brand-panel.svelte-1dyzpel{flex:1;display:flex;align-items:center;justify-content:center;background:var(--gradient-brand);position:relative;overflow:hidden}.brand-content.svelte-1dyzpel{text-align:center;color:#fff;z-index:1;padding:2rem}.circle.svelte-1dyzpel{position:absolute;border-radius:50%;background:#ffffff1a}.circle-1.svelte-1dyzpel{width:300px;height:300px;top:-100px;right:-50px}.circle-2.svelte-1dyzpel{width:200px;height:200px;bottom:-50px;left:-50px}.circle-3.svelte-1dyzpel{width:150px;height:150px;top:50%;right:10%;background:#ffffff0d}.illustration.svelte-1dyzpel{width:140px;height:140px;margin:0 auto 1.5rem}.illustration.svelte-1dyzpel svg:where(.svelte-1dyzpel){width:100%;height:100%}.brand-title.svelte-1dyzpel{font-size:1.75rem;font-weight:700;margin-bottom:1rem;letter-spacing:-.02em}.brand-description.svelte-1dyzpel{font-size:1rem;line-height:1.6;opacity:.9;max-width:300px;margin:0 auto}@media(max-width:968px){.forgot-container.svelte-1dyzpel{flex-direction:column-reverse}.brand-panel.svelte-1dyzpel{padding:3rem 2rem;min-height:auto}.illustration.svelte-1dyzpel{width:100px;height:100px;margin-bottom:1rem}.brand-title.svelte-1dyzpel{font-size:1.5rem}.brand-description.svelte-1dyzpel{font-size:.875rem}.circle-1.svelte-1dyzpel{width:150px;height:150px;top:-50px;right:-30px}.circle-2.svelte-1dyzpel{width:100px;height:100px;bottom:-30px;left:-30px}.circle-3.svelte-1dyzpel{display:none}.form-panel.svelte-1dyzpel{padding:2rem 1.5rem 3rem}}@media(max-width:480px){.form-content.svelte-1dyzpel{max-width:100%}.logo-text.svelte-1dyzpel{font-size:1.25rem}h1.svelte-1dyzpel{font-size:1.5rem}}.setpassword-container.svelte-1u8k470{min-height:100vh;display:flex;flex-direction:row}.form-panel.svelte-1u8k470{flex:1;display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--color-body-bg)}.form-content.svelte-1u8k470{width:100%;max-width:380px}.header-section.svelte-1u8k470{text-align:center;margin-bottom:2rem}.logo-container.svelte-1u8k470{display:flex;align-items:center;justify-content:center;gap:.75rem;margin-bottom:1.5rem}.logo-icon.svelte-1u8k470{width:40px;height:40px;border-radius:10px}.logo-text.svelte-1u8k470{font-size:1.5rem;font-weight:700;color:var(--color-text);letter-spacing:-.02em}h1.svelte-1u8k470{font-size:1.75rem;font-weight:700;color:var(--color-text);margin-bottom:.5rem}.subtitle.svelte-1u8k470{font-size:.875rem;color:var(--color-text-muted);line-height:1.5}.loading-state.svelte-1u8k470{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:2rem;color:var(--color-text-muted)}.success-message.svelte-1u8k470{display:flex;align-items:flex-start;gap:.75rem;background:var(--color-success-bg);border:1px solid var(--color-success-border);color:var(--color-success-text);padding:1rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem;animation:svelte-1u8k470-slideIn .3s ease-out}.success-message.svelte-1u8k470 svg:where(.svelte-1u8k470){width:22px;height:22px;flex-shrink:0;margin-top:2px}.success-content.svelte-1u8k470{display:flex;flex-direction:column;gap:.25rem}.success-content.svelte-1u8k470 strong:where(.svelte-1u8k470){font-weight:600}.success-content.svelte-1u8k470 span:where(.svelte-1u8k470){opacity:.9}@keyframes svelte-1u8k470-slideIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.error-message.svelte-1u8k470{display:flex;align-items:center;gap:.75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error);padding:.875rem 1rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem;animation:svelte-1u8k470-shake .5s ease-in-out}.error-message.svelte-1u8k470 svg:where(.svelte-1u8k470){width:20px;height:20px;flex-shrink:0}@keyframes svelte-1u8k470-shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}form.svelte-1u8k470{display:flex;flex-direction:column;gap:1.25rem}.form-group.svelte-1u8k470{display:flex;flex-direction:column;gap:.5rem}.form-group.svelte-1u8k470 label:where(.svelte-1u8k470){font-size:.875rem;font-weight:500;color:var(--color-text-muted)}.hint.svelte-1u8k470{font-size:.75rem;color:var(--color-text-subtle);margin-top:.25rem}.input-wrapper.svelte-1u8k470{position:relative;display:flex;align-items:center}.input-icon.svelte-1u8k470{position:absolute;left:1rem;width:20px;height:20px;color:var(--color-text-subtle);pointer-events:none;transition:color .2s ease}.input-wrapper.svelte-1u8k470:focus-within .input-icon:where(.svelte-1u8k470){color:var(--color-accent)}input[type=password].svelte-1u8k470,input[type=text].svelte-1u8k470{width:100%;padding:.875rem 3rem;border:1.5px solid var(--color-border-strong);border-radius:10px;font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:all .2s ease}input.svelte-1u8k470::placeholder{color:var(--color-text-subtle)}input.svelte-1u8k470:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff1a}input.svelte-1u8k470:disabled{background:var(--color-surface-muted);cursor:not-allowed}.password-toggle.svelte-1u8k470{position:absolute;right:1rem;background:none;border:none;cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;color:var(--color-text-subtle);transition:color .2s ease}.password-toggle.svelte-1u8k470:hover{color:var(--color-accent)}.password-toggle.svelte-1u8k470 svg:where(.svelte-1u8k470){width:20px;height:20px}.btn-primary.svelte-1u8k470{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.875rem 1.5rem;margin-top:.5rem;background:var(--gradient-brand);color:#fff;border:none;border-radius:10px;font-size:.9375rem;font-weight:600;letter-spacing:.05em;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-1u8k470:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-1u8k470:active:not(:disabled){transform:translateY(0)}.btn-primary.svelte-1u8k470:disabled{opacity:.7;cursor:not-allowed}.links.svelte-1u8k470{margin-top:1.5rem;display:flex;justify-content:center}.back-link.svelte-1u8k470{display:flex;align-items:center;gap:.5rem;background:none;border:none;color:var(--color-accent);font-size:.9375rem;font-weight:500;cursor:pointer;transition:all .2s ease;padding:.5rem 1rem;border-radius:8px}.back-link.svelte-1u8k470:hover{background:#4a7dff1a}.back-link.svelte-1u8k470 svg:where(.svelte-1u8k470){width:18px;height:18px}.brand-panel.svelte-1u8k470{flex:1;display:flex;align-items:center;justify-content:center;background:var(--gradient-brand);position:relative;overflow:hidden}.brand-content.svelte-1u8k470{text-align:center;color:#fff;z-index:1;padding:2rem}.circle.svelte-1u8k470{position:absolute;border-radius:50%;background:#ffffff1a}.circle-1.svelte-1u8k470{width:300px;height:300px;top:-100px;right:-50px}.circle-2.svelte-1u8k470{width:200px;height:200px;bottom:-50px;left:-50px}.circle-3.svelte-1u8k470{width:150px;height:150px;top:50%;right:10%;background:#ffffff0d}.illustration.svelte-1u8k470{width:140px;height:140px;margin:0 auto 1.5rem}.illustration.svelte-1u8k470 svg:where(.svelte-1u8k470){width:100%;height:100%}.brand-title.svelte-1u8k470{font-size:1.75rem;font-weight:700;margin-bottom:1rem;letter-spacing:-.02em}.brand-description.svelte-1u8k470{font-size:1rem;line-height:1.6;opacity:.9;max-width:300px;margin:0 auto}@media(max-width:968px){.setpassword-container.svelte-1u8k470{flex-direction:column-reverse}.brand-panel.svelte-1u8k470{padding:3rem 2rem;min-height:auto}.illustration.svelte-1u8k470{width:100px;height:100px;margin-bottom:1rem}.brand-title.svelte-1u8k470{font-size:1.5rem}.brand-description.svelte-1u8k470{font-size:.875rem}.circle-1.svelte-1u8k470{width:150px;height:150px;top:-50px;right:-30px}.circle-2.svelte-1u8k470{width:100px;height:100px;bottom:-30px;left:-30px}.circle-3.svelte-1u8k470{display:none}.form-panel.svelte-1u8k470{padding:2rem 1.5rem 3rem}}@media(max-width:480px){.form-content.svelte-1u8k470{max-width:100%}.logo-text.svelte-1u8k470{font-size:1.25rem}h1.svelte-1u8k470{font-size:1.5rem}}.join-container.svelte-1hchf07{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--gradient-brand);padding:2rem 1rem}.join-shell.svelte-1hchf07{max-width:480px;width:100%}.join-header.svelte-1hchf07{text-align:center;margin-bottom:1.5rem;color:#fff}.logo.svelte-1hchf07{display:inline-block;font-size:1.5rem;font-weight:700;color:#fff;text-decoration:none;margin-bottom:1rem}.eyebrow.svelte-1hchf07{text-transform:uppercase;letter-spacing:.2em;opacity:.8;font-size:.75rem;margin-bottom:.5rem}.join-header.svelte-1hchf07 h1:where(.svelte-1hchf07){font-size:1.75rem;margin-bottom:.5rem}.join-header.svelte-1hchf07 .lede:where(.svelte-1hchf07){opacity:.9;font-size:1rem}.join-header.svelte-1hchf07 .lede:where(.svelte-1hchf07) strong:where(.svelte-1hchf07){color:#fff;font-weight:600}.card.svelte-1hchf07{background:var(--color-surface);border-radius:12px;padding:3rem 2rem;text-align:center;box-shadow:0 10px 40px #00000026;max-width:480px;width:100%}.loading-card.svelte-1hchf07 p:where(.svelte-1hchf07){color:var(--color-text-muted);margin-top:1rem}.spinner-large.svelte-1hchf07{width:48px;height:48px;border:4px solid var(--color-border-strong);border-top-color:var(--color-accent);border-radius:50%;animation:svelte-1hchf07-spin .8s linear infinite;margin:0 auto}@keyframes svelte-1hchf07-spin{to{transform:rotate(360deg)}}.icon.svelte-1hchf07{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}.icon.svelte-1hchf07 svg:where(.svelte-1hchf07){width:32px;height:32px}.icon.error.svelte-1hchf07{background:var(--color-error-bg);color:var(--color-error)}.icon.success.svelte-1hchf07{background:var(--color-success-bg);color:var(--color-success)}.error-card.svelte-1hchf07 h1:where(.svelte-1hchf07),.success-card.svelte-1hchf07 h1:where(.svelte-1hchf07){font-size:1.5rem;margin-bottom:.75rem;color:var(--color-text)}.error-card.svelte-1hchf07 p:where(.svelte-1hchf07),.success-card.svelte-1hchf07 p:where(.svelte-1hchf07){color:var(--color-text-muted);margin-bottom:1.5rem}.actions.svelte-1hchf07{display:flex;flex-direction:column;gap:.75rem}.role-badge.svelte-1hchf07{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:var(--color-surface-muted);border-radius:999px;margin-bottom:1.5rem}.role-badge.svelte-1hchf07 .label:where(.svelte-1hchf07){color:var(--color-text-muted);font-size:.875rem}.role-badge.svelte-1hchf07 .value:where(.svelte-1hchf07){font-weight:600;color:var(--color-accent)}.invite-card.svelte-1hchf07{background:var(--color-surface);border-radius:12px;padding:1.25rem;margin-bottom:1rem;box-shadow:0 4px 20px #0000001a}.invite-info.svelte-1hchf07{display:flex;flex-direction:column;gap:.5rem}.invite-row.svelte-1hchf07{display:flex;justify-content:space-between;align-items:center}.invite-label.svelte-1hchf07{color:var(--color-text-muted);font-size:.875rem}.invite-value.svelte-1hchf07{font-weight:500;color:var(--color-text)}.join-form.svelte-1hchf07{background:var(--color-surface);border-radius:12px;padding:1.5rem;box-shadow:0 10px 40px #00000026}.form-grid.svelte-1hchf07{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.5rem}.form-group.svelte-1hchf07{display:flex;flex-direction:column;gap:.375rem}.form-group.full-width.svelte-1hchf07{grid-column:1 / -1}.form-group.svelte-1hchf07 label:where(.svelte-1hchf07){font-weight:500;font-size:.875rem;color:var(--color-text-muted)}.form-group.svelte-1hchf07 input:where(.svelte-1hchf07){padding:.75rem;border:1px solid var(--color-border-strong);border-radius:8px;font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:border-color .2s,box-shadow .2s}.form-group.svelte-1hchf07 input:where(.svelte-1hchf07):focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff1a}.form-group.svelte-1hchf07 input:where(.svelte-1hchf07):disabled{background:var(--color-surface-muted);color:var(--color-text-muted)}.field-hint.svelte-1hchf07{font-size:.75rem;color:var(--color-text-muted)}.error-banner.svelte-1hchf07{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);border-radius:8px;color:var(--color-error);font-size:.875rem;margin-bottom:1rem}.error-banner.svelte-1hchf07 span:where(.svelte-1hchf07){font-weight:700}.btn-primary.svelte-1hchf07{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.875rem 1.5rem;background:var(--gradient-brand);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:transform .2s,box-shadow .2s}.btn-primary.svelte-1hchf07:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 12px #4a7dff66}.btn-primary.svelte-1hchf07:disabled{opacity:.7;cursor:not-allowed}.btn-primary.full-width.svelte-1hchf07{width:100%}.btn-secondary.svelte-1hchf07{display:inline-flex;align-items:center;justify-content:center;padding:.875rem 1.5rem;background:var(--color-surface);color:var(--color-accent);border:1px solid var(--color-accent);border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:background .2s}.btn-secondary.svelte-1hchf07:hover{background:var(--color-surface-muted)}.spinner.svelte-1hchf07{width:18px;height:18px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:svelte-1hchf07-spin .8s linear infinite}.links.svelte-1hchf07{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:1.25rem;color:var(--color-text-muted);font-size:.875rem}.link-button.svelte-1hchf07{background:none;border:none;color:var(--color-accent);font-weight:600;cursor:pointer;text-decoration:underline}.link-button.svelte-1hchf07:hover{color:var(--color-accent-strong)}.helper.svelte-1hchf07{text-align:center;color:var(--color-text-muted);font-size:.875rem;margin-top:1rem}.helper.svelte-1hchf07 a:where(.svelte-1hchf07){color:var(--color-accent)}@media(max-width:480px){.form-grid.svelte-1hchf07{grid-template-columns:1fr}.form-group.full-width.svelte-1hchf07{grid-column:1}.card.svelte-1hchf07{padding:2rem 1.5rem}}.step-indicator.svelte-1o5gnm5{display:flex;align-items:center;justify-content:center;gap:0;margin-bottom:2rem}.step.svelte-1o5gnm5{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:999px;background:#fff3;transition:all .25s ease;border:none;font-family:inherit}.step.clickable.svelte-1o5gnm5{cursor:pointer}.step.clickable.svelte-1o5gnm5:hover:not(.active){background:#ffffff59;transform:translateY(-1px)}.step.disabled.svelte-1o5gnm5{cursor:not-allowed;opacity:.6}.step.active.svelte-1o5gnm5{background:var(--color-surface);box-shadow:0 4px 12px #00000026}.step.active.svelte-1o5gnm5 .step-number:where(.svelte-1o5gnm5),.step.active.svelte-1o5gnm5 .step-label:where(.svelte-1o5gnm5){color:var(--color-accent)}.step.completed.svelte-1o5gnm5{background:#fff6}.step.completed.svelte-1o5gnm5 .step-number:where(.svelte-1o5gnm5){color:var(--color-surface);background:var(--color-success)}.step-number.svelte-1o5gnm5{width:1.5rem;height:1.5rem;border-radius:50%;background:#ffffff4d;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;color:var(--color-surface);transition:all .25s ease}.step.active.svelte-1o5gnm5 .step-number:where(.svelte-1o5gnm5){background:var(--color-accent);color:var(--color-surface)}.step-label.svelte-1o5gnm5{font-weight:600;color:var(--color-surface);font-size:.9rem;transition:color .25s ease}.step-connector.svelte-1o5gnm5{width:3rem;height:2px;background:#ffffff4d;transition:all .3s ease}.step-connector.completed.svelte-1o5gnm5{background:var(--color-surface)}@media(max-width:640px){.step-label.svelte-1o5gnm5{display:none}}.signup-form.svelte-109mqek{background:var(--color-surface);border-radius:16px;padding:clamp(1.5rem,3vw,2.5rem);box-shadow:0 20px 60px #0000001f}.form-section.svelte-109mqek{margin-bottom:2rem}.form-section.svelte-109mqek:last-of-type{margin-bottom:1.5rem}.form-section.svelte-109mqek h3:where(.svelte-109mqek){color:var(--color-text);font-size:1.1rem;font-weight:600;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border-strong)}.section-optional.svelte-109mqek{font-weight:400;font-size:.85rem;color:var(--color-text-subtle)}.form-grid.svelte-109mqek{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}.form-group.svelte-109mqek{display:flex;flex-direction:column;gap:.4rem}.form-group.full-width.svelte-109mqek{grid-column:1 / -1}.form-group.svelte-109mqek label:where(.svelte-109mqek){font-weight:500;color:var(--color-text);font-size:.875rem}.form-group.svelte-109mqek input:where(.svelte-109mqek),.form-group.svelte-109mqek select:where(.svelte-109mqek){padding:.75rem 1rem;border:1.5px solid var(--color-border-strong);border-radius:10px;font-size:1rem;background:var(--color-surface);color:var(--color-text);transition:all .2s ease}.form-group.svelte-109mqek input:where(.svelte-109mqek):focus,.form-group.svelte-109mqek select:where(.svelte-109mqek):focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff1a}.form-group.svelte-109mqek input:where(.svelte-109mqek)::placeholder{color:var(--color-text-subtle)}.form-group.svelte-109mqek input:where(.svelte-109mqek):disabled,.form-group.svelte-109mqek select:where(.svelte-109mqek):disabled{opacity:.6;cursor:not-allowed;background:var(--color-surface-muted)}.field-note.svelte-109mqek{font-size:.75rem;color:var(--color-success);font-weight:500}.field-warning.svelte-109mqek{font-size:.75rem;color:var(--color-warning);font-weight:500}.form-group.svelte-109mqek input.has-warning:where(.svelte-109mqek){border-color:var(--color-warning)}.form-group.svelte-109mqek input.has-warning:where(.svelte-109mqek):focus{box-shadow:0 0 0 3px #f59e0b1a}.form-actions.svelte-109mqek{margin-top:1.5rem}.btn-primary.svelte-109mqek{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.9rem 1.5rem;background:var(--gradient-brand);color:var(--color-surface);border:none;border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-109mqek:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-109mqek:disabled{opacity:.7;cursor:not-allowed}@media(max-width:640px){.form-grid.svelte-109mqek{grid-template-columns:1fr}.form-group.full-width.svelte-109mqek{grid-column:1}}.signup-form.svelte-n0n34z{background:var(--color-surface);border-radius:16px;padding:clamp(1.5rem,3vw,2.5rem);box-shadow:0 20px 60px #0000001f}.form-section.svelte-n0n34z{margin-bottom:2rem}.form-section.svelte-n0n34z:last-of-type{margin-bottom:1.5rem}.form-section.svelte-n0n34z h3:where(.svelte-n0n34z){color:var(--color-text);font-size:1.1rem;font-weight:600;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border-strong)}.plan-options.svelte-n0n34z{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}.plan-option.svelte-n0n34z{border:2px solid var(--color-border-strong);border-radius:14px;padding:1.25rem;text-align:left;background:var(--color-surface);cursor:pointer;transition:all .25s ease}.plan-option.svelte-n0n34z:hover{border-color:var(--color-accent);transform:translateY(-2px);box-shadow:0 8px 24px #4a7dff26}.plan-option.selected.svelte-n0n34z{border-color:var(--color-accent);box-shadow:0 0 0 3px #4a7dff26;background:linear-gradient(135deg,#4a7dff0a,#6b5ce70a)}.plan-option.svelte-n0n34z .plan-header:where(.svelte-n0n34z){display:flex;flex-direction:column}.plan-option.svelte-n0n34z .plan-header:where(.svelte-n0n34z) strong:where(.svelte-n0n34z){color:var(--color-text);font-size:1.1rem}.plan-option.svelte-n0n34z .headline:where(.svelte-n0n34z){color:var(--color-text-subtle);font-size:.85rem}.plan-option.svelte-n0n34z p:where(.svelte-n0n34z){color:var(--color-text-muted);font-size:.9rem;margin:.5rem 0;line-height:1.4}.plan-option.svelte-n0n34z .price-row:where(.svelte-n0n34z){display:flex;flex-direction:column;font-weight:600;color:var(--color-text);margin-top:.5rem}.plan-option.svelte-n0n34z .price-row:where(.svelte-n0n34z) .annual:where(.svelte-n0n34z){font-size:.8rem;font-weight:400;color:var(--color-text-subtle)}.cadence-toggle.svelte-n0n34z{display:inline-flex;gap:.5rem}.cadence-toggle.svelte-n0n34z button:where(.svelte-n0n34z){padding:.75rem 1.5rem;border:2px solid var(--color-border-strong);border-radius:999px;background:transparent;color:var(--color-text);font-weight:600;cursor:pointer;transition:all .2s ease}.cadence-toggle.svelte-n0n34z button:where(.svelte-n0n34z):hover{border-color:var(--color-accent)}.cadence-toggle.svelte-n0n34z button.active:where(.svelte-n0n34z){background:var(--gradient-brand);color:var(--color-surface);border-color:transparent;box-shadow:0 4px 12px #4a7dff59}.no-addons-note.svelte-n0n34z{padding:.875rem 1rem;border-radius:10px;background:var(--color-body-bg);color:var(--color-text-muted);font-size:.875rem;line-height:1.5}.no-addons-note.svelte-n0n34z a:where(.svelte-n0n34z){color:var(--color-accent);text-decoration:none;font-weight:600}.no-addons-note.svelte-n0n34z a:where(.svelte-n0n34z):hover{text-decoration:underline}.terms.svelte-n0n34z{display:flex;gap:.75rem;align-items:flex-start;color:var(--color-text-muted);font-size:.875rem;line-height:1.5;cursor:pointer}.terms.svelte-n0n34z input[type=checkbox]:where(.svelte-n0n34z){width:1.25rem;height:1.25rem;margin-top:.1rem;accent-color:var(--color-accent);flex-shrink:0}.form-actions.svelte-n0n34z{margin-top:1.5rem}.form-actions.two-buttons.svelte-n0n34z{display:flex;gap:1rem}.btn-primary.svelte-n0n34z{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.9rem 1.5rem;background:var(--gradient-brand);color:var(--color-surface);border:none;border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-n0n34z:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-n0n34z:disabled{opacity:.7;cursor:not-allowed}.btn-secondary.svelte-n0n34z{padding:.9rem 1.5rem;background:var(--color-surface);color:var(--color-text);border:2px solid var(--color-border-strong);border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-secondary.svelte-n0n34z:hover:not(:disabled){border-color:var(--color-accent);color:var(--color-accent)}.btn-secondary.svelte-n0n34z:disabled{opacity:.5;cursor:not-allowed}@media(max-width:640px){.plan-options.svelte-n0n34z{grid-template-columns:1fr}.cadence-toggle.svelte-n0n34z{flex-direction:column;width:100%}.cadence-toggle.svelte-n0n34z button:where(.svelte-n0n34z){width:100%;justify-content:center}.form-actions.two-buttons.svelte-n0n34z{flex-direction:column-reverse}.btn-secondary.svelte-n0n34z{width:100%}}.signup-form.svelte-aizali{background:var(--color-surface);border-radius:16px;padding:clamp(1.5rem,3vw,2.5rem);box-shadow:0 20px 60px #0000001f}.form-section.svelte-aizali{margin-bottom:2rem}.form-section.svelte-aizali h3:where(.svelte-aizali){color:var(--color-text);font-size:1.1rem;font-weight:600;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border-strong)}.payment-intro.svelte-aizali{color:var(--color-text-muted);font-size:1rem;line-height:1.6;margin:0}.payment-summary.svelte-aizali{background:var(--color-surface-muted);border:1px solid var(--color-border-strong);border-radius:12px;padding:1.25rem;margin-bottom:1.5rem}.summary-row.svelte-aizali{display:flex;justify-content:space-between;align-items:center;padding:.625rem 0;border-bottom:1px solid var(--color-border-strong)}.summary-row.svelte-aizali:last-child{border-bottom:none}.summary-row.svelte-aizali span:where(.svelte-aizali){color:var(--color-text-muted);font-size:.95rem}.summary-row.svelte-aizali strong:where(.svelte-aizali){color:var(--color-text);font-size:.95rem}.summary-row.highlight.svelte-aizali{background:#10b98114;margin:.5rem -1.25rem -1.25rem;padding:1rem 1.25rem;border-radius:0 0 12px 12px}.summary-row.highlight.svelte-aizali span:where(.svelte-aizali),.summary-row.highlight.svelte-aizali strong:where(.svelte-aizali){color:var(--color-success);font-weight:600}.error-banner.svelte-aizali{display:flex;align-items:center;gap:.75rem;padding:.875rem 1rem;background:var(--color-error-bg);border:1px solid #fecaca;color:var(--color-error);border-radius:10px;margin-bottom:1.5rem;font-weight:500;font-size:.9rem;animation:svelte-aizali-shake .5s ease-in-out}@keyframes svelte-aizali-shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}.error-banner.svelte-aizali span:where(.svelte-aizali){width:1.25rem;height:1.25rem;border-radius:50%;background:var(--color-error);color:var(--color-surface);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0}.payment-options.svelte-aizali{display:flex;flex-direction:column;gap:1rem;margin-bottom:1.5rem}.payment-btn.svelte-aizali{display:flex;align-items:center;justify-content:center;gap:.625rem}.btn-icon.svelte-aizali{width:1.25rem;height:1.25rem}.or-divider.svelte-aizali{display:flex;align-items:center;gap:1rem;color:var(--color-text-subtle);font-size:.85rem;text-transform:uppercase;letter-spacing:.1em}.or-divider.svelte-aizali:before,.or-divider.svelte-aizali:after{content:"";flex:1;height:1px;background:var(--color-border-strong)}.btn-primary.svelte-aizali{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.9rem 1.5rem;background:var(--gradient-brand);color:var(--color-surface);border:none;border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-aizali:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-primary.svelte-aizali:disabled{opacity:.7;cursor:not-allowed}.btn-secondary.svelte-aizali{padding:.9rem 1.5rem;background:var(--color-surface);color:var(--color-text);border:2px solid var(--color-border-strong);border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-secondary.svelte-aizali:hover:not(:disabled){border-color:var(--color-accent);color:var(--color-accent)}.btn-secondary.svelte-aizali:disabled{opacity:.5;cursor:not-allowed}.skip-btn.svelte-aizali{font-size:.95rem;padding:.875rem 1.25rem;display:flex;align-items:center;justify-content:center;gap:.5rem}.form-actions.svelte-aizali{margin-top:1.5rem}.btn-text.svelte-aizali{background:none;border:none;color:var(--color-text-muted);font-size:.9rem;cursor:pointer;padding:.5rem;transition:color .2s ease}.btn-text.svelte-aizali:hover:not(:disabled){color:var(--color-accent)}.btn-text.svelte-aizali:disabled{opacity:.5;cursor:not-allowed}.helper.svelte-aizali{display:flex;align-items:center;justify-content:center;gap:.5rem;text-align:center;color:var(--color-text-subtle);font-size:.85rem;margin-top:1rem}.lock-icon.svelte-aizali{width:1rem;height:1rem;color:var(--color-text-subtle)}@media(max-width:640px){.payment-summary.svelte-aizali{padding:1rem}.summary-row.highlight.svelte-aizali{margin:.5rem -1rem -1rem;padding:.875rem 1rem}}.signup-container.svelte-g6f93d{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--gradient-brand);padding:2rem 1rem}.signup-shell.svelte-g6f93d{max-width:700px;width:100%}.signup-header.svelte-g6f93d{text-align:center;margin-bottom:2rem;color:var(--color-surface)}.eyebrow.svelte-g6f93d{text-transform:uppercase;letter-spacing:.2em;opacity:.85;font-size:.75rem;font-weight:600;margin-bottom:.5rem}.signup-header.svelte-g6f93d h1:where(.svelte-g6f93d){font-size:clamp(1.75rem,4vw,2.5rem);margin-bottom:.75rem;font-weight:700;letter-spacing:-.02em}.signup-header.svelte-g6f93d .lede:where(.svelte-g6f93d){opacity:.92;font-size:1.05rem;line-height:1.6;max-width:500px;margin:0 auto}.error-banner.svelte-g6f93d{display:flex;align-items:center;gap:.75rem;padding:.875rem 1rem;background:var(--color-error-bg);border:1px solid #fecaca;color:var(--color-error);border-radius:10px;margin-bottom:1.5rem;font-weight:500;font-size:.9rem;animation:svelte-g6f93d-shake .5s ease-in-out}@keyframes svelte-g6f93d-shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}.error-banner.svelte-g6f93d span:where(.svelte-g6f93d){width:1.25rem;height:1.25rem;border-radius:50%;background:var(--color-error);color:var(--color-surface);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0}.result-card.svelte-g6f93d{max-width:500px;width:100%;padding:3rem 2rem;background:var(--color-surface);border-radius:16px;text-align:center;box-shadow:0 20px 60px #0000001f;animation:svelte-g6f93d-fadeInUp .4s ease-out}@keyframes svelte-g6f93d-fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.result-icon.svelte-g6f93d{width:4.5rem;height:4.5rem;margin:0 auto 1.5rem;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:svelte-g6f93d-scaleIn .3s ease-out .2s both}@keyframes svelte-g6f93d-scaleIn{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}.result-icon.svelte-g6f93d svg:where(.svelte-g6f93d){width:2.5rem;height:2.5rem}.result-card.success.svelte-g6f93d .result-icon:where(.svelte-g6f93d){background:#10b9811f;color:var(--color-success)}.result-card.cancelled.svelte-g6f93d .result-icon:where(.svelte-g6f93d){background:#dc26261f;color:var(--color-error)}.result-card.svelte-g6f93d h1:where(.svelte-g6f93d){font-size:1.75rem;color:var(--color-text);margin-bottom:1rem;font-weight:700}.result-card.svelte-g6f93d p:where(.svelte-g6f93d){color:var(--color-text-muted);font-size:1.05rem;line-height:1.6;margin-bottom:.75rem}.result-card.svelte-g6f93d .next-steps:where(.svelte-g6f93d){color:var(--color-success);font-weight:500;margin-bottom:1.5rem}.result-card.svelte-g6f93d .btn-primary:where(.svelte-g6f93d),.result-card.svelte-g6f93d .btn-secondary:where(.svelte-g6f93d){width:100%;margin-bottom:.75rem}.btn-primary.svelte-g6f93d{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.9rem 1.5rem;background:var(--gradient-brand);color:var(--color-surface);border:none;border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-primary.svelte-g6f93d:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 20px #4a7dff59}.btn-secondary.svelte-g6f93d{padding:.9rem 1.5rem;background:var(--color-surface);color:var(--color-text);border:2px solid var(--color-border-strong);border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-secondary.svelte-g6f93d:hover:not(:disabled){border-color:var(--color-accent);color:var(--color-accent)}.dialog-overlay.svelte-g6f93d{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000;animation:svelte-g6f93d-fadeIn .2s ease-out}@keyframes svelte-g6f93d-fadeIn{0%{opacity:0}to{opacity:1}}.dialog-card.svelte-g6f93d{max-width:420px;width:calc(100% - 2rem);background:var(--color-surface);border-radius:16px;padding:2rem;text-align:center;box-shadow:0 20px 60px #0003;animation:svelte-g6f93d-fadeInUp .3s ease-out}.dialog-icon.svelte-g6f93d{width:3.5rem;height:3.5rem;margin:0 auto 1.25rem;border-radius:50%;background:#f59e0b1f;color:#f59e0b;display:flex;align-items:center;justify-content:center}.dialog-icon.svelte-g6f93d svg:where(.svelte-g6f93d){width:2rem;height:2rem}.dialog-card.svelte-g6f93d h2:where(.svelte-g6f93d){font-size:1.25rem;font-weight:700;color:var(--color-text);margin-bottom:.5rem}.dialog-card.svelte-g6f93d p:where(.svelte-g6f93d){color:var(--color-text-muted);font-size:.95rem;line-height:1.5;margin-bottom:1.5rem}.dialog-actions.svelte-g6f93d{display:flex;gap:.75rem}.dialog-actions.svelte-g6f93d .btn-secondary:where(.svelte-g6f93d),.dialog-actions.svelte-g6f93d .btn-primary:where(.svelte-g6f93d){flex:1}.sidebar.svelte-19s9gab{width:260px;height:100vh;position:fixed;left:0;top:0;display:flex;flex-direction:column;background:linear-gradient(180deg,#1e1e2e,#2d2d44);color:#fff;z-index:var(--z-sidebar);transition:width .3s ease}.sidebar-logo.svelte-19s9gab{display:flex;align-items:center;gap:.75rem;padding:1.25rem 1rem;border-bottom:1px solid rgba(255,255,255,.08)}.sidebar-logo-img.svelte-19s9gab{width:36px;height:36px;border-radius:8px;flex-shrink:0}.sidebar-logo-text.svelte-19s9gab{font-size:1.25rem;font-weight:700;letter-spacing:-.02em;white-space:nowrap}.sidebar-nav.svelte-19s9gab{flex:1;display:flex;flex-direction:column;gap:.25rem;padding:1rem .75rem;overflow-y:auto}.nav-item.svelte-19s9gab{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:var(--radius-md);color:#ffffffb3;cursor:pointer;transition:all .2s ease;width:100%;border:none;background:none;text-align:left;font-size:.875rem;font-family:inherit;line-height:1.4}.nav-item.svelte-19s9gab:hover{background:#ffffff14;color:#fff}.nav-item.active.svelte-19s9gab{background:var(--gradient-brand);color:#fff;font-weight:500}.nav-icon.svelte-19s9gab{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:20px;height:20px}.nav-label.svelte-19s9gab{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sidebar-footer.svelte-19s9gab{padding:.75rem;border-top:1px solid rgba(255,255,255,.08)}.user-email.svelte-19s9gab{padding:.5rem 1rem;font-size:.75rem;color:#ffffff80;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sign-out.svelte-19s9gab{color:#ffffff80}.sign-out.svelte-19s9gab:hover{color:#fff;background:#ffffff14}.sidebar-overlay.svelte-19s9gab{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;z-index:calc(var(--z-sidebar) - 1)}@media(max-width:768px){.sidebar.svelte-19s9gab{transform:translate(-100%);width:280px}.sidebar.mobile-open.svelte-19s9gab{transform:translate(0)}}.overview.svelte-14lcwcc{padding:0}.loading-state.svelte-14lcwcc{display:flex;justify-content:center;padding:3rem 0}.hero.svelte-14lcwcc{background:var(--gradient-brand);border-radius:var(--radius-xl);padding:2.5rem 2rem;margin-bottom:1.5rem;color:#fff}.hero-content.svelte-14lcwcc{max-width:560px}.hero-greeting.svelte-14lcwcc{font-size:1.75rem;font-weight:700;margin:0 0 .5rem;line-height:1.2}.hero-subtitle.svelte-14lcwcc{font-size:1rem;opacity:.85;margin:0 0 1.5rem;line-height:1.5}.hero-cta.svelte-14lcwcc{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.25rem;background:#fff3;color:#fff;border:1px solid rgba(255,255,255,.3);border-radius:var(--radius-lg);font-size:.9375rem;font-weight:600;text-decoration:none;cursor:pointer;transition:background var(--transition-normal) var(--easing-default)}.hero-cta.svelte-14lcwcc:hover{background:#ffffff4d}.onboarding-card.svelte-14lcwcc{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem;margin-bottom:1.5rem;box-shadow:var(--shadow-sm)}.onboarding-header.svelte-14lcwcc{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.25rem}.onboarding-header.svelte-14lcwcc h3:where(.svelte-14lcwcc){font-size:1.1rem;font-weight:600;color:var(--color-text);margin:0}.onboarding-progress.svelte-14lcwcc{font-size:.8125rem;color:var(--color-text-muted);font-weight:500}.onboarding-steps.svelte-14lcwcc{display:flex;flex-direction:column;gap:.75rem}.onboarding-step.svelte-14lcwcc{display:flex;align-items:center;gap:.75rem;padding:.75rem;border-radius:var(--radius-md);background:var(--color-surface-muted);transition:background var(--transition-fast) var(--easing-default)}.step-indicator.svelte-14lcwcc{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.8125rem;font-weight:600;background:var(--color-border-strong);color:var(--color-text-muted)}.onboarding-step.done.svelte-14lcwcc .step-indicator:where(.svelte-14lcwcc){background:var(--color-success);color:#fff}.step-check.svelte-14lcwcc,.step-number.svelte-14lcwcc{display:flex;align-items:center;justify-content:center}.step-label.svelte-14lcwcc{flex:1;font-size:.9375rem;color:var(--color-text);font-weight:500}.onboarding-step.done.svelte-14lcwcc .step-label:where(.svelte-14lcwcc){color:var(--color-text-muted);text-decoration:line-through}.step-action.svelte-14lcwcc{background:none;border:none;color:var(--color-accent);font-size:.8125rem;font-weight:600;cursor:pointer;padding:.25rem .5rem;border-radius:var(--radius-sm);transition:background var(--transition-fast) var(--easing-default);white-space:nowrap}.step-action.svelte-14lcwcc:hover{background:var(--color-surface-alt)}.cards-grid.svelte-14lcwcc{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem}.card.svelte-14lcwcc{display:flex;align-items:center;gap:1rem;padding:1.25rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);box-shadow:var(--shadow-sm);cursor:pointer;text-decoration:none;color:inherit;text-align:left;font-family:inherit;font-size:inherit;width:100%;transition:transform var(--transition-normal) var(--easing-default),box-shadow var(--transition-normal) var(--easing-default)}.card.svelte-14lcwcc:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.card-icon.svelte-14lcwcc{width:44px;height:44px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;flex-shrink:0}.card-icon-subscription.svelte-14lcwcc{background:linear-gradient(135deg,#2563eb1f,#7c3aed1f);color:var(--color-accent)}.card-icon-business.svelte-14lcwcc{background:linear-gradient(135deg,#16a34a1f,#0596691f);color:var(--color-success)}.card-icon-team.svelte-14lcwcc{background:linear-gradient(135deg,#d977061f,#ea580c1f);color:var(--color-warning)}.card-icon-launch.svelte-14lcwcc{background:linear-gradient(135deg,#7c3aed1f,#db27771f);color:#7c3aed}.card-info.svelte-14lcwcc{min-width:0}.card-title.svelte-14lcwcc{font-size:.9375rem;font-weight:600;color:var(--color-text);margin:0 0 .125rem}.card-desc.svelte-14lcwcc{font-size:.8125rem;color:var(--color-text-muted);margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media(max-width:768px){.hero.svelte-14lcwcc{padding:1.5rem 1.25rem}.hero-greeting.svelte-14lcwcc{font-size:1.375rem}.cards-grid.svelte-14lcwcc{grid-template-columns:1fr}}.business-list.svelte-3ygjw5{display:flex;flex-direction:column;gap:.25rem;padding:.5rem}.empty-state.svelte-3ygjw5{padding:2rem 1rem;text-align:center;color:var(--color-text-muted)}.empty-state.svelte-3ygjw5 p:where(.svelte-3ygjw5){font-size:.875rem;margin-bottom:.25rem}.empty-state.svelte-3ygjw5 .hint:where(.svelte-3ygjw5){font-size:.8rem;color:var(--color-text-subtle)}.business-item.svelte-3ygjw5{display:flex;align-items:center;gap:.75rem;padding:.75rem;border:none;background:none;border-radius:var(--radius-md);cursor:pointer;text-align:left;width:100%;font-family:inherit;transition:background var(--transition-fast) var(--easing-default)}.business-item.svelte-3ygjw5:hover{background:var(--color-surface-muted)}.business-item.selected.svelte-3ygjw5{background:var(--gradient-brand);color:#fff}.business-item.selected.svelte-3ygjw5 .item-industry:where(.svelte-3ygjw5){color:#ffffffbf}.business-item.selected.svelte-3ygjw5 .default-badge:where(.svelte-3ygjw5){background:#fff3;color:#fff}.avatar.svelte-3ygjw5{width:36px;height:36px;border-radius:var(--radius-full);background:var(--gradient-brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:700;flex-shrink:0}.business-item.selected.svelte-3ygjw5 .avatar:where(.svelte-3ygjw5){background:#fff3}.item-info.svelte-3ygjw5{display:flex;flex-direction:column;min-width:0;flex:1}.item-name.svelte-3ygjw5{font-size:.875rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.item-industry.svelte-3ygjw5{font-size:.75rem;color:var(--color-text-subtle);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.default-badge.svelte-3ygjw5{font-size:.625rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;padding:.125rem .5rem;border-radius:var(--radius-full);background:var(--color-success-bg);color:var(--color-success-text);flex-shrink:0}.empty-detail.svelte-gzfmsg{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;min-height:300px;color:var(--color-text-subtle);text-align:center;padding:2rem}.empty-icon.svelte-gzfmsg{margin-bottom:1rem;opacity:.4}.empty-detail.svelte-gzfmsg p:where(.svelte-gzfmsg){font-size:.9375rem}.business-detail.svelte-gzfmsg{display:flex;flex-direction:column;gap:1.5rem}.detail-header.svelte-gzfmsg{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem}.header-top.svelte-gzfmsg{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}.large-avatar.svelte-gzfmsg{width:56px;height:56px;border-radius:var(--radius-full);background:var(--gradient-brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;flex-shrink:0}.header-info.svelte-gzfmsg{min-width:0;flex:1}.business-name.svelte-gzfmsg{font-size:1.25rem;font-weight:700;color:var(--color-text);margin:0 0 .375rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.badge-row.svelte-gzfmsg{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}.status-default.svelte-gzfmsg{background:var(--color-surface-alt);color:var(--color-accent)}.industry-label.svelte-gzfmsg{font-size:.75rem;color:var(--color-text-subtle)}.action-buttons.svelte-gzfmsg{display:flex;gap:.5rem;flex-wrap:wrap}.btn-icon.svelte-gzfmsg{display:inline-flex;align-items:center;gap:.375rem;padding:.5rem .75rem;background:var(--color-surface-muted);color:var(--color-text-muted);border:1px solid var(--color-border);border-radius:var(--radius-md);font-size:.8125rem;font-weight:500;cursor:pointer;font-family:inherit;transition:all var(--transition-fast) var(--easing-default)}.btn-icon.svelte-gzfmsg:hover{background:var(--color-surface-alt);color:var(--color-accent);border-color:var(--color-accent)}.btn-icon-danger.svelte-gzfmsg:hover{background:var(--color-error-bg);color:var(--color-error);border-color:var(--color-error-border)}.warehouses-section.svelte-1gmewp7{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.25rem 1.5rem}.section-header.svelte-1gmewp7{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}.section-header.svelte-1gmewp7 h3:where(.svelte-1gmewp7){font-size:1rem;font-weight:600;color:var(--color-text);margin:0}.count-badge.svelte-1gmewp7{font-size:.6875rem;font-weight:700;padding:.125rem .5rem;border-radius:var(--radius-full);background:var(--color-surface-muted);color:var(--color-text-subtle)}.add-button.svelte-1gmewp7{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:var(--color-surface-muted);color:var(--color-accent);border-radius:var(--radius-md);cursor:pointer;margin-left:auto;transition:all var(--transition-fast) var(--easing-default)}.add-button.svelte-1gmewp7:hover{background:var(--color-surface-alt);transform:scale(1.05)}.empty-state.svelte-1gmewp7{padding:2rem 0;text-align:center;color:var(--color-text-muted)}.empty-icon.svelte-1gmewp7{margin-bottom:.75rem;opacity:.4}.empty-state.svelte-1gmewp7 p:where(.svelte-1gmewp7){font-size:.875rem;margin-bottom:.25rem}.empty-state.svelte-1gmewp7 .hint:where(.svelte-1gmewp7){font-size:.8rem;color:var(--color-text-subtle)}.warehouse-cards.svelte-1gmewp7{display:flex;flex-direction:column;gap:.5rem}.warehouse-card.svelte-1gmewp7{display:flex;align-items:center;justify-content:space-between;padding:.75rem;background:var(--color-surface-muted);border-radius:var(--radius-md);transition:box-shadow var(--transition-fast) var(--easing-default)}.warehouse-card.svelte-1gmewp7:hover{box-shadow:0 2px 8px #00000014}.warehouse-card.inactive.svelte-1gmewp7{opacity:.6}.card-main.svelte-1gmewp7{display:flex;align-items:center;gap:.75rem;flex:1;min-width:0}.card-icon.svelte-1gmewp7{flex-shrink:0;color:var(--color-text-subtle)}.card-info.svelte-1gmewp7{display:flex;flex-direction:column;gap:.125rem;min-width:0;flex:1}.wh-name.svelte-1gmewp7{font-size:.875rem;font-weight:600;color:var(--color-text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wh-address.svelte-1gmewp7{font-size:.8rem;color:var(--color-text-subtle);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.status-badge.svelte-1gmewp7{font-size:.6875rem;font-weight:600;padding:.125rem .5rem;border-radius:var(--radius-full);white-space:nowrap;flex-shrink:0}.default-badge.svelte-1gmewp7{font-size:.625rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;padding:.125rem .5rem;border-radius:var(--radius-full);background:var(--color-surface-alt);color:var(--color-accent);flex-shrink:0}.status-active.svelte-1gmewp7{background:var(--color-success-bg, rgba(16, 185, 129, .1));color:var(--color-success, #10b981)}.status-inactive.svelte-1gmewp7{background:var(--color-surface-alt);color:var(--color-text-subtle)}.card-actions.svelte-1gmewp7{display:flex;gap:.25rem;margin-left:.75rem;flex-shrink:0}.icon-button.svelte-1gmewp7{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:transparent;color:var(--color-text-muted);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.icon-button.svelte-1gmewp7:hover{background:var(--color-surface-alt);color:var(--color-accent)}.icon-button-danger.svelte-1gmewp7:hover{background:var(--color-error-bg);color:var(--color-error)}@media(max-width:480px){.warehouse-card.svelte-1gmewp7{flex-direction:column;align-items:flex-start;gap:.5rem}.card-actions.svelte-1gmewp7{margin-left:0;align-self:flex-end}}.form-divider.svelte-1nu2muh{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--color-text-muted);padding:.75rem 0 .25rem;margin-top:.5rem;border-top:1px solid var(--color-border)}.form-row.svelte-1nu2muh{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}.form-row-3.svelte-1nu2muh{display:grid;grid-template-columns:1fr 1fr 1fr;gap:.75rem}@media(max-width:480px){.form-row.svelte-1nu2muh,.form-row-3.svelte-1nu2muh{grid-template-columns:1fr}}.description.svelte-w0j16r{font-size:.875rem;color:var(--color-text-muted);margin-bottom:1rem;line-height:1.5}.empty-state.svelte-w0j16r{padding:2rem 0;text-align:center;color:var(--color-text-muted)}.empty-icon.svelte-w0j16r{margin-bottom:.75rem;opacity:.4}.empty-state.svelte-w0j16r p:where(.svelte-w0j16r){font-size:.875rem;margin-bottom:.25rem}.empty-state.svelte-w0j16r .hint:where(.svelte-w0j16r){font-size:.8rem;color:var(--color-text-subtle)}.warehouse-picker.svelte-w0j16r{display:flex;flex-direction:column;gap:.5rem}.picker-item.svelte-w0j16r{display:flex;align-items:center;gap:.75rem;padding:.75rem;background:var(--color-surface-muted);border:2px solid transparent;border-radius:var(--radius-md);cursor:pointer;text-align:left;width:100%;font-family:inherit;transition:all var(--transition-fast) var(--easing-default)}.picker-item.svelte-w0j16r:hover{background:var(--color-surface-alt)}.picker-item.selected.svelte-w0j16r{border-color:var(--color-accent);background:var(--color-surface-alt)}.picker-icon.svelte-w0j16r{flex-shrink:0;color:var(--color-text-subtle)}.picker-info.svelte-w0j16r{display:flex;flex-direction:column;gap:.125rem;min-width:0;flex:1}.picker-name.svelte-w0j16r{font-size:.875rem;font-weight:600;color:var(--color-text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.picker-address.svelte-w0j16r{font-size:.8rem;color:var(--color-text-subtle);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.check-mark.svelte-w0j16r{flex-shrink:0;color:var(--color-accent)}.business-management.svelte-1ifr2tu{display:flex;gap:0;min-height:500px}.loading-container.svelte-1ifr2tu{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;min-height:400px;gap:1rem;color:var(--color-text-muted)}.loading-container.svelte-1ifr2tu p:where(.svelte-1ifr2tu){font-size:.9375rem}.business-list-panel.svelte-1ifr2tu{width:280px;min-width:280px;border-right:1px solid var(--color-border);background:var(--color-surface);border-radius:var(--radius-xl) 0 0 var(--radius-xl);overflow-y:auto}.panel-header.svelte-1ifr2tu{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem .75rem;border-bottom:1px solid var(--color-border)}.panel-header.svelte-1ifr2tu h3:where(.svelte-1ifr2tu){font-size:.9375rem;font-weight:600;color:var(--color-text);margin:0}.add-button.svelte-1ifr2tu{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:var(--color-surface-muted);color:var(--color-accent);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.add-button.svelte-1ifr2tu:hover{background:var(--color-surface-alt);transform:scale(1.05)}.business-detail-panel.svelte-1ifr2tu{flex:1;padding:1.5rem;min-width:0;overflow-y:auto}@media(max-width:768px){.business-management.svelte-1ifr2tu{flex-direction:column}.business-list-panel.svelte-1ifr2tu{width:100%;min-width:100%;border-right:none;border-bottom:1px solid var(--color-border);border-radius:var(--radius-xl) var(--radius-xl) 0 0;max-height:240px}.business-detail-panel.svelte-1ifr2tu{padding:1rem}}.subscription-management.svelte-rag8eo{padding:0}.alert.svelte-rag8eo{display:flex;align-items:flex-start;gap:.75rem;padding:1rem 1.25rem;border-radius:var(--radius-lg);margin-bottom:1.25rem}.alert-error.svelte-rag8eo{background:#dc262614;border:1px solid rgba(220,38,38,.25);color:var(--color-error, #dc2626)}.alert-warning.svelte-rag8eo{background:#d9770614;border:1px solid rgba(217,119,6,.25);color:var(--color-warning, #d97706)}.alert-icon.svelte-rag8eo{flex-shrink:0;margin-top:.125rem}.alert-content.svelte-rag8eo{flex:1}.alert-content.svelte-rag8eo strong:where(.svelte-rag8eo){display:block;font-size:.9375rem;font-weight:600;margin-bottom:.25rem}.alert-content.svelte-rag8eo p:where(.svelte-rag8eo){font-size:.875rem;margin:0;opacity:.9;line-height:1.4}.loading-container.svelte-rag8eo{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:3rem 0;color:var(--color-text-muted)}.current-plan-card.svelte-rag8eo{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem;margin-bottom:2rem;box-shadow:var(--shadow-sm)}.current-plan-header.svelte-rag8eo{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem}.current-plan-info.svelte-rag8eo h3:where(.svelte-rag8eo){font-size:.8125rem;font-weight:500;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em;margin:0 0 .5rem}.plan-details.svelte-rag8eo{display:flex;align-items:center;gap:.75rem;margin-bottom:.5rem}.plan-name.svelte-rag8eo{font-size:1.375rem;font-weight:700;color:var(--color-text)}.plan-meta.svelte-rag8eo{font-size:.875rem;color:var(--color-text-muted);margin:.25rem 0 0}.status-badge.svelte-rag8eo{display:inline-flex;align-items:center;padding:.2rem .625rem;border-radius:var(--radius-full, 9999px);font-size:.75rem;font-weight:600;text-transform:capitalize}.status-active.svelte-rag8eo{background:#16a34a1f;color:var(--color-success, #16a34a)}.status-warning.svelte-rag8eo{background:#d977061f;color:var(--color-warning, #d97706)}.status-error.svelte-rag8eo{background:#dc26261f;color:var(--color-error, #dc2626)}.plans-section.svelte-rag8eo{margin-bottom:2rem}.plans-section.svelte-rag8eo h3:where(.svelte-rag8eo){font-size:1rem;font-weight:600;color:var(--color-text);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.plans-grid.svelte-rag8eo{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}.plan-card.svelte-rag8eo{position:relative;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem;display:flex;flex-direction:column;transition:transform var(--transition-normal) var(--easing-default),box-shadow var(--transition-normal) var(--easing-default)}.plan-card.svelte-rag8eo:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.plan-card.current.svelte-rag8eo{border-color:var(--color-accent);box-shadow:0 0 0 2px #2563eb26}.current-badge.svelte-rag8eo{position:absolute;top:-.625rem;right:1rem;background:var(--gradient-brand);color:#fff;font-size:.6875rem;font-weight:700;padding:.25rem .75rem;border-radius:var(--radius-full, 9999px);text-transform:uppercase;letter-spacing:.04em}.plan-card-name.svelte-rag8eo{font-size:1.125rem;font-weight:700;color:var(--color-text);margin:0 0 .75rem}.plan-pricing.svelte-rag8eo{display:flex;align-items:baseline;gap:.125rem;margin-bottom:.25rem}.plan-price.svelte-rag8eo{font-size:1.75rem;font-weight:700;color:var(--color-text)}.plan-period.svelte-rag8eo{font-size:.875rem;color:var(--color-text-muted);font-weight:500}.plan-annual-price.svelte-rag8eo{font-size:.8125rem;color:var(--color-text-muted);margin:0 0 1.25rem}.plan-features.svelte-rag8eo{list-style:none;padding:0;margin:0 0 1.5rem;flex:1;display:flex;flex-direction:column;gap:.5rem}.plan-feature.svelte-rag8eo{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--color-text);line-height:1.4}.feature-check.svelte-rag8eo{color:var(--color-success, #16a34a);font-weight:700;flex-shrink:0}.plan-actions.svelte-rag8eo{margin-top:auto}.plan-actions.svelte-rag8eo button{width:100%}.payments-section.svelte-rag8eo{margin-bottom:2rem}.payments-section.svelte-rag8eo h3:where(.svelte-rag8eo){font-size:1rem;font-weight:600;color:var(--color-text);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.payments-list.svelte-rag8eo{display:flex;flex-direction:column;gap:.5rem}.payment-row.svelte-rag8eo{display:flex;align-items:center;gap:.75rem;padding:.875rem 1rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);transition:box-shadow var(--transition-normal) var(--easing-default)}.payment-row.svelte-rag8eo:hover{box-shadow:var(--shadow-sm)}.payment-icon.svelte-rag8eo{width:36px;height:36px;border-radius:var(--radius-md);background:var(--color-surface-muted);color:var(--color-text-muted);display:flex;align-items:center;justify-content:center;flex-shrink:0}.payment-info.svelte-rag8eo{flex:1;display:flex;flex-direction:column;gap:.125rem;min-width:0}.payment-amount.svelte-rag8eo{font-size:.9375rem;font-weight:600;color:var(--color-text)}.payment-date.svelte-rag8eo{font-size:.8125rem;color:var(--color-text-muted)}.payment-link.svelte-rag8eo{font-size:.8125rem;font-weight:600;color:var(--color-accent);text-decoration:none;padding:.25rem .5rem;border-radius:var(--radius-sm);transition:background var(--transition-fast) var(--easing-default)}.payment-link.svelte-rag8eo:hover{background:var(--color-surface-alt)}.form-error.svelte-rag8eo{background:#dc262614;border:1px solid rgba(220,38,38,.2);color:var(--color-error, #dc2626);padding:.75rem 1rem;border-radius:var(--radius-md);font-size:.875rem;margin-bottom:1.25rem}@media(max-width:768px){.current-plan-header.svelte-rag8eo{flex-direction:column}.plans-grid.svelte-rag8eo{grid-template-columns:1fr}.alert.svelte-rag8eo{flex-direction:column}.payment-row.svelte-rag8eo{flex-wrap:wrap}}.staff-management.svelte-1vc05pk{padding:0}.section-header.svelte-1vc05pk{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:2rem;gap:1rem}.section-header.svelte-1vc05pk h2:where(.svelte-1vc05pk){font-size:1.5rem;font-weight:600;color:var(--color-text);margin-bottom:.25rem}.section-description.svelte-1vc05pk{color:var(--color-text-muted);font-size:.9375rem}.loading-container.svelte-1vc05pk{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:3rem 0;color:var(--color-text-muted)}.members-section.svelte-1vc05pk{margin-bottom:2rem}.members-section.svelte-1vc05pk h3:where(.svelte-1vc05pk){font-size:1rem;font-weight:600;color:var(--color-text);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.empty-state.svelte-1vc05pk{padding:1.5rem;text-align:center;color:var(--color-text-muted);background:var(--color-surface-muted);border-radius:var(--radius-lg);font-size:.9375rem}.members-list.svelte-1vc05pk{display:flex;flex-direction:column;gap:.5rem}.member-card.svelte-1vc05pk{display:flex;align-items:center;gap:.75rem;padding:.875rem 1rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);transition:box-shadow var(--transition-normal) var(--easing-default)}.member-card.svelte-1vc05pk:hover{box-shadow:var(--shadow-sm)}.member-avatar.svelte-1vc05pk{width:40px;height:40px;border-radius:var(--radius-full);background:var(--gradient-brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.8125rem;font-weight:700;flex-shrink:0}.member-avatar.pending.svelte-1vc05pk{background:var(--color-surface-muted);color:var(--color-text-muted);border:2px dashed var(--color-border-strong)}.member-info.svelte-1vc05pk{flex:1;min-width:0;display:flex;flex-direction:column;gap:.125rem}.member-name.svelte-1vc05pk{font-weight:600;font-size:.9375rem;color:var(--color-text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.member-email.svelte-1vc05pk{font-size:.8125rem;color:var(--color-text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.member-meta.svelte-1vc05pk{font-size:.75rem;color:var(--color-text-subtle)}.member-actions.svelte-1vc05pk{flex-shrink:0}.role-grid.svelte-1vc05pk{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.5rem}.role-option.svelte-1vc05pk{display:flex;flex-direction:column;gap:.25rem;padding:.75rem;background:var(--color-surface);border:1.5px solid var(--color-border-strong);border-radius:var(--radius-lg);cursor:pointer;text-align:left;transition:all var(--transition-normal) var(--easing-default)}.role-option.svelte-1vc05pk:hover:not(:disabled){border-color:var(--color-accent);background:var(--color-surface-alt)}.role-option.selected.svelte-1vc05pk{border-color:var(--color-accent);background:var(--color-surface-alt);box-shadow:0 0 0 2px #2563eb26}.role-option.svelte-1vc05pk:disabled{opacity:.5;cursor:not-allowed}.role-option-label.svelte-1vc05pk{font-weight:600;font-size:.875rem;color:var(--color-text)}.role-option-desc.svelte-1vc05pk{font-size:.75rem;color:var(--color-text-muted);line-height:1.3}.module-grid.svelte-1vc05pk{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.5rem}.module-item.svelte-1vc05pk{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);cursor:pointer;font-size:.875rem;color:var(--color-text);transition:background var(--transition-fast) var(--easing-default)}.module-item.svelte-1vc05pk:hover{background:var(--color-surface-muted)}.module-item.svelte-1vc05pk input[type=checkbox]:where(.svelte-1vc05pk){accent-color:var(--color-accent);width:16px;height:16px;flex-shrink:0}.module-label.svelte-1vc05pk{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.invite-form-actions.svelte-1vc05pk{display:flex;justify-content:flex-end;gap:.75rem;margin-top:1.5rem;padding-top:1rem;border-top:1px solid var(--color-border)}.link-modal-text.svelte-1vc05pk{color:var(--color-text-muted);font-size:.9375rem;margin-bottom:1rem;line-height:1.5}.invite-link-box.svelte-1vc05pk{display:flex;gap:.5rem;align-items:center}.invite-link-box.svelte-1vc05pk input:where(.svelte-1vc05pk){flex:1;padding:.625rem .75rem;border:1.5px solid var(--color-border-strong);border-radius:var(--radius-md);font-size:.8125rem;background:var(--color-surface-muted);color:var(--color-text);min-width:0}@media(max-width:768px){.section-header.svelte-1vc05pk{flex-direction:column}.member-card.svelte-1vc05pk{flex-wrap:wrap}.member-actions.svelte-1vc05pk{width:100%;margin-top:.5rem}.role-grid.svelte-1vc05pk{grid-template-columns:1fr}.module-grid.svelte-1vc05pk{grid-template-columns:1fr 1fr}}@media(max-width:480px){.module-grid.svelte-1vc05pk{grid-template-columns:1fr}}.branding-panel.svelte-ygx6vm{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem}.panel-title.svelte-ygx6vm{font-size:1rem;font-weight:600;color:var(--color-text);margin:0 0 1rem}.panel-body.svelte-ygx6vm{display:flex;flex-direction:column;gap:1.25rem}.form-error.svelte-ygx6vm{padding:.5rem .75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error-text);border-radius:var(--radius-md);font-size:.813rem;margin-bottom:.5rem}.logo-label.svelte-ygx6vm{font-size:.813rem;font-weight:500;color:var(--color-text-muted);margin-bottom:.5rem}.logo-row.svelte-ygx6vm{display:flex;align-items:center;gap:1rem}.logo-preview.svelte-ygx6vm{width:64px;height:64px;object-fit:contain;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-surface-muted)}.logo-placeholder.svelte-ygx6vm{width:64px;height:64px;display:flex;align-items:center;justify-content:center;border:2px dashed var(--color-border-strong);border-radius:var(--radius-md);color:var(--color-text-subtle);font-size:.75rem}.logo-actions.svelte-ygx6vm{display:flex;gap:.5rem}.btn-small.svelte-ygx6vm{display:inline-flex;align-items:center;gap:.375rem;padding:.375rem .75rem;font-size:.813rem;font-family:inherit;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.btn-small.svelte-ygx6vm:hover:not(:disabled){background:var(--color-surface-muted)}.btn-small.svelte-ygx6vm:disabled{opacity:.5;cursor:not-allowed}.btn-danger.svelte-ygx6vm{color:var(--color-error);border-color:var(--color-error-border)}.btn-danger.svelte-ygx6vm:hover:not(:disabled){background:var(--color-error-bg)}.file-input-hidden.svelte-ygx6vm{display:none}.logo-hint.svelte-ygx6vm{font-size:.75rem;color:var(--color-text-subtle);margin-top:.25rem}.colors-section.svelte-ygx6vm{display:flex;gap:1.5rem}.color-field.svelte-ygx6vm label:where(.svelte-ygx6vm){display:block;font-size:.813rem;font-weight:500;color:var(--color-text-muted);margin-bottom:.375rem}.color-input-row.svelte-ygx6vm{display:flex;align-items:center;gap:.5rem}.color-input-row.svelte-ygx6vm input[type=color]:where(.svelte-ygx6vm){width:36px;height:36px;padding:2px;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);cursor:pointer;background:none}.color-text-input.svelte-ygx6vm{width:80px;padding:.375rem .5rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);font-size:.813rem;font-family:monospace;color:var(--color-text);background:var(--color-surface)}.save-row.svelte-ygx6vm{display:flex;justify-content:flex-start}.details-preview.svelte-ygx6vm{padding:1rem;background:var(--color-surface-muted);border-radius:var(--radius-md);border:1px solid var(--color-border)}.details-label.svelte-ygx6vm{font-size:.75rem;font-weight:500;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.04em;margin-bottom:.5rem}.details-name.svelte-ygx6vm{font-size:.938rem;font-weight:600;color:var(--color-text);margin-bottom:.25rem}.details-line.svelte-ygx6vm{font-size:.813rem;color:var(--color-text-muted);line-height:1.5}.details-abn.svelte-ygx6vm{margin-top:.25rem;font-size:.75rem;color:var(--color-text-subtle)}.details-hint.svelte-ygx6vm{font-size:.75rem;color:var(--color-text-subtle);font-style:italic;margin-top:.5rem}@media(max-width:480px){.colors-section.svelte-ygx6vm{flex-direction:column;gap:1rem}.logo-row.svelte-ygx6vm{flex-direction:column;align-items:flex-start}}.template-list-panel.svelte-1fqb45b{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:1.5rem}.panel-header.svelte-1fqb45b{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem}.panel-title.svelte-1fqb45b{font-size:1rem;font-weight:600;color:var(--color-text);margin:0}.panel-actions.svelte-1fqb45b{display:flex;gap:.5rem}.form-error.svelte-1fqb45b{padding:.5rem .75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error-text);border-radius:var(--radius-md);font-size:.813rem;margin-bottom:.75rem}.file-input-hidden.svelte-1fqb45b{display:none}.btn-small.svelte-1fqb45b{display:inline-flex;align-items:center;gap:.375rem;padding:.375rem .75rem;font-size:.813rem;font-family:inherit;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.btn-small.svelte-1fqb45b:hover:not(:disabled){background:var(--color-surface-muted)}.btn-small.svelte-1fqb45b:disabled{opacity:.5;cursor:not-allowed}.template-grid.svelte-1fqb45b{display:flex;flex-direction:column;gap:.5rem}.template-row.svelte-1fqb45b{display:flex;align-items:center;gap:1rem;padding:.75rem 1rem;background:var(--color-surface-muted);border:1px solid transparent;border-radius:var(--radius-md);transition:all var(--transition-fast) var(--easing-default)}.template-row.svelte-1fqb45b:hover{border-color:var(--color-border-strong)}.template-row.is-custom.svelte-1fqb45b{background:var(--color-surface-alt);border-color:var(--color-border)}.template-info.svelte-1fqb45b{display:flex;align-items:center;gap:.75rem;flex:1;min-width:0}.template-icon.svelte-1fqb45b{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:36px;height:36px;background:var(--color-surface);border-radius:var(--radius-md);color:var(--color-text-muted)}.template-meta.svelte-1fqb45b{display:flex;flex-direction:column;min-width:0}.template-name.svelte-1fqb45b{font-size:.875rem;font-weight:500;color:var(--color-text)}.template-desc.svelte-1fqb45b{font-size:.75rem;color:var(--color-text-subtle);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.template-status.svelte-1fqb45b{flex-shrink:0}.badge.svelte-1fqb45b{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .625rem;font-size:.75rem;font-weight:500;border-radius:var(--radius-full);white-space:nowrap}.badge-predefined.svelte-1fqb45b{background:var(--color-surface);color:var(--color-text-subtle);border:1px solid var(--color-border)}.badge-custom.svelte-1fqb45b{background:var(--color-success-bg);color:var(--color-success-text);border:1px solid var(--color-success-border)}.template-actions.svelte-1fqb45b{display:flex;gap:.375rem;flex-shrink:0}.btn-action.svelte-1fqb45b{display:inline-flex;align-items:center;gap:.25rem;padding:.313rem .625rem;font-size:.75rem;font-family:inherit;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);background:var(--color-surface);color:var(--color-text-muted);cursor:pointer;transition:all var(--transition-fast) var(--easing-default);white-space:nowrap}.btn-action.svelte-1fqb45b:hover{background:var(--color-surface-muted);color:var(--color-text)}.btn-action-primary.svelte-1fqb45b{color:var(--color-accent);border-color:var(--color-accent)}.btn-action-primary.svelte-1fqb45b:hover{background:var(--color-surface-alt)}.btn-action-danger.svelte-1fqb45b:hover{color:var(--color-error);border-color:var(--color-error-border);background:var(--color-error-bg)}@media(max-width:768px){.template-row.svelte-1fqb45b{flex-wrap:wrap}.template-info.svelte-1fqb45b{flex-basis:100%}.template-desc.svelte-1fqb45b{display:none}.template-actions.svelte-1fqb45b{margin-left:auto}}.column-editor.svelte-1p87cm0{display:flex;flex-direction:column;gap:.5rem}.editor-title.svelte-1p87cm0{font-size:.813rem;font-weight:600;color:var(--color-text);margin:0}.empty-state.svelte-1p87cm0{font-size:.813rem;color:var(--color-text-subtle);padding:.75rem;text-align:center;background:var(--color-surface-muted);border-radius:var(--radius-md)}.column-list.svelte-1p87cm0{display:flex;flex-direction:column;gap:.25rem}.column-row.svelte-1p87cm0{display:flex;align-items:center;gap:.5rem;padding:.5rem;background:var(--color-surface-muted);border:1px solid transparent;border-radius:var(--radius-sm);transition:all var(--transition-fast) var(--easing-default)}.column-row.svelte-1p87cm0:hover{border-color:var(--color-border-strong)}.column-row.is-dragging.svelte-1p87cm0{opacity:.4}.column-row.drag-over.svelte-1p87cm0{border-color:var(--color-accent);background:var(--color-surface-alt)}.drag-handle.svelte-1p87cm0{display:flex;align-items:center;cursor:grab;color:var(--color-text-subtle);flex-shrink:0}.drag-handle.svelte-1p87cm0:active{cursor:grabbing}.col-header-input.svelte-1p87cm0{width:100px;padding:.25rem .375rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);font-size:.75rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.col-field-label.svelte-1p87cm0{font-size:.75rem;color:var(--color-text-subtle);font-family:monospace;min-width:70px}.col-select.svelte-1p87cm0{padding:.25rem .375rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);font-size:.75rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.btn-remove.svelte-1p87cm0{display:flex;align-items:center;justify-content:center;width:24px;height:24px;border:none;border-radius:var(--radius-sm);background:none;color:var(--color-text-subtle);cursor:pointer;flex-shrink:0}.btn-remove.svelte-1p87cm0:hover{color:var(--color-error);background:var(--color-error-bg)}.add-column-row.svelte-1p87cm0{display:flex;flex-direction:column;gap:.5rem;padding:.75rem;border:1px dashed var(--color-border-strong);border-radius:var(--radius-md);margin-top:.25rem}.add-label.svelte-1p87cm0{display:flex;align-items:center;gap:.25rem;font-size:.75rem;font-weight:500;color:var(--color-text-muted)}.add-options.svelte-1p87cm0{display:flex;flex-wrap:wrap;gap:.375rem}.btn-add-field.svelte-1p87cm0{padding:.25rem .5rem;font-size:.75rem;font-family:inherit;border:1px solid var(--color-border-strong);border-radius:var(--radius-full);background:var(--color-surface);color:var(--color-text-muted);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.btn-add-field.svelte-1p87cm0:hover{color:var(--color-accent);border-color:var(--color-accent);background:var(--color-surface-alt)}@media(max-width:480px){.column-row.svelte-1p87cm0{flex-wrap:wrap}.col-header-input.svelte-1p87cm0{flex:1;min-width:80px}}.totals-editor.svelte-lqt1yv{display:flex;flex-direction:column;gap:.5rem}.editor-title.svelte-lqt1yv{font-size:.813rem;font-weight:600;color:var(--color-text);margin:0}.empty-state.svelte-lqt1yv{font-size:.813rem;color:var(--color-text-subtle);padding:.75rem;text-align:center;background:var(--color-surface-muted);border-radius:var(--radius-md)}.row-list.svelte-lqt1yv{display:flex;flex-direction:column;gap:.25rem}.total-row.svelte-lqt1yv{display:flex;align-items:center;gap:.5rem;padding:.5rem;background:var(--color-surface-muted);border-radius:var(--radius-sm)}.row-label-input.svelte-lqt1yv{flex:1;min-width:100px;padding:.25rem .375rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);font-size:.75rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.row-select.svelte-lqt1yv{padding:.25rem .375rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);font-size:.75rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.bold-toggle.svelte-lqt1yv{display:flex;align-items:center;gap:.25rem;cursor:pointer}.bold-toggle.svelte-lqt1yv input:where(.svelte-lqt1yv){display:none}.bold-label.svelte-lqt1yv{display:flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:.813rem;font-weight:700;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);background:var(--color-surface);color:var(--color-text-subtle);transition:all var(--transition-fast) var(--easing-default)}.bold-toggle.svelte-lqt1yv input:where(.svelte-lqt1yv):checked+.bold-label:where(.svelte-lqt1yv){background:var(--color-accent);color:var(--color-accent-contrast);border-color:var(--color-accent)}.btn-remove.svelte-lqt1yv{display:flex;align-items:center;justify-content:center;width:24px;height:24px;border:none;border-radius:var(--radius-sm);background:none;color:var(--color-text-subtle);cursor:pointer;flex-shrink:0}.btn-remove.svelte-lqt1yv:hover{color:var(--color-error);background:var(--color-error-bg)}.btn-add.svelte-lqt1yv{display:inline-flex;align-items:center;gap:.375rem;padding:.5rem .75rem;font-size:.75rem;font-family:inherit;border:1px dashed var(--color-border-strong);border-radius:var(--radius-md);background:none;color:var(--color-text-muted);cursor:pointer;transition:all var(--transition-fast) var(--easing-default);align-self:flex-start}.btn-add.svelte-lqt1yv:hover{border-color:var(--color-accent);color:var(--color-accent);background:var(--color-surface-alt)}@media(max-width:480px){.total-row.svelte-lqt1yv{flex-wrap:wrap}.row-label-input.svelte-lqt1yv{flex-basis:100%}}.form-error.svelte-1ie3c3h{padding:.5rem .75rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error-text);border-radius:var(--radius-md);font-size:.813rem;margin-bottom:.75rem}.editor-layout.svelte-1ie3c3h{display:flex;flex-direction:column;gap:1.5rem}.section-group.svelte-1ie3c3h{margin-bottom:1rem}.group-title.svelte-1ie3c3h{font-size:.875rem;font-weight:600;color:var(--color-text);margin:0 0 .75rem}.section-list.svelte-1ie3c3h{display:flex;flex-direction:column;gap:.375rem}.section-item.svelte-1ie3c3h{display:flex;align-items:flex-start;gap:.5rem;padding:.625rem .75rem;background:var(--color-surface-muted);border:1px solid transparent;border-radius:var(--radius-md);transition:all var(--transition-fast) var(--easing-default);flex-wrap:wrap}.section-item.svelte-1ie3c3h:hover{border-color:var(--color-border-strong)}.section-item.is-dragging.svelte-1ie3c3h{opacity:.4}.section-item.drag-over.svelte-1ie3c3h{border-color:var(--color-accent);background:var(--color-surface-alt)}.section-item.is-disabled.svelte-1ie3c3h{opacity:.5}.drag-handle.svelte-1ie3c3h{display:flex;align-items:center;cursor:grab;color:var(--color-text-subtle);padding-top:2px}.drag-handle.svelte-1ie3c3h:active{cursor:grabbing}.section-toggle.svelte-1ie3c3h{display:flex;align-items:center;gap:.5rem;flex:1;cursor:pointer}.section-toggle.svelte-1ie3c3h input[type=checkbox]:where(.svelte-1ie3c3h){width:16px;height:16px;cursor:pointer}.section-label.svelte-1ie3c3h{font-size:.875rem;color:var(--color-text)}.btn-configure.svelte-1ie3c3h{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);background:var(--color-surface);color:var(--color-text-muted);cursor:pointer;transition:all var(--transition-fast) var(--easing-default)}.btn-configure.svelte-1ie3c3h:hover:not(:disabled){color:var(--color-accent);border-color:var(--color-accent)}.btn-configure.svelte-1ie3c3h:disabled{opacity:.3;cursor:not-allowed}.footer-fields.svelte-1ie3c3h{flex-basis:100%;padding:.75rem 0 0 2rem;display:flex;flex-direction:column;gap:.5rem}.footer-fields.svelte-1ie3c3h input:where(.svelte-1ie3c3h){width:100%;padding:.375rem .5rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);font-size:.813rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.page-settings.svelte-1ie3c3h{display:flex;flex-direction:column;gap:.75rem}.settings-row.svelte-1ie3c3h{display:flex;gap:.75rem}.settings-row.svelte-1ie3c3h select:where(.svelte-1ie3c3h),.settings-row.svelte-1ie3c3h input[type=number]:where(.svelte-1ie3c3h){width:100%;padding:.375rem .5rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);font-size:.813rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}.sub-editor.svelte-1ie3c3h{display:flex;flex-direction:column;gap:1rem}.sub-editor-header.svelte-1ie3c3h{display:flex;align-items:center;gap:.75rem}.sub-editor-header.svelte-1ie3c3h h4:where(.svelte-1ie3c3h){font-size:.875rem;font-weight:600;margin:0;color:var(--color-text)}.btn-back.svelte-1ie3c3h{display:flex;align-items:center;gap:.25rem;padding:.25rem .5rem;font-size:.813rem;font-family:inherit;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);background:var(--color-surface);color:var(--color-text-muted);cursor:pointer}.btn-back.svelte-1ie3c3h:hover{background:var(--color-surface-muted)}.table-options.svelte-1ie3c3h{display:flex;flex-direction:column;gap:.75rem;padding:.75rem;background:var(--color-surface-muted);border-radius:var(--radius-md)}.checkbox-label.svelte-1ie3c3h{display:flex;align-items:center;gap:.5rem;font-size:.813rem;color:var(--color-text);cursor:pointer}.select-row.svelte-1ie3c3h{display:flex;align-items:center;gap:.5rem;font-size:.813rem;color:var(--color-text)}.select-row.svelte-1ie3c3h select:where(.svelte-1ie3c3h){padding:.25rem .5rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-sm);font-size:.813rem;font-family:inherit;color:var(--color-text);background:var(--color-surface)}@media(max-width:480px){.settings-row.svelte-1ie3c3h{flex-direction:column}}.loading-state.svelte-zri0x4{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:4rem 2rem;color:var(--color-text-muted);gap:1rem}.spinner.svelte-zri0x4{width:32px;height:32px;border:3px solid var(--color-border);border-top-color:var(--color-accent);border-radius:50%;animation:svelte-zri0x4-spin .8s linear infinite}@keyframes svelte-zri0x4-spin{to{transform:rotate(360deg)}}.empty-state.svelte-zri0x4{text-align:center;padding:4rem 2rem;color:var(--color-text-muted)}.error-banner.svelte-zri0x4{padding:.75rem 1rem;background:var(--color-error-bg);border:1px solid var(--color-error-border);color:var(--color-error-text);border-radius:var(--radius-md);margin-bottom:1.5rem;font-size:.875rem}.business-selector.svelte-zri0x4{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem;font-size:.875rem}.business-selector.svelte-zri0x4 label:where(.svelte-zri0x4){color:var(--color-text-muted);white-space:nowrap}.business-selector.svelte-zri0x4 select:where(.svelte-zri0x4){padding:.5rem .75rem;border:1px solid var(--color-border-strong);border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);font-size:.875rem;font-family:inherit}.documents-content.svelte-zri0x4{display:flex;flex-direction:column;gap:1.5rem}.dashboard.svelte-1ia8gc3{display:flex;min-height:100vh}.dashboard-content.svelte-1ia8gc3{flex:1;margin-left:260px;background:var(--color-body-bg);min-height:100vh}.content-header.svelte-1ia8gc3{display:flex;align-items:center;gap:1rem;padding:1rem 2rem;background:var(--color-surface);border-bottom:1px solid var(--color-border);position:sticky;top:0;z-index:var(--z-sticky)}.section-title.svelte-1ia8gc3{font-size:1.25rem;font-weight:600;color:var(--color-text);margin:0}.menu-button.svelte-1ia8gc3{display:none;align-items:center;justify-content:center;background:none;border:none;color:var(--color-text);cursor:pointer;padding:.25rem;border-radius:var(--radius-sm);transition:background .2s ease}.menu-button.svelte-1ia8gc3:hover{background:var(--color-surface-muted)}.content-body.svelte-1ia8gc3{padding:2rem;max-width:1200px}@media(max-width:768px){.dashboard-content.svelte-1ia8gc3{margin-left:0}.menu-button.svelte-1ia8gc3{display:flex}.content-body.svelte-1ia8gc3,.content-header.svelte-1ia8gc3{padding:1rem}}.app-loading.svelte-1n46o8q{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;background:var(--color-body-bg);gap:1rem}.app-loading-text.svelte-1n46o8q{color:var(--color-text-muted);font-size:.875rem}
