:root{--wiz-bg:rgba(10,15,30,0.98);--wiz-surface:rgba(255,255,255,0.04);--wiz-surface-hover:rgba(255,255,255,0.08);--wiz-surface-active:rgba(0,198,255,0.12);--wiz-border:rgba(255,255,255,0.1);--wiz-border-active:rgba(0,198,255,0.4);--wiz-text:#e0e0e0;--wiz-text-muted:#8899aa;--wiz-text-heading:#ffffff;--wiz-accent:#00C6FF;--wiz-accent-gradient:linear-gradient(135deg,#00C6FF,#0072FF);--wiz-success:#34d399;--wiz-warning:#fbbf24;--wiz-error:#f87171;--wiz-radius:10px;--wiz-radius-sm:6px;--wiz-radius-lg:16px;--wiz-transition:0.2s cubic-bezier(0.4,0,0.2,1)}.wizard-overlay{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.6);backdrop-filter:blur(8px);animation:wizFadeIn .25s ease-out}@keyframes wizFadeIn{0%{opacity:0}to{opacity:1}}.wizard-modal{width:90vw;max-width:780px;max-height:88vh;display:flex;flex-direction:column;background:var(--wiz-bg);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius-lg);box-shadow:0 24px 80px rgba(0,0,0,.5);animation:wizSlideUp .3s ease-out;overflow:hidden}@keyframes wizSlideUp{0%{opacity:0;transform:translateY(24px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}.wizard-header{justify-content:space-between;padding:1rem 1.5rem;border-bottom:1px solid var(--wiz-border);flex-shrink:0}.wizard-header,.wizard-title{display:flex;align-items:center}.wizard-title{font-size:1.1rem;font-weight:600;color:var(--wiz-text-heading);gap:.5rem}.wizard-close{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;border-radius:50%;background:transparent;color:var(--wiz-text-muted);font-size:1.2rem;cursor:pointer;transition:all var(--wiz-transition)}.wizard-close:hover{background:var(--wiz-surface-hover);color:var(--wiz-text-heading)}.wizard-stepper{gap:0;padding:1rem 1.5rem .5rem;flex-shrink:0}.wizard-step,.wizard-stepper{display:flex;align-items:center}.wizard-step{gap:.5rem;font-size:.8rem;color:var(--wiz-text-muted);transition:all var(--wiz-transition)}.wizard-step.active{color:var(--wiz-accent)}.wizard-step.completed{color:var(--wiz-success)}.wizard-step-number{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:50%;font-size:.7rem;font-weight:700;border:2px solid var(--wiz-border);transition:all var(--wiz-transition)}.wizard-step.active .wizard-step-number{border-color:var(--wiz-accent);background:rgba(0,198,255,.15);color:var(--wiz-accent)}.wizard-step.completed .wizard-step-number{border-color:var(--wiz-success);background:rgba(52,211,153,.15);color:var(--wiz-success)}.wizard-step-divider{flex:1;height:1px;background:var(--wiz-border);margin:0 .5rem}.wizard-body{flex:1;overflow-y:auto;padding:1.5rem}.wizard-footer{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;border-top:1px solid var(--wiz-border);flex-shrink:0}.wizard-btn{padding:.6rem 1.4rem;border:none;border-radius:var(--wiz-radius-sm);font-size:.85rem;font-weight:600;cursor:pointer;transition:all var(--wiz-transition);display:inline-flex;align-items:center;gap:.4rem}.wizard-btn:disabled{opacity:.4;cursor:not-allowed}.wizard-btn-primary{background:var(--wiz-accent-gradient);color:#fff}.wizard-btn-primary:not(:disabled):hover{filter:brightness(1.1);transform:translateY(-1px)}.wizard-btn-secondary{background:var(--wiz-surface);color:var(--wiz-text);border:1px solid var(--wiz-border)}.wizard-btn-secondary:not(:disabled):hover{background:var(--wiz-surface-hover);border-color:var(--wiz-border-active)}.wizard-btn-danger{background:rgba(248,113,113,.15);color:var(--wiz-error);border:1px solid rgba(248,113,113,.3)}.wizard-btn-danger:not(:disabled):hover{background:rgba(248,113,113,.25)}.wizard-btn-success{background:rgba(52,211,153,.15);color:var(--wiz-success);border:1px solid rgba(52,211,153,.3)}.wizard-btn-success:not(:disabled):hover{background:rgba(52,211,153,.25)}.wizard-card{padding:1rem;background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius);cursor:pointer;transition:all var(--wiz-transition)}.wizard-card:hover{background:var(--wiz-surface-hover);border-color:var(--wiz-border-active);transform:translateY(-2px)}.wizard-card.selected{background:var(--wiz-surface-active);border-color:var(--wiz-accent)}.wizard-card-title{font-size:.95rem;font-weight:600;color:var(--wiz-text-heading);margin-bottom:.3rem}.wizard-card-desc{font-size:.8rem;color:var(--wiz-text-muted);line-height:1.4}.wizard-chat-area{display:flex;flex-direction:column;gap:.75rem;max-height:50vh;overflow-y:auto;padding:.5rem 0}.wizard-chat-bubble{padding:.75rem 1rem;border-radius:var(--wiz-radius);font-size:.9rem;line-height:1.6;max-width:85%;animation:wizBubbleIn .25s ease-out}@keyframes wizBubbleIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.wizard-chat-ai{background:var(--wiz-surface);border:1px solid var(--wiz-border);color:var(--wiz-text);align-self:flex-start}.wizard-chat-user{background:rgba(0,198,255,.12);border:1px solid rgba(0,198,255,.2);color:var(--wiz-text-heading);align-self:flex-end}.wizard-chat-input-row{display:flex;gap:.5rem;padding-top:.75rem;border-top:1px solid var(--wiz-border)}.wizard-chat-input{flex:1;padding:.6rem 1rem;background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius-sm);color:var(--wiz-text-heading);font-size:.9rem;outline:none;transition:border-color var(--wiz-transition)}.wizard-chat-input:focus{border-color:var(--wiz-accent)}.wizard-chat-input::placeholder{color:var(--wiz-text-muted)}.wizard-input,.wizard-select{width:100%;padding:.6rem 1rem;background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius-sm);color:var(--wiz-text-heading);font-size:.85rem;outline:none;transition:border-color var(--wiz-transition)}.wizard-input:focus,.wizard-select:focus{border-color:var(--wiz-accent)}.wizard-select option{background:#1a1f2e;color:var(--wiz-text)}.wizard-textarea{width:100%;padding:.75rem 1rem;background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius-sm);color:var(--wiz-text-heading);font-size:.85rem;resize:vertical;min-height:80px;outline:none;transition:border-color var(--wiz-transition);font-family:inherit}.wizard-textarea:focus{border-color:var(--wiz-accent)}.wizard-form-group{margin-bottom:1rem}.wizard-label{display:block;font-size:.8rem;font-weight:600;color:var(--wiz-text-muted);margin-bottom:.4rem;text-transform:uppercase;letter-spacing:.03em}.wizard-preview{padding:1.5rem;background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius);color:var(--wiz-text);line-height:1.7;white-space:pre-wrap;font-size:.9rem;max-height:40vh;overflow-y:auto}.wizard-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem;gap:1rem;color:var(--wiz-text-muted)}.wizard-spinner{width:32px;height:32px;border:3px solid var(--wiz-border);border-top-color:var(--wiz-accent);border-radius:50%;animation:wizSpin .8s linear infinite}@keyframes wizSpin{to{transform:rotate(1turn)}}.wizard-error{background:rgba(248,113,113,.1);border:1px solid rgba(248,113,113,.25);border-radius:var(--wiz-radius-sm);color:var(--wiz-error)}.wizard-error,.wizard-success{padding:.75rem 1rem;font-size:.85rem}.wizard-success{background:rgba(52,211,153,.1);border:1px solid rgba(52,211,153,.25);border-radius:var(--wiz-radius-sm);color:var(--wiz-success)}.wizard-kanban{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;min-height:300px}.wizard-kanban-column{background:var(--wiz-surface);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius);padding:.75rem;display:flex;flex-direction:column;gap:.5rem;min-height:200px}.wizard-kanban-column-header{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--wiz-text-muted);padding-bottom:.5rem;border-bottom:1px solid var(--wiz-border);display:flex;align-items:center;justify-content:space-between}.wizard-kanban-count{background:var(--wiz-surface-hover);padding:.1rem .4rem;border-radius:999px;font-size:.7rem}.wizard-kanban-card{padding:.6rem .75rem;background:rgba(255,255,255,.03);border:1px solid var(--wiz-border);border-radius:var(--wiz-radius-sm);cursor:grab;transition:all var(--wiz-transition);font-size:.8rem;color:var(--wiz-text)}.wizard-kanban-card:hover{border-color:var(--wiz-border-active);background:var(--wiz-surface-hover)}.wizard-kanban-card.dragging{opacity:.5;transform:rotate(2deg)}.wizard-kanban-card-title{font-weight:600;font-size:.82rem;color:var(--wiz-text-heading);margin-bottom:.2rem}.wizard-kanban-card-meta{font-size:.7rem;color:var(--wiz-text-muted)}.wizard-badge{display:inline-flex;align-items:center;padding:.15rem .5rem;border-radius:999px;font-size:.7rem;font-weight:600}.wizard-badge-draft{background:rgba(255,255,255,.1);color:var(--wiz-text-muted)}.wizard-badge-reviewing{background:rgba(251,191,36,.15);color:var(--wiz-warning)}.wizard-badge-approved{background:rgba(52,211,153,.15);color:var(--wiz-success)}.wizard-badge-exported{background:rgba(0,198,255,.15);color:var(--wiz-accent)}.wizard-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;color:var(--wiz-text-muted);font-size:.85rem;text-align:center;gap:.5rem}.wizard-empty-icon{font-size:2rem;opacity:.5}@media (max-width:768px){.wizard-modal{width:95vw;max-height:92vh}.wizard-kanban{grid-template-columns:1fr}.wizard-stepper{overflow-x:auto;padding:.75rem 1rem .5rem}}