husseinelsaadi Claude Opus 4.8 commited on
Commit
0334723
·
1 Parent(s): 905dc3f

Implement Claude Design homepage redesign (preview/index_preview.html)

Browse files

- theme.css: full premium design system (rotating LUNA halo, float-chip anim,
data-reveal, dashboard/tips/application styling)
- index.html: hero copy refinements to match the approved preview
- base.html: additive scroll-reveal IntersectionObserver

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

backend/static/css/theme.css CHANGED
@@ -1,312 +1,570 @@
1
  /* =====================================================================
2
  Codingo — Premium design system (theme.css)
3
- Single source of truth for the new look. Linked AFTER the legacy inline
4
- <style> in base.html so these rules win and cascade across every page.
5
- Direction: premium light product + cinematic dark hero/navbar/footer.
 
 
 
 
6
  ===================================================================== */
7
 
8
  :root {
9
  /* Brand */
10
- --brand-1: #6366f1; /* indigo */
11
- --brand-2: #8b5cf6; /* violet */
12
- --spark: #22d3ee; /* cyan accent */
13
- --grad: linear-gradient(135deg, var(--brand-1), var(--brand-2));
14
- --grad-soft: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.12));
15
-
16
- /* Neutrals (light product surface) */
17
- --bg: #f5f6fb;
18
- --surface: #ffffff;
19
- --ink: #0b1020;
20
- --muted: #5b6478;
21
- --line: #e7e9f2;
22
-
23
- /* Night (hero / navbar / footer) */
24
- --night: #0b1020;
25
- --night-2: #141a2e;
26
-
27
- /* Radius + shadow + spacing scale */
28
- --r-sm: 12px;
 
 
 
 
29
  --r: 18px;
30
- --r-lg: 26px;
31
- --shadow-sm: 0 2px 8px rgba(13, 20, 40, .06);
32
- --shadow: 0 12px 30px rgba(13, 20, 40, .08);
33
- --shadow-lg: 0 24px 60px rgba(13, 20, 40, .14);
34
 
35
- /* Legacy variable names remapped so existing rules adopt the new palette */
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  --primary: #6366f1;
37
  --secondary: #8b5cf6;
38
- --accent: #22d3ee;
39
- --light: #f5f6fb;
40
- --dark: #0b1020;
 
 
 
 
41
  }
42
 
43
  /* ---- Typography ---------------------------------------------------- */
44
  * { font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
45
- h1, h2, h3, .logo, .section-title h2, .hero h1, .cta h2 {
 
46
  font-family: 'Space Grotesk', 'Inter', sans-serif;
47
- letter-spacing: -0.02em;
 
48
  }
49
  body {
50
- background: var(--bg);
 
 
 
51
  color: var(--ink);
52
  -webkit-font-smoothing: antialiased;
53
  text-rendering: optimizeLegibility;
54
  }
 
 
 
 
 
 
55
 
56
- /* ---- Glass navbar (dark, keeps white nav buttons working) --------- */
 
 
57
  header {
58
- background: rgba(255, 255, 255, .8) !important;
59
- -webkit-backdrop-filter: saturate(180%) blur(14px);
60
- backdrop-filter: saturate(180%) blur(14px);
61
- border-bottom: 1px solid var(--line) !important;
62
- box-shadow: 0 1px 0 rgba(13, 20, 40, .04), 0 8px 24px rgba(13, 20, 40, .04) !important;
63
- padding: .85rem 1rem !important;
 
 
 
 
64
  color: var(--ink) !important;
65
  }
66
- .logo, .logo-part1 { font-weight: 700; color: var(--ink) !important; }
 
 
 
 
 
 
 
 
67
  .logo-part2 { color: var(--brand-1) !important; font-style: normal; animation: none; text-shadow: none; }
68
  .logo-part3 { color: var(--brand-2) !important; }
69
- .welcome-message { background: rgba(99, 102, 241, .08) !important; color: var(--ink) !important; border-radius: 999px; }
 
 
 
 
 
70
 
71
- /* ---- Buttons ------------------------------------------------------- */
 
 
72
  .btn {
73
- border-radius: 999px !important;
74
- font-weight: 600;
75
- letter-spacing: .01em;
76
- padding: .6rem 1.4rem !important;
 
 
 
 
 
77
  }
 
78
  .btn-primary {
79
  background: var(--grad) !important;
80
  color: #fff !important;
81
- box-shadow: 0 10px 24px rgba(99, 102, 241, .35) !important;
 
82
  }
83
- .btn-primary:hover { box-shadow: 0 14px 30px rgba(99, 102, 241, .45) !important; }
 
84
  .btn-outline {
85
- background: var(--surface) !important;
86
  border: 1.5px solid var(--line) !important;
87
  color: var(--ink) !important;
 
88
  }
89
- .btn-outline:hover { background: #f0f1fb !important; border-color: rgba(99, 102, 241, .4) !important; }
90
  .btn-logout {
91
  background: transparent !important;
92
- border: 1.5px solid rgba(99, 102, 241, .45) !important;
93
  color: var(--brand-1) !important;
94
- border-radius: 999px !important;
 
95
  }
96
- .btn-logout:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent !important; }
 
97
 
98
- /* ---- Light hero with soft color mesh + subtle dot texture --------- */
 
 
99
  .hero {
100
  position: relative;
101
  background:
102
- radial-gradient(620px 320px at 14% 12%, rgba(99, 102, 241, .18), transparent 60%),
103
- radial-gradient(560px 300px at 86% 6%, rgba(34, 211, 238, .16), transparent 60%),
104
- radial-gradient(720px 400px at 50% 120%, rgba(139, 92, 246, .18), transparent 60%),
105
- linear-gradient(180deg, #fbfbff 0%, #edf0fe 100%) !important;
106
  color: var(--ink) !important;
107
- padding: 5rem 1rem 5.5rem !important;
108
  border-bottom: 1px solid var(--line);
109
  overflow: hidden;
110
  }
111
- /* faint dot grid for a subtle "tech" texture, masked so it fades out */
112
  .hero::before {
113
- display: block !important;
114
- content: '' !important;
115
- position: absolute !important;
116
- top: 0 !important; left: 0 !important;
117
  width: 100% !important; height: 100% !important;
118
- background: radial-gradient(rgba(99, 102, 241, .14) 1px, transparent 1.5px) !important;
119
- background-size: 24px 24px !important;
120
- -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 5%, #000 35%, transparent 80%);
121
- mask-image: radial-gradient(ellipse 75% 65% at 50% 5%, #000 35%, transparent 80%);
122
- animation: none !important;
123
- z-index: 0 !important;
124
- pointer-events: none !important;
125
- }
126
- .hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem) !important; font-weight: 700; color: var(--ink) !important; }
127
- .hero p { color: var(--muted) !important; font-size: 1.15rem !important; }
128
-
129
- /* LUNA avatar soft, warm color halo (tasteful, not a light show) */
130
- .luna-avatar { border: 4px solid #ffffff !important;
131
- box-shadow: 0 18px 45px rgba(13, 20, 40, .16), 0 0 0 1px var(--line) !important; }
132
- .luna-glow { background: radial-gradient(circle, rgba(139, 92, 246, .42) 0%, rgba(34, 211, 238, .16) 45%, transparent 72%) !important;
133
- opacity: .85 !important; filter: blur(20px) !important; }
134
-
135
- /* Eyebrow chip — tasteful brand accent on light */
136
- .eyebrow {
137
- display: inline-flex; align-items: center; gap: .5rem;
138
- padding: .4rem 1rem; margin-bottom: 1.25rem;
139
- border-radius: 999px; font-size: .85rem; font-weight: 600;
140
- color: var(--brand-1); background: var(--grad-soft);
141
- border: 1px solid rgba(99, 102, 241, .2);
142
  }
143
- .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-1);
144
- animation: pulse 2s ease-in-out infinite alternate; }
 
 
 
 
 
 
 
145
 
146
- /* Gradient accent for the LUNA wordmark in the hero headline */
147
- .grad-text {
148
- background: var(--grad);
149
- -webkit-background-clip: text;
150
- background-clip: text;
151
- -webkit-text-fill-color: transparent;
152
- color: transparent;
 
153
  }
 
 
154
 
155
- /* Hero stage — holds the avatar plus floating "live" status chips */
156
- .hero-stage {
157
  position: relative;
158
- display: inline-flex;
159
- justify-content: center;
160
- margin-bottom: 1.75rem;
 
161
  }
162
- .float-chip {
163
- position: absolute;
164
- display: inline-flex;
165
- align-items: center;
166
- gap: .45rem;
167
- padding: .5rem .9rem;
168
- border-radius: 999px;
169
- font-size: .82rem;
170
- font-weight: 600;
171
- color: var(--ink);
172
- background: rgba(255, 255, 255, .85);
173
- -webkit-backdrop-filter: saturate(160%) blur(10px);
174
- backdrop-filter: saturate(160%) blur(10px);
175
- border: 1px solid var(--line);
176
- box-shadow: var(--shadow);
177
- white-space: nowrap;
178
- z-index: 3;
179
- animation: chipFloat 4s ease-in-out infinite;
180
  }
181
- .float-chip .ico { font-size: 1rem; line-height: 1; }
182
- .float-chip.tl { top: 8px; left: -36px; }
183
- .float-chip.br { bottom: 8px; right: -44px; animation-delay: 2s; }
184
-
185
- @keyframes chipFloat {
186
- 0%, 100% { transform: translateY(0); }
187
- 50% { transform: translateY(-9px); }
 
 
 
188
  }
 
 
 
 
 
 
 
 
 
 
189
 
190
- @media (max-width: 560px) {
191
- .float-chip.tl { left: -8px; }
192
- .float-chip.br { right: -8px; }
 
 
 
 
 
 
 
193
  }
 
 
 
 
 
 
 
194
 
195
- /* ---- Sections / titles -------------------------------------------- */
 
 
196
  .content-section, .features {
197
  background:
198
- radial-gradient(700px 320px at 88% 0%, rgba(99, 102, 241, .07), transparent 60%),
199
- radial-gradient(620px 300px at 6% 100%, rgba(34, 211, 238, .06), transparent 60%),
200
- var(--bg) !important;
 
201
  }
202
- .section-title h2 { color: var(--ink) !important; font-size: 2.3rem !important; }
203
- .section-title h2::after { background: var(--grad) !important; height: 4px !important; border-radius: 4px; }
204
- .section-title p { color: var(--muted) !important; font-size: 1.05rem; }
 
205
 
206
- /* ---- Cards (premium light) ---------------------------------------- */
 
 
207
  .feature-card, .card, .job-card {
208
  background: var(--surface) !important;
209
  border: 1px solid var(--line) !important;
210
- border-radius: var(--r) !important;
211
  box-shadow: var(--shadow-sm) !important;
212
- transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
 
213
  }
214
- .feature-card:hover, .card:hover, .job-card:hover {
215
  transform: translateY(-8px) !important;
216
  box-shadow: var(--shadow-lg) !important;
217
- border-color: rgba(99, 102, 241, .35) !important;
218
  }
 
 
 
 
219
  .feature-icon {
220
  background: var(--grad-soft) !important;
221
- font-size: 2.2rem !important;
222
- color: var(--brand-1) !important;
 
 
 
 
223
  }
224
- .feature-content h3 { color: var(--ink) !important; }
225
- .feature-content h3::after { background: var(--grad) !important; }
 
 
 
226
 
227
- /* Job card headers adopt the brand gradient */
228
- .job-header, .card-header { background: var(--grad) !important; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
 
230
- /* ---- CTA band — the single, tasteful gradient moment -------------- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  .cta {
232
- background: linear-gradient(135deg, var(--brand-1), var(--brand-2)) !important;
 
 
 
 
 
 
 
233
  }
234
- .cta h2, .cta p { color: #fff !important; }
 
 
 
 
235
 
236
- /* ---- Footer (light) ----------------------------------------------- */
237
- footer { background: var(--surface) !important; color: var(--muted) !important; border-top: 1px solid var(--line); }
238
- .footer-col p { color: var(--muted) !important; }
239
- .footer-col h3 { color: var(--ink) !important; }
 
 
240
  .footer-col h3::after { background: var(--grad) !important; }
241
- .footer-col a { color: var(--muted) !important; }
242
  .footer-col a:hover { color: var(--brand-1) !important; }
243
- .social-links a { background: var(--bg) !important; color: var(--ink) !important; border: 1px solid var(--line); }
244
- .social-links a:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent; }
245
- .copyright { color: var(--muted) !important; border-top: 1px solid var(--line) !important; }
246
 
247
- /* ---- Floating chatbot button -------------------------------------- */
248
- #chatbot-nav { background: var(--grad) !important; box-shadow: 0 10px 26px rgba(99, 102, 241, .5) !important; }
249
- #chatbot-nav:hover { transform: scale(1.08) !important; }
250
- #chat-messages .user-bubble { background: var(--grad) !important; }
 
 
 
 
251
 
252
  /* =====================================================================
253
- "How it works" animated pipeline (used on the landing page)
254
- Pure CSS reveal — auto-plays on load, films beautifully.
255
  ===================================================================== */
256
- .pipeline { background: linear-gradient(180deg, #fff, var(--bg)); padding: 5rem 1rem; }
257
- .pipe-track {
258
- display: grid;
259
- grid-template-columns: repeat(5, 1fr);
260
- gap: 1rem;
261
- max-width: 1100px;
262
- margin: 0 auto;
263
- position: relative;
 
 
 
 
 
 
 
264
  }
 
265
  .pipe-track::before {
266
- content: ''; position: absolute; top: 46px; left: 8%; right: 8%; height: 3px;
267
- background: linear-gradient(90deg, rgba(99,102,241,.15), rgba(139,92,246,.5), rgba(34,211,238,.15));
268
  border-radius: 3px; z-index: 0;
269
  }
270
- .pipe-step {
271
- position: relative; z-index: 1; text-align: center; padding: 0 .5rem;
272
- opacity: 0; transform: translateY(18px);
273
- animation: pipeReveal .7s ease forwards;
274
- }
275
  .pipe-step:nth-child(1) { animation-delay: .15s; }
276
  .pipe-step:nth-child(2) { animation-delay: .40s; }
277
  .pipe-step:nth-child(3) { animation-delay: .65s; }
278
  .pipe-step:nth-child(4) { animation-delay: .90s; }
279
  .pipe-step:nth-child(5) { animation-delay: 1.15s; }
280
  .pipe-node {
281
- width: 92px; height: 92px; margin: 0 auto 1.1rem; border-radius: 24px;
282
- display: grid; place-items: center; font-size: 2.1rem;
283
- color: #fff; background: var(--grad);
284
- box-shadow: 0 14px 30px rgba(99, 102, 241, .35);
285
- position: relative;
286
  }
287
- .pipe-node::after {
288
- content: ''; position: absolute; inset: -6px; border-radius: 28px;
289
- border: 2px solid rgba(139, 92, 246, .4);
290
- animation: pipeHalo 2.4s ease-in-out infinite;
291
- }
292
- .pipe-step:nth-child(even) .pipe-node::after { animation-delay: 1.2s; }
293
- .pipe-step h4 { font-family: 'Space Grotesk', sans-serif; color: var(--ink); margin-bottom: .4rem; font-size: 1.05rem; }
294
- .pipe-step p { color: var(--muted); font-size: .92rem; line-height: 1.45; }
295
- .pipe-num {
296
- display: inline-block; font-size: .75rem; font-weight: 700; color: var(--brand-1);
297
- background: var(--grad-soft); border-radius: 999px; padding: .15rem .7rem; margin-bottom: .8rem;
298
- }
299
-
300
  @keyframes pipeReveal { to { opacity: 1; transform: translateY(0); } }
301
- @keyframes pipeHalo {
302
- 0%, 100% { transform: scale(1); opacity: .5; }
303
- 50% { transform: scale(1.08); opacity: 0; }
304
- }
305
 
 
 
 
 
 
 
306
  @media (max-width: 860px) {
307
- .pipe-track { grid-template-columns: 1fr 1fr; }
308
  .pipe-track::before { display: none; }
309
  }
 
 
 
 
 
 
310
  @media (max-width: 480px) {
311
  .pipe-track { grid-template-columns: 1fr; }
 
312
  }
 
1
  /* =====================================================================
2
  Codingo — Premium design system (theme.css)
3
+ Single source of truth for the product's visual layer. Linked AFTER the
4
+ legacy inline <style> in base.html so these rules win and cascade across
5
+ every page.
6
+
7
+ Direction: premium, light & bright SaaS surface (Linear / Stripe / Vercel
8
+ energy) — layered color-mesh backgrounds, hairline borders, soft depth,
9
+ one confident brand gradient used as an accent. LUNA is the hero.
10
  ===================================================================== */
11
 
12
  :root {
13
  /* Brand */
14
+ --brand-1: #6366f1; /* indigo */
15
+ --brand-2: #8b5cf6; /* violet */
16
+ --brand-3: #a855f7; /* magenta-violet (deep gradient stop) */
17
+ --spark: #22d3ee; /* cyan accent — used sparingly */
18
+ --grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 55%, #a855f7 100%);
19
+ --grad-bright: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #22d3ee 100%);
20
+ --grad-soft: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.12));
21
+
22
+ /* Neutrals — cool light product surface */
23
+ --bg: #f4f5fb;
24
+ --bg-2: #eef0fb;
25
+ --surface: #ffffff;
26
+ --surface-2: #fbfbfe;
27
+ --ink: #0c1124;
28
+ --ink-soft: #2a3052;
29
+ --muted: #5e6781;
30
+ --muted-2: #8b92ab;
31
+ --line: #e7e9f4;
32
+ --line-2: #eef0f8;
33
+
34
+ /* Radius scale */
35
+ --r-xs: 10px;
36
+ --r-sm: 14px;
37
  --r: 18px;
38
+ --r-lg: 24px;
39
+ --r-xl: 30px;
40
+ --r-pill: 999px;
 
41
 
42
+ /* Shadow scale soft, layered, low-contrast */
43
+ --shadow-xs: 0 1px 2px rgba(12,17,36,.05);
44
+ --shadow-sm: 0 2px 10px rgba(12,17,36,.06);
45
+ --shadow: 0 14px 34px rgba(12,17,36,.09);
46
+ --shadow-lg: 0 28px 64px rgba(12,17,36,.14);
47
+ --shadow-brand: 0 14px 30px rgba(99,102,241,.30);
48
+ --ring: 0 0 0 4px rgba(99,102,241,.18);
49
+
50
+ /* Status */
51
+ --success: #16a34a;
52
+ --warning: #d97706;
53
+ --danger: #dc2626;
54
+
55
+ /* Legacy variable names remapped so existing inline rules adopt the new palette */
56
  --primary: #6366f1;
57
  --secondary: #8b5cf6;
58
+ --accent: #6366f1;
59
+ --light: #f4f5fb;
60
+ --dark: #0c1124;
61
+ }
62
+
63
+ @media (prefers-reduced-motion: reduce) {
64
+ * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
65
  }
66
 
67
  /* ---- Typography ---------------------------------------------------- */
68
  * { font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
69
+ h1, h2, h3, h4, .logo, .section-title h2, .hero h1, .hero h2, .cta h2,
70
+ .card-header h2, .pipe-step h4 {
71
  font-family: 'Space Grotesk', 'Inter', sans-serif;
72
+ letter-spacing: -0.025em;
73
+ line-height: 1.12;
74
  }
75
  body {
76
+ background:
77
+ radial-gradient(900px 520px at 88% -8%, rgba(99,102,241,.06), transparent 60%),
78
+ radial-gradient(820px 520px at 4% 8%, rgba(34,211,238,.045), transparent 55%),
79
+ var(--bg);
80
  color: var(--ink);
81
  -webkit-font-smoothing: antialiased;
82
  text-rendering: optimizeLegibility;
83
  }
84
+ a { color: var(--brand-1); }
85
+ ::selection { background: rgba(99,102,241,.18); }
86
+
87
+ /* Scroll-reveal utility (progressive enhancement, see base.html observer) */
88
+ [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); will-change: opacity, transform; }
89
+ [data-reveal].is-in { opacity: 1; transform: none; }
90
 
91
+ /* =====================================================================
92
+ Navbar — clean light glass bar
93
+ ===================================================================== */
94
  header {
95
+ background:
96
+ radial-gradient(560px 80px at 8% 0%, rgba(99,102,241,.10), transparent 70%),
97
+ radial-gradient(460px 80px at 92% 0%, rgba(34,211,238,.08), transparent 70%),
98
+ rgba(255,255,255,.94) !important;
99
+ -webkit-backdrop-filter: saturate(150%) blur(16px);
100
+ backdrop-filter: saturate(150%) blur(16px);
101
+ border-bottom: 2.5px solid transparent !important;
102
+ border-image: linear-gradient(90deg, #6366f1, #8b5cf6 50%, #22d3ee) 1 !important;
103
+ box-shadow: 0 8px 24px rgba(99,102,241,.10) !important;
104
+ padding: .8rem 1rem !important;
105
  color: var(--ink) !important;
106
  }
107
+ .nav-container { gap: 1rem; }
108
+ .logo { font-size: 1.7rem !important; font-weight: 700; color: var(--ink) !important; gap: .55rem; }
109
+ .logo::before {
110
+ content: ""; width: 30px; height: 30px; border-radius: 9px;
111
+ background: var(--grad); box-shadow: var(--shadow-brand);
112
+ -webkit-mask: none; flex: 0 0 auto; display: inline-block;
113
+ position: relative;
114
+ }
115
+ .logo .logo-part1 { color: var(--ink) !important; }
116
  .logo-part2 { color: var(--brand-1) !important; font-style: normal; animation: none; text-shadow: none; }
117
  .logo-part3 { color: var(--brand-2) !important; }
118
+ .welcome-message {
119
+ background: rgba(99,102,241,.08) !important; color: var(--ink-soft) !important;
120
+ border-radius: var(--r-pill); border: 1px solid rgba(99,102,241,.14);
121
+ font-weight: 600; font-size: .92rem;
122
+ }
123
+ .welcome-message:before { content: ''; margin-right: .15rem; }
124
 
125
+ /* =====================================================================
126
+ Buttons
127
+ ===================================================================== */
128
  .btn {
129
+ border-radius: var(--r-pill) !important;
130
+ font-weight: 600 !important;
131
+ letter-spacing: .005em;
132
+ padding: .62rem 1.45rem !important;
133
+ font-size: .96rem;
134
+ transition: transform .25s cubic-bezier(.16,.84,.44,1), box-shadow .25s, background-color .25s, border-color .25s, color .25s !important;
135
+ border: 1.5px solid transparent;
136
+ display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
137
+ line-height: 1.1;
138
  }
139
+ .btn::before { display: none !important; }
140
  .btn-primary {
141
  background: var(--grad) !important;
142
  color: #fff !important;
143
+ box-shadow: var(--shadow-brand) !important;
144
+ border-color: transparent !important;
145
  }
146
+ .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 18px 38px rgba(99,102,241,.42) !important; }
147
+ .btn-primary:active { transform: translateY(0) !important; }
148
  .btn-outline {
149
+ background: rgba(255,255,255,.7) !important;
150
  border: 1.5px solid var(--line) !important;
151
  color: var(--ink) !important;
152
+ -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
153
  }
154
+ .btn-outline:hover { background: #fff !important; border-color: rgba(99,102,241,.45) !important; color: var(--brand-1) !important; transform: translateY(-2px) !important; box-shadow: var(--shadow-sm) !important; }
155
  .btn-logout {
156
  background: transparent !important;
157
+ border: 1.5px solid rgba(99,102,241,.4) !important;
158
  color: var(--brand-1) !important;
159
+ border-radius: var(--r-pill) !important;
160
+ padding: .55rem 1.3rem !important; font-weight: 600 !important;
161
  }
162
+ .btn-logout:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent !important; transform: translateY(-2px) !important; box-shadow: var(--shadow-brand) !important; }
163
+ .btn:focus-visible { outline: none; box-shadow: var(--ring) !important; }
164
 
165
+ /* =====================================================================
166
+ Hero — light color-mesh stage with LUNA as centerpiece
167
+ ===================================================================== */
168
  .hero {
169
  position: relative;
170
  background:
171
+ radial-gradient(680px 380px at 12% 8%, rgba(99,102,241,.20), transparent 60%),
172
+ radial-gradient(620px 340px at 88% 2%, rgba(34,211,238,.16), transparent 60%),
173
+ radial-gradient(820px 460px at 50% 118%, rgba(168,85,247,.20), transparent 62%),
174
+ linear-gradient(180deg, #fcfcff 0%, #eef1fe 100%) !important;
175
  color: var(--ink) !important;
176
+ padding: 4.5rem 1rem 5rem !important;
177
  border-bottom: 1px solid var(--line);
178
  overflow: hidden;
179
  }
180
+ /* faint dot grid texture, masked so it fades out toward the edges */
181
  .hero::before {
182
+ display: block !important; content: '' !important;
183
+ position: absolute !important; inset: 0 !important;
 
 
184
  width: 100% !important; height: 100% !important;
185
+ background: radial-gradient(rgba(99,102,241,.16) 1px, transparent 1.6px) !important;
186
+ background-size: 26px 26px !important;
187
+ -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 4%, #000 30%, transparent 78%);
188
+ mask-image: radial-gradient(ellipse 78% 70% at 50% 4%, #000 30%, transparent 78%);
189
+ animation: none !important; z-index: 0 !important; pointer-events: none !important; opacity: .9;
190
+ }
191
+ .hero .container { position: relative; z-index: 2; }
192
+ .hero-content { position: relative; z-index: 2; gap: 0; }
193
+ .hero h1 {
194
+ font-size: clamp(2.3rem, 5.4vw, 3.7rem) !important;
195
+ font-weight: 700; color: var(--ink) !important;
196
+ margin: 0 0 1.1rem !important; max-width: 16ch; text-wrap: balance;
197
+ text-shadow: none !important; transform: none !important;
 
 
 
 
 
 
 
 
 
 
 
198
  }
199
+ .hero h1 .grad-text {
200
+ background: var(--grad); -webkit-background-clip: text; background-clip: text;
201
+ -webkit-text-fill-color: transparent; color: transparent;
202
+ }
203
+ .hero p {
204
+ color: var(--muted) !important; font-size: clamp(1.02rem, 1.5vw, 1.2rem) !important;
205
+ max-width: 56ch; margin: 0 auto 2rem !important; line-height: 1.6; transform: none !important;
206
+ }
207
+ .hero-buttons { gap: 1rem !important; transform: none !important; }
208
 
209
+ /* Eyebrow chip */
210
+ .eyebrow {
211
+ display: inline-flex; align-items: center; gap: .5rem;
212
+ padding: .4rem 1rem .4rem .7rem; margin-bottom: 1.4rem;
213
+ border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; letter-spacing: .01em;
214
+ color: var(--brand-1); background: rgba(255,255,255,.75);
215
+ border: 1px solid rgba(99,102,241,.22);
216
+ box-shadow: var(--shadow-xs); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
217
  }
218
+ .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(99,102,241,.16); animation: blink 2.2s ease-in-out infinite; }
219
+ @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
220
 
221
+ /* ---- LUNA portrait stage — bigger, crisper, refined halo --------- */
222
+ .luna-avatar-container {
223
  position: relative;
224
+ width: clamp(280px, 40vw, 400px) !important;
225
+ height: clamp(280px, 40vw, 400px) !important;
226
+ margin: 0 auto 2.2rem !important;
227
+ perspective: 1000px;
228
  }
229
+ /* rotating conic gradient ring behind the portrait */
230
+ .luna-avatar-container::before {
231
+ content: ""; position: absolute; inset: -16px; border-radius: 50%;
232
+ background: conic-gradient(from 0deg, #6366f1, #22d3ee, #a855f7, #8b5cf6, #6366f1);
233
+ filter: blur(2px); opacity: .9; z-index: 0;
234
+ -webkit-mask: radial-gradient(circle, transparent 60%, #000 61%);
235
+ mask: radial-gradient(circle, transparent 60%, #000 61%);
236
+ animation: spin 14s linear infinite;
 
 
 
 
 
 
 
 
 
 
237
  }
238
+ .luna-avatar-container::after {
239
+ content: ""; position: absolute; inset: 8px; border-radius: 50%;
240
+ box-shadow: inset 0 0 0 8px rgba(255,255,255,.9); z-index: 1; pointer-events: none;
241
+ }
242
+ @keyframes spin { to { transform: rotate(360deg); } }
243
+ .luna-glow {
244
+ position: absolute; inset: -6%; border-radius: 50%; z-index: 0 !important;
245
+ background: radial-gradient(circle, rgba(139,92,246,.45) 0%, rgba(34,211,238,.20) 45%, transparent 72%) !important;
246
+ opacity: .9 !important; filter: blur(26px) !important;
247
+ animation: pulse 4.5s ease-in-out infinite alternate;
248
  }
249
+ @keyframes pulse { 0% { transform: scale(.92); opacity: .55; } 100% { transform: scale(1.08); opacity: .9; } }
250
+ .luna-avatar {
251
+ width: 100% !important; height: 100% !important; border-radius: 50% !important;
252
+ border: 5px solid #ffffff !important;
253
+ box-shadow: 0 26px 60px rgba(12,17,36,.22), 0 0 0 1px rgba(99,102,241,.10) !important;
254
+ overflow: hidden; position: relative; z-index: 2 !important;
255
+ background: #eef1fe !important; animation: float 6s ease-in-out infinite;
256
+ }
257
+ @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
258
+ .luna-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
259
 
260
+ /* Floating accent chips around the portrait (added in index.html hero) */
261
+ .hero-stage { position: relative; display: inline-block; }
262
+ .float-chip {
263
+ position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: .5rem;
264
+ padding: .55rem .9rem; border-radius: var(--r-pill);
265
+ background: rgba(255,255,255,.92); border: 1px solid var(--line);
266
+ box-shadow: var(--shadow); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
267
+ -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
268
+ animation: floatChip 5s ease-in-out infinite;
269
+ white-space: nowrap;
270
  }
271
+ .float-chip .ico {
272
+ width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
273
+ background: var(--grad-soft); font-size: .95rem;
274
+ }
275
+ .float-chip.tl { top: -7%; left: -11%; animation-delay: .4s; }
276
+ .float-chip.br { bottom: 6%; right: -12%; animation-delay: 1.4s; }
277
+ @keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
278
 
279
+ /* =====================================================================
280
+ Sections / titles
281
+ ===================================================================== */
282
  .content-section, .features {
283
  background:
284
+ radial-gradient(760px 340px at 90% 0%, rgba(99,102,241,.06), transparent 60%),
285
+ radial-gradient(680px 320px at 4% 100%, rgba(34,211,238,.05), transparent 60%),
286
+ transparent !important;
287
+ padding: 4.5rem 1rem !important;
288
  }
289
+ .section-title { margin-bottom: 3rem !important; }
290
+ .section-title h2 { color: var(--ink) !important; font-size: clamp(1.85rem, 3.2vw, 2.55rem) !important; }
291
+ .section-title h2::after { background: var(--grad) !important; height: 4px !important; width: 64px !important; border-radius: 4px; bottom: -14px !important; }
292
+ .section-title p { color: var(--muted) !important; font-size: 1.08rem !important; margin-top: 1.5rem; line-height: 1.6; }
293
 
294
+ /* =====================================================================
295
+ Cards — premium light
296
+ ===================================================================== */
297
  .feature-card, .card, .job-card {
298
  background: var(--surface) !important;
299
  border: 1px solid var(--line) !important;
300
+ border-radius: var(--r-lg) !important;
301
  box-shadow: var(--shadow-sm) !important;
302
+ overflow: hidden;
303
+ transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s, border-color .4s !important;
304
  }
305
+ .feature-card:hover, .job-card:hover {
306
  transform: translateY(-8px) !important;
307
  box-shadow: var(--shadow-lg) !important;
308
+ border-color: rgba(99,102,241,.30) !important;
309
  }
310
+ .card:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow) !important; border-color: rgba(99,102,241,.22) !important; }
311
+
312
+ /* Feature card */
313
+ .feature-card { display: flex; flex-direction: column; }
314
  .feature-icon {
315
  background: var(--grad-soft) !important;
316
+ font-size: 1.6rem !important; color: var(--brand-1) !important;
317
+ padding: 1.6rem !important; justify-content: flex-start !important;
318
+ }
319
+ .feature-icon span {
320
+ width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
321
+ background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
322
  }
323
+ .feature-card:hover .feature-icon { color: var(--brand-1) !important; transform: none !important; }
324
+ .feature-content { padding: 0 1.6rem 1.7rem !important; }
325
+ .feature-content h3 { color: var(--ink) !important; font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem !important; }
326
+ .feature-content h3::after { background: var(--grad) !important; height: 3px !important; }
327
+ .feature-content p { color: var(--muted) !important; line-height: 1.6; }
328
 
329
+ /* Generic card + headers */
330
+ .card { box-shadow: var(--shadow-sm) !important; }
331
+ .card-header { background: var(--grad) !important; color: #fff; padding: 1.6rem 1.8rem !important; position: relative; }
332
+ .card-header h2, .card-header h3 { color: #fff !important; }
333
+ .card-header p { color: rgba(255,255,255,.88) !important; margin-top: .35rem; }
334
+ .card-body { padding: 1.8rem !important; }
335
+
336
+ /* Job cards */
337
+ .job-card { display: flex; flex-direction: column; }
338
+ .job-header { background: var(--grad) !important; color: #fff; padding: 1.35rem 1.5rem !important; }
339
+ .job-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem !important; color: #fff; }
340
+ .job-info { color: rgba(255,255,255,.9); margin-top: .6rem !important; gap: .5rem; }
341
+ .job-info span {
342
+ background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22);
343
+ padding: .22rem .7rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 600;
344
+ }
345
+ .job-body { padding: 1.4rem 1.5rem !important; }
346
+ .job-body .job-description p { color: var(--muted) !important; line-height: 1.55; }
347
+ .job-body > div:last-child { color: var(--muted-2); font-size: .85rem; font-weight: 500; }
348
+ .job-footer { padding: 0 1.5rem 1.4rem !important; }
349
 
350
+ /* =====================================================================
351
+ Forms — unified, premium (applies across login/signup/apply/post_job)
352
+ ===================================================================== */
353
+ .form-group { margin-bottom: 1.25rem; }
354
+ label, .form-label, .form-group label {
355
+ display: block !important; margin-bottom: .5rem !important;
356
+ font-weight: 600 !important; font-size: .9rem !important; color: var(--ink-soft) !important;
357
+ letter-spacing: .005em;
358
+ }
359
+ .form-control,
360
+ input[type="text"], input[type="email"], input[type="password"],
361
+ input[type="number"], input[type="file"], textarea, select {
362
+ width: 100% !important; box-sizing: border-box;
363
+ padding: .8rem 1rem !important; font-size: 1rem !important;
364
+ color: var(--ink) !important;
365
+ background: var(--surface-2) !important;
366
+ border: 1.5px solid var(--line) !important;
367
+ border-radius: var(--r-sm) !important;
368
+ transition: border-color .25s, box-shadow .25s, background-color .25s !important;
369
+ font-family: 'Inter', sans-serif !important;
370
+ }
371
+ textarea.form-control, textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
372
+ .form-control::placeholder, input::placeholder, textarea::placeholder { color: var(--muted-2) !important; }
373
+ .form-control:focus,
374
+ input:focus, textarea:focus, select:focus {
375
+ outline: none !important;
376
+ border-color: var(--brand-1) !important;
377
+ background: #fff !important;
378
+ box-shadow: var(--ring) !important;
379
+ }
380
+ /* File input — custom button look */
381
+ input[type="file"] { padding: .55rem 1rem !important; cursor: pointer; }
382
+ input[type="file"]::file-selector-button {
383
+ margin-right: 1rem; padding: .5rem 1rem; border: none; cursor: pointer;
384
+ border-radius: var(--r-pill); font-weight: 600; font-size: .88rem;
385
+ background: var(--grad-soft); color: var(--brand-1);
386
+ transition: background-color .2s;
387
+ }
388
+ input[type="file"]::file-selector-button:hover { background: rgba(99,102,241,.18); }
389
+ select { -webkit-appearance: none; appearance: none;
390
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235e6781' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
391
+ background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem !important; }
392
+
393
+ /* Password strength bar */
394
+ .password-strength { height: 6px !important; background: var(--line) !important; border-radius: var(--r-pill) !important; margin-top: .6rem !important; overflow: hidden; }
395
+ .password-strength-bar { border-radius: var(--r-pill) !important; }
396
+
397
+ /* Auth pages: card sits on a quiet mesh, override legacy radii from inline <style> */
398
+ .auth-form .form-control { border-radius: var(--r-sm) !important; padding: .8rem 1rem !important; border: 1.5px solid var(--line) !important; }
399
+ .auth-form .form-control:focus { border-color: var(--brand-1) !important; box-shadow: var(--ring) !important; }
400
+ .auth-form .btn-primary, .application-actions .btn-primary, form .btn-primary {
401
+ background: var(--grad) !important; border-radius: var(--r-pill) !important;
402
+ box-shadow: var(--shadow-brand) !important; padding: .8rem 1.6rem !important;
403
+ }
404
+ .auth-form .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 18px 38px rgba(99,102,241,.42) !important; }
405
+ .btn-secondary {
406
+ background: rgba(99,102,241,.08) !important; color: var(--brand-1) !important;
407
+ border: 1.5px solid rgba(99,102,241,.22) !important; border-radius: var(--r-pill) !important;
408
+ padding: .8rem 1.4rem !important; font-weight: 600;
409
+ }
410
+ .btn-secondary:hover { background: rgba(99,102,241,.14) !important; transform: translateY(-2px); }
411
+
412
+ /* =====================================================================
413
+ Dashboard table
414
+ ===================================================================== */
415
+ .dashboard-table { border-collapse: separate !important; border-spacing: 0; width: 100%; }
416
+ .dashboard-table thead tr { background: transparent !important; }
417
+ .dashboard-table th {
418
+ background: var(--bg-2) !important; color: var(--ink-soft) !important;
419
+ font-weight: 700 !important; font-size: .78rem !important; text-transform: uppercase; letter-spacing: .06em;
420
+ padding: .95rem 1rem !important; border-bottom: 1px solid var(--line) !important; text-align: left;
421
+ }
422
+ .dashboard-table th:first-child { border-top-left-radius: var(--r-sm); }
423
+ .dashboard-table th:last-child { border-top-right-radius: var(--r-sm); }
424
+ .dashboard-table td { padding: .95rem 1rem !important; border-bottom: 1px solid var(--line-2) !important; color: var(--ink-soft); font-size: .95rem; }
425
+ .dashboard-table tbody tr { background: #fff !important; transition: background-color .2s; }
426
+ .dashboard-table tbody tr:nth-child(even) { background: var(--surface-2) !important; }
427
+ .dashboard-table tbody tr:hover { background: rgba(99,102,241,.05) !important; }
428
+ .dashboard-table td:nth-child(4) { font-weight: 700 !important; color: var(--brand-2) !important; }
429
+ .download-report-btn {
430
+ display: inline-flex !important; align-items: center; gap: .4rem;
431
+ padding: .5rem 1rem !important; border-radius: var(--r-pill) !important;
432
+ border: 1.5px solid rgba(99,102,241,.3) !important; color: var(--brand-1) !important;
433
+ background: rgba(99,102,241,.06) !important; text-decoration: none; font-size: .85rem; font-weight: 600;
434
+ transition: all .2s ease;
435
+ }
436
+ .download-report-btn:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent !important; box-shadow: var(--shadow-brand); transform: translateY(-1px); }
437
+
438
+ /* =====================================================================
439
+ My Applications — cards + tips
440
+ ===================================================================== */
441
+ .application-card {
442
+ background: var(--surface) !important; border: 1px solid var(--line) !important;
443
+ border-radius: var(--r-lg) !important; box-shadow: var(--shadow-sm) !important;
444
+ padding: 0 !important; overflow: hidden;
445
+ transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s, border-color .4s;
446
+ }
447
+ .application-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) !important; border-color: rgba(99,102,241,.3) !important; }
448
+ .application-header { background: var(--grad) !important; padding: 1.25rem 1.4rem !important; }
449
+ .application-header h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif; margin-bottom: .5rem !important; }
450
+ .application-info span { color: rgba(255,255,255,.92) !important; font-size: .85rem; }
451
+ .application-body { padding: 1.3rem 1.4rem !important; color: var(--muted); }
452
+ .application-body p { color: var(--muted) !important; line-height: 1.55; margin-bottom: .5rem; }
453
+ .application-footer { padding: 0 1.4rem 1.3rem !important; }
454
+ .application-footer .btn-outline { border: 1.5px solid rgba(99,102,241,.4) !important; color: var(--brand-1) !important; background: #fff !important; }
455
+ .application-footer .btn-outline:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent !important; }
456
+ .tips-section {
457
+ background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(34,211,238,.05)) !important;
458
+ border: 1px solid rgba(99,102,241,.18) !important; border-left: 4px solid var(--brand-1) !important;
459
+ border-radius: var(--r-lg) !important; padding: 1.8rem 2rem !important; box-shadow: var(--shadow-xs);
460
+ }
461
+ .tips-section h3 { color: var(--ink) !important; font-family: 'Space Grotesk', sans-serif; }
462
+ .tips-section li { color: var(--ink-soft); margin-bottom: .35rem; }
463
+ .tips-section li::marker { color: var(--brand-1); }
464
+
465
+ /* =====================================================================
466
+ CTA band — the single, confident gradient moment
467
+ ===================================================================== */
468
  .cta {
469
+ background: var(--grad) !important; position: relative; overflow: hidden;
470
+ padding: 4.5rem 1rem !important;
471
+ }
472
+ .cta::before {
473
+ content: ''; position: absolute; inset: 0;
474
+ background: radial-gradient(600px 300px at 15% 10%, rgba(255,255,255,.18), transparent 60%),
475
+ radial-gradient(500px 280px at 90% 100%, rgba(34,211,238,.25), transparent 60%) !important;
476
+ animation: none !important; top: 0; left: 0; width: 100%; height: 100%; transform: none;
477
  }
478
+ .cta h2, .cta p { color: #fff !important; text-shadow: none !important; }
479
+ .cta h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem) !important; }
480
+ .cta p { color: rgba(255,255,255,.9) !important; }
481
+ .cta .btn-primary { background: #fff !important; color: var(--brand-1) !important; box-shadow: 0 14px 30px rgba(12,17,36,.22) !important; }
482
+ .cta .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 20px 40px rgba(12,17,36,.28) !important; }
483
 
484
+ /* =====================================================================
485
+ Footer tidy, light, branded
486
+ ===================================================================== */
487
+ footer { background: var(--surface) !important; color: var(--muted) !important; border-top: 1px solid var(--line); padding: 3.5rem 1rem 2.5rem !important; }
488
+ .footer-col p { color: var(--muted) !important; line-height: 1.6; }
489
+ .footer-col h3 { color: var(--ink) !important; font-family: 'Space Grotesk', sans-serif; }
490
  .footer-col h3::after { background: var(--grad) !important; }
491
+ .footer-col a { color: var(--muted) !important; text-decoration: none; transition: color .2s; }
492
  .footer-col a:hover { color: var(--brand-1) !important; }
493
+ .social-links a { background: var(--bg) !important; color: var(--ink-soft) !important; border: 1px solid var(--line); font-weight: 600; transition: all .25s; }
494
+ .social-links a:hover { background: var(--grad) !important; color: #fff !important; border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-brand); }
495
+ .copyright { color: var(--muted-2) !important; border-top: 1px solid var(--line) !important; }
496
 
497
+ /* =====================================================================
498
+ Flash alerts
499
+ ===================================================================== */
500
+ .flash-messages .alert { border-radius: var(--r-sm) !important; box-shadow: var(--shadow-xs) !important; border-left-width: 4px !important; font-weight: 500; }
501
+ .alert-success { background: rgba(22,163,74,.10) !important; color: #15803d !important; border-left-color: var(--success) !important; }
502
+ .alert-warning { background: rgba(217,119,6,.10) !important; color: #b45309 !important; border-left-color: var(--warning) !important; }
503
+ .alert-danger { background: rgba(220,38,38,.10) !important; color: #b91c1c !important; border-left-color: var(--danger) !important; }
504
+ .alert-info { background: rgba(99,102,241,.10) !important; color: var(--brand-1) !important; border-left-color: var(--brand-1) !important; }
505
 
506
  /* =====================================================================
507
+ Floating chatbot button + window
 
508
  ===================================================================== */
509
+ #chatbot-nav { background: var(--grad) !important; box-shadow: 0 12px 30px rgba(99,102,241,.5) !important; }
510
+ #chatbot-nav:hover { transform: scale(1.08) translateY(-2px) !important; }
511
+ #chatbot-box { border-radius: var(--r-lg) !important; border: 1px solid var(--line); box-shadow: var(--shadow-lg) !important; overflow: hidden; }
512
+ #chatbot-box #chat-input { border-top: 1px solid var(--line) !important; }
513
+ #chat-messages .user-bubble { background: var(--grad) !important; color: #fff !important; }
514
+
515
+ /* =====================================================================
516
+ "How it works" animated pipeline
517
+ ===================================================================== */
518
+ .pipeline {
519
+ background:
520
+ radial-gradient(700px 340px at 50% -10%, rgba(99,102,241,.07), transparent 60%),
521
+ linear-gradient(180deg, var(--surface), var(--bg)) !important;
522
+ padding: 4.5rem 1rem !important;
523
+ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
524
  }
525
+ .pipe-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1120px; margin: 0 auto; position: relative; }
526
  .pipe-track::before {
527
+ content: ''; position: absolute; top: 50px; left: 9%; right: 9%; height: 3px;
528
+ background: linear-gradient(90deg, rgba(99,102,241,.18), rgba(139,92,246,.6), rgba(34,211,238,.18));
529
  border-radius: 3px; z-index: 0;
530
  }
531
+ .pipe-step { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; opacity: 0; transform: translateY(18px); animation: pipeReveal .7s ease forwards; }
 
 
 
 
532
  .pipe-step:nth-child(1) { animation-delay: .15s; }
533
  .pipe-step:nth-child(2) { animation-delay: .40s; }
534
  .pipe-step:nth-child(3) { animation-delay: .65s; }
535
  .pipe-step:nth-child(4) { animation-delay: .90s; }
536
  .pipe-step:nth-child(5) { animation-delay: 1.15s; }
537
  .pipe-node {
538
+ width: 100px; height: 100px; margin: 0 auto 1.2rem; border-radius: 26px;
539
+ display: grid; place-items: center; font-size: 2.2rem; color: #fff; background: var(--grad);
540
+ box-shadow: 0 16px 32px rgba(99,102,241,.35); position: relative;
541
+ border: 4px solid #fff;
 
542
  }
543
+ .pipe-node::after { content: ''; position: absolute; inset: -8px; border-radius: 30px; border: 2px solid rgba(139,92,246,.45); animation: pipeHalo 2.6s ease-in-out infinite; }
544
+ .pipe-step:nth-child(even) .pipe-node::after { animation-delay: 1.3s; }
545
+ .pipe-step h4 { color: var(--ink); margin-bottom: .45rem; font-size: 1.08rem; }
546
+ .pipe-step p { color: var(--muted); font-size: .92rem; line-height: 1.5; }
547
+ .pipe-num { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--brand-1); background: var(--grad-soft); border: 1px solid rgba(99,102,241,.18); border-radius: var(--r-pill); padding: .18rem .75rem; margin-bottom: .8rem; }
 
 
 
 
 
 
 
 
548
  @keyframes pipeReveal { to { opacity: 1; transform: translateY(0); } }
549
+ @keyframes pipeHalo { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.08); opacity: 0; } }
 
 
 
550
 
551
+ /* =====================================================================
552
+ Responsive
553
+ ===================================================================== */
554
+ @media (max-width: 900px) {
555
+ .float-chip { display: none; }
556
+ }
557
  @media (max-width: 860px) {
558
+ .pipe-track { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
559
  .pipe-track::before { display: none; }
560
  }
561
+ @media (max-width: 768px) {
562
+ .hero { padding: 3.2rem 1rem 3.6rem !important; }
563
+ .section-title { margin-bottom: 2rem !important; }
564
+ .content-section, .features, .pipeline, .cta { padding: 3rem 1rem !important; }
565
+ .nav-container { flex-wrap: wrap; }
566
+ }
567
  @media (max-width: 480px) {
568
  .pipe-track { grid-template-columns: 1fr; }
569
+ .logo { font-size: 1.45rem !important; }
570
  }
backend/templates/base.html CHANGED
@@ -1014,5 +1014,24 @@
1014
  word-wrap: break-word;
1015
  }
1016
  </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  </body>
1018
  </html>
 
1014
  word-wrap: break-word;
1015
  }
1016
  </style>
1017
+ <!-- Cosmetic scroll-reveal (additive, no functional impact; degrades gracefully without JS) -->
1018
+ <script>
1019
+ (function () {
1020
+ if (window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
1021
+ if (!('IntersectionObserver' in window)) return;
1022
+ var sel = '.feature-card, .job-card, .application-card, .section-title, .cta .container, .tips-section, .card';
1023
+ var els = Array.prototype.slice.call(document.querySelectorAll(sel));
1024
+ els.forEach(function (el, i) {
1025
+ el.setAttribute('data-reveal', '');
1026
+ el.style.transitionDelay = (Math.min(i, 6) * 60) + 'ms';
1027
+ });
1028
+ var io = new IntersectionObserver(function (entries) {
1029
+ entries.forEach(function (e) {
1030
+ if (e.isIntersecting) { e.target.classList.add('is-in'); io.unobserve(e.target); }
1031
+ });
1032
+ }, { threshold: 0.12, rootMargin: '0px 0px -8% 0px' });
1033
+ els.forEach(function (el) { io.observe(el); });
1034
+ })();
1035
+ </script>
1036
  </body>
1037
  </html>
backend/templates/index.html CHANGED
@@ -11,18 +11,18 @@
11
  <div class="luna-avatar-container">
12
  <div class="luna-glow"></div>
13
  <div class="luna-avatar">
14
- <img src="{{ url_for('static', filename='images/LUNA.png') }}" alt="LUNA AI Assistant">
15
  </div>
16
  </div>
17
  <span class="float-chip tl"><span class="ico">🎙️</span> Live voice interview</span>
18
  <span class="float-chip br"><span class="ico">⚡</span> Scored instantly</span>
19
  </div>
20
- <h1>Meet <span class="grad-text">LUNA</span>, Your AI Recruiter</h1>
21
- <p>Screen CVs, run real voice interviews, and score every answer against a live question
22
  database — so you find the right technical talent faster, and fairer.</p>
23
  <div class="hero-buttons">
24
  <a href="{{ url_for('jobs') }}" class="btn btn-primary">Find Jobs</a>
25
- <a href="https://www.youtube.com/watch?v=P6HG27fsJgU" class="btn btn-outline">Watch Demo</a>
26
  </div>
27
  </div>
28
  </div>
 
11
  <div class="luna-avatar-container">
12
  <div class="luna-glow"></div>
13
  <div class="luna-avatar">
14
+ <img src="{{ url_for('static', filename='images/LUNA.png') }}" alt="LUNA — your AI recruiter">
15
  </div>
16
  </div>
17
  <span class="float-chip tl"><span class="ico">🎙️</span> Live voice interview</span>
18
  <span class="float-chip br"><span class="ico">⚡</span> Scored instantly</span>
19
  </div>
20
+ <h1>Meet <span class="grad-text">LUNA</span>, your AI recruiter</h1>
21
+ <p>She screens CVs, runs real voice interviews, and scores every answer against a live question
22
  database — so you find the right technical talent faster, and fairer.</p>
23
  <div class="hero-buttons">
24
  <a href="{{ url_for('jobs') }}" class="btn btn-primary">Find Jobs</a>
25
+ <a href="https://www.youtube.com/watch?v=P6HG27fsJgU" class="btn btn-outline">Watch Demo</a>
26
  </div>
27
  </div>
28
  </div>