.chat-wrapper{flex:1;display:flex;flex-direction:column;max-width:var(--max-width);margin:0 auto;width:100%;min-height:0;overflow:hidden}.messages{flex:1;min-height:0;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:1.5rem 1rem;display:flex;flex-direction:column;gap:.75rem;scroll-behavior:smooth}.messages::-webkit-scrollbar{width:5px}.messages::-webkit-scrollbar-track{background:transparent}.messages::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}.msg{display:flex;gap:.6rem;align-items:flex-start;max-width:85%;opacity:0;transform:translateY(10px);transition:opacity .3s ease,transform .3s ease}.msg-visible{opacity:1;transform:translateY(0)}.msg-user{align-self:flex-end;flex-direction:row-reverse}.msg-avatar{width:32px;height:32px;border-radius:50%;overflow:hidden;flex-shrink:0}.msg-avatar img{width:100%;height:100%;object-fit:cover}.msg-body{padding:.7rem 1rem;border-radius:16px;font-size:.9rem;line-height:1.55;word-break:break-word}.msg-assistant .msg-body{background:var(--bg-surface);border:1px solid var(--border);border-top-left-radius:4px;color:var(--text-secondary)}.msg-user .msg-body{background:var(--bg-user-bubble);border-top-right-radius:4px;color:var(--text)}.msg-body p{margin:0}.msg-body p+p{margin-top:.4rem}.msg-body strong{color:var(--text);font-weight:600}.msg-body em{font-style:italic;color:var(--text-muted)}.msg-body code{font-family:var(--font-mono);font-size:.82em;background:var(--bg-surface-hover);border:1px solid var(--border);padding:.1em .35em;border-radius:4px;color:var(--accent)}.msg-body pre{background:var(--bg-secondary, var(--bg-surface));border:1px solid var(--border);border-radius:8px;padding:.7rem .85rem;margin:.5rem 0;overflow-x:auto}.msg-body pre code{background:none;border:none;padding:0;color:var(--text-secondary);font-size:.8rem}.msg-body a{color:var(--accent);text-decoration:underline;text-decoration-color:var(--accent-light);text-underline-offset:2px}.msg-body a:hover{text-decoration-color:var(--accent)}.msg-original{font-style:italic;color:var(--text-dim);font-size:.8rem;margin-bottom:.25rem}.stream-cursor{display:inline;animation:cursor-blink .6s step-end infinite;color:var(--accent);font-weight:400}@keyframes cursor-blink{0%,to{opacity:1}50%{opacity:0}}.typing-dots{display:flex;gap:4px;padding:4px 0}.typing-dots span{width:7px;height:7px;border-radius:50%;background:var(--text-dim);animation:dot-bounce 1.4s ease-in-out infinite}.typing-dots span:nth-child(2){animation-delay:.16s}.typing-dots span:nth-child(3){animation-delay:.32s}@keyframes dot-bounce{0%,80%,to{transform:scale(.5);opacity:.3}40%{transform:scale(1);opacity:1}}.input-area{flex-shrink:0;padding:.6rem 1rem 1.1rem;border-top:1px solid var(--border);background:var(--bg);transition:background .3s}.suggestions{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.6rem}.chip{font-family:var(--font-sans);font-size:.8rem;font-weight:500;padding:.4rem .85rem;border-radius:var(--radius-full);border:1px solid var(--border);background:var(--bg-surface);color:var(--text-muted);cursor:pointer;transition:all .2s;white-space:nowrap}.chip:hover{color:var(--accent);border-color:var(--accent);background:var(--accent-light)}.chip-dev{font-family:var(--font-mono);font-size:.75rem;color:var(--text-dim);border-style:dashed}.input-row{display:flex;gap:.5rem;position:relative;border-radius:var(--radius-full);isolation:isolate}.input-row:before{content:"";position:absolute;inset:-3px;border-radius:inherit;background:conic-gradient(from var(--glow-angle, 0deg),#6366f1,#06b6d4,#a855f7,#ec4899,#f59e0b,#10b981,#6366f1);opacity:0;filter:blur(10px);z-index:-1;transition:opacity 1.5s ease}.input-row.glow-idle:before{opacity:.3;animation:glow-rotate 6s linear infinite,glow-pulse 4s ease-in-out infinite}@keyframes glow-rotate{to{--glow-angle: 360deg}}@keyframes glow-pulse{0%,to{opacity:.15}50%{opacity:.3}}@property --glow-angle{syntax: "<angle>"; initial-value: 0deg; inherits: false;}.chat-input{flex:1;font-family:var(--font-sans);font-size:.9rem;padding:.6rem 1rem;border-radius:var(--radius-full);border:1px solid var(--border);background:var(--bg-surface);color:var(--text);outline:none;transition:all .2s}.chat-input::placeholder{color:var(--text-dim)}.chat-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-light)}.send-btn{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius-full);border:none;background:var(--btn-bg);color:var(--btn-fg);cursor:pointer;transition:all .2s;flex-shrink:0}.send-btn:disabled{opacity:.4;cursor:not-allowed;transform:none}.send-btn:hover:not(:disabled){transform:scale(1.05);box-shadow:var(--shadow-md)}.session-ended{text-align:center;padding:1rem 0}.session-ended p{margin:0 0 .8rem;color:var(--text-muted);font-size:.9rem}.ended-links{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;margin-bottom:1rem}.ended-link{font-family:var(--font-sans);font-size:.8rem;font-weight:500;padding:.45rem 1rem;border-radius:var(--radius-full);border:1px solid var(--border);background:var(--bg-surface);color:var(--accent);text-decoration:none;transition:all .2s}.ended-link:hover{border-color:var(--accent);background:var(--accent-light)}.profile-hero{display:flex;flex-direction:column;align-items:center;text-align:center;padding:2rem 1rem 1.5rem;gap:.4rem}.profile-photo{width:200px;height:200px;border-radius:50%;background:var(--gradient-main);color:#fff;font-size:3.5rem;font-weight:700;font-family:var(--font-mono);display:flex;align-items:center;justify-content:center;margin-bottom:.6rem;box-shadow:var(--shadow-md)}.profile-photo img{width:100%;height:100%;border-radius:50%;object-fit:cover}.profile-name{font-size:1.3rem;font-weight:700;color:var(--text);letter-spacing:-.02em;margin:0}.profile-role{font-size:.9rem;color:var(--text-muted);margin:0}.profile-tagline{font-size:.85rem;color:var(--text-dim);max-width:360px;margin:.2rem 0 0;line-height:1.5}@media(max-width:480px){.msg{max-width:92%}.messages{padding:1rem .5rem}.input-area{padding:.5rem .5rem .75rem}}
