@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap";*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}html{background:#0a0a0a;overscroll-behavior:none;height:100%}body{background:#0a0a0a;overscroll-behavior:none;min-height:100%;overflow-x:hidden}#root{background:#0a0a0a;min-height:100vh}:root{--color-text-primary: #FFFFFF;--color-text-secondary: #E5E5E5;--color-text-placeholder: #9CA3AF;--color-bg-primary: #0A0A0A;--color-bg-secondary: #1A1A1A;--color-bg-sidebar: #151515;--color-border-hr: #2A2A2A;--color-hover-secondary: #252525;--color-hover-secondary-alt: #2F2F2F;--gradient-blue-purple: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);--sidebar-open-width: 260px;--sidebar-closed-width: 80px}.app-container.light-theme{--color-text-primary: #2A2A2A;--color-text-secondary: #4A5565;--color-text-placeholder: #7F93B7;--color-bg-primary: #F3F7FF;--color-bg-secondary: #E3EBF6;--color-bg-sidebar: #E6EDF8;--color-border-hr: #D9DBDD;--color-hover-secondary: #D4DCED;--color-hover-secondary-alt: #C9D4EA}.app-container{display:flex;height:100vh;width:100vw;color:var(--color-text-primary);background:var(--color-bg-primary)}.sidebar{position:sticky;top:0;z-index:20;flex-shrink:0;display:flex;white-space:nowrap;flex-direction:column;width:var(--sidebar-open-width);background:var(--color-bg-sidebar);overflow:hidden;transition:width .3s ease}.sidebar.closed{width:var(--sidebar-closed-width)}.sidebar .sidebar-header{padding:16px 16px 23px;display:flex;gap:30px;align-items:center;flex-direction:column;border-bottom:1px solid var(--color-border-hr)}.sidebar-header .sidebar-toggle{border:none;cursor:pointer;width:45px;height:45px;border-radius:50%;display:flex;align-self:start;align-items:center;justify-content:center;color:var(--color-text-primary);background:var(--color-hover-secondary);transition:.3s ease}.sidebar-header .sidebar-toggle:hover{background:var(--color-hover-secondary-alt)}.sidebar-header .new-chat-btn{gap:8px;font-weight:500;color:#fff;background:var(--gradient-blue-purple);transition:all .3s ease}.sidebar-header .new-chat-btn,.sidebar-footer .theme-toggle{overflow:hidden;display:flex;cursor:pointer;border:none;font-size:1rem;min-height:48px;padding:0 15px;border-radius:100px;align-items:center;justify-content:center;width:calc(var(--sidebar-open-width) - 32px);transition:all .3s ease}.sidebar.closed .sidebar-header .new-chat-btn,.sidebar.closed .sidebar-footer .theme-toggle{gap:0;width:48px;min-height:48px}.sidebar-header .new-chat-btn svg,.sidebar-footer .theme-toggle svg{flex-shrink:0}.sidebar-header .new-chat-btn span,.sidebar-footer .theme-toggle span{overflow:hidden;transition:opacity .2s ease}.sidebar.closed .sidebar-header .new-chat-btn span,.sidebar.closed .sidebar-footer .theme-toggle span{width:0;opacity:0}.sidebar .sidebar-content{flex:1;padding:8px;overflow:hidden auto;scrollbar-color:var(--color-text-placeholder) transparent;transition:opacity .3s ease}.sidebar.closed .sidebar-content{opacity:0;pointer-events:none}.sidebar-content .sidebar-title{padding:12px;font-size:.95rem;font-weight:500;color:var(--color-text-secondary)}.sidebar-content .conversation-list{list-style:none}.conversation-list .conversation-item{display:flex;align-items:center;justify-content:space-between;width:100%;padding:9px 12px;border-radius:100px;font-size:1rem;margin-top:1px;cursor:pointer;transition:.3s ease}.conversation-list .conversation-item:is(:hover,.active){background-color:var(--color-hover-secondary)}.conversation-item .conversation-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.conversation-item .conversation-icon-title{display:flex;gap:12px;align-items:center;overflow:hidden}.conversation-item .conversation-icon{width:28px;height:28px;color:#fff;flex-shrink:0;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--gradient-blue-purple)}.conversation-item .delete-btn{opacity:0;background:none;border:none;height:30px;width:30px;cursor:pointer;padding:4px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--color-text-primary);transition:.3s ease}.conversation-item:hover .delete-btn:not(.hide){opacity:1}.conversation-item .delete-btn:hover{color:#ef4444;background-color:#ef44441a}.sidebar .sidebar-footer{padding:16px;border-top:1px solid var(--color-border-hr)}.sidebar-footer .theme-toggle{gap:12px;font-size:1rem;color:var(--color-text-primary);background:var(--color-hover-secondary)}.sidebar-footer .theme-toggle:hover{background:var(--color-hover-secondary-alt)}.main-container{display:flex;width:100%;padding-top:30px;flex-direction:column;justify-content:space-between}.main-container :where(.message,.prompt-wrapper,.disclaimer-text){position:relative;margin:0 auto;width:100%;padding:0 20px;max-width:1000px}.messages-container{display:flex;gap:20px;padding:0 0 100px;overflow-y:auto;flex-direction:column;scrollbar-color:var(--color-text-placeholder) transparent}.messages-container .message{display:flex;gap:11px;align-items:center}.messages-container .bot-message .avatar{width:80px;height:80px;flex-shrink:0;align-self:flex-start;border-radius:50%;padding:0;margin-right:8px;background:transparent;border:none;object-fit:cover}.messages-container .bot-message.loading .avatar{animation:rotate 3s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.messages-container .message .text{padding:3px 16px;word-wrap:break-word;white-space:pre-line}.messages-container .bot-message{margin:9px auto}.messages-container .bot-message .text{padding:12px 16px;max-width:75%;background:var(--color-bg-secondary);border:1px solid var(--color-border-hr);border-radius:13px 13px 13px 3px;color:var(--color-text-primary)}.messages-container .user-message{flex-direction:column;align-items:flex-end}.messages-container .user-message .text{padding:12px 16px;max-width:75%;background:var(--color-bg-secondary);border-radius:13px 13px 3px}.messages-container .message.error{color:#d62939}.main-container .prompt-container{padding:16px 0;width:100%;background:var(--color-bg-primary)}.prompt-container .prompt-form{height:54px;width:100%;position:relative;border-radius:130px;background:var(--color-bg-secondary);border:1px solid var(--color-border-hr)}.prompt-form .prompt-input{width:100%;height:100%;background:none;outline:none;border:none;font-size:1rem;padding-left:24px;color:var(--color-text-primary)}.prompt-form .prompt-input::placeholder{color:var(--color-text-placeholder)}.prompt-wrapper .send-prompt-btn{width:43px;height:43px;position:absolute;top:50%;right:6px;transform:translateY(-50%);flex-shrink:0;cursor:pointer;display:none;align-items:center;justify-content:center;border-radius:50%;font-size:1.4rem;border:none;color:#fff;background:#2a2a2a;transition:.3s ease}.prompt-wrapper .prompt-form .prompt-input:valid~.send-prompt-btn{display:flex}.prompt-form .send-prompt-btn:hover{background:#3a3a3a}.prompt-container .disclaimer-text{font-size:.9rem;text-align:center;padding:16px 20px 0;color:var(--color-text-placeholder)}.welcome-container{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:60vh;width:100%;max-width:600px;margin:0 auto;padding:20px}.welcome-logo{width:140px;height:140px;margin-bottom:24px;padding:0;border-radius:50%;background:transparent;border:none;object-fit:cover}.welcome-heading{font-size:2.2rem;font-weight:600;margin-bottom:16px;background:var(--gradient-blue-purple);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.welcome-text{font-size:1.1rem;max-width:400px;line-height:1.6;color:var(--color-text-secondary)}.floating-user-button{position:fixed;top:20px;right:20px;z-index:100;display:flex;align-items:center;justify-content:center}.floating-user-button [data-clerk-element=userButton]{cursor:pointer}.floating-user-button [data-clerk-element=userButton]>button{border-radius:50%;width:48px;height:48px;padding:0;overflow:hidden;border:2px solid rgba(255,255,255,.15);background:var(--color-bg-secondary);box-shadow:0 4px 12px #0000004d;transition:all .2s ease}.floating-user-button [data-clerk-element=userButton]>button:hover{border-color:#ffffff4d;box-shadow:0 6px 16px #0006;transform:scale(1.05)}.floating-user-button [data-clerk-element=userButton] img{width:100%;height:100%;object-fit:cover}.overlay{height:100%;width:100%;position:fixed;left:0;top:0;background:#0009;z-index:15;opacity:0;pointer-events:none;transition:.2s ease}.mobile-sidebar-toggle{display:none;position:fixed;top:16px;left:16px;z-index:25;border:none;cursor:pointer;width:48px;height:48px;border-radius:50%;align-items:center;justify-content:center;color:var(--color-text-primary);background:var(--color-hover-secondary);box-shadow:0 4px 12px #0006;transition:all .3s ease;flex-direction:row}.mobile-sidebar-toggle:hover{background:var(--color-hover-secondary-alt);transform:scale(1.05);box-shadow:0 6px 16px #00000080}.mobile-sidebar-toggle:active{transform:scale(.95)}@media(max-width:768px){.sidebar.closed{width:var(--sidebar-open-width)}.sidebar{position:fixed;height:100%;left:calc(-1 * var(--sidebar-open-width));transition:left .3s ease}.sidebar.closed .sidebar-header .new-chat-btn span,.sidebar.closed .sidebar-footer .theme-toggle span{width:auto}.sidebar.open{left:0}.main-container{padding-top:0}.mobile-sidebar-toggle{display:flex}.overlay.show{opacity:1;pointer-events:auto}.messages-container{padding-top:20px;margin-bottom:auto}.welcome-logo{height:60px;width:60px}.welcome-heading{font-size:1.8rem}.welcome-text{font-size:1rem}}.sign-in-page{display:flex;justify-content:center;align-items:center;min-height:100vh;padding:20px}.tilted-card-figure{position:relative;width:100%;height:100%;min-height:100%;perspective:800px;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:visible}.tilted-card-mobile-alert{position:absolute;top:1rem;text-align:center;font-size:.875rem;display:none}@media(max-width:640px){.tilted-card-mobile-alert{display:block}.tilted-card-caption{display:none}}.tilted-card-inner{position:relative;transform-style:preserve-3d;width:100%;height:100%;min-height:100%}.tilted-card-img{position:absolute;top:0;left:0;object-fit:cover;border-radius:20px;will-change:transform;transform:translateZ(0);box-shadow:0 10px 40px #0000004d}.tilted-card-content{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;transform-style:preserve-3d;display:flex;align-items:center;justify-content:center;pointer-events:none}.tilted-card-content>*{pointer-events:auto;width:100%;height:100%}.tilted-card-overlay{position:absolute;top:0;left:0;z-index:2;will-change:transform;transform:translateZ(30px)}.tilted-card-caption{pointer-events:none;position:absolute;left:0;top:0;border-radius:4px;background-color:#fff;padding:4px 10px;font-size:10px;color:#2d2d2d;opacity:0;z-index:3}.homepage{display:flex;align-items:center;justify-content:space-between;gap:60px;min-height:100vh;padding:40px;position:relative;overflow:hidden;background:linear-gradient(135deg,#0a0a0f,#1a1a2e);color:#fff}.top-logo{position:absolute;top:40px;left:40px;z-index:10;background:transparent;display:flex;align-items:center;gap:12px}.logo-img{height:50px;width:auto;object-fit:contain;background:transparent;mix-blend-mode:normal}.logo-text{font-size:24px;font-weight:700;color:#fff;letter-spacing:-.5px}@media screen and (max-width:768px){.top-logo{top:16px;left:16px;gap:8px}.logo-img{height:35px}.logo-text{font-size:18px}}@media screen and (max-width:480px){.top-logo{top:12px;left:12px;gap:6px}.logo-img{height:28px}.logo-text{font-size:16px}}@media screen and (max-width:1024px){.homepage{flex-direction:column;gap:50px;padding:30px 30px 100px;justify-content:flex-start;min-height:auto}}@media screen and (min-width:769px)and (max-width:1024px){.homepage{gap:50px;padding:100px 40px 120px}.left{max-width:700px;margin-top:20px}.left h1{font-size:44px}.left h2{font-size:26px}.left h3{font-size:17px;max-width:85%}.bot-img-waving{height:180px}.chat-preview{max-width:600px;height:420px}.right{max-width:600px}.top-logo{top:30px;left:40px}}@media screen and (max-width:768px){.homepage{gap:30px;padding:80px 16px 120px;min-height:100vh}}.hexagon-background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;overflow:hidden}.hexagon-background .hexagon-svg{width:100%;height:100%;opacity:.3}.bg-gradient{display:none}@keyframes float{0%,to{transform:translate(0) scale(1)}50%{transform:translate(-50px,-50px) scale(1.1)}}.left{flex:1;display:flex;flex-direction:column;gap:18px;text-align:left;z-index:1;max-width:550px}@media screen and (max-width:1024px){.left{text-align:center;max-width:100%;align-items:center}}@media screen and (min-width:769px)and (max-width:1024px){.left{gap:20px;max-width:700px}}@media screen and (max-width:480px){.left{gap:14px}}.left h1{font-size:48px;font-weight:800;letter-spacing:-1.5px;margin:0;color:#fff;line-height:1.2}@media screen and (max-width:1280px){.left h1{font-size:40px}}@media screen and (min-width:769px)and (max-width:1024px){.left h1{font-size:44px;letter-spacing:-1.2px}}@media screen and (max-width:768px){.left h1{font-size:32px;letter-spacing:-1px}}@media screen and (max-width:480px){.left h1{font-size:28px;letter-spacing:-.5px}}.left h2{font-size:24px;font-weight:600;margin:0;color:#e0e0e0;line-height:1.3}@media screen and (max-width:1280px){.left h2{font-size:22px}}@media screen and (min-width:769px)and (max-width:1024px){.left h2{font-size:26px}}@media screen and (max-width:768px){.left h2{font-size:20px}}@media screen and (max-width:480px){.left h2{font-size:18px}}.left h3{font-size:16px;font-weight:400;line-height:1.6;color:#b0b0b0;margin:0;max-width:90%}@media screen and (max-width:1024px){.left h3{max-width:100%;font-size:15px}}@media screen and (min-width:769px)and (max-width:1024px){.left h3{font-size:17px;max-width:85%;line-height:1.7}}@media screen and (max-width:480px){.left h3{font-size:14px;line-height:1.5}}.cta-buttons{display:flex;gap:16px;margin-top:8px;flex-wrap:wrap}@media screen and (max-width:1024px){.cta-buttons{justify-content:center;width:100%}}@media screen and (min-width:769px)and (max-width:1024px){.cta-buttons{gap:20px;margin-top:12px}.primary-btn,.secondary-btn{padding:16px 40px;font-size:17px}}@media screen and (max-width:480px){.cta-buttons{flex-direction:column;gap:12px}}.primary-btn,.secondary-btn{padding:14px 32px;border-radius:12px;font-size:16px;font-weight:600;text-decoration:none;transition:all .3s ease;display:inline-block;border:2px solid transparent}@media screen and (max-width:480px){.primary-btn,.secondary-btn{padding:12px 24px;font-size:14px;width:100%;text-align:center}}.primary-btn{background-color:#8b5cf6;color:#fff;border-color:#8b5cf6}.primary-btn:hover{background-color:#7c3aed;transform:translateY(-2px);box-shadow:0 8px 24px #8b5cf64d}.secondary-btn{background-color:transparent;color:#fff;border-color:#ffffff4d}.secondary-btn:hover{background-color:#ffffff1a;border-color:#ffffff80;transform:translateY(-2px)}.features{display:flex;gap:24px;margin-top:16px;flex-wrap:wrap}@media screen and (max-width:1024px){.features{justify-content:center}}@media screen and (min-width:769px)and (max-width:1024px){.features{gap:32px;margin-top:20px}.feature-item{font-size:15px}}.feature-item{display:flex;align-items:center;gap:8px;color:#b0b0b0;font-size:14px}.feature-item svg{color:#8b5cf6}@media screen and (max-width:480px){.features{flex-direction:column;gap:12px;align-items:center}.feature-item{font-size:13px}}.right{flex:1;display:flex;align-items:center;justify-content:center;z-index:1;position:relative}@media screen and (max-width:1024px){.right{width:100%;max-width:500px}}@media screen and (min-width:769px)and (max-width:1024px){.right{max-width:600px;width:100%}}@media screen and (max-width:480px){.right{max-width:100%}}.bot-images-container{display:flex;flex-direction:column;align-items:center;gap:30px;width:100%;max-width:500px}.bot-images-container .tilted-card-figure{width:100%;max-width:500px}@media screen and (max-width:768px){.bot-images-container .tilted-card-figure{max-width:100%}}@media screen and (min-width:769px)and (max-width:1024px){.bot-images-container{gap:35px;max-width:600px}}@media screen and (max-width:768px){.bot-images-container{gap:20px}}@media screen and (max-width:480px){.bot-images-container{gap:16px}}.bot-waving{display:flex;justify-content:center;align-items:center;animation:wave 3s ease-in-out infinite}.bot-img-waving{height:200px;width:auto;object-fit:contain;filter:drop-shadow(0 10px 30px rgba(139,92,246,.3))}@media screen and (min-width:769px)and (max-width:1024px){.bot-img-waving{height:180px}}@media screen and (max-width:768px){.bot-img-waving{height:150px}}@media screen and (max-width:480px){.bot-img-waving{height:120px}}@keyframes wave{0%,to{transform:translateY(0) rotate(0)}25%{transform:translateY(-10px) rotate(-5deg)}75%{transform:translateY(-10px) rotate(5deg)}}.chat-preview{width:100%;max-width:500px;height:450px;position:relative;overflow:visible}@media screen and (min-width:769px)and (max-width:1024px){.chat-preview{max-width:600px;height:420px}}@media screen and (max-width:768px){.chat-preview{height:380px;min-height:380px}}@media screen and (max-width:480px){.chat-preview{height:400px;min-height:400px}}.chat-container{background:linear-gradient(145deg,#141414fa,#1a1a1af2);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border-radius:24px;padding:24px;height:100%;width:100%;display:flex;flex-direction:column;box-shadow:0 20px 60px #000000b3,inset 0 1px #ffffff1a;border:1px solid rgba(255,255,255,.12);animation:slideUp .8s ease-out;position:relative;overflow:hidden}.chat-container:before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent);pointer-events:none}@media screen and (min-width:769px)and (max-width:1024px){.chat-container{padding:28px;border-radius:22px}.chat-messages{font-size:16px}}@media screen and (max-width:768px){.chat-container{padding:20px;border-radius:16px}}@media screen and (max-width:480px){.chat-container{padding:16px;border-radius:12px;min-height:100%;display:flex;flex-direction:column}.chat-messages{flex:1;min-height:0;max-height:280px}}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.chat-header{display:flex;align-items:center;gap:16px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.1)}@media screen and (max-width:480px){.chat-header{gap:12px;margin-bottom:16px;padding-bottom:12px}.chat-name{font-size:13px}.chat-status{font-size:11px}}.chat-bot-image,.chat-user-avatar{width:60px;height:60px;display:flex;align-items:center;justify-content:center}.user-avatar-circle{width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,#4b5563,#6b7280);border:2px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;position:relative}.user-avatar-circle:before{content:"U";color:#fff;font-size:20px;font-weight:600}@media screen and (min-width:769px)and (max-width:1024px){.chat-bot-image{width:65px;height:65px}}@media screen and (max-width:480px){.chat-bot-image{width:50px;height:50px}}.bot-img-working{width:100%;height:100%;object-fit:contain;animation:work 2s ease-in-out infinite}@keyframes work{0%,to{transform:translateY(0)}50%{transform:translateY(-5px)}}.chat-info{display:flex;flex-direction:column;gap:4px;flex:1}.chat-name{font-weight:600;font-size:14px;color:#fff}.chat-status{font-size:12px;color:#9ca3af;animation:blink 1.5s infinite;font-style:italic}@keyframes blink{0%,to{opacity:1}50%{opacity:.3}}.chat-messages{flex:1;display:flex;flex-direction:column;gap:16px;padding:16px 0;overflow-y:auto;overflow-x:hidden;color:#e0e0e0;font-size:15px;line-height:1.6}.chat-messages::-webkit-scrollbar{width:6px}.chat-messages::-webkit-scrollbar-track{background:transparent}.chat-messages::-webkit-scrollbar-thumb{background:#ffffff1a;border-radius:3px}.chat-messages::-webkit-scrollbar-thumb:hover{background:#fff3}.chat-message{display:flex;flex-direction:column;gap:4px;animation:messageSlideIn .3s ease-out}@keyframes messageSlideIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.chat-message-user .message-label{color:#9ca3af;font-size:13px;font-weight:500}.chat-message-bot .message-label{color:#fff;font-size:13px;font-weight:600}.message-text{color:#e5e5e5;line-height:1.6}.chat-message-typing{opacity:.8}.typing-indicator{display:flex;gap:4px;padding:8px 0}.typing-indicator span{width:8px;height:8px;border-radius:50%;background-color:#9ca3af;animation:typingBounce 1.4s infinite ease-in-out}.typing-indicator span:nth-child(1){animation-delay:0s}.typing-indicator span:nth-child(2){animation-delay:.2s}.typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes typingBounce{0%,60%,to{transform:translateY(0);opacity:.5}30%{transform:translateY(-10px);opacity:1}}@media screen and (max-width:480px){.chat-messages{font-size:13px;padding:12px 0;line-height:1.5}}.typing-animation{display:block;min-height:60px}.terms{position:absolute;bottom:20px;left:50%;transform:translate(-50%);z-index:1}@media screen and (min-width:769px)and (max-width:1024px){.terms{bottom:24px}.terms .links{font-size:13px}}@media screen and (max-width:768px){.terms{bottom:16px;position:fixed}}@media screen and (max-width:480px){.terms{bottom:12px}.terms .links{font-size:11px;gap:8px}}.terms .links{display:flex;align-items:center;gap:12px;color:#666;font-size:12px}.terms .links a{color:#888;text-decoration:none;transition:color .2s ease}.terms .links a:hover{color:#b0b0b0}.terms .links span{color:#555}
