:root{--color-bg:#f5f5f7;--color-surface:#fff;--color-text:#1a1a2e;--color-muted:#6b7280;--color-accent:#c08497;--color-accent-soft:#f3d6dd;--color-user-bubble:#c08497;--color-user-text:#fff;--color-assistant-bubble:#f1f1f4;--color-assistant-text:#1a1a2e;--color-handoff-bg:#fff7ed;--color-handoff-border:#f59e0b;--color-handoff-action:#d97706;--color-error:#dc2626;--color-focus:#2563eb;--radius-sm:6px;--radius-md:12px;--radius-lg:18px;--shadow-sm:0 1px 2px #0000000d;--shadow-md:0 4px 12px #00000014;--max-content-width:480px;--font-stack:-apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif}*{box-sizing:border-box}html,body{background:var(--color-bg);color:var(--color-text);font-family:var(--font-stack);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;padding:0;font-size:16px;line-height:1.5}body{min-height:100vh}button{cursor:pointer;font-family:inherit}a{color:var(--color-handoff-action);text-decoration:none}a:hover{text-decoration:underline}:focus-visible{outline:2px solid var(--color-focus);outline-offset:2px;border-radius:var(--radius-sm)}.page{justify-content:center;min-height:100vh;padding:0;display:flex}.chat-shell{width:100%;max-width:var(--max-content-width);background:var(--color-surface);min-height:100vh;box-shadow:var(--shadow-sm);flex-direction:column;display:flex}.chat-shell__header{z-index:10;background:var(--color-surface);border-bottom:1px solid #eee;justify-content:space-between;align-items:center;padding:14px 16px;display:flex;position:sticky;top:0}.chat-shell__title{color:var(--color-text);margin:0;font-size:18px;font-weight:600}.chat-shell__reset{border:1px solid var(--color-muted);color:var(--color-muted);border-radius:var(--radius-sm);background:0 0;padding:6px 12px;font-size:13px;transition:all .15s}.chat-shell__reset:hover{border-color:var(--color-text);color:var(--color-text)}.chat-shell__messages{scroll-behavior:smooth;flex-direction:column;flex:1;gap:12px;padding:16px;display:flex;overflow-y:auto}.chat-shell__welcome{text-align:center;background:var(--color-accent-soft);border-radius:var(--radius-md);padding:24px 16px}.chat-shell__welcome-copy{color:var(--color-text);margin:0 0 16px;font-size:15px;line-height:1.6}.chat-shell__quick-list{flex-direction:column;gap:8px;margin:0;padding:0;list-style:none;display:flex}.chat-shell__quick-button{background:var(--color-surface);width:100%;color:var(--color-text);border:1px solid var(--color-accent);border-radius:var(--radius-md);text-align:left;padding:12px 16px;font-size:14px;transition:all .15s}.chat-shell__quick-button:hover{background:var(--color-accent-soft)}.chat-shell__error{color:var(--color-error);border-radius:var(--radius-sm);background:#fef2f2;margin:0 16px 8px;padding:8px 12px;font-size:13px}.chat-shell__feedback{border-top:1px solid #eee;flex-wrap:wrap;align-items:center;gap:8px;padding:12px 16px;display:flex}.chat-shell__feedback-label{color:var(--color-muted);margin-right:auto;font-size:13px}.chat-shell__feedback-button{border:1px solid var(--color-muted);background:var(--color-surface);color:var(--color-text);border-radius:var(--radius-sm);padding:6px 12px;font-size:13px;transition:all .15s}.chat-shell__feedback-button--active{background:var(--color-accent-soft);border-color:var(--color-accent)}.chat-shell__sources{color:var(--color-muted);border-top:1px solid #eee;flex-wrap:wrap;align-items:flex-start;gap:8px;padding:8px 16px;font-size:12px;display:flex}.chat-shell__sources-label{flex-shrink:0}.chat-shell__sources-list{flex-wrap:wrap;gap:4px;margin:0;padding:0;list-style:none;display:flex}.chat-shell__sources-item{background:var(--color-assistant-bubble);border-radius:var(--radius-sm);padding:2px 8px;font-size:11px}.chat-shell__input-row{background:var(--color-surface);border-top:1px solid #eee;align-items:flex-end;gap:8px;padding:12px 16px;display:flex;position:sticky;bottom:0}.chat-shell__input-label{clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.chat-shell__input{resize:none;border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);border:1px solid #d1d5db;flex:1;max-height:120px;padding:10px 12px;font-family:inherit;font-size:15px;line-height:1.5}.chat-shell__input:focus{outline:2px solid var(--color-focus);outline-offset:0;border-color:var(--color-focus)}.chat-shell__input:disabled{color:var(--color-muted);cursor:not-allowed;background:#f9fafb}.chat-shell__submit{background:var(--color-accent);color:var(--color-user-text);border-radius:var(--radius-md);border:none;flex-shrink:0;padding:10px 20px;font-size:15px;font-weight:500;transition:background .15s}.chat-shell__submit:hover:not(:disabled){background:#a86b7a}.chat-shell__submit:disabled{cursor:not-allowed;background:#d1d5db}.chat-message{width:100%;animation:.2s ease-out chat-message-enter;display:flex}.chat-message--user{justify-content:flex-end}.chat-message--assistant{justify-content:flex-start}.chat-message__bubble{border-radius:var(--radius-lg);word-break:break-word;overflow-wrap:anywhere;max-width:85%;padding:10px 14px;font-size:15px;line-height:1.5}.chat-message--user .chat-message__bubble{background:var(--color-user-bubble);color:var(--color-user-text);border-bottom-right-radius:4px}.chat-message--assistant .chat-message__bubble{background:var(--color-assistant-bubble);color:var(--color-assistant-text);border-bottom-left-radius:4px}.chat-message__text{white-space:pre-wrap;margin:0}.chat-message--typing .chat-message__bubble{align-items:center;gap:4px;padding:12px 16px;display:inline-flex}.chat-message__dot{background:var(--color-muted);border-radius:50%;width:8px;height:8px;animation:1.4s ease-in-out infinite both typing-bounce}.chat-message__dot:first-child{animation-delay:-.32s}.chat-message__dot:nth-child(2){animation-delay:-.16s}.handoff-card{background:var(--color-handoff-bg);border:1px solid var(--color-handoff-border);border-radius:var(--radius-md);flex-direction:column;align-items:flex-start;gap:10px;padding:14px 16px;display:flex}.handoff-card__copy{color:var(--color-text);margin:0;font-size:14px;line-height:1.6}.chat-shell__status{border-bottom:1px solid var(--color-border);margin:0;padding:10px 16px;font-size:13px;line-height:1.55}.chat-shell__status--controlled{color:#9a3412;background:#fff7ed}.chat-shell__status--live{color:#166534;background:#ecfdf5}.handoff-card__actions{flex-wrap:wrap;gap:8px;display:flex}.handoff-card__action{background:var(--color-handoff-action);color:#fff;border-radius:var(--radius-sm);padding:8px 16px;font-size:14px;font-weight:500;text-decoration:none;transition:background .15s;display:inline-block}.handoff-card__action:hover{background:#b45309;text-decoration:none}.handoff-card__retry{border:1px solid var(--color-handoff-action);color:var(--color-handoff-action);border-radius:var(--radius-sm);font:inherit;cursor:pointer;background:0 0;padding:8px 16px;font-size:14px;font-weight:500}.handoff-card__retry:hover{background:#b4530914}@keyframes chat-message-enter{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes typing-bounce{0%,80%,to{opacity:.5;transform:scale(0)}40%{opacity:1;transform:scale(1)}}@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}@media (max-width:360px){.chat-shell__header,.chat-shell__messages{padding:12px}.chat-shell__input-row{padding:10px 12px}.chat-message__bubble{max-width:92%;font-size:14px}}
