:root{--color-primary: #2563eb;--color-primary-hover: #1d4ed8;--color-success: #16a34a;--color-error: #dc2626;--color-warning: #d97706;--color-bg: #f8fafc;--color-surface: #ffffff;--color-text: #1e293b;--color-text-muted: #64748b;--color-border: #e2e8f0;--color-border-hover: #cbd5e1;--radius-sm: 4px;--radius-md: 8px;--radius-lg: 12px;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1);--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;line-height:1.5}body{font-family:var(--font-sans);background-color:var(--color-bg);color:var(--color-text);min-height:100vh}#app{max-width:800px;margin:0 auto;padding:2rem 1rem}.header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--color-border)}.header h1{font-size:1.5rem;font-weight:600;color:var(--color-text)}.privacy-badge{font-size:.75rem;padding:.25rem .75rem;background-color:#e0f2fe;color:#0369a1;border-radius:var(--radius-sm);font-weight:500}.upload-screen{background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-md)}.upload-intro{text-align:center;margin-bottom:2rem}.upload-intro h2{font-size:1.25rem;font-weight:600;margin-bottom:.5rem}.upload-intro p{color:var(--color-text-muted);font-size:.875rem}.upload-form{display:flex;flex-direction:column;gap:1.5rem}.form-section{display:flex;flex-direction:column;gap:.5rem}.form-label{font-weight:500;font-size:.875rem;color:var(--color-text)}.cv-input-tabs{display:flex;gap:.5rem;margin-bottom:.5rem}.tab-btn{padding:.5rem 1rem;font-size:.875rem;font-weight:500;border:1px solid var(--color-border);background:var(--color-surface);color:var(--color-text-muted);border-radius:var(--radius-sm);cursor:pointer;transition:all .15s ease}.tab-btn:hover{background:var(--color-bg)}.tab-btn.active{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}.tab-content{transition:opacity .15s ease}.dropzone{border:2px dashed var(--color-border);border-radius:var(--radius-md);padding:2rem;text-align:center;cursor:pointer;transition:all .15s ease;background:var(--color-bg)}.dropzone:hover,.dropzone.dragover{border-color:var(--color-primary);background:#eff6ff}.dropzone-content{display:flex;flex-direction:column;align-items:center;gap:.5rem}.dropzone-icon{width:48px;height:48px;color:var(--color-text-muted)}.dropzone-text{font-weight:500;color:var(--color-text)}.dropzone-subtext{font-size:.75rem;color:var(--color-text-muted)}.file-input{display:none}.file-preview{border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1rem;background:var(--color-bg)}.file-info{display:flex;align-items:center;gap:.75rem}.file-icon{width:32px;height:32px;color:var(--color-primary);flex-shrink:0}.file-details{display:flex;flex-direction:column;flex-grow:1;min-width:0}.file-name{font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.file-size{font-size:.75rem;color:var(--color-text-muted)}.btn-remove{width:28px;height:28px;border:none;background:transparent;color:var(--color-text-muted);cursor:pointer;font-size:1.25rem;line-height:1;border-radius:var(--radius-sm);transition:all .15s ease}.btn-remove:hover{background:var(--color-border);color:var(--color-error)}.textarea{width:100%;padding:.75rem;font-family:inherit;font-size:.875rem;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);resize:vertical;transition:border-color .15s ease}.textarea:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 3px #2563eb1a}.textarea::placeholder{color:var(--color-text-muted)}.cv-textarea,.jd-textarea{min-height:150px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;font-family:inherit;font-size:.875rem;font-weight:500;border:none;border-radius:var(--radius-md);cursor:pointer;transition:all .15s ease}.btn:disabled{opacity:.6;cursor:not-allowed}.btn-primary{background:var(--color-primary);color:#fff}.btn-primary:hover:not(:disabled){background:var(--color-primary-hover)}.form-actions{display:flex;justify-content:flex-end;padding-top:1rem}.spinner{width:16px;height:16px;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.btn-loading{display:inline-flex;align-items:center;gap:.5rem}.error-toast,.success-toast{position:fixed;bottom:1.5rem;left:50%;transform:translate(-50%);padding:.75rem 1rem;border-radius:var(--radius-md);display:flex;align-items:center;gap:.75rem;box-shadow:var(--shadow-md);z-index:1000;animation:slideUp .2s ease}.error-toast{background:var(--color-error);color:#fff}.success-toast{background:var(--color-success);color:#fff}.toast-close{background:transparent;border:none;color:inherit;opacity:.8;cursor:pointer;font-size:1.25rem;line-height:1;padding:0}.toast-close:hover{opacity:1}@keyframes slideUp{0%{opacity:0;transform:translate(-50%) translateY(10px)}to{opacity:1;transform:translate(-50%) translateY(0)}}.processing-screen{background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-md);text-align:center}.processing-header{margin-bottom:2rem}.processing-header h2{font-size:1.25rem;font-weight:600;margin-bottom:.5rem}.processing-subtitle{color:var(--color-text-muted);font-size:.875rem}.progress-container{margin-bottom:2rem}.progress-bar-wrapper{height:8px;background:var(--color-border);border-radius:4px;overflow:hidden;margin-bottom:.75rem}.progress-bar{height:100%;background:linear-gradient(90deg,var(--color-primary),#60a5fa);border-radius:4px;transition:width .3s ease;position:relative}.progress-bar:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.3) 50%,transparent 100%);animation:shimmer 1.5s infinite}@keyframes shimmer{0%{transform:translate(-100%)}to{transform:translate(100%)}}.progress-text{display:flex;justify-content:space-between;align-items:center;font-size:.875rem}.progress-percentage{font-weight:600;color:var(--color-primary)}.progress-estimate{color:var(--color-text-muted)}.steps-container{text-align:left;max-width:400px;margin:0 auto 2rem}.steps-list{list-style:none;display:flex;flex-direction:column;gap:.75rem}.step-item{display:flex;align-items:center;gap:.75rem;padding:.75rem 1rem;border-radius:var(--radius-md);background:var(--color-bg);transition:all .3s ease}.step-item[data-status=active]{background:#eff6ff;border:1px solid #bfdbfe}.step-item[data-status=complete]{background:#f0fdf4;border:1px solid #bbf7d0}.step-item[data-status=pending]{opacity:.6}.step-icon{width:24px;height:24px;flex-shrink:0;display:flex;align-items:center;justify-content:center}.step-icon svg{width:20px;height:20px}.step-item[data-status=pending] .step-icon{color:var(--color-text-muted)}.step-item[data-status=active] .step-icon{color:var(--color-primary)}.step-item[data-status=complete] .step-icon{color:var(--color-success)}.step-label{flex-grow:1;font-size:.875rem;font-weight:500}.step-status{font-size:.75rem;color:var(--color-text-muted)}.step-item[data-status=active] .step-status{color:var(--color-primary)}.step-item[data-status=complete] .step-status{color:var(--color-success)}.step-animate-active{animation:stepPulse 1.5s ease-in-out infinite}.step-animate-complete{animation:stepComplete .4s ease-out}@keyframes stepPulse{0%,to{transform:scale(1)}50%{transform:scale(1.01)}}@keyframes stepComplete{0%{transform:scale(1)}50%{transform:scale(1.03)}to{transform:scale(1)}}.processing-footer{padding-top:1rem;border-top:1px solid var(--color-border)}.footer-note{display:inline-flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--color-text-muted)}.lock-icon{width:14px;height:14px}.results-screen{background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-md)}.results-header{text-align:center;margin-bottom:2rem}.results-header h2{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--color-success)}.results-subtitle{color:var(--color-text-muted);font-size:.875rem}.score-section{display:flex;flex-direction:column;align-items:center;gap:2rem;margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid var(--color-border)}@media (min-width: 640px){.score-section{flex-direction:row;justify-content:space-between;align-items:flex-start}}.overall-score{display:flex;flex-direction:column;align-items:center;gap:.5rem}.score-circle{position:relative;width:120px;height:120px}.score-ring{width:100%;height:100%}.score-ring-bg{stroke:var(--color-border)}.score-ring-progress{stroke:var(--color-primary);stroke-linecap:round;transition:stroke-dasharray .6s ease}.score-excellent .score-ring-progress{stroke:var(--color-success)}.score-good .score-ring-progress{stroke:var(--color-primary)}.score-fair .score-ring-progress{stroke:var(--color-warning)}.score-needs-work .score-ring-progress{stroke:var(--color-error)}.score-value{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:1.75rem;font-weight:700}.score-excellent .score-value{color:var(--color-success)}.score-good .score-value{color:var(--color-primary)}.score-fair .score-value{color:var(--color-warning)}.score-needs-work .score-value{color:var(--color-error)}.score-label{font-size:.875rem;font-weight:600;text-align:center}.score-excellent .score-label{color:var(--color-success)}.score-good .score-label{color:var(--color-primary)}.score-fair .score-label{color:var(--color-warning)}.score-needs-work .score-label{color:var(--color-error)}.score-breakdown{flex:1;max-width:350px;width:100%;display:flex;flex-direction:column;gap:1rem}.score-item{display:flex;flex-direction:column;gap:.25rem}.score-item-header{display:flex;justify-content:space-between;align-items:center}.score-item-label{font-size:.875rem;color:var(--color-text)}.score-item-value{font-size:.875rem;font-weight:600;color:var(--color-primary)}.score-item-bar{height:6px;background:var(--color-border);border-radius:3px;overflow:hidden}.score-item-progress{height:100%;background:var(--color-primary);border-radius:3px;transition:width .4s ease}.analysis-section{margin-bottom:1.5rem}.section-title{display:flex;align-items:center;gap:.5rem;font-size:1rem;font-weight:600;margin-bottom:.75rem}.section-icon{width:20px;height:20px}.strengths-section .section-title{color:var(--color-success)}.gaps-section .section-title{color:var(--color-warning)}.analysis-list{list-style:none;display:flex;flex-direction:column;gap:.5rem}.analysis-item{display:flex;align-items:flex-start;gap:.5rem;padding:.75rem;border-radius:var(--radius-md);font-size:.875rem}.strengths-list .analysis-item{background:#f0fdf4;color:#166534}.gaps-list .analysis-item{background:#fffbeb;color:#92400e}.item-icon{width:16px;height:16px;flex-shrink:0;margin-top:2px}.strengths-list .item-icon{color:var(--color-success)}.gaps-list .item-icon{color:var(--color-warning)}.ats-summary{background:#eff6ff;border:1px solid #bfdbfe;border-radius:var(--radius-md);padding:1rem;margin-bottom:2rem}.ats-badge{display:flex;align-items:center;gap:.5rem;font-weight:600;color:var(--color-primary);margin-bottom:.5rem}.ats-icon{width:18px;height:18px}.ats-description{font-size:.875rem;color:var(--color-text-muted)}.results-actions{display:flex;flex-direction:column;gap:.75rem}@media (min-width: 480px){.results-actions{flex-direction:row;justify-content:center}}.btn-lg{padding:1rem 2rem;font-size:1rem}.btn-secondary{background:var(--color-bg);color:var(--color-text);border:1px solid var(--color-border)}.btn-secondary:hover:not(:disabled){background:var(--color-border)}.btn-icon{width:18px;height:18px}.download-screen{background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-md)}.download-header{text-align:center;margin-bottom:2rem}.download-header h2{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--color-success)}.download-subtitle{color:var(--color-text-muted);font-size:.875rem}.cv-preview-section{border:1px solid var(--color-border);border-radius:var(--radius-md);margin-bottom:1.5rem;overflow:hidden}.cv-preview-header{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;background:var(--color-bg);border-bottom:1px solid var(--color-border)}.preview-label{font-size:.75rem;font-weight:600;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em}.preview-actions{display:flex;gap:.5rem}.cv-preview{max-height:400px;overflow-y:auto;background:var(--color-surface)}.cv-content{padding:1rem;margin:0;font-family:Monaco,Menlo,Ubuntu Mono,monospace;font-size:.8125rem;line-height:1.6;color:var(--color-text);white-space:pre-wrap;word-wrap:break-word}.download-actions{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}@media (min-width: 480px){.download-actions{flex-direction:row;justify-content:center}}.btn-sm{padding:.375rem .75rem;font-size:.75rem}.btn-outline{background:transparent;color:var(--color-text-muted);border:1px solid var(--color-border)}.btn-outline:hover:not(:disabled){background:var(--color-bg);color:var(--color-text);border-color:var(--color-border-hover)}.btn-success{background:var(--color-success)!important;color:#fff!important;border-color:var(--color-success)!important}.download-tips{background:#fefce8;border:1px solid #fef08a;border-radius:var(--radius-md);padding:1rem}.tips-title{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:#854d0e;margin-bottom:.75rem}.tips-icon{width:18px;height:18px;color:#ca8a04}.tips-list{list-style:disc;margin-left:1.5rem;display:flex;flex-direction:column;gap:.375rem}.tips-list li{font-size:.8125rem;color:#713f12}.hidden{display:none!important}@media (max-width: 640px){#app{padding:1rem}.header{flex-direction:column;align-items:flex-start;gap:.5rem}.upload-screen,.dropzone{padding:1.5rem}}
