@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");*{margin:0;padding:0;box-sizing:border-box}body,html{height:100%;overflow:hidden;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.saathi-container{height:100vh;width:100%;background:#f8f9fa;display:flex;flex-direction:column;padding-top:70px}.saathi-content{flex:1 1;display:flex;flex-direction:column;max-width:900px;width:100%;margin:0 auto;height:calc(100vh - 70px)}.saathi-chat{flex:1 1;overflow-y:auto;padding:40px 24px 24px;scroll-behavior:smooth}.saathi-chat::-webkit-scrollbar{width:8px}.saathi-chat::-webkit-scrollbar-track{background:transparent}.saathi-chat::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:10px}.saathi-chat::-webkit-scrollbar-thumb:hover{background:#9ca3af}.saathi-welcome{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:60vh;text-align:center;animation:fadeIn .5s ease}.saathi-brand{margin-bottom:48px}.saathi-avatar-large{width:80px;height:auto}.saathi-welcome h1{font-size:42px;font-weight:600;color:#1f2937;margin-bottom:8px}.saathi-tagline{font-size:18px;color:#6b7280;font-weight:400}.saathi-prompts{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:12px;gap:12px;max-width:700px;width:100%}.saathi-prompt-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:20px;text-align:left;cursor:pointer;transition:all .2s ease;display:flex;align-items:flex-start;gap:12px}.saathi-prompt-card:hover{background:#f9fafb;border-color:#6366f1;box-shadow:0 4px 12px rgba(99,102,241,.1);transform:translateY(-2px)}.prompt-icon{font-size:24px;flex-shrink:0}.prompt-text{display:flex;flex-direction:column;gap:4px}.prompt-text strong{font-size:15px;font-weight:500;color:#1f2937;display:block}.prompt-text small{font-size:13px;color:#6b7280;font-weight:400}.saathi-message{display:flex;gap:16px;margin-bottom:32px;animation:slideUp .3s ease}.user-message{flex-direction:row-reverse}.message-avatar{width:36px;height:36px;flex-shrink:0;border-radius:50%;overflow:hidden;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;align-items:center;justify-content:center}.message-avatar img{width:100%;height:100%;object-fit:cover}.message-content{flex:1 1;max-width:100%}.user-message .message-content{background:#6366f1;color:#fff;padding:14px 20px;border-radius:20px 20px 4px 20px;max-width:-moz-fit-content;max-width:fit-content;margin-left:auto}.user-message .message-content p{margin:0;font-size:15px;line-height:1.6;word-wrap:break-word}.ai-message .message-content{color:#1f2937;font-size:16px;line-height:1.7}.ai-message .message-content p{margin:0 0 16px}.ai-message .message-content p:last-child{margin-bottom:0}.ai-message .message-content h1,.ai-message .message-content h2,.ai-message .message-content h3{font-weight:600;color:#111827;margin:24px 0 12px}.ai-message .message-content h1{font-size:24px}.ai-message .message-content h2{font-size:20px}.ai-message .message-content h3{font-size:18px}.ai-message .message-content ol,.ai-message .message-content ul{margin:12px 0;padding-left:24px}.ai-message .message-content li{margin-bottom:8px;line-height:1.7}.ai-message .message-content code{background:#f3f4f6;padding:2px 6px;border-radius:4px;font-size:14px;font-family:Courier New,monospace;color:#dc2626}.ai-message .message-content pre{background:#1f2937;color:#f9fafb;padding:16px;border-radius:8px;overflow-x:auto;margin:16px 0}.ai-message .message-content pre code{background:transparent;color:inherit;padding:0}.ai-message .message-content strong{font-weight:600;color:#111827}.typing-indicator{display:flex;gap:6px;padding:12px 0}.typing-indicator span{width:8px;height:8px;background:#9ca3af;border-radius:50%;animation:bounce 1.4s ease-in-out infinite both}.typing-indicator span:first-child{animation-delay:-.32s}.typing-indicator span:nth-child(2){animation-delay:-.16s}@keyframes bounce{0%,80%,to{transform:scale(0);opacity:.5}40%{transform:scale(1);opacity:1}}.saathi-input-wrapper{background:#f8f9fa;border-top:1px solid #e5e7eb;padding:16px 24px 24px;flex-shrink:0}.saathi-input-container{max-width:900px;margin:0 auto;background:#fff;border:1px solid #d1d5db;border-radius:24px;padding:12px 16px;display:flex;align-items:flex-end;gap:12px;box-shadow:0 2px 8px rgba(0,0,0,.04);transition:all .2s ease}.saathi-input-container:focus-within{border-color:#6366f1;box-shadow:0 4px 16px rgba(99,102,241,.1)}.saathi-textarea{flex:1 1;border:none;outline:none;resize:none;font-size:16px;line-height:1.5;color:#1f2937;font-family:inherit;max-height:200px;min-height:24px;overflow-y:hidden;margin:auto}.saathi-textarea::placeholder{color:#9ca3af}.saathi-send-button{width:36px;height:36px;border-radius:50%;border:none;background:#6366f1;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease;flex-shrink:0}.saathi-send-button:hover:not(:disabled){background:#4f46e5;transform:scale(1.05)}.saathi-send-button:disabled{background:#e5e7eb;cursor:not-allowed}.saathi-disclaimer{text-align:center;font-size:12px;color:#9ca3af;margin-top:12px}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@media screen and (max-width:768px){.saathi-container{padding-top:60px}.saathi-content{height:calc(100vh - 60px)}.saathi-chat{padding:24px 16px 16px}.saathi-welcome h1{font-size:32px}.saathi-tagline{font-size:16px}.saathi-prompts{grid-template-columns:1fr;gap:10px}.saathi-prompt-card{padding:16px}.prompt-text strong{font-size:14px}.prompt-text small{font-size:12px}.saathi-message{gap:12px;margin-bottom:24px}.message-avatar{width:32px;height:32px}.ai-message .message-content{font-size:16px}.ai-message .message-content h1{font-size:20px}.ai-message .message-content h2{font-size:18px}.ai-message .message-content h3{font-size:16px}.user-message .message-content{padding:12px 16px;font-size:15px}.saathi-input-wrapper{padding:12px 16px 16px}.saathi-input-container{border-radius:20px;padding:10px 12px}.saathi-textarea{font-size:15px}.saathi-send-button{width:32px;height:32px}.saathi-disclaimer{font-size:11px}}@media screen and (max-height:600px){.saathi-welcome{min-height:auto;padding:20px 0}.saathi-brand{margin-bottom:24px}.saathi-avatar-large{width:60px}.saathi-welcome h1{font-size:28px}}