File size: 3,579 Bytes
7b4f5dd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* ═══════════════════════════════════════════════════════════════
   AnalysisView.css β€” Premium Polish Pass
   ═══════════════════════════════════════════════════════════════ */

.analysis-view {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ── Header ────────────────────────────────────────────────── */
.header-center {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.scan-status-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-primary);
}

.elapsed-time {
  color: var(--cyan);
  font-size: 0.85rem;
  padding: 4px 12px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

/* ── Panels ────────────────────────────────────────────────── */
.agents-panel {
  padding: var(--space-md);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-right: 1px solid var(--border-primary);
  background: rgba(13, 18, 37, 0.4);
}

.findings-panel {
  padding: var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.03), transparent 40%);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-primary);
}

.panel-header h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ── Live Stats ────────────────────────────────────────────── */
.live-stats {
  padding: var(--space-lg);
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.live-stats-header {
  margin-bottom: var(--space-lg);
}

.stats-grid {
  gap: var(--space-md);
}

.live-stat-value {
  font-size: 1.5rem;
  text-shadow: 0 0 10px currentColor;
}

/* ── Findings Feed ─────────────────────────────────────────── */
.findings-feed {
  gap: var(--space-md);
}

.finding-card {
  border-left: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.finding-card:hover {
  transform: translateX(4px);
  border-left-color: var(--cyan);
}

/* ── Completion Banner ─────────────────────────────────────── */
.completion-banner {
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.05), transparent);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}