husseinelsaadi Claude Opus 4.8 commited on
Commit
8bfe920
Β·
1 Parent(s): 0334723

Update homepage to revised design: split hero, deep-indigo navbar, scroll-snap landing

Browse files

- theme.css: dark branded navbar, two-column hero-split, full-viewport
scroll-snap sections scoped to body.landing
- index.html: split hero (copy left / LUNA right) + page_class block
- base.html: body now carries the page_class block

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

backend/static/css/theme.css CHANGED
@@ -89,38 +89,44 @@ a { color: var(--brand-1); }
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
@@ -168,12 +174,13 @@ header {
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
  }
@@ -190,10 +197,24 @@ header {
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 {
@@ -201,16 +222,18 @@ header {
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);
@@ -221,9 +244,9 @@ header {
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 */
@@ -276,6 +299,43 @@ header {
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
  ===================================================================== */
@@ -559,7 +619,7 @@ footer { background: var(--surface) !important; color: var(--muted) !important;
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; }
 
89
  [data-reveal].is-in { opacity: 1; transform: none; }
90
 
91
  /* =====================================================================
92
+ Navbar β€” distinct deep-indigo branded bar
93
  ===================================================================== */
94
  header {
95
+ background: linear-gradient(100deg, #1e1b4b 0%, #312e81 48%, #4338ca 100%) !important;
96
+ -webkit-backdrop-filter: none; backdrop-filter: none;
97
+ border-bottom: 1px solid rgba(255,255,255,.06) !important;
98
+ box-shadow: 0 10px 30px rgba(30,27,75,.28) !important;
99
+ padding: .85rem 1rem !important;
100
+ color: #fff !important;
101
+ position: sticky; top: 0; z-index: 100;
 
 
 
 
102
  }
103
+ .nav-container { gap: 1rem; align-items: center; }
104
+ .logo { font-size: 1.6rem !important; font-weight: 700; color: #fff !important; gap: 0 !important; align-items: center; letter-spacing: -.01em; }
105
  .logo::before {
106
+ content: ""; width: 28px; height: 28px; border-radius: 8px; margin-right: .6rem;
107
+ background: linear-gradient(135deg, #818cf8, #22d3ee);
108
+ box-shadow: 0 6px 16px rgba(34,211,238,.45); flex: 0 0 auto; display: inline-block;
109
  position: relative;
110
  }
111
+ .logo .logo-part1 { color: #ffffff !important; }
112
+ .logo-part2 { color: #67e8f9 !important; font-style: normal; animation: none; text-shadow: none; }
113
+ .logo-part3 { color: #c4b5fd !important; }
114
  .welcome-message {
115
+ background: rgba(255,255,255,.12) !important; color: #ffffff !important;
116
+ border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.2);
117
  font-weight: 600; font-size: .92rem;
118
  }
119
  .welcome-message:before { content: ''; margin-right: .15rem; }
120
+ /* Nav buttons sit on the dark bar β€” light treatment */
121
+ header .btn-outline {
122
+ background: rgba(255,255,255,.08) !important;
123
+ border: 1.5px solid rgba(255,255,255,.28) !important;
124
+ color: #fff !important; -webkit-backdrop-filter: none; backdrop-filter: none;
125
+ }
126
+ header .btn-outline:hover { background: #fff !important; border-color: #fff !important; color: var(--brand-1) !important; transform: translateY(-2px) !important; }
127
+ header .btn-logout { border: 1.5px solid rgba(255,255,255,.35) !important; color: #fff !important; }
128
+ header .btn-logout:hover { background: #fff !important; color: var(--brand-1) !important; border-color: #fff !important; }
129
+ header .btn-primary { box-shadow: 0 8px 20px rgba(34,211,238,.35) !important; }
130
 
131
  /* =====================================================================
132
  Buttons
 
174
  .hero {
175
  position: relative;
176
  background:
177
+ radial-gradient(560px 320px at 14% 6%, rgba(99,102,241,.22), transparent 60%),
178
+ radial-gradient(520px 300px at 86% 0%, rgba(34,211,238,.18), transparent 60%),
179
+ radial-gradient(680px 420px at 50% 116%, rgba(168,85,247,.22), transparent 60%),
180
+ radial-gradient(900px 500px at 50% 50%, rgba(255,255,255,.5), transparent 70%),
181
+ linear-gradient(180deg, #fbfbff 0%, #eef1fe 55%, #e7ebfd 100%) !important;
182
  color: var(--ink) !important;
183
+ padding: 2.4rem 1rem 3rem !important;
184
  border-bottom: 1px solid var(--line);
185
  overflow: hidden;
186
  }
 
197
  }
198
  .hero .container { position: relative; z-index: 2; }
199
  .hero-content { position: relative; z-index: 2; gap: 0; }
200
+ /* Two-column hero β€” copy left, portrait right (professional SaaS layout) */
201
+ .hero-split {
202
+ display: grid !important;
203
+ grid-template-columns: 1.05fr .95fr;
204
+ align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
205
+ text-align: left !important; max-width: 1120px; margin: 0 auto; width: 100%;
206
+ }
207
+ .hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
208
+ .hero-split .hero-stage { justify-self: center; }
209
+ @media (max-width: 880px) {
210
+ .hero-split { grid-template-columns: 1fr; text-align: center !important; justify-items: center; }
211
+ .hero-copy { align-items: center; }
212
+ .hero-split .hero-stage { order: -1; }
213
+ }
214
  .hero h1 {
215
+ font-size: clamp(2.1rem, 4.4vw, 3.2rem) !important;
216
  font-weight: 700; color: var(--ink) !important;
217
+ margin: 0 0 1rem !important; max-width: 15ch; text-wrap: balance;
218
  text-shadow: none !important; transform: none !important;
219
  }
220
  .hero h1 .grad-text {
 
222
  -webkit-text-fill-color: transparent; color: transparent;
223
  }
224
  .hero p {
225
+ color: var(--muted) !important; font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
226
+ max-width: 48ch; margin: 0 0 1.8rem !important; line-height: 1.6; transform: none !important;
227
  }
228
+ .hero-split .hero-copy p { margin-left: 0 !important; margin-right: 0 !important; }
229
+ @media (max-width: 880px) { .hero p { margin-left: auto !important; margin-right: auto !important; } }
230
  .hero-buttons { gap: 1rem !important; transform: none !important; }
231
 
232
  /* Eyebrow chip */
233
  .eyebrow {
234
  display: inline-flex; align-items: center; gap: .5rem;
235
+ padding: .35rem .95rem .35rem .65rem; margin-bottom: 1.1rem;
236
+ border-radius: var(--r-pill); font-size: .8rem; font-weight: 600; letter-spacing: .01em;
237
  color: var(--brand-1); background: rgba(255,255,255,.75);
238
  border: 1px solid rgba(99,102,241,.22);
239
  box-shadow: var(--shadow-xs); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
 
244
  /* ---- LUNA portrait stage β€” bigger, crisper, refined halo --------- */
245
  .luna-avatar-container {
246
  position: relative;
247
+ width: clamp(220px, 26vw, 300px) !important;
248
+ height: clamp(220px, 26vw, 300px) !important;
249
+ margin: 0 auto !important;
250
  perspective: 1000px;
251
  }
252
  /* rotating conic gradient ring behind the portrait */
 
299
  .float-chip.br { bottom: 6%; right: -12%; animation-delay: 1.4s; }
300
  @keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
301
 
302
+ /* =====================================================================
303
+ Landing page β€” full-viewport scroll-snap sections
304
+ (each section fills one screen: Hero β†’ Features β†’ How it works)
305
+ Scoped to body.landing so other pages scroll normally.
306
+ ===================================================================== */
307
+ html:has(body.landing) { scroll-behavior: smooth; }
308
+ body.landing {
309
+ scroll-snap-type: y proximity;
310
+ scroll-padding-top: 66px;
311
+ scroll-behavior: smooth;
312
+ }
313
+ body.landing .hero,
314
+ body.landing #features,
315
+ body.landing #how {
316
+ min-height: calc(100svh - 66px);
317
+ scroll-snap-align: start;
318
+ display: flex;
319
+ flex-direction: column;
320
+ justify-content: center;
321
+ }
322
+ body.landing .hero { min-height: calc(100svh - 66px); padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
323
+ body.landing #features,
324
+ body.landing #how { padding-top: 2rem !important; padding-bottom: 2rem !important; }
325
+ body.landing #features .section-title,
326
+ body.landing #how .section-title { margin-bottom: 2rem !important; }
327
+ /* Disable snapping where a screen can't comfortably hold a full section */
328
+ @media (max-height: 620px), (max-width: 600px) {
329
+ body.landing { scroll-snap-type: none; }
330
+ body.landing .hero,
331
+ body.landing #features,
332
+ body.landing #how { min-height: 0; }
333
+ }
334
+ @media (prefers-reduced-motion: reduce) {
335
+ body.landing { scroll-snap-type: none; }
336
+ html:has(body.landing) { scroll-behavior: auto; }
337
+ }
338
+
339
  /* =====================================================================
340
  Sections / titles
341
  ===================================================================== */
 
619
  .pipe-track::before { display: none; }
620
  }
621
  @media (max-width: 768px) {
622
+ .hero { padding: 3rem 1rem 3.4rem !important; }
623
  .section-title { margin-bottom: 2rem !important; }
624
  .content-section, .features, .pipeline, .cta { padding: 3rem 1rem !important; }
625
  .nav-container { flex-wrap: wrap; }
backend/templates/base.html CHANGED
@@ -839,7 +839,7 @@
839
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet">
840
  <link rel="stylesheet" href="{{ url_for('static', filename='css/theme.css') }}">
841
  </head>
842
- <body>
843
  <header>
844
  <div class="container nav-container">
845
  <a href="{{ url_for('index') }}" class="logo">
 
839
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet">
840
  <link rel="stylesheet" href="{{ url_for('static', filename='css/theme.css') }}">
841
  </head>
842
+ <body class="{% block page_class %}{% endblock %}">
843
  <header>
844
  <div class="container nav-container">
845
  <a href="{{ url_for('index') }}" class="logo">
backend/templates/index.html CHANGED
@@ -1,118 +1,121 @@
1
- {% extends "base.html" %}
2
-
3
- {% block title %}Codingo - AI-Powered Recruitment Platform{% endblock %}
4
-
5
- {% block hero %}
6
- <section class="hero">
7
- <div class="container">
8
- <div class="hero-content">
9
- <span class="eyebrow"><span class="dot"></span> AI-Powered Recruitment</span>
10
- <div class="hero-stage">
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>
29
- </section>
30
- {% endblock %}
31
-
32
- {% block content %}
33
- <section class="content-section" id="features">
34
- <div class="section-title">
35
- <h2>Platform Features</h2>
36
- <p>Codingo streamlines every step of your technical hiring process with cutting-edge AI technology</p>
37
- </div>
38
- <div class="features-grid">
39
- <div class="feature-card">
40
- <div class="feature-icon">
41
- <span>πŸ€–</span>
42
- </div>
43
- <div class="feature-content">
44
- <h3>AI CV Analysis</h3>
45
- <p>LUNA automatically analyzes resumes, matching candidates to job requirements with precision and
46
- eliminating unconscious bias.</p>
47
- </div>
48
- </div>
49
- <div class="feature-card">
50
- <div class="feature-icon">
51
- <span>🎯</span>
52
- </div>
53
- <div class="feature-content">
54
- <h3>Smart Shortlisting</h3>
55
- <p>Our 70% skill match threshold ensures you only interview candidates who meet your technical
56
- requirements.</p>
57
- </div>
58
- </div>
59
- <div class="feature-card">
60
- <div class="feature-icon">
61
- <span>πŸ–₯️</span>
62
- </div>
63
- <div class="feature-content">
64
- <h3>AI-Led Interviews</h3>
65
- <p>Structured interview sessions assess soft skills, technical knowledge, and coding abilities with
66
- real-time monitoring.</p>
67
- </div>
68
- </div>
69
- </div>
70
- </section>
71
-
72
- <section class="pipeline" id="how">
73
- <div class="section-title">
74
- <h2>How Codingo Works</h2>
75
- <p>From job post to ranked shortlist β€” one intelligent, automated pipeline powered by LUNA.</p>
76
- </div>
77
- <div class="pipe-track">
78
- <div class="pipe-step">
79
- <div class="pipe-node">πŸ“</div>
80
- <span class="pipe-num">Step 1</span>
81
- <h4>Post a Job</h4>
82
- <p>Recruiters define the role, skills, and how many questions the interview should cover.</p>
83
- </div>
84
- <div class="pipe-step">
85
- <div class="pipe-node">πŸ“„</div>
86
- <span class="pipe-num">Step 2</span>
87
- <h4>Apply &amp; Parse CV</h4>
88
- <p>Candidates upload a resume β€” Codingo auto-extracts skills, education, and experience.</p>
89
- </div>
90
- <div class="pipe-step">
91
- <div class="pipe-node">πŸŽ™οΈ</div>
92
- <span class="pipe-num">Step 3</span>
93
- <h4>LUNA Interviews</h4>
94
- <p>LUNA conducts a real voice interview, asking role-specific questions and follow-ups.</p>
95
- </div>
96
- <div class="pipe-step">
97
- <div class="pipe-node">🧠</div>
98
- <span class="pipe-num">Step 4</span>
99
- <h4>Score from the Database</h4>
100
- <p>Every answer is evaluated against a live question bank of thousands of Q&amp;A pairs.</p>
101
- </div>
102
- <div class="pipe-step">
103
- <div class="pipe-node">πŸ†</div>
104
- <span class="pipe-num">Step 5</span>
105
- <h4>Rank Candidates</h4>
106
- <p>The recruiter dashboard ranks applicants by skill match and interview performance.</p>
107
- </div>
108
- </div>
109
- </section>
110
-
111
- <section class="cta">
112
- <div class="container">
113
- <h2>Ready to Transform Your Technical Hiring?</h2>
114
- <p>Join hundreds of companies finding their perfect tech talent faster and more efficiently with Codingo.</p>
115
- <a href="{{ url_for('jobs') }}" class="btn btn-primary">Browse Available Jobs</a>
116
- </div>
117
- </section>
118
- {% endblock %}
 
 
 
 
1
+ {% extends "base.html" %}
2
+
3
+ {% block title %}Codingo - AI-Powered Recruitment Platform{% endblock %}
4
+ {% block page_class %}landing{% endblock %}
5
+
6
+ {% block hero %}
7
+ <section class="hero">
8
+ <div class="container">
9
+ <div class="hero-content hero-split">
10
+ <div class="hero-copy">
11
+ <span class="eyebrow"><span class="dot"></span> AI-Powered Recruitment</span>
12
+ <h1>Meet <span class="grad-text">LUNA</span>, your AI recruiter</h1>
13
+ <p>She screens CVs, runs real voice interviews, and scores every answer against a live question
14
+ database β€” so you find the right technical talent faster, and fairer.</p>
15
+ <div class="hero-buttons">
16
+ <a href="{{ url_for('jobs') }}" class="btn btn-primary">Find Jobs</a>
17
+ <a href="https://www.youtube.com/watch?v=P6HG27fsJgU" class="btn btn-outline">β–Ά Watch Demo</a>
18
+ </div>
19
+ </div>
20
+ <div class="hero-stage">
21
+ <div class="luna-avatar-container">
22
+ <div class="luna-glow"></div>
23
+ <div class="luna-avatar">
24
+ <img src="{{ url_for('static', filename='images/LUNA.png') }}" alt="LUNA β€” your AI recruiter">
25
+ </div>
26
+ </div>
27
+ <span class="float-chip tl"><span class="ico">πŸŽ™οΈ</span> Live voice interview</span>
28
+ <span class="float-chip br"><span class="ico">⚑</span> Scored instantly</span>
29
+ </div>
30
+ </div>
31
+ </div>
32
+ </section>
33
+ {% endblock %}
34
+
35
+ {% block content %}
36
+ <section class="content-section" id="features">
37
+ <div class="section-title">
38
+ <h2>Platform Features</h2>
39
+ <p>Codingo streamlines every step of your technical hiring process with cutting-edge AI technology</p>
40
+ </div>
41
+ <div class="features-grid">
42
+ <div class="feature-card">
43
+ <div class="feature-icon">
44
+ <span>πŸ€–</span>
45
+ </div>
46
+ <div class="feature-content">
47
+ <h3>AI CV Analysis</h3>
48
+ <p>LUNA automatically analyzes resumes, matching candidates to job requirements with precision and
49
+ eliminating unconscious bias.</p>
50
+ </div>
51
+ </div>
52
+ <div class="feature-card">
53
+ <div class="feature-icon">
54
+ <span>🎯</span>
55
+ </div>
56
+ <div class="feature-content">
57
+ <h3>Smart Shortlisting</h3>
58
+ <p>Our 70% skill match threshold ensures you only interview candidates who meet your technical
59
+ requirements.</p>
60
+ </div>
61
+ </div>
62
+ <div class="feature-card">
63
+ <div class="feature-icon">
64
+ <span>πŸ–₯️</span>
65
+ </div>
66
+ <div class="feature-content">
67
+ <h3>AI-Led Interviews</h3>
68
+ <p>Structured interview sessions assess soft skills, technical knowledge, and coding abilities with
69
+ real-time monitoring.</p>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </section>
74
+
75
+ <section class="pipeline" id="how">
76
+ <div class="section-title">
77
+ <h2>How Codingo Works</h2>
78
+ <p>From job post to ranked shortlist β€” one intelligent, automated pipeline powered by LUNA.</p>
79
+ </div>
80
+ <div class="pipe-track">
81
+ <div class="pipe-step">
82
+ <div class="pipe-node">πŸ“</div>
83
+ <span class="pipe-num">Step 1</span>
84
+ <h4>Post a Job</h4>
85
+ <p>Recruiters define the role, skills, and how many questions the interview should cover.</p>
86
+ </div>
87
+ <div class="pipe-step">
88
+ <div class="pipe-node">πŸ“„</div>
89
+ <span class="pipe-num">Step 2</span>
90
+ <h4>Apply &amp; Parse CV</h4>
91
+ <p>Candidates upload a resume β€” Codingo auto-extracts skills, education, and experience.</p>
92
+ </div>
93
+ <div class="pipe-step">
94
+ <div class="pipe-node">πŸŽ™οΈ</div>
95
+ <span class="pipe-num">Step 3</span>
96
+ <h4>LUNA Interviews</h4>
97
+ <p>LUNA conducts a real voice interview, asking role-specific questions and follow-ups.</p>
98
+ </div>
99
+ <div class="pipe-step">
100
+ <div class="pipe-node">🧠</div>
101
+ <span class="pipe-num">Step 4</span>
102
+ <h4>Score from the Database</h4>
103
+ <p>Every answer is evaluated against a live question bank of thousands of Q&amp;A pairs.</p>
104
+ </div>
105
+ <div class="pipe-step">
106
+ <div class="pipe-node">πŸ†</div>
107
+ <span class="pipe-num">Step 5</span>
108
+ <h4>Rank Candidates</h4>
109
+ <p>The recruiter dashboard ranks applicants by skill match and interview performance.</p>
110
+ </div>
111
+ </div>
112
+ </section>
113
+
114
+ <section class="cta">
115
+ <div class="container">
116
+ <h2>Ready to Transform Your Technical Hiring?</h2>
117
+ <p>Join hundreds of companies finding their perfect tech talent faster and more efficiently with Codingo.</p>
118
+ <a href="{{ url_for('jobs') }}" class="btn btn-primary">Browse Available Jobs</a>
119
+ </div>
120
+ </section>
121
+ {% endblock %}