:root{--primary-50:#fef7ee;--primary-100:#fdead7;--primary-500:#ed6c1e;--primary-600:#de5214;--secondary-500:#0ea5e9;--secondary-600:#0284c7;--gray-50:#f9fafb;--gray-100:#f3f4f6;--gray-200:#e5e7eb;--gray-300:#d1d5db;--gray-400:#9ca3af;--gray-600:#4b5563;--gray-700:#374151;--gray-800:#1f2937;--gray-900:#111827;--min-touch-target:48px;--border-radius:12px}*{box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-size:16px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#f9fafb;background-color:var(--gray-50);color:#374151;color:var(--gray-700);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;line-height:1.6;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.min-h-screen{min-height:100vh}.bg-gray-50{background-color:#f9fafb;background-color:var(--gray-50)}.text-center{text-align:center}.space-y-6>*+*{margin-top:1.5rem}.space-y-4>*+*{margin-top:1rem}.space-y-3>*+*{margin-top:.75rem}.space-y-2>*+*{margin-top:.5rem}.space-x-2>*+*{margin-left:.5rem}.space-x-3>*+*{margin-left:.75rem}.pb-20{padding-bottom:5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.max-w-md{max-width:28rem}.w-full{width:100%}.h-screen{height:100vh}.flex{display:flex}.flex-1{flex:1 1}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.grid{display:grid}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.gap-4{gap:1rem}.fixed{position:fixed}.relative{position:relative}.bottom-0{bottom:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-30{z-index:30}.z-40{z-index:40}.border{border-width:1px}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-gray-200{border-color:#e5e7eb;border-color:var(--gray-200)}.bg-white{background-color:#fff}.shadow-sm{box-shadow:0 1px 2px 0 #0000000d}.sticky{position:sticky}.overflow-y-auto{overflow-y:auto}.max-h-screen{max-height:100vh}.flex-shrink-0{flex-shrink:0}.btn-primary{-webkit-tap-highlight-color:transparent;align-items:center;background-color:#ed6c1e;background-color:var(--primary-500);border:none;border-radius:12px;border-radius:var(--border-radius);color:#fff;cursor:pointer;display:inline-flex;font-weight:500;justify-content:center;min-height:48px;min-height:var(--min-touch-target);min-width:48px;min-width:var(--min-touch-target);padding:.75rem 1.5rem;touch-action:manipulation;transition:background-color .15s ease}.btn-primary:active{background-color:#de5214;background-color:var(--primary-600)}.btn-primary:focus{box-shadow:0 0 0 2px #ed6c1e,0 0 0 4px #ed6c1e33;box-shadow:0 0 0 2px var(--primary-500),0 0 0 4px #ed6c1e33;outline:none}.btn-secondary{-webkit-tap-highlight-color:transparent;align-items:center;background-color:#fff;border:1px solid #ed6c1e;border:1px solid var(--primary-500);border-radius:12px;border-radius:var(--border-radius);color:#ed6c1e;color:var(--primary-500);cursor:pointer;display:inline-flex;font-weight:500;justify-content:center;min-height:48px;min-height:var(--min-touch-target);min-width:48px;min-width:var(--min-touch-target);padding:.75rem 1.5rem;touch-action:manipulation;transition:background-color .15s ease}.btn-secondary:active{background-color:#fef7ee;background-color:var(--primary-50)}.form-input{background-color:#fff;border:1px solid #d1d5db;border:1px solid var(--gray-300);border-radius:12px;border-radius:var(--border-radius);font-size:16px;min-height:48px;min-height:var(--min-touch-target);padding:.75rem 1rem;width:100%}.form-input:focus{border-color:#ed6c1e;border-color:var(--primary-500);box-shadow:0 0 0 2px #ed6c1e;box-shadow:0 0 0 2px var(--primary-500);outline:none}.form-label{color:#374151;color:var(--gray-700);display:block;font-size:.875rem;font-weight:500;margin-bottom:.5rem}.card{background-color:#fff;border:1px solid #e5e7eb;border:1px solid var(--gray-200);border-radius:12px;border-radius:var(--border-radius);box-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;padding:1.5rem}.card-header{border-bottom:1px solid #e5e7eb;border-bottom:1px solid var(--gray-200);margin-bottom:1rem;padding-bottom:1rem}.loading-spinner{animation:spin 1s linear infinite;border:2px solid #0000;border-bottom:2px solid var(--primary-500);border-radius:50%;display:inline-block;height:2rem;width:2rem}@keyframes spin{to{transform:rotate(1turn)}}@keyframes slide-down{0%{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}@keyframes slide-up{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.animate-slide-down{animation:slide-down .3s ease-out}.animate-slide-up{animation:slide-up .3s ease-out}.animate-fade-in{animation:fade-in .3s ease-out}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.chat-message{word-wrap:break-word;border-radius:12px;border-radius:var(--border-radius);margin-bottom:1rem;max-width:20rem;padding:1rem}.chat-message-user{background-color:#ed6c1e;background-color:var(--primary-500);color:#fff;margin-left:auto}.chat-message-assistant{background-color:#f3f4f6;background-color:var(--gray-100);color:#1f2937;color:var(--gray-800)}.nav-item{-webkit-tap-highlight-color:transparent;font-size:16px;font-weight:500;min-height:48px;min-height:var(--min-touch-target);padding:.75rem 1rem;touch-action:manipulation;transition:background-color .15s ease}.nav-item:active{background-color:#f3f4f6;background-color:var(--gray-100)}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xl{font-size:1.25rem}.text-lg,.text-xl{line-height:1.75rem}.text-lg{font-size:1.125rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-medium{font-weight:500}.text-gray-900{color:#111827;color:var(--gray-900)}.text-gray-800{color:#1f2937;color:var(--gray-800)}.text-gray-700{color:#374151;color:var(--gray-700)}.text-gray-600{color:#4b5563;color:var(--gray-600)}.text-gray-400,.text-gray-500{color:#9ca3af;color:var(--gray-400)}.text-primary-500{color:#ed6c1e;color:var(--primary-500)}.text-primary-600{color:#de5214;color:var(--primary-600)}.text-white{color:#fff}.pwa-install-prompt{background-color:#fff;border:1px solid #e5e7eb;border:1px solid var(--gray-200);border-radius:12px;border-radius:var(--border-radius);bottom:20px;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;left:20px;padding:1rem;position:fixed;right:20px;z-index:1000}.keyboard-open .hide-on-keyboard{display:none}.keyboard-open .chat-container{height:calc(50vh - 100px)}.safe-area-inset{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left)}.touch-manipulation{touch-action:manipulation}.no-tap-highlight{-webkit-tap-highlight-color:transparent}@media (prefers-reduced-motion:reduce){*{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
/*# sourceMappingURL=main.83da2e43.css.map*/