.toast-container{z-index:9999;flex-direction:column;gap:10px;display:flex;position:fixed;top:20px;right:20px}.toast{cursor:pointer;border-radius:8px;justify-content:space-between;align-items:center;min-width:300px;max-width:500px;padding:16px 20px;animation:.3s ease-out slideIn;display:flex;box-shadow:0 4px 12px #00000026}@keyframes slideIn{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}.toast-success{background:var(--primary-medium);color:#fff}.toast-error{background:var(--orange);color:#fff}.toast-warning{background:var(--highlighter-dark);color:#000}.toast-info{background:var(--primary);color:#fff}.toast-message{flex:1;font-size:14px;line-height:1.5}.toast-close{color:#fff;cursor:pointer;opacity:.7;background:0 0;border:none;margin-left:12px;font-size:24px;transition:opacity .2s}.toast-close:hover{opacity:1}.app-header{background:var(--primary);border-bottom:1px solid var(--primary-light);z-index:1000;justify-content:space-between;align-items:center;padding:1rem 2rem;display:flex;position:sticky;top:0;box-shadow:0 1px 3px #0000001a}.header-left{align-items:center;gap:2rem;display:flex}.app-logo{letter-spacing:-.025em;color:#fff;margin:0;font-size:1.25rem;font-weight:700}.nav-menu{gap:.25rem;display:flex}.nav-item{color:var(--primary-lavender);border-radius:6px;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;text-decoration:none;transition:all .15s;display:flex}.nav-item:hover{background:var(--primary-light);color:var(--highlighter)}.nav-item.active{background:var(--primary-medium);color:#fff}.nav-label{font-size:.875rem}.user-info{background:var(--primary-light);border:1px solid var(--primary-hover);border-radius:6px;align-items:center;gap:.5rem;padding:.5rem 1rem;display:flex}.user-name{color:var(--primary-lavender);font-size:.875rem;font-weight:500}.verified-badge{color:var(--highlighter);font-size:.75rem;font-weight:500}.logout-btn{border:1px solid var(--primary-hover);color:var(--primary-lavender);cursor:pointer;background:0 0;border-radius:6px;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.logout-btn:hover{background:var(--orange-deeper);color:#fff;border-color:var(--orange)}.logout-icon{font-size:1.1rem}.logout-label{font-size:.875rem}@media (width<=768px){.app-header{flex-direction:column;gap:1rem;padding:1rem}.header-left{flex-direction:column;align-items:stretch;width:100%}.app-logo{text-align:center;font-size:1.125rem}.nav-menu{flex-wrap:wrap;justify-content:center}.nav-item{padding:.5rem .875rem;font-size:.8125rem}.header-right{justify-content:center;width:100%}.user-info{font-size:.8125rem}}.modal-overlay{z-index:10000;background:#00000080;justify-content:center;align-items:center;animation:.2s ease-out fadeIn;display:flex;position:fixed;inset:0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal{background:#fff;border-radius:12px;width:90%;max-width:500px;animation:.3s ease-out slideUp;box-shadow:0 20px 60px #0000004d}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-closing{animation:.3s ease-out forwards fadeOut}@keyframes fadeOut{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-20px)}}.modal-header{justify-content:space-between;align-items:flex-start;padding:24px 24px 0;display:flex}.modal-header h2{color:var(--primary);margin:0;font-size:20px;font-weight:600}.modal-close{cursor:pointer;color:#6b7280;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;width:32px;height:32px;padding:0;font-size:32px;line-height:1;transition:background .2s;display:flex}.modal-close:hover{color:#1f2937;background:#f3f4f6}.modal-body{padding:24px}.modal-body p{color:#4b5563;margin:0;font-size:15px;line-height:1.6}.modal-footer{justify-content:flex-end;gap:12px;padding:16px 24px 24px;display:flex}.modal-btn{cursor:pointer;border:none;border-radius:6px;padding:10px 20px;font-size:14px;font-weight:500;transition:all .2s}.modal-btn:disabled{opacity:.5;cursor:not-allowed}.modal-btn-secondary{background:var(--primary-bg);color:var(--primary-light)}.modal-btn-secondary:hover:not(:disabled){background:var(--primary-pale)}.modal-btn-primary{background:var(--primary-medium);color:#fff}.modal-btn-primary:hover:not(:disabled){background:var(--primary-hover)}.modal-confirm.modal-warning .modal-header h2{color:var(--highlighter-dark)}.modal-confirm.modal-danger .modal-header h2{color:var(--orange)}.modal-confirm.modal-info .modal-header h2{color:var(--primary-medium)}.login-container{background:linear-gradient(135deg,#2e1065 0%,#4c1d95 50%,#6d28d9 100%);justify-content:center;align-items:center;min-height:100vh;padding:20px;display:flex}.login-form{background:#fff;border-radius:12px;width:100%;max-width:400px;padding:40px;box-shadow:0 4px 6px #0000004d}.login-form h2{color:var(--primary);text-align:center;margin-bottom:30px;font-weight:700}.form-group label{color:var(--primary-light);margin-bottom:8px;font-size:.9rem;font-weight:500;display:block}.form-group input:focus{border-color:var(--primary-medium);outline:none;box-shadow:0 0 0 3px #7c3aed26}.login-btn{background:var(--primary-medium);color:#fff;cursor:pointer;border:none;border-radius:6px;width:100%;padding:14px;font-size:1rem;font-weight:600;transition:background .3s}.login-btn:hover:not(:disabled){background:var(--primary-hover)}.login-btn:disabled{opacity:.6;cursor:not-allowed}.register-link{text-align:center;color:var(--primary-medium);cursor:pointer;margin-top:20px;font-size:.9rem;transition:color .3s}.register-link:hover{color:var(--primary-hover);text-decoration:underline}.error-message{color:var(--orange-deep);background:var(--orange-light);text-align:center;border:1px solid var(--orange-pale);border-radius:6px;margin-bottom:20px;padding:10px;font-size:.9rem}.agent-chat-root{z-index:1000;flex-direction:column;align-items:flex-end;gap:.75rem;display:flex;position:fixed;bottom:1.5rem;right:1.5rem}.agent-chat-toggle{background:var(--primary-medium);color:#fff;cursor:pointer;border:none;border-radius:50%;width:56px;height:56px;font-size:1.5rem;transition:transform .15s;box-shadow:0 4px 16px #00000040}.agent-chat-toggle:hover{transform:scale(1.05)}.agent-chat-panel{background:#fff;border-radius:1rem;flex-direction:column;width:340px;max-width:calc(100vw - 3rem);height:440px;max-height:calc(100vh - 8rem);display:flex;overflow:hidden;box-shadow:0 8px 32px #00000040}.agent-chat-header{background:var(--primary-medium);color:#fff;justify-content:space-between;align-items:center;padding:.85rem 1rem;font-weight:600;display:flex}.agent-chat-close{color:#fff;cursor:pointer;background:0 0;border:none;font-size:1.25rem;line-height:1}.agent-chat-messages{background:var(--primary-bg);flex-direction:column;flex:1;gap:.6rem;padding:1rem;display:flex;overflow-y:auto}.agent-chat-empty{color:var(--primary-light);text-align:center;margin-top:1rem;font-size:.85rem}.agent-chat-bubble{white-space:pre-wrap;border-radius:.85rem;max-width:85%;padding:.6rem .85rem;font-size:.85rem;line-height:1.4}.agent-chat-bubble.user{background:var(--primary-medium);color:#fff;border-bottom-right-radius:.25rem;align-self:flex-end}.agent-chat-bubble.agent{background:var(--primary-pale);color:var(--primary);border-bottom-left-radius:.25rem;align-self:flex-start}.agent-chat-typing{color:#6b7280;font-style:italic}.agent-chat-error{color:var(--orange);padding:0 1rem .5rem;font-size:.75rem}.agent-chat-input-row{background:#fff;border-top:1px solid #e5e7eb;gap:.5rem;padding:.75rem;display:flex}.agent-chat-input-row input{border:1px solid #d1d5db;border-radius:.5rem;flex:1;padding:.5rem .75rem;font-size:.85rem}.agent-chat-input-row input:focus{border-color:var(--primary-medium);outline:none}.agent-chat-input-row button{background:var(--primary-medium);color:#fff;cursor:pointer;border:none;border-radius:.5rem;padding:.5rem .9rem;font-size:.85rem;font-weight:600}.agent-chat-input-row button:disabled{opacity:.5;cursor:not-allowed}.agent-chat-root.agent-chat-fullscreen{z-index:5;background:#f9fafbf2;flex-direction:column;display:flex;position:fixed;inset:0}.agent-chat-panel-fullscreen{width:100%;max-width:none;height:100%;max-height:none;box-shadow:none;border-radius:0}.agent-chat-panel-fullscreen .agent-chat-header{background:linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);padding:1rem 1.5rem;font-size:1.1rem}.agent-chat-panel-fullscreen .agent-chat-messages{gap:1rem;padding:1.5rem}.agent-chat-panel-fullscreen .agent-chat-bubble{max-width:70%;padding:.85rem 1.1rem;font-size:.95rem}.agent-chat-panel-fullscreen .agent-chat-input-row{background:#fff;border-top:2px solid #e5e7eb;padding:1rem 1.5rem}.agent-chat-panel-fullscreen .agent-chat-input-row input{border-radius:.75rem;padding:.75rem 1rem;font-size:1rem}.agent-chat-panel-fullscreen .agent-chat-input-row button{border-radius:.75rem;padding:.75rem 1.5rem;font-size:1rem}@keyframes fadeInSlide{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.agent-chat-panel-fullscreen{animation:.4s ease-out fadeInSlide}.journey-blank-page{z-index:1;background:#fff;width:100%;min-height:100vh;position:relative}body:has(.journey-blank-page){background:#2e1065;margin:0}body:has(.journey-blank-page) #root{border-inline:none;width:100%;max-width:100%;margin:0}.journey-welcome-overlay{z-index:25;background:linear-gradient(135deg,#2e1065 0%,#4c1d95 50%,#6d28d9 100%);width:100vw;height:100vh;transition:opacity .5s;position:fixed;top:0;left:0}.journey-welcome-overlay.fade-out{opacity:0;pointer-events:none}.journey-switch-animated-wrapper{z-index:30;transition:all .6s cubic-bezier(.34,1.56,.64,1);position:fixed;top:calc(50% - 14px);right:calc(50% - 26px)}.journey-switch-animated-wrapper .journey-switch{transition:transform .6s cubic-bezier(.34,1.56,.64,1);transform:scale(1.8)}.journey-switch-animated-wrapper.at-corner{top:1rem;right:1rem}.journey-switch-animated-wrapper.at-corner .journey-switch{transform:scale(1)}.journey-switch-animated-wrapper.going-center{top:calc(50% - 14px);right:calc(50% - 26px)}.journey-switch-animated-wrapper.going-center .journey-switch{transform:scale(1.8)}.journey-switch{cursor:pointer;transform-origin:50%;display:inline-flex;position:relative}.journey-switch.is-disabled{cursor:not-allowed;opacity:.6}.journey-switch input{opacity:0;width:100%;height:100%;cursor:inherit;z-index:2;margin:0;position:absolute}.journey-switch-track{background:#d1d5db;border-radius:999px;align-items:center;width:52px;height:28px;padding:3px;transition:background-color .3s;display:flex}.journey-switch.is-online .journey-switch-track{background:#10b981}.journey-switch-thumb{background:#fff;border-radius:50%;width:22px;height:22px;transition:transform .3s;box-shadow:0 2px 4px #0003}.journey-switch.is-online .journey-switch-thumb{transform:translate(24px)}.crm-view-container{background:var(--primary-bg);min-height:100vh}.crm-header{background:var(--primary);border-bottom:1px solid var(--primary-light);align-items:center;gap:1rem;padding:1rem 2rem;display:flex}.back-btn{background:var(--primary-light);color:var(--primary-lavender);border:1px solid var(--primary-hover);cursor:pointer;border-radius:6px;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.back-btn:hover{background:var(--primary-hover);color:#fff}.crm-header h1{color:#fff;letter-spacing:-.025em;margin:0;font-size:1.5rem;font-weight:600}.crm-content{max-width:1400px;margin:0 auto;padding:2rem}.crm-tabs{background:#fff;border-radius:8px;gap:.5rem;margin-bottom:1.5rem;padding:.5rem;display:flex;box-shadow:0 1px 3px #0000000d}.crm-tab{cursor:pointer;color:var(--primary-light);background:0 0;border:none;border-radius:6px;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.crm-tab:hover{background:var(--primary-bg);color:var(--primary)}.crm-tab.active{background:var(--primary-medium);color:#fff}.tab-icon{font-size:1rem}.tab-label{font-size:.875rem}.content-header{justify-content:space-between;align-items:center;margin-bottom:1.5rem;display:flex}.content-header h2{color:#1e293b;letter-spacing:-.025em;margin:0;font-size:1.25rem;font-weight:600}.add-btn{background:var(--primary-medium);color:#fff;cursor:pointer;border:none;border-radius:6px;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.add-btn:hover{background:var(--primary-hover)}.content-body{background:#fff;border-radius:8px;min-height:400px;padding:2rem;box-shadow:0 1px 3px #0000000d}.empty-state{text-align:center;flex-direction:column;justify-content:center;align-items:center;padding:4rem 2rem;display:flex}.empty-icon{color:#cbd5e1;margin-bottom:1.5rem}.empty-state h3{color:#1e293b;margin:0 0 .5rem;font-size:1.125rem;font-weight:600}.empty-state p{color:#64748b;margin:0;font-size:.875rem}@media (width<=768px){.crm-header{flex-direction:column;align-items:flex-start;gap:1rem}.crm-tabs{flex-wrap:wrap}.crm-tab{padding:.5rem .875rem;font-size:.8125rem}.content-header{flex-direction:column;align-items:stretch;gap:1rem}.add-btn{width:100%}}.post-login-overlay{z-index:9999;background:linear-gradient(135deg,#2e1065 0%,#4c1d95 50%,#6d28d9 100%);justify-content:center;align-items:center;animation:.3s ease-out fadeIn;display:flex;position:fixed;inset:0}.overlay-content{background:#fff;border-radius:12px;width:90%;max-width:600px;padding:3rem;animation:.4s ease-out slideUp;box-shadow:0 25px 50px -12px #00000040}.overlay-header{text-align:center;margin-bottom:2.5rem}.overlay-header h1{color:#2e1065;letter-spacing:-.025em;margin:0 0 .75rem;font-size:2rem;font-weight:600}.overlay-header p{color:var(--primary-light);margin:0;font-size:1rem;font-weight:400}.options-grid{grid-template-columns:1fr 1fr;gap:1.5rem;display:grid}.option-card{background:var(--primary-bg);border:1px solid var(--primary-pale);cursor:pointer;text-align:center;border-radius:10px;flex-direction:column;align-items:center;padding:2rem 1.5rem;transition:all .2s;display:flex}.option-card:hover{border-color:var(--primary-medium);transform:translateY(-2px);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.journey-card:hover{border-color:var(--primary-medium);background:var(--primary-bg)}.crm-card:hover{border-color:var(--orange);background:var(--orange-light)}.card-icon{color:var(--primary-medium);margin-bottom:1.25rem}.crm-card .card-icon{color:var(--orange)}.option-card h3{color:var(--primary);letter-spacing:-.01em;margin:0 0 .75rem;font-size:1.125rem;font-weight:600}.card-description{color:var(--primary-light);margin:0;font-size:.875rem;line-height:1.5}@media (width<=768px){.overlay-content{width:95%;padding:1.5rem}.overlay-header h1{font-size:1.5rem}.overlay-header p{font-size:.875rem}.options-grid{grid-template-columns:1fr;gap:1rem}.option-card{padding:1.5rem 1rem}.card-icon{margin-bottom:1rem}.option-card h3{font-size:1rem}.option-card>p{font-size:.8125rem}}.contacts-container{background:var(--primary-bg);min-height:100vh}.form-group input{border:1px solid var(--primary-pale);background:var(--primary-bg);width:100%;color:var(--primary);box-sizing:border-box;border-radius:6px;padding:10px;font-size:1rem}.form-group input:focus{border-color:var(--primary-medium);outline:none}.companies-container{background:var(--primary-bg);min-height:100vh}.page-header{background:var(--primary);border-bottom:1px solid var(--primary-light);justify-content:space-between;align-items:center;padding:20px 40px;display:flex}.page-header h1{color:#fff;margin:0;font-size:1.8rem}.page-content{padding:40px}.card-grid{grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:20px;display:grid}.card{text-align:left;border:1px solid var(--primary-pale);background:#fff;border-radius:12px;padding:24px;box-shadow:0 4px 6px #0003}.card h3{color:var(--primary);margin:0 0 15px;font-size:1.2rem}.card p{color:var(--primary-light);margin:8px 0;font-size:.9rem}.card-actions{gap:10px;margin-top:15px;display:flex}.btn-primary{background:var(--primary-medium);color:#fff;cursor:pointer;border:none;border-radius:4px;padding:8px 16px;font-size:.9rem;font-weight:500;transition:background .3s}.btn-primary:hover{background:var(--primary-hover)}.btn-secondary{background:var(--primary-light);color:#fff;cursor:pointer;border:none;border-radius:4px;padding:8px 16px;font-size:.9rem;font-weight:500;transition:background .3s}.btn-secondary:hover{background:var(--primary-hover)}.btn-danger{background:var(--orange);color:#fff;cursor:pointer;border:none;border-radius:4px;padding:8px 16px;font-size:.9rem;font-weight:500;transition:background .3s}.btn-danger:hover{background:var(--orange-deep)}.empty-state{text-align:center;color:var(--primary-light);padding:60px 20px}.empty-state h3{color:var(--primary);margin-bottom:10px;font-size:1.3rem}.empty-state p{color:var(--primary-lavender)}.modal-overlay{z-index:1000;background:#2e1065b3;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.modal{background:#fff;border-radius:12px;width:90%;max-width:500px;max-height:90vh;padding:30px;overflow-y:auto}.modal h2{color:var(--primary);margin-top:0;margin-bottom:20px}.form-group{text-align:left;margin-bottom:15px}.form-group label{color:var(--primary-light);margin-bottom:8px;font-size:.9rem;display:block}.form-group input,.form-group textarea{border:1px solid var(--primary-pale);background:var(--primary-bg);width:100%;color:var(--primary);box-sizing:border-box;border-radius:6px;padding:10px;font-family:inherit;font-size:1rem}.form-group input:focus,.form-group textarea:focus{border-color:var(--primary-medium);outline:none}.modal-actions{gap:10px;margin-top:25px;display:flex}.modal-actions button:last-child{margin-left:auto}.permissions-management-container{background:linear-gradient(135deg,#2e1065 0%,#4c1d95 100%);flex-direction:column;min-height:100vh;display:flex}.permissions-header{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fffffff2;justify-content:space-between;align-items:center;padding:1.5rem 2rem;display:flex;box-shadow:0 2px 10px #0000001a}.header-left h1{color:var(--primary);margin:0 0 .25rem;font-size:1.75rem;font-weight:700}.header-left .subtitle{color:var(--primary-light);font-size:.9rem}.header-right{align-items:center;gap:1.5rem;display:flex}.user-info{align-items:center;gap:.75rem;display:flex}.user-name{color:var(--primary);font-weight:600}.verified-badge{background:var(--highlighter);color:#000;border-radius:1rem;padding:.25rem .5rem;font-size:.75rem;font-weight:600}.logout-btn{background:var(--orange);color:#fff;cursor:pointer;border:none;border-radius:.5rem;padding:.625rem 1.25rem;font-weight:600;transition:all .2s}.logout-btn:hover{background:var(--orange-deep);transform:translateY(-1px)}.permissions-content{flex:1;width:100%;max-width:1400px;margin:0 auto;padding:2rem}.nav-menu{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fffffff2;border-radius:1rem;gap:1rem;margin-bottom:2rem;padding:.75rem 1.5rem;display:flex;box-shadow:0 2px 10px #0000001a}.nav-menu a{color:var(--primary-light);border-radius:.5rem;align-items:center;gap:.5rem;padding:.75rem 1.5rem;font-weight:600;text-decoration:none;transition:all .2s;display:flex}.nav-menu a:hover{background:var(--primary-bg);color:var(--primary-medium)}.nav-menu a.active{background:linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);color:#fff}.nav-icon{font-size:1.25rem}.permissions-grid{grid-template-columns:350px 1fr 350px;align-items:start;gap:1.5rem;display:grid}.card{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fffffff2;border-radius:1rem;transition:transform .2s,box-shadow .2s;overflow:hidden;box-shadow:0 4px 20px #00000026}.card:hover{transform:translateY(-2px);box-shadow:0 6px 30px #0003}.card-header{background:linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);color:#fff;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.card-header h2{margin:0;font-size:1.1rem;font-weight:600}.user-badges{gap:.5rem;display:flex}.badge{border-radius:1rem;padding:.375rem .75rem;font-size:.75rem;font-weight:600}.badge.role{background:#ffffff4d}.badge.team{background:#fff3}.card-content{padding:1.5rem}.user-list{flex-direction:column;gap:.75rem;max-height:600px;display:flex;overflow-y:auto}.user-item{cursor:pointer;background:#f9fafb;border-radius:.75rem;align-items:center;gap:1rem;padding:1rem;transition:all .2s;display:flex}.user-item:hover{background:#f3f4f6;transform:translate(4px)}.user-item.selected{color:#fff;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%)}.user-avatar{color:#fff;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;font-size:1rem;font-weight:700;display:flex}.user-item.selected .user-avatar{color:#667eea;background:#fff}.user-details{flex:1;min-width:0}.user-details .user-name{color:#1f2937;white-space:nowrap;text-overflow:ellipsis;margin-bottom:.25rem;font-weight:600;overflow:hidden}.user-item.selected .user-details .user-name{color:#fff}.user-meta{align-items:center;gap:.5rem;display:flex}.user-role,.user-team{border-radius:1rem;padding:.25rem .5rem;font-size:.75rem;font-weight:600}.user-role{background:var(--primary-bg);color:var(--primary-medium)}.user-team{color:var(--highlighter-dark);background:#ccff001a}.user-item.selected .user-role,.user-item.selected .user-team{color:#fff;background:#ffffff4d}.permissions-info{background:#f9fafb;border-radius:.75rem;margin-bottom:1.5rem;padding:1rem}.permissions-info p{color:#6b7280;margin:.5rem 0;font-size:.9rem}.permissions-info p:first-child{margin-top:0}.permissions-info p:last-child{margin-bottom:0}.permissions-table{margin-bottom:1.5rem}.permissions-table table{border-collapse:collapse;width:100%}.permissions-table th,.permissions-table td{text-align:left;border-bottom:1px solid #e5e7eb;padding:.75rem}.permissions-table th{color:var(--primary-light);text-transform:uppercase;letter-spacing:.05em;background:#f9fafb;font-size:.85rem;font-weight:600}.collection-header{background:#f0f9ff;padding:1rem!important}.collection-info{flex-direction:column;gap:.25rem;display:flex}.collection-info strong{color:#1f2937;font-size:.9rem}.collection-desc{color:#6b7280;font-size:.8rem}.collection-cell{color:var(--primary);font-size:.9rem;font-weight:500}.action-cell{width:120px}.action-badge{border-radius:1rem;align-items:center;gap:.375rem;padding:.375rem .75rem;font-size:.8rem;font-weight:600;display:inline-flex}.action-badge.read{background:var(--primary-bg);color:var(--primary-medium)}.action-badge.write{color:var(--highlighter-dark);background:#ccff0026}.action-badge.create{color:var(--highlighter-dark);background:#10b9811a}.action-badge.delete{background:var(--orange-light);color:var(--orange-deep)}.toggle-cell{justify-content:center;align-items:center;width:80px;display:flex}.toggle-switch{width:48px;height:24px;display:inline-block;position:relative}.toggle-switch input{opacity:0;width:0;height:0}.toggle-slider{cursor:pointer;background-color:#e5e7eb;border-radius:24px;transition:all .4s;position:absolute;inset:0}.toggle-slider:before{content:"";background-color:#fff;border-radius:50%;width:18px;height:18px;transition:all .4s;position:absolute;bottom:3px;left:3px;box-shadow:0 2px 4px #0003}input:checked+.toggle-slider{background:var(--primary-medium)}input:checked+.toggle-slider:before{transform:translate(24px)}input:disabled+.toggle-slider{opacity:.5;cursor:not-allowed}.bulk-actions{background:#f9fafb;border-radius:.75rem;padding:1.5rem}.bulk-actions h3{color:#1f2937;margin:0 0 1rem;font-size:1rem;font-weight:600}.bulk-actions>p{color:#6b7280;margin:0 0 1rem;font-size:.85rem}.bulk-buttons{flex-direction:column;gap:.5rem;display:flex}.bulk-btn{cursor:pointer;border:none;border-radius:.5rem;padding:.625rem 1rem;font-size:.85rem;font-weight:600;transition:all .2s}.bulk-btn.allow{background:var(--primary-medium);color:#fff}.bulk-btn.allow:hover{background:var(--primary-hover);transform:translateY(-1px)}.bulk-btn.deny{background:var(--orange);color:#fff}.bulk-btn.deny:hover{background:var(--orange-deep);transform:translateY(-1px)}.info-card .card-header{background:linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%)}.info-section{margin-bottom:1.5rem}.info-section:last-child{margin-bottom:0}.info-section h3{color:#1f2937;margin:0 0 .75rem;font-size:.95rem;font-weight:600}.info-section ul,.info-section ol{color:#6b7280;margin:0;padding-left:1.25rem;font-size:.85rem;line-height:1.6}.info-section li{margin-bottom:.5rem}.info-section li:last-child{margin-bottom:0}.loading{color:#fff;justify-content:center;align-items:center;min-height:400px;font-size:1.25rem;font-weight:600;display:flex}@media (width<=1200px){.permissions-grid{grid-template-columns:1fr}.permissions-content{padding:1rem}}@media (width<=768px){.permissions-header{flex-direction:column;gap:1rem;padding:1rem}.header-right{flex-direction:column;gap:.75rem;width:100%}.nav-menu{flex-wrap:wrap;justify-content:center}.permissions-table table{font-size:.85rem}.permissions-table th,.permissions-table td{padding:.5rem}}.app-container{background:var(--primary-bg);min-height:100vh}.counter{color:var(--accent);background:var(--accent-bg);border:2px solid #0000;border-radius:5px;margin-bottom:24px;padding:5px 10px;font-size:16px;transition:border-color .3s}.counter:hover{border-color:var(--accent-border)}.counter:focus-visible{outline:2px solid var(--accent);outline-offset:2px}.hero{position:relative}.hero .base,.hero .framework,.hero .vite{margin:0 auto;inset-inline:0}.hero .base{z-index:0;width:170px;position:relative}.hero .framework,.hero .vite{position:absolute}.hero .framework{z-index:1;height:28px;top:34px;transform:perspective(2000px)rotate(300deg)rotateX(44deg)rotateY(39deg)scale(1.4)}.hero .vite{z-index:0;width:auto;height:26px;top:107px;transform:perspective(2000px)rotate(300deg)rotateX(40deg)rotateY(39deg)scale(.8)}#center{flex-direction:column;flex-grow:1;place-content:center;place-items:center;gap:25px;display:flex}@media (width<=1024px){#center{gap:18px;padding:32px 20px 24px}}#next-steps{border-top:1px solid var(--border);text-align:left;display:flex}#next-steps>div{flex:1 1 0;padding:32px}@media (width<=1024px){#next-steps>div{padding:24px 20px}}#next-steps .icon{width:22px;height:22px;margin-bottom:16px}@media (width<=1024px){#next-steps{text-align:center;flex-direction:column}}#docs{border-right:1px solid var(--border)}@media (width<=1024px){#docs{border-right:none;border-bottom:1px solid var(--border)}}#next-steps ul{gap:8px;margin:32px 0 0;padding:0;list-style:none;display:flex}#next-steps ul .logo{height:18px}#next-steps ul a{color:var(--text-h);background:var(--social-bg);border-radius:6px;align-items:center;gap:8px;padding:6px 12px;font-size:16px;text-decoration:none;transition:box-shadow .3s;display:flex}#next-steps ul a:hover{box-shadow:var(--shadow)}#next-steps ul a .button-icon{width:18px;height:18px}@media (width<=1024px){#next-steps ul{flex-wrap:wrap;justify-content:center;margin-top:20px}#next-steps ul li{flex:calc(50% - 8px)}#next-steps ul a{box-sizing:border-box;justify-content:center;width:100%}}#spacer{border-top:1px solid var(--border);height:88px}@media (width<=1024px){#spacer{height:48px}}.ticks{width:100%;position:relative}.ticks:before,.ticks:after{content:"";border:5px solid #0000;position:absolute;top:-4.5px}.ticks:before{border-left-color:var(--border);left:0}.ticks:after{border-right-color:var(--border);right:0}:root{--primary:#2e1065;--primary-light:#4c1d95;--primary-hover:#5b21b6;--primary-vibrant:#6d28d9;--primary-medium:#7c3aed;--primary-soft:#a78bfa;--primary-lavender:#c4b5fd;--primary-pale:#ddd6fe;--primary-bg:#ede9fe;--highlighter:#cf0;--highlighter-soft:#d6ff33;--highlighter-pale:#e0ff66;--highlighter-light:#ebff99;--highlighter-dark:#a3cc00;--highlighter-deep:#7a9900;--orange:#f97316;--orange-deep:#ea580c;--orange-soft:#fb923c;--orange-pale:#fdba74;--orange-light:#fff7ed;--orange-dark:#c2410c;--orange-deeper:#9a3412;--text:#6b6375;--text-h:#2e1065;--bg:#fff;--border:#e5e4e7;--code-bg:#f4f3ec;--social-bg:#f4f3ec80;--shadow:#0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px;--sans:system-ui, "Segoe UI", Roboto, sans-serif;--heading:system-ui, "Segoe UI", Roboto, sans-serif;--mono:ui-monospace, Consolas, monospace;font:18px/145% var(--sans);letter-spacing:.18px;--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;color:var(--text);background:var(--bg);font-synthesis:none;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (prefers-color-scheme:dark){:root{--lightningcss-light: ;--lightningcss-dark:initial}}@media (width<=1024px){:root{font-size:16px}}@media (prefers-color-scheme:dark){:root{--text:#9ca3af;--text-h:#ede9fe;--bg:#0f0f1a;--border:#2e303a;--code-bg:#1f2028;--social-bg:#2f303a80;--shadow:#0006 0 10px 15px -3px, #00000040 0 4px 6px -2px}#social .button-icon{filter:invert()brightness(2)}}#root{text-align:center;border-inline:1px solid var(--border);box-sizing:border-box;flex-direction:column;width:1126px;max-width:100%;min-height:100svh;margin:0 auto;display:flex}body{margin:0}h1,h2{font-family:var(--heading);color:var(--text-h);font-weight:500}h1{letter-spacing:-1.68px;margin:32px 0;font-size:56px}@media (width<=1024px){h1{margin:20px 0;font-size:36px}}h2{letter-spacing:-.24px;margin:0 0 8px;font-size:24px;line-height:118%}@media (width<=1024px){h2{font-size:20px}}p{margin:0}code,.counter{font-family:var(--mono);color:var(--text-h);border-radius:4px;display:inline-flex}code{background:var(--code-bg);padding:4px 8px;font-size:15px;line-height:135%}
