.hero-chat{flex-direction:column;width:100%;height:100%;display:flex;overflow:hidden}.hero-chat-titlebar{border-bottom:1px solid var(--color-gray-200);align-items:center;gap:8px;padding:8px 12px;display:flex}.hero-chat-titlebar-label{color:var(--color-gray-900);font-size:13px;font-weight:600}.hero-chat-messages{flex-direction:column;flex:1;gap:8px;min-height:0;padding:12px;display:flex}.hero-chat-msg{opacity:0;align-items:flex-start;gap:6px;animation:.3s ease-out forwards heroChatMsgIn;display:flex;transform:translateY(8px)}.hero-chat-msg-user{justify-content:flex-end}.hero-chat-msg-assistant{justify-content:flex-start}@keyframes heroChatMsgIn{to{opacity:1;transform:translateY(0)}}.hero-chat-msg-fade-out{animation:.3s ease-in forwards heroChatMsgOut}@keyframes heroChatMsgOut{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-8px)}}.hero-chat-avatar{flex-shrink:0;width:24px;height:24px;margin-top:2px}.hero-chat-avatar .lotics-wave-avatar{width:24px;height:24px}.hero-chat-bubble-user{color:var(--color-gray-900);background:#f4f4f5;border-radius:14px;max-width:220px;padding:6px 12px;font-size:13px;line-height:1.4}.hero-chat-assistant-content{flex-direction:column;align-items:flex-start;gap:6px;display:flex}.hero-chat-bubble-assistant{color:var(--color-gray-700);padding-top:4px;font-size:13px;line-height:1.4}.hero-chat-bubble-user-wrap{flex-direction:column;align-items:flex-end;gap:4px;max-width:240px;display:flex}.hero-chat-files{flex-wrap:wrap;gap:4px;display:flex}.hero-chat-bubble-user-wrap .hero-chat-files{justify-content:flex-end}.hero-chat-file-chip{background:var(--color-gray-100);color:var(--color-gray-600);white-space:nowrap;border-radius:8px;align-items:center;gap:4px;padding:3px 8px;font-size:11px;display:flex}.hero-chat-file-overflow{color:var(--color-gray-400)}.hero-chat-file-label{color:#fff;letter-spacing:.3px;border-radius:3px;flex-shrink:0;padding:1px 4px;font-size:8px;font-weight:700;line-height:1.2}.hero-chat-file-name{text-overflow:ellipsis;max-width:100px;overflow:hidden}.hero-chat-steps{flex-direction:column;gap:4px;display:flex}.hero-chat-step{flex-direction:column;gap:3px;display:flex}.hero-chat-step-header{align-items:center;gap:5px;display:flex}.hero-chat-step-files{margin-left:19px}.hero-chat-step-logo{object-fit:contain;flex-shrink:0;width:14px;height:14px}.hero-chat-step-label{color:var(--color-gray-600);white-space:nowrap;font-size:12px;font-weight:500}.hero-chat-shimmer{background:linear-gradient(90deg, var(--color-gray-500) 0%, var(--color-gray-500) 35%, var(--color-gray-300) 50%, var(--color-gray-500) 65%, var(--color-gray-500) 100%);-webkit-text-fill-color:transparent;background-size:200% 100%;-webkit-background-clip:text;background-clip:text;animation:1.5s linear infinite heroChatShimmer}@keyframes heroChatShimmer{0%{background-position:100% 0}to{background-position:-100% 0}}.hero-chat-cursor{background:var(--color-gray-500);vertical-align:text-bottom;width:1px;height:14px;margin-left:1px;animation:.6s step-end infinite heroChatBlink;display:inline-block}@keyframes heroChatBlink{50%{opacity:0}}.hero-chat-composer{background:var(--color-white);border:2px solid #e4e4e7;border-radius:14px;align-items:center;gap:8px;margin:0 8px 8px;padding:4px 8px;display:flex}.hero-chat-composer-input{color:var(--color-gray-400);white-space:nowrap;text-overflow:ellipsis;flex:1;padding-left:4px;font-size:13px;overflow:hidden}.hero-chat-composer-send{background:var(--color-gray-900);color:#fff;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:30px;height:30px;display:flex}@media (width<=768px){.hero-chat-bubble-user{max-width:180px;font-size:12px}.hero-chat-bubble-assistant{font-size:12px}}