/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  min-height: 100vh;
  line-height: 1.6;
}

/* === HEADER === */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: #e2e8f0;
  font-weight: 700; font-size: 1rem;
}
.logo-icon { font-size: 1.3rem; }
.logo-text { background: linear-gradient(135deg, #a78bfa, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav { display: flex; gap: 4px; }
.nav-link {
  padding: 6px 16px; border-radius: 8px;
  color: #94a3b8; text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: #e2e8f0; background: rgba(139, 92, 246, 0.15); }

/* === MAIN LAYOUT === */
main { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }
.view { display: none; }
.view.active { display: block; }

/* === HERO === */
.hero { text-align: center; padding: 64px 0 40px; }
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3);
  color: #a78bfa; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px; color: #f1f5f9;
}
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  max-width: 600px; margin: 0 auto 36px;
  color: #94a3b8; font-size: 1.05rem; line-height: 1.7;
}

/* Stats bar */
.stats-bar {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 16px 32px; gap: 32px;
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 700; color: #a78bfa; }
.stat-label { font-size: 0.75rem; color: #64748b; font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

/* === SCANNER CARD === */
.scanner-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px;
  margin-bottom: 48px;
  position: relative; overflow: hidden;
}
.scanner-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #7c3aed, #3b82f6, #10b981);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; margin-bottom: 8px;
  font-size: 0.875rem; font-weight: 600; color: #cbd5e1;
}
.required { color: #f87171; }
.optional { color: #64748b; font-weight: 400; font-size: 0.8rem; }
.form-input, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: #e2e8f0;
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #475569; }
.char-count { text-align: right; font-size: 0.75rem; color: #475569; margin-top: 6px; font-family: 'JetBrains Mono', monospace; }

.btn-primary {
  width: 100%; padding: 16px 32px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border: none; border-radius: 12px;
  color: white; font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.btn-loading::before {
  content: ''; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.hidden { display: none !important; }
.disclaimer { text-align: center; margin-top: 14px; color: #475569; font-size: 0.8rem; }

/* === RECENT SCANS === */
.recent-section { margin-top: 8px; }
.section-label {
  font-size: 0.78rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.recent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.recent-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 16px 20px;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: block;
}
.recent-card:hover { border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.05); transform: translateY(-1px); }
.recent-role { font-weight: 600; color: #e2e8f0; font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-industry { font-size: 0.75rem; color: #64748b; margin-bottom: 10px; }
.recent-score-row { display: flex; align-items: center; justify-content: space-between; }
.risk-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
}
.recent-time { font-size: 0.72rem; color: #475569; }

/* === RESULTS PAGE === */
.results-header { padding: 40px 0 32px; }
.results-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #64748b; font-size: 0.875rem; cursor: pointer;
  margin-bottom: 20px; background: none; border: none; font-family: inherit;
  transition: color 0.2s; padding: 0;
}
.results-back:hover { color: #a78bfa; }
.results-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.results-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #f1f5f9; }
.industry-tag {
  display: inline-block; padding: 4px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8; font-size: 0.78rem; font-weight: 500;
}

/* Risk score summary */
.score-summary-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 40px;
  align-items: start; margin-bottom: 36px;
}
.main-gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gauge-label { font-size: 0.78rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* SVG Gauge */
.gauge-svg { overflow: visible; }
.gauge-bg-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 10; }
.gauge-fill-track { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.gauge-center-score { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2.4rem; fill: #f1f5f9; }
.gauge-center-label { font-family: 'Inter', sans-serif; font-size: 0.7rem; fill: #64748b; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* Summary text panel */
.summary-panel { padding-top: 4px; }
.risk-label-large {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; line-height: 1;
}
.summary-text { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.survival-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.survival-label { font-size: 0.8rem; color: #64748b; }
.survival-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.survival-bar { height: 100%; border-radius: 4px; transition: width 1s ease; }
.survival-pct { font-size: 0.85rem; font-weight: 700; color: #e2e8f0; min-width: 36px; }

/* Action buttons */
.action-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-roadmap {
  padding: 12px 24px; border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border: none; color: white; font-family: inherit; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.btn-roadmap:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35); }
.btn-share {
  padding: 12px 24px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #cbd5e1; font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-share:hover { background: rgba(255,255,255,0.09); }

/* Horizon cards */
.horizon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.horizon-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px; position: relative; overflow: hidden;
}
.horizon-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.horizon-label { font-size: 0.75rem; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.horizon-score { font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.horizon-risk-label { font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; }
.horizon-headline { font-size: 0.82rem; color: #94a3b8; margin-bottom: 16px; line-height: 1.5; }
.threat-list, .moat-list { list-style: none; font-size: 0.8rem; margin-bottom: 12px; }
.threat-list-label, .moat-list-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; margin-bottom: 6px; }
.threat-list li { padding: 3px 0; color: #94a3b8; display: flex; align-items: flex-start; gap: 6px; }
.threat-list li::before { content: '⚠'; font-size: 0.7rem; margin-top: 2px; flex-shrink: 0; }
.moat-list li { padding: 3px 0; color: #94a3b8; display: flex; align-items: flex-start; gap: 6px; }
.moat-list li::before { content: '✓'; color: #34d399; font-size: 0.75rem; margin-top: 1px; flex-shrink: 0; }

/* Task breakdown */
.section-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px; margin-bottom: 24px;
}
.section-title { font-size: 1.05rem; font-weight: 700; color: #e2e8f0; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.section-icon { font-size: 1.1rem; }
.task-item { margin-bottom: 18px; }
.task-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.task-name { font-size: 0.875rem; color: #cbd5e1; font-weight: 500; }
.task-meta { display: flex; align-items: center; gap: 10px; }
.task-prob { font-size: 0.82rem; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.task-timeline { font-size: 0.72rem; color: #475569; padding: 2px 8px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.task-bar-wrap { height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.task-bar { height: 100%; border-radius: 4px; transition: width 1s ease; }

/* Comparable roles */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.compare-safer h4 { color: #34d399; }
.compare-riskier h4 { color: #f87171; }
.compare-role-tag {
  display: inline-block; margin: 3px 4px 3px 0;
  padding: 4px 12px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.compare-safer .compare-role-tag { background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.2); color: #34d399; }
.compare-safer .compare-role-tag:hover { background: rgba(52, 211, 153, 0.2); }
.compare-riskier .compare-role-tag { background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.2); color: #f87171; }

/* Moat & risk factors */
.factor-list { list-style: none; }
.factor-list li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: #94a3b8; }
.factor-list li:last-child { border-bottom: none; }

/* Displacement scenario */
.scenario-box {
  background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px; padding: 20px;
  font-size: 0.9rem; color: #c4b5fd; line-height: 1.7; font-style: italic;
}

/* === ROADMAP PAGE === */
.roadmap-page { padding: 32px 0; }
.roadmap-hero { margin-bottom: 36px; }
.roadmap-subtitle { font-size: 1rem; color: #64748b; margin-top: 8px; }
.strategy-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.25); border-radius: 16px;
  padding: 28px; margin-bottom: 36px;
}
.strategy-headline { font-size: 1.3rem; font-weight: 800; color: #a78bfa; margin-bottom: 10px; }
.strategy-text { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }

/* Phase cards */
.phases-wrap { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.phase-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
}
.phase-header {
  padding: 20px 28px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phase-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
}
.phase-info {}
.phase-title { font-weight: 700; font-size: 1rem; color: #e2e8f0; }
.phase-duration { font-size: 0.78rem; color: #64748b; }
.phase-theme { font-size: 0.85rem; color: #94a3b8; margin-left: auto; font-style: italic; }
.phase-body { padding: 20px 28px; }
.action-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.action-item:last-child { border-bottom: none; }
.action-main {}
.action-text { font-size: 0.9rem; font-weight: 600; color: #e2e8f0; margin-bottom: 4px; }
.action-resource { font-size: 0.78rem; color: #60a5fa; margin-bottom: 4px; }
.action-resource::before { content: '📚 '; }
.action-outcome { font-size: 0.78rem; color: #64748b; font-style: italic; }
.action-hours { text-align: right; font-size: 0.78rem; color: #475569; white-space: nowrap; }
.action-hours span { display: block; font-size: 0.9rem; font-weight: 700; color: #a78bfa; }
.phase-milestone {
  margin-top: 16px; padding: 12px 16px; border-radius: 10px;
  background: rgba(52, 211, 153, 0.08); border: 1px solid rgba(52, 211, 153, 0.15);
  font-size: 0.82rem; color: #34d399;
}
.phase-milestone::before { content: '🎯 Milestone: '; font-weight: 700; }

/* Skill priorities */
.skill-item { margin-bottom: 18px; }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.skill-name { font-size: 0.875rem; font-weight: 600; color: #e2e8f0; }
.skill-urgency { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.urgency-immediate { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.urgency-high { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.urgency-medium { background: rgba(234, 179, 8, 0.12); color: #facc15; }
.urgency-low { background: rgba(100, 116, 139, 0.15); color: #94a3b8; }
.skill-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.skill-bar-row { }
.skill-bar-label { font-size: 0.7rem; color: #475569; margin-bottom: 3px; }
.skill-bar-wrap { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.skill-bar-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.skill-resource { font-size: 0.75rem; color: #60a5fa; margin-top: 4px; }

/* Career pivots */
.pivot-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px; margin-bottom: 14px;
}
.pivot-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pivot-title { font-size: 1rem; font-weight: 700; color: #e2e8f0; }
.pivot-overlap { font-size: 0.78rem; color: #34d399; font-weight: 700; }
.pivot-meta { font-size: 0.8rem; color: #64748b; margin-bottom: 8px; }
.pivot-why { font-size: 0.82rem; color: #94a3b8; line-height: 1.5; margin-bottom: 10px; }
.pivot-gaps { display: flex; flex-wrap: wrap; gap: 6px; }
.gap-tag { padding: 3px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 500; background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.2); color: #fca5a5; }

/* Quick wins */
.quick-wins-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.quick-win-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 14px; background: rgba(255,255,255,0.03); border-radius: 10px; font-size: 0.875rem; color: #cbd5e1; }
.quick-win-item::before { content: '⚡'; flex-shrink: 0; margin-top: 1px; }

/* Weekly commitment */
.commitment-banner {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 14px; margin-bottom: 28px;
}
.commitment-hours { font-size: 2.5rem; font-weight: 800; color: #a78bfa; }
.commitment-text { font-size: 0.9rem; color: #94a3b8; }
.commitment-text strong { color: #e2e8f0; }

/* === HISTORY PAGE === */
.page-header { padding: 40px 0 28px; }
.page-title { font-size: 1.8rem; font-weight: 800; color: #f1f5f9; }
.page-subtitle { color: #64748b; margin-top: 4px; }
.history-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.history-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px; cursor: pointer;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.history-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.history-card:hover { border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.04); transform: translateY(-1px); }
.history-role { font-size: 1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.history-industry { font-size: 0.78rem; color: #64748b; margin-bottom: 14px; }
.history-score-row { display: flex; align-items: center; justify-content: space-between; }
.history-score-num { font-size: 1.8rem; font-weight: 800; }
.history-time { font-size: 0.72rem; color: #475569; }

/* === LOADING OVERLAY === */
.loading-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.loading-card {
  text-align: center; padding: 48px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px;
  max-width: 360px; width: 90%;
}
.loading-spinner {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.08); border-top-color: #7c3aed;
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
.loading-title { font-size: 1.1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 8px; }
.loading-sub { font-size: 0.85rem; color: #64748b; line-height: 1.5; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === TOASTS === */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  padding: 14px 20px; border-radius: 12px; max-width: 360px;
  font-size: 0.875rem; font-weight: 500;
  animation: slideIn 0.3s ease; border: 1px solid;
}
.toast-success { background: rgba(52, 211, 153, 0.12); border-color: rgba(52, 211, 153, 0.25); color: #6ee7b7; }
.toast-error { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.25); color: #fca5a5; }
.toast-info { background: rgba(96, 165, 250, 0.12); border-color: rgba(96, 165, 250, 0.25); color: #93c5fd; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* === EMPTY STATES === */
.empty-state { text-align: center; padding: 60px 0; color: #475569; }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 14px; }
.empty-state p { font-size: 0.9rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .score-summary-grid { grid-template-columns: 1fr; }
  .horizon-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .skill-bars { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 16px; text-align: center; }
  .stat-divider { width: 80px; height: 1px; }
  .scanner-card { padding: 24px; }
  .action-row { flex-direction: column; }
  .btn-roadmap, .btn-share { width: 100%; }
}

/* Risk color utilities */
.risk-critical { color: #ef4444; }
.risk-high { color: #f97316; }
.risk-medium { color: #eab308; }
.risk-low { color: #22c55e; }
.risk-minimal { color: #06b6d4; }
.bg-critical { background-color: #ef4444; }
.bg-high { background-color: #f97316; }
.bg-medium { background-color: #eab308; }
.bg-low { background-color: #22c55e; }
.bg-minimal { background-color: #06b6d4; }
