:root{--font-family: "Inter", "Roboto", sans-serif;--bg-color: #050505;--bg-gradient: linear-gradient(135deg, #050505 0%, #0d0f14 100%);--surface-color: rgba(22, 24, 29, .7);--surface-border: rgba(255, 255, 255, .08);--text-primary: #ffffff;--text-secondary: #9ca3af;--accent-blue: #0ea5e9;--accent-purple: #8b5cf6;--accent-gradient: linear-gradient(to right, var(--accent-blue), var(--accent-purple));--success-color: #10b981;--danger-color: #ef4444;--warning-color: #f59e0b}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-family);background:var(--bg-gradient);background-color:var(--bg-color);color:var(--text-primary);min-height:100vh;margin:0;overflow-x:hidden;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{font-weight:600;letter-spacing:-.02em}.text-gradient{background:var(--accent-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.global-header{position:fixed;top:0;left:0;right:0;z-index:100;height:56px;background:#0a0c10d9;backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border-bottom:1px solid var(--surface-border)}.global-header-inner{display:flex;align-items:center;justify-content:space-between;height:100%;padding:0 24px;max-width:100%}.header-greeting{color:var(--text-secondary);font-size:14px;font-weight:400;margin-left:24px;padding-left:24px;border-left:1px solid var(--surface-border)}.app-container{display:flex;min-height:100vh;padding-top:56px;width:100%}.brand{padding:0 24px 16px;font-size:24px;font-weight:700;display:flex;align-items:center;gap:12px}.brand-icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center}.brand-icon img{width:100%;height:100%;object-fit:contain}.domain-card{background:var(--surface-color);border:1px solid var(--surface-border);border-radius:12px;padding:24px;cursor:pointer;transition:all .2s;display:flex;flex-direction:column;justify-content:space-between}.domain-card:hover{border-color:var(--accent-blue);transform:translateY(-2px);box-shadow:0 10px 30px #0000004d}.domain-tabs{display:flex;gap:32px;border-bottom:1px solid var(--surface-border);margin-bottom:24px}.domain-tab{padding:12px 0;font-weight:500;color:var(--text-secondary);cursor:pointer;border-bottom:2px solid transparent;transition:all .2s;display:flex;align-items:center;gap:8px;margin-bottom:-1px}.domain-tab:hover{color:var(--text-primary)}.domain-tab.active{color:var(--accent-blue);border-bottom-color:var(--accent-blue)}.domain-menu-dropdown{position:absolute;top:calc(100% + 8px);right:0;z-index:100;min-width:200px;background:var(--surface-color);border:1px solid var(--surface-border);border-radius:12px;padding:8px;box-shadow:0 8px 32px #0006;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.domain-menu-item{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:8px;color:var(--text-secondary);cursor:pointer;font-size:14px;font-weight:500;transition:all .15s}.domain-menu-item:hover{background:#ffffff0f;color:var(--text-primary)}.domain-menu-item-danger{color:#ef4444}.domain-menu-item-danger:hover{background:#ef44441a;color:#ef4444}.main-content{flex:1;padding:40px;max-width:1200px;margin:0 auto;width:100%}.card{background:var(--surface-color);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--surface-border);border-radius:16px;padding:24px;transition:transform .3s ease,box-shadow .3s ease}.card:hover{transform:translateY(-2px);box-shadow:0 8px 32px #0003}.card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.card-title{font-size:18px;font-weight:600}.form-group{margin-bottom:20px}.form-label{display:block;margin-bottom:8px;font-size:14px;color:var(--text-secondary)}.form-control{width:100%;background:#0000004d;border:1px solid var(--surface-border);border-radius:8px;padding:12px 16px;color:var(--text-primary);font-family:inherit;font-size:15px;transition:all .3s}.form-control:focus{outline:none;border-color:var(--accent-blue);box-shadow:0 0 0 2px #0ea5e933}.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 24px;border-radius:8px;font-weight:500;cursor:pointer;transition:all .3s;border:none;font-size:15px}.btn-primary{background:var(--accent-gradient);color:#fff}.btn-primary:hover{opacity:.9;transform:scale(1.02);box-shadow:0 4px 12px #0ea5e94d}.btn-secondary{background:#ffffff0d;color:var(--text-primary);border:1px solid var(--surface-border)}.btn-secondary:hover{background:#ffffff1a}.table-container{overflow-x:auto}table{width:100%;border-collapse:collapse}th,td{padding:16px;text-align:left;border-bottom:1px solid var(--surface-border)}th{color:var(--text-secondary);font-weight:500;font-size:14px}tbody tr{transition:background .3s}tbody tr:hover{background:#ffffff05}.badge{padding:4px 10px;border-radius:20px;font-size:12px;font-weight:500;display:inline-flex;align-items:center;gap:4px}.badge-success{background:#10b9811a;color:var(--success-color);border:1px solid rgba(16,185,129,.2)}.badge-warning{background:#f59e0b1a;color:var(--warning-color);border:1px solid rgba(245,158,11,.2)}.badge-danger{background:#ef44441a;color:var(--danger-color);border:1px solid rgba(239,68,68,.2)}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.animate-fade-in{animation:fadeIn .5s ease forwards}@keyframes pulse-glow{0%{box-shadow:0 0 #0ea5e966}70%{box-shadow:0 0 0 10px #0ea5e900}to{box-shadow:0 0 #0ea5e900}}.glow-effect{animation:pulse-glow 2s infinite}.flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-2{gap:8px}.gap-4{gap:16px}.gap-6{gap:24px}.mt-2{margin-top:8px}.mt-4{margin-top:16px}.mt-6{margin-top:24px}.mb-2{margin-bottom:8px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.text-2xl{font-size:24px}.text-3xl{font-size:32px}.text-4xl{font-size:36px}.font-bold{font-weight:700}.text-center{text-align:center}.grid{display:grid}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}@media(max-width:768px){.global-header-inner{padding:0 16px}.header-greeting{display:none}.app-container{flex-direction:column}.sidebar{width:100%;height:auto;position:relative;top:0;padding:8px 0;border-right:none;border-bottom:1px solid var(--surface-border)}.nav-links{flex-direction:row;overflow-x:auto}.main-content{padding:24px 16px}.grid-cols-2,.grid-cols-3{grid-template-columns:1fr}}.w-full{width:100%}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.cursor-pointer{cursor:pointer}.hover-bg-surface:hover{background:var(--surface-border)}.readonly-value{padding:12px 16px;background:#0003;border:1px solid var(--surface-border);border-radius:8px;color:var(--text-primary);font-size:15px}.section-title{font-size:16px;font-weight:600;color:var(--text-primary);margin-bottom:16px;border-bottom:1px solid var(--surface-border);padding-bottom:8px}.text-purple{color:var(--accent-purple)}.settings-nav{display:flex;border-bottom:1px solid var(--surface-border);margin-bottom:24px}.settings-nav-item{padding:12px 24px;color:var(--text-secondary);cursor:pointer;border-bottom:2px solid transparent;font-weight:500;display:flex;align-items:center;gap:8px}.settings-nav-item.active{color:var(--accent-blue);border-bottom-color:var(--accent-blue)}.history-item{display:flex;align-items:center;justify-content:space-between;padding:16px;border:1px solid var(--surface-border);border-radius:8px;margin-bottom:12px;background:#ffffff05}.history-month-badge{width:40px;height:40px;border-radius:8px;background:var(--accent-purple);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;margin-right:16px}.format-btn{flex:1;padding:16px;border:1px solid var(--surface-border);border-radius:8px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;background:#ffffff05;cursor:pointer;color:var(--text-secondary)}.format-btn.active{border-color:var(--accent-blue);background:#0ea5e90d;color:var(--text-primary)}.login-container{display:flex;align-items:center;justify-content:center;min-height:calc(100vh - 56px);width:100%}.login-card{background:var(--surface-color);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--surface-border);border-radius:16px;padding:48px 32px;width:100%;max-width:420px;box-shadow:0 20px 40px #0006}.profile-menu-trigger{display:flex;align-items:center;gap:10px;cursor:pointer;padding:6px 12px;border-radius:8px;transition:background .2s}.profile-menu-trigger:hover{background:#ffffff0d}.profile-avatar{width:28px;height:28px;border-radius:50%;background:var(--accent-gradient);display:flex;align-items:center;justify-content:center;color:#fff}.profile-name{font-size:14px;font-weight:500}.profile-dropdown{position:absolute;top:calc(100% + 8px);right:0;width:240px;background:#14181ef2;-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);border:1px solid var(--surface-border);border-radius:12px;box-shadow:0 10px 30px #00000080;overflow:hidden;z-index:1000;animation:fadeIn .15s ease-out}.profile-dropdown-header{padding:16px;background:#ffffff05}.profile-dropdown-item{padding:12px 16px;display:flex;align-items:center;gap:12px;cursor:pointer;transition:background .2s;font-size:14px}.profile-dropdown-item:hover{background:#ffffff0d}.profile-dropdown-divider{height:1px;background:var(--surface-border)}.modal-overlay{position:fixed;inset:0;background:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:2000;padding:80px 20px 20px;animation:fadeIn .2s ease}.modal-content{max-height:90vh;overflow-y:auto}.text-danger{color:var(--danger-color)}.text-success{color:var(--success-color)}.context-tag{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:20px;font-size:13px;font-weight:500;background:#0ea5e91a;color:var(--accent-blue);border:1px solid rgba(14,165,233,.2);transition:all .2s}.context-tag .tag-remove{cursor:pointer;opacity:.6;transition:opacity .2s}.context-tag .tag-remove:hover{opacity:1}.context-tag-add{display:inline-flex;align-items:center;gap:4px;padding:6px 12px;border-radius:20px;font-size:13px;background:#ffffff08;color:var(--text-secondary);border:1px dashed var(--surface-border);cursor:pointer;transition:all .2s}.context-tag-add:hover{border-color:var(--accent-blue);color:var(--accent-blue)}.tag-input-inline input{background:#0000004d;border:1px solid var(--accent-blue);border-radius:20px;padding:4px 12px;color:var(--text-primary);font-size:13px;width:160px;outline:none;font-family:inherit}.competitor-card{padding:16px;background:#ffffff05;border-radius:12px;border:1px solid var(--surface-border);margin-bottom:8px;transition:all .2s}.competitor-card:hover{border-color:#ffffff26}.context-section{background:var(--surface-color);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--surface-border);border-radius:16px;padding:24px;margin-bottom:16px}.context-section:hover{transform:none;box-shadow:none}@keyframes progress-indeterminate{0%{width:10%;margin-left:0}50%{width:40%;margin-left:30%}to{width:10%;margin-left:90%}}.analyzing-progress-bar{animation:progress-indeterminate 2s ease-in-out infinite}.content-dialog{display:flex;flex-direction:column}.content-dialog-tabs{display:flex;gap:0;border-bottom:1px solid var(--surface-border);margin-bottom:20px}.content-dialog-tab{padding:10px 20px;color:var(--text-secondary);cursor:pointer;border-bottom:2px solid transparent;font-weight:500;font-size:14px;display:flex;align-items:center;gap:8px;transition:all .2s}.content-dialog-tab:hover{color:var(--text-primary)}.content-dialog-tab.active{color:var(--accent-purple);border-bottom-color:var(--accent-purple)}.content-idea-card{padding:16px;background:#ffffff05;border:1px solid var(--surface-border);border-radius:12px;transition:all .2s}.content-idea-card:hover{border-color:#8b5cf64d;background:#8b5cf608}.content-article-card{padding:20px;background:#ffffff05;border:1px solid var(--surface-border);border-radius:12px}.content-article-body{padding:16px;background:#0003;border-radius:8px;border:1px solid rgba(255,255,255,.04)}.question-category{border:1px solid var(--surface-border);border-radius:12px;overflow:hidden;background:#ffffff05;margin-bottom:12px}.question-category-header{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;cursor:pointer;transition:background .2s;-webkit-user-select:none;user-select:none}.question-category-header:hover{background:#ffffff08}.question-category-body{border-top:1px solid var(--surface-border)}.question-row{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;border-bottom:1px solid rgba(255,255,255,.04);transition:background .15s;gap:12px}.question-row:last-child{border-bottom:none}.question-row:hover{background:#ffffff08}.question-text{flex:1;font-size:13px;color:var(--text-primary);cursor:pointer;min-width:0;line-height:1.5}.question-text:hover{color:var(--accent-blue)}.question-text-editing{flex:1;min-width:0}.question-text-editing input{width:100%;padding:6px 10px;background:#0000004d;border:1px solid var(--accent-blue);border-radius:6px;color:var(--text-primary);font-size:13px;outline:none}.question-actions{display:flex;align-items:center;gap:6px;flex-shrink:0}.question-action-btn{background:transparent;border:1px solid var(--surface-border);border-radius:6px;color:var(--text-secondary);padding:4px 6px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}.question-action-btn:hover{background:#ffffff0f;color:var(--text-primary);border-color:#ffffff26}.add-question-row{display:flex;align-items:center;gap:6px;padding:10px 20px;font-size:13px;color:var(--text-secondary);cursor:pointer;transition:all .15s;border-top:1px solid rgba(255,255,255,.04)}.add-question-row:hover{color:var(--accent-blue);background:#0ea5e908}.badge-priority-high{background:#ef444426!important;color:#ef4444!important;border:1px solid rgba(239,68,68,.3)!important;cursor:pointer;font-size:11px;padding:2px 8px;border-radius:4px;transition:opacity .15s}.badge-priority-medium{background:#f59e0b26!important;color:#f59e0b!important;border:1px solid rgba(245,158,11,.3)!important;cursor:pointer;font-size:11px;padding:2px 8px;border-radius:4px;transition:opacity .15s}.badge-priority-low{background:#6b728026!important;color:#9ca3af!important;border:1px solid rgba(107,114,128,.3)!important;cursor:pointer;font-size:11px;padding:2px 8px;border-radius:4px;transition:opacity .15s}.badge-priority-high:hover,.badge-priority-medium:hover,.badge-priority-low:hover{opacity:.8}.toggle-switch{display:flex;align-items:center;gap:8px;cursor:pointer;-webkit-user-select:none;user-select:none;font-size:13px;color:var(--text-secondary)}.toggle-track{width:36px;height:20px;border-radius:10px;background:#ffffff1a;position:relative;transition:background .2s;flex-shrink:0}.toggle-track.active{background:#0ea5e966}.toggle-thumb{width:16px;height:16px;border-radius:50%;background:var(--text-secondary);position:absolute;top:2px;left:2px;transition:all .2s}.toggle-track.active .toggle-thumb{left:18px;background:var(--accent-blue)}.category-count{background:#ffffff0f;color:var(--text-secondary);font-size:11px;padding:2px 8px;border-radius:10px;margin-left:8px}.chevron-icon{transition:transform .2s;color:var(--text-secondary)}.chevron-icon.expanded{transform:rotate(180deg)}.question-set-header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;margin-bottom:20px}.question-set-header-left{display:flex;align-items:center;gap:12px}.question-set-header-right{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.score-comparison-bars{display:flex;flex-direction:column;gap:10px}.score-bar-row{display:flex;align-items:center;gap:12px;padding:6px 8px;border-radius:8px;cursor:pointer;transition:opacity .2s,background .15s}.score-bar-row:hover{background:#ffffff08}.score-bar-row.is-brand{background:#0ea5e90f;cursor:default}.score-bar-row.dimmed{opacity:.35}.score-bar-label{display:flex;align-items:center;gap:8px;width:110px;flex-shrink:0}.score-bar-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}.score-bar-name{font-size:13px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.score-bar-track{flex:1;height:8px;background:#ffffff0f;border-radius:4px;overflow:hidden;min-width:80px}.score-bar-fill{height:100%;border-radius:4px;transition:width .6s ease}.score-bar-value{display:flex;align-items:center;width:80px;flex-shrink:0;font-size:14px;font-weight:600;justify-content:flex-end}.competitor-legend{display:flex;align-items:center;gap:8px;flex-wrap:wrap;padding-top:16px;border-top:1px solid var(--surface-border);margin-top:16px}.competitor-chip{display:flex;align-items:center;gap:6px;padding:4px 12px;border-radius:20px;font-size:12px;border:1px solid var(--surface-border);cursor:pointer;transition:all .2s;-webkit-user-select:none;user-select:none}.competitor-chip.active{background:#ffffff0a;color:var(--text-primary)}.competitor-chip.inactive{background:transparent;color:var(--text-secondary);opacity:.5}.competitor-chip:hover{background:#ffffff0f}.competitor-chip-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.change-tag{display:inline-flex;align-items:center;padding:1px 8px;border-radius:4px;font-size:11px;font-weight:600;line-height:1.4;white-space:nowrap}.change-tag.positive{background:#10b98126;color:var(--success-color);border:1px solid rgba(16,185,129,.3)}.change-tag.negative{background:#ef444426;color:var(--danger-color);border:1px solid rgba(239,68,68,.3)}.change-tag.new{background:#0ea5e926;color:var(--accent-blue);border:1px solid rgba(14,165,233,.3)}.change-tag.lost{background:#ef44441a;color:var(--danger-color);border:1px solid rgba(239,68,68,.2)}.question-change-tags{display:inline-flex;gap:4px;margin-left:8px;vertical-align:middle}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.spin{animation:spin 1.5s linear infinite}.debug-toggle-btn{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:6px;border:1px solid rgba(139,92,246,.3);background:#8b5cf614;color:var(--accent-purple);cursor:pointer;transition:all .2s;flex-shrink:0}.debug-toggle-btn:hover{background:#8b5cf633;border-color:var(--accent-purple)}.debug-row td{border-top:none!important}.debug-panel{background:#0006;border:1px solid rgba(139,92,246,.15);border-radius:0 0 8px 8px;margin:0 8px 8px}.debug-meta{display:flex;gap:20px;flex-wrap:wrap;font-size:12px;color:var(--text-secondary);padding:8px 12px;background:#8b5cf60f;border-radius:6px}.debug-meta strong{color:var(--text-primary);margin-right:4px}.debug-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:var(--accent-purple);margin-bottom:6px}.debug-pre{font-family:SF Mono,Fira Code,Cascadia Code,monospace;font-size:12px;line-height:1.6;color:var(--text-secondary);background:#0000004d;border:1px solid var(--border-color);border-radius:6px;padding:12px;margin:0;white-space:pre-wrap;word-break:break-word;max-height:120px;overflow-y:auto}.debug-pre-response{max-height:300px;color:var(--text-primary)}.scan-progress-banner{display:flex;align-items:flex-start;gap:12px;padding:12px 16px;margin-bottom:16px;background:#0ea5e90d;border:1px solid rgba(14,165,233,.2);border-radius:10px}.scan-progress-bar{height:4px;background:#ffffff14;border-radius:2px;overflow:hidden}.scan-progress-fill{height:100%;background:linear-gradient(90deg,var(--accent-blue),var(--accent-purple));border-radius:2px;transition:width .5s ease}.report-page{background:#fff;color:#1a1a2e;min-height:100vh;font-family:Inter,Roboto,-apple-system,sans-serif;-webkit-font-smoothing:antialiased}.report-container{max-width:800px;margin:0 auto;padding:40px 32px}.report-header{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:24px;border-bottom:2px solid #e5e7eb;margin-bottom:32px}.report-brand{display:flex;align-items:center;gap:12px}.report-brand-icon{width:36px;height:36px}.report-brand-icon img{width:100%;height:100%;object-fit:contain}.report-brand-name{font-size:22px;font-weight:700;color:#1a1a2e}.report-brand-url{font-size:13px;color:#6b7280;margin-top:2px}.report-meta{text-align:right}.report-period{font-size:18px;font-weight:700;color:#0ea5e9}.report-generated{font-size:12px;color:#9ca3af;margin-top:4px}.report-section{margin-bottom:32px;page-break-inside:avoid}.report-section-title{font-size:16px;font-weight:700;color:#1a1a2e;margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid #e5e7eb;display:flex;align-items:center;gap:8px}.report-section-icon{color:#0ea5e9}.report-summary-description{font-size:14px;line-height:1.7;color:#4b5563;margin-bottom:20px;padding:16px 20px;background:#f0f9ff;border-left:3px solid #0ea5e9;border-radius:0 8px 8px 0}.report-summary-grid{display:grid;grid-template-columns:200px 1fr;gap:20px;align-items:center;margin-bottom:20px}.report-score-card{background:linear-gradient(135deg,#f0f9ff,#e0f2fe);border:1px solid #bae6fd;border-radius:12px;padding:24px;text-align:center}.report-score-value{font-size:48px;font-weight:800;color:#0ea5e9;line-height:1}.report-score-change{font-size:16px;font-weight:600;margin-top:4px}.report-score-change.positive{color:#10b981}.report-score-change.negative{color:#ef4444}.report-score-change.neutral{color:#9ca3af}.report-score-grade{font-size:13px;color:#6b7280;margin-top:8px;font-weight:500}.report-key-changes{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:20px}.report-key-changes h4{font-size:14px;font-weight:600;color:#374151;margin-bottom:12px}.report-change-item{display:flex;align-items:center;justify-content:space-between;padding:6px 0;font-size:14px;border-bottom:1px solid #f3f4f6}.report-change-item:last-child{border-bottom:none}.report-change-metric{color:#374151}.report-change-values{display:flex;align-items:center;gap:8px;font-weight:500}.report-change-arrow{color:#9ca3af}.report-change-delta{font-weight:600;min-width:40px;text-align:right}.report-change-delta.positive{color:#10b981}.report-change-delta.negative{color:#ef4444}.report-change-delta.neutral{color:#9ca3af}.report-actions{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:16px 20px}.report-action-item{display:flex;align-items:flex-start;gap:8px;padding:6px 0;font-size:14px;color:#374151}.report-action-icon{flex-shrink:0;margin-top:2px}.report-action-icon.completed{color:#10b981}.report-action-icon.suggestion{color:#0ea5e9}.report-score-bars{display:flex;flex-direction:column;gap:12px}.report-bar-row{display:flex;align-items:center;gap:12px}.report-bar-label{width:180px;font-size:14px;color:#374151;flex-shrink:0}.report-bar-track{flex:1;height:10px;background:#e5e7eb;border-radius:5px;overflow:hidden}.report-bar-fill{height:100%;border-radius:5px;transition:width .6s ease}.report-bar-fill.high{background:linear-gradient(to right,#0ea5e9,#8b5cf6)}.report-bar-fill.medium{background:linear-gradient(to right,#f59e0b,#f97316)}.report-bar-fill.low{background:linear-gradient(to right,#ef4444,#f97316)}.report-bar-value{width:50px;text-align:right;font-size:15px;font-weight:700;color:#1a1a2e}.report-bar-change{width:50px;text-align:right;font-size:13px;font-weight:600}.report-bar-change.positive{color:#10b981}.report-bar-change.negative{color:#ef4444}.report-bar-change.neutral{color:#9ca3af}.report-grade-badge{display:inline-block;margin-top:12px;padding:6px 16px;border-radius:20px;font-size:13px;font-weight:600}.report-grade-badge.high{background:#d1fae5;color:#065f46}.report-grade-badge.medium{background:#fef3c7;color:#92400e}.report-grade-badge.low{background:#fee2e2;color:#991b1b}.report-chart-container{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:20px}.report-table{width:100%;border-collapse:collapse;font-size:14px}.report-table th{padding:10px 12px;text-align:left;font-weight:600;color:#6b7280;border-bottom:2px solid #e5e7eb;font-size:13px}.report-table td{padding:10px 12px;border-bottom:1px solid #f3f4f6;color:#374151}.report-table tbody tr:hover{background:#f9fafb}.report-table .score-cell{font-weight:700}.report-mentioned-yes{color:#10b981;font-weight:500}.report-mentioned-no{color:#ef4444;font-weight:500}.report-question-group{margin-bottom:20px}.report-question-group-title{font-size:14px;font-weight:600;margin-bottom:10px;display:flex;align-items:center;gap:6px}.report-question-group-title.improved{color:#10b981}.report-question-group-title.declined{color:#ef4444}.report-question-item{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;font-size:13px;border-bottom:1px solid #f3f4f6}.report-question-item:last-child{border-bottom:none}.report-question-text{flex:1;color:#374151}.report-question-scores{display:flex;align-items:center;gap:8px;font-weight:500;color:#6b7280}.report-question-delta{font-weight:700;min-width:50px;text-align:right}.report-question-delta.positive{color:#10b981}.report-question-delta.negative{color:#ef4444}.report-coverage-bars{display:flex;flex-direction:column;gap:10px;margin-top:16px;padding-top:16px;border-top:1px solid #e5e7eb}.report-coverage-title{font-size:14px;font-weight:600;color:#374151;margin-bottom:4px}.report-coverage-row{display:flex;align-items:center;gap:12px}.report-coverage-label{width:140px;font-size:13px;color:#6b7280;flex-shrink:0}.report-coverage-track{flex:1;height:8px;background:#e5e7eb;border-radius:4px;overflow:hidden}.report-coverage-fill{height:100%;border-radius:4px;background:linear-gradient(to right,#0ea5e9,#8b5cf6)}.report-coverage-value{width:40px;text-align:right;font-size:13px;font-weight:600;color:#374151}.report-recommendations{display:flex;flex-direction:column;gap:12px}.report-rec-card{display:flex;gap:16px;padding:16px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px}.report-rec-icon{flex-shrink:0;width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px}.report-rec-icon.target{background:#dbeafe;color:#2563eb}.report-rec-icon.edit{background:#ede9fe;color:#7c3aed}.report-rec-icon.search{background:#d1fae5;color:#059669}.report-rec-content h4{font-size:14px;font-weight:600;color:#1a1a2e;margin-bottom:4px}.report-rec-content p{font-size:13px;color:#6b7280;line-height:1.5}.report-footer{margin-top:40px;padding-top:16px;border-top:1px solid #e5e7eb;text-align:center;color:#9ca3af;font-size:12px}.report-loading{display:flex;align-items:center;justify-content:center;min-height:100vh;background:#fff;color:#6b7280;font-size:16px}.report-floating-btns{position:fixed;bottom:24px;right:24px;display:flex;align-items:center;gap:8px;z-index:100}.report-theme-btn{padding:12px;background:#f3f4f6;color:#374151;border:1px solid #e5e7eb;border-radius:8px;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px #00000014;transition:background .2s,color .2s}.report-theme-btn:hover{background:#e5e7eb}.report-dark .report-theme-btn{background:#1e1e3a;color:#f59e0b;border-color:#333;box-shadow:0 2px 8px #0000004d}.report-dark .report-theme-btn:hover{background:#2a2a4a}.report-download-btn{padding:12px 24px;background:#8b5cf6;color:#fff;border:none;border-radius:8px;font-weight:600;font-size:14px;cursor:pointer;box-shadow:0 4px 12px #8b5cf64d;display:flex;align-items:center;gap:8px;transition:background .2s,opacity .2s}.report-download-btn:hover{background:#7c3aed}.report-download-btn:disabled{opacity:.6;cursor:not-allowed}.report-print-btn{padding:12px 24px;background:#0ea5e9;color:#fff;border:none;border-radius:8px;font-weight:600;font-size:14px;cursor:pointer;box-shadow:0 4px 12px #0ea5e94d;display:flex;align-items:center;gap:8px}.report-print-btn:hover{background:#0284c7}.report-dark.report-page{background:#0a0a1a;color:#e5e7eb}.report-dark .report-loading{background:#0a0a1a;color:#9ca3af}.report-dark .report-header{border-bottom-color:#1e1e3a}.report-dark .report-brand-name{color:#f1f5f9}.report-dark .report-brand-url{color:#9ca3af}.report-dark .report-section-title{color:#f1f5f9;border-bottom-color:#1e1e3a}.report-dark .report-summary-description{background:#0c1a2e;color:#d1d5db;border-left-color:#0ea5e9}.report-dark .report-score-card{background:linear-gradient(135deg,#0c1a2e,#0f1f3a);border-color:#1e3a5f}.report-dark .report-key-changes{background:#111127;border-color:#1e1e3a}.report-dark .report-key-changes h4{color:#d1d5db}.report-dark .report-change-item{border-bottom-color:#1e1e3a}.report-dark .report-change-metric{color:#d1d5db}.report-dark .report-change-arrow{color:#6b7280}.report-dark .report-actions{background:#111127;border-color:#1e1e3a}.report-dark .report-actions>div:first-child{color:#d1d5db!important}.report-dark .report-action-item,.report-dark .report-bar-label{color:#d1d5db}.report-dark .report-bar-track{background:#1e1e3a}.report-dark .report-bar-value{color:#f1f5f9}.report-dark .report-grade-badge.high{background:#064e3b;color:#6ee7b7}.report-dark .report-grade-badge.medium{background:#78350f;color:#fcd34d}.report-dark .report-grade-badge.low{background:#7f1d1d;color:#fca5a5}.report-dark .report-chart-container{background:#111127;border-color:#1e1e3a}.report-dark .report-table th{color:#9ca3af;border-bottom-color:#1e1e3a}.report-dark .report-table td{border-bottom-color:#1e1e3a;color:#d1d5db}.report-dark .report-table tbody tr:hover{background:#111127}.report-dark .report-question-item{border-bottom-color:#1e1e3a}.report-dark .report-question-text{color:#d1d5db}.report-dark .report-question-scores{color:#9ca3af}.report-dark .report-coverage-bars{border-top-color:#1e1e3a}.report-dark .report-coverage-title{color:#d1d5db}.report-dark .report-coverage-label{color:#9ca3af}.report-dark .report-coverage-track{background:#1e1e3a}.report-dark .report-coverage-value{color:#d1d5db}.report-dark .report-rec-card{background:#111127;border-color:#1e1e3a}.report-dark .report-rec-icon.target{background:#1e3a5f;color:#60a5fa}.report-dark .report-rec-icon.edit{background:#2e1065;color:#a78bfa}.report-dark .report-rec-icon.search{background:#064e3b;color:#6ee7b7}.report-dark .report-rec-content h4{color:#f1f5f9}.report-dark .report-rec-content p{color:#9ca3af}.report-dark .report-footer{border-top-color:#1e1e3a;color:#6b7280}.report-dark .report-score-grade{color:#9ca3af}.report-dark .report-question-group-title.improved{color:#34d399}.report-dark .report-question-group-title.declined{color:#f87171}@media print{@page{size:A4;margin:15mm}body{background:#fff!important;color:#1a1a2e!important}.report-page{background:#fff!important}.report-container{padding:0;max-width:100%}.report-floating-btns{display:none!important}.report-dark.report-page{background:#fff!important;color:#1a1a2e!important}.report-dark .report-header{border-bottom-color:#e5e7eb!important}.report-dark .report-brand-name{color:#1a1a2e!important}.report-dark .report-brand-url{color:#6b7280!important}.report-dark .report-section-title{color:#1a1a2e!important;border-bottom-color:#e5e7eb!important}.report-dark .report-summary-description{background:#f0f9ff!important;color:#4b5563!important;border-left-color:#0ea5e9!important}.report-dark .report-score-card{background:#f0f9ff!important;border-color:#bae6fd!important}.report-dark .report-key-changes{background:#f9fafb!important;border-color:#e5e7eb!important}.report-dark .report-key-changes h4{color:#374151!important}.report-dark .report-change-item{border-bottom-color:#f3f4f6!important}.report-dark .report-change-metric{color:#374151!important}.report-dark .report-actions{background:#f9fafb!important;border-color:#e5e7eb!important}.report-dark .report-actions>div:first-child{color:#374151!important}.report-dark .report-action-item,.report-dark .report-bar-label{color:#374151!important}.report-dark .report-bar-track{background:#e5e7eb!important}.report-dark .report-bar-value{color:#1a1a2e!important}.report-dark .report-grade-badge.high{background:#d1fae5!important;color:#065f46!important}.report-dark .report-grade-badge.medium{background:#fef3c7!important;color:#92400e!important}.report-dark .report-grade-badge.low{background:#fee2e2!important;color:#991b1b!important}.report-dark .report-chart-container{background:#f9fafb!important;border-color:#e5e7eb!important}.report-dark .report-table th{color:#6b7280!important;border-bottom-color:#e5e7eb!important}.report-dark .report-table td{border-bottom-color:#f3f4f6!important;color:#374151!important}.report-dark .report-table tbody tr:hover{background:#f9fafb!important}.report-dark .report-question-item{border-bottom-color:#f3f4f6!important}.report-dark .report-question-text{color:#374151!important}.report-dark .report-question-scores{color:#6b7280!important}.report-dark .report-coverage-bars{border-top-color:#e5e7eb!important}.report-dark .report-coverage-title{color:#374151!important}.report-dark .report-coverage-label{color:#6b7280!important}.report-dark .report-coverage-track{background:#e5e7eb!important}.report-dark .report-coverage-value{color:#374151!important}.report-dark .report-rec-card{background:#f9fafb!important;border-color:#e5e7eb!important}.report-dark .report-rec-icon.target{background:#dbeafe!important;color:#2563eb!important}.report-dark .report-rec-icon.edit{background:#ede9fe!important;color:#7c3aed!important}.report-dark .report-rec-icon.search{background:#d1fae5!important;color:#059669!important}.report-dark .report-rec-content h4{color:#1a1a2e!important}.report-dark .report-rec-content p{color:#6b7280!important}.report-dark .report-footer{border-top-color:#e5e7eb!important;color:#9ca3af!important}.report-dark .report-score-grade{color:#6b7280!important}.report-section,.report-chart-container{page-break-inside:avoid}.report-score-card{background:#f0f9ff!important;-webkit-print-color-adjust:exact;print-color-adjust:exact}.report-bar-fill,.report-coverage-fill,.report-rec-icon,.report-grade-badge{-webkit-print-color-adjust:exact;print-color-adjust:exact}}
