.wizard-page{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:5rem 1rem 2rem}.wizard{width:100%;max-width:960px;display:grid;grid-template-columns:1.2fr .8fr;gap:1.5rem;height:calc(100vh - 7rem);max-height:720px}.wizard__chat{display:flex;flex-direction:column}.wizard__chat-header{padding:1.25rem 1.5rem;border-bottom:1px solid var(--border-card);background:var(--bg-darker)}.wizard__status{display:flex;align-items:center;gap:.5rem;font-family:var(--font-display);font-size:1rem;font-weight:600;color:var(--cream)}.wizard__dot{width:8px;height:8px;border-radius:50%;background:#4ade80;box-shadow:0 0 8px #4ade8080;animation:wizardDotPulse 2s ease-in-out infinite}@keyframes wizardDotPulse{0%,to{opacity:1}50%{opacity:.5}}.wizard__subtitle{font-size:.8rem;color:var(--cream-faint);margin-top:.25rem}.wizard__messages{flex:1;overflow-y:auto;padding:1.25rem;display:flex;flex-direction:column;gap:.75rem;scrollbar-width:thin;scrollbar-color:var(--accent-dim) transparent}.wizard__messages::-webkit-scrollbar{width:4px}.wizard__messages::-webkit-scrollbar-track{background:transparent}.wizard__messages::-webkit-scrollbar-thumb{background:var(--accent-dim);border-radius:2px}.wiz-msg{max-width:85%;animation:wizMsgIn .3s ease-out}.wiz-msg--user{align-self:flex-end}.wiz-msg--ai{align-self:flex-start}.wiz-msg__text{padding:.75rem 1rem;border-radius:12px;font-size:.88rem;line-height:1.6;word-wrap:break-word}.wiz-msg--user .wiz-msg__text{background:#c8952a26;color:var(--cream);border-bottom-right-radius:4px}.wiz-msg--ai .wiz-msg__text{background:#ffffff0a;border:1px solid rgba(200,149,42,.12);color:var(--text-body);border-bottom-left-radius:4px}@keyframes wizMsgIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.wiz-typing{display:flex;gap:4px;padding:.625rem 1rem;align-self:flex-start}.wiz-typing__dot{width:6px;height:6px;border-radius:50%;background:var(--accent);opacity:.4;animation:wizTypingBounce 1.4s ease-in-out infinite}.wiz-typing__dot:nth-child(2){animation-delay:.2s}.wiz-typing__dot:nth-child(3){animation-delay:.4s}@keyframes wizTypingBounce{0%,60%,to{transform:translateY(0);opacity:.4}30%{transform:translateY(-6px);opacity:1}}.wizard__input-area{padding:.875rem 1.25rem;border-top:1px solid var(--border-card);background:var(--bg-darker);min-height:64px}.wizard__options{display:flex;flex-wrap:wrap;gap:.5rem}.wizard__opt{background:#c8952a14;border:1px solid rgba(200,149,42,.2);border-radius:20px;padding:.5rem 1rem;color:var(--cream);font-family:var(--font-body);font-size:.82rem;cursor:pointer;transition:all .25s ease}.wizard__opt:hover{background:#c8952a2e;border-color:var(--accent);transform:translateY(-1px)}.wizard__text-input{display:flex;align-items:center;gap:.5rem}.wizard__input{flex:1;background:#f4eddd0a;border:1px solid var(--border-card);border-radius:8px;padding:.7rem 1rem;color:var(--cream);font-family:var(--font-body);font-size:.88rem;outline:none;transition:border-color .2s ease}.wizard__input::placeholder{color:var(--cream-faint)}.wizard__input:focus{border-color:var(--accent)}.wizard__send{background:var(--accent);color:var(--bg-dark);border:none;border-radius:8px;width:40px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;transition:background .2s ease,transform .15s ease}.wizard__send:hover{background:var(--accent-bright);transform:scale(1.05)}.wizard__brief{display:flex;flex-direction:column}.wizard__brief-header{padding:1.25rem 1.5rem;border-bottom:1px solid var(--border-card);background:var(--bg-darker)}.wizard__brief-title{font-family:var(--font-display);font-size:.95rem;font-weight:600;color:var(--cream);letter-spacing:.05em;text-transform:uppercase;margin:0}.wizard__brief-progress{height:3px;background:#f4eddd14;border-radius:2px;margin-top:.75rem;overflow:hidden}.wizard__brief-bar{height:100%;width:0%;background:linear-gradient(90deg,var(--accent),var(--accent-bright));border-radius:2px;transition:width .6s var(--ease-out-expo)}.wizard__brief-step{font-size:.72rem;color:var(--cream-faint);margin-top:.4rem;display:block}.wizard__brief-body{flex:1;padding:1.25rem 1.5rem;display:flex;flex-direction:column;gap:1rem;overflow-y:auto}.brief-field{display:flex;flex-direction:column;gap:.25rem}.brief-field__label{font-size:.7rem;text-transform:uppercase;letter-spacing:.08em;color:var(--accent);font-weight:600}.brief-field__value{font-size:.85rem;color:var(--cream);line-height:1.5}.brief-field__value--empty{color:var(--cream-faint);font-style:italic;opacity:.5}.brief-field__value--filled{animation:briefFillIn .4s ease-out}@keyframes briefFillIn{0%{opacity:0;transform:translate(-8px)}to{opacity:1;transform:translate(0)}}.wizard__brief-footer{padding:1.25rem 1.5rem;border-top:1px solid var(--border-card);background:var(--bg-darker);text-align:center}.wizard__submit-btn{width:100%;text-align:center;font-size:.9rem;padding:.8rem 2rem}.wizard__brief-note{font-size:.72rem;color:var(--cream-faint);margin-top:.5rem}.wizard__success{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:2rem;gap:1rem;animation:wizMsgIn .5s ease-out}.wizard__success-icon{width:64px;height:64px;border-radius:50%;background:#4ade801a;border:2px solid rgba(74,222,128,.3);display:flex;align-items:center;justify-content:center;font-size:1.8rem}.wizard__success h3{font-family:var(--font-display);color:var(--cream);margin:0}.wizard__success p{color:var(--cream-faint);font-size:.88rem}@media(max-width:768px){.wizard-page{padding:4rem .5rem 1rem}.wizard{grid-template-columns:1fr;max-height:none;height:auto;gap:1rem}.wizard__chat{height:60vh;min-height:400px}.wizard__brief{max-height:50vh}}@media(max-width:480px){.wizard-page{padding:4rem .25rem .5rem}.wizard__chat-header{padding:1rem 1.25rem}.wizard__messages{padding:1rem}.wizard__input-area{padding:.75rem 1rem}.wizard__opt{font-size:.78rem;padding:.4rem .85rem}}
