-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
742 lines (710 loc) · 30.7 KB
/
Copy pathindex.html
File metadata and controls
742 lines (710 loc) · 30.7 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>RizelIQ – Real-Time Market Intelligence for Founders</title>
<meta name="description" content="Discover, analyze, and track startups, competitors, and market opportunities with precision."/>
<meta property="og:title" content="RizelIQ – Real-Time Market Intelligence for Founders"/>
<meta property="og:description" content="Discover, analyze, and track startups, competitors, and market opportunities with precision."/>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Geist:wght@300;400;500;600&family=Geist+Mono:wght@400;500&display=swap" rel="stylesheet"/>
<style>
:root {
--bg: #070710;
--surf: #0D0D1A;
--card: #111122;
--brd: rgba(255,255,255,0.06);
--brdhi: rgba(255,255,255,0.13);
--txt: #F0F0FA;
--t2: rgba(240,240,250,0.50);
--t3: rgba(240,240,250,0.26);
--a: #3ECFB2;
--a2: #2BAF96;
--gold: #E8B84B;
--red: #E85D5D;
--pur: #8B6FEF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--txt);
font-family: 'Geist', sans-serif;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: rgba(62,207,178,.2); border-radius: 4px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes glow { 0%,100% { opacity:.4; } 50% { opacity:.8; } }
@keyframes scanline { 0% { transform:translateY(-100%); } 100% { transform:translateY(900%); } }
@keyframes gradshift { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
/* ── NAVBAR ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 0 52px; height: 62px;
transition: background .3s, border-color .3s;
border-bottom: 1px solid transparent;
}
nav.scrolled {
background: rgba(7,7,16,.9);
border-color: var(--brd);
backdrop-filter: blur(24px);
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--txt); }
.logo-mark {
width:32px; height:32px; border-radius:9px;
background: linear-gradient(135deg, #3ECFB2, #1A8C78);
display:flex; align-items:center; justify-content:center;
box-shadow: 0 0 18px rgba(62,207,178,.3);
}
.logo-mark svg { display:block; }
.logo-word {
font-family:'Syne',sans-serif; font-size:17.5px; font-weight:800;
letter-spacing:-.025em;
}
.logo-word em { color:var(--a); font-style:normal; }
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a {
color:var(--t2); text-decoration:none; font-size:13.5px;
font-weight:500; transition:color .15s; letter-spacing:.01em;
}
.nav-links a:hover { color:var(--txt); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.btn-ghost {
padding:8px 18px; border-radius:8px; border:1px solid var(--brd);
background:transparent; color:var(--t2);
font-family:'Geist',sans-serif; font-size:13px; font-weight:600;
cursor:pointer; transition:all .15s; text-decoration:none;
display:inline-flex; align-items:center;
}
.btn-ghost:hover { border-color:var(--brdhi); color:var(--txt); }
.btn-primary {
padding:9px 22px; border-radius:8px; background:var(--a); color:#000;
font-family:'Geist',sans-serif; font-size:13px; font-weight:700;
cursor:pointer; border:none; transition:all .2s;
box-shadow:0 2px 16px rgba(62,207,178,.25);
text-decoration:none; display:inline-flex; align-items:center; gap:6px;
}
.btn-primary:hover { transform:translateY(-1px); box-shadow:0 5px 24px rgba(62,207,178,.4); }
/* ── HERO ── */
.hero {
min-height: 100vh;
display:flex; flex-direction:column; align-items:center; justify-content:center;
text-align:center; padding:130px 32px 90px;
position:relative; overflow:hidden;
}
.hero::before {
content:'';
position:absolute; inset:0;
background-image:
linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
background-size:56px 56px;
mask-image:radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
pointer-events:none;
}
.orb {
position:absolute; border-radius:50%; pointer-events:none;
}
.orb-1 {
width:700px; height:700px; top:-180px; left:50%; transform:translateX(-50%);
background:radial-gradient(circle, rgba(62,207,178,.11) 0%, transparent 65%);
filter:blur(70px);
}
.orb-2 {
width:450px; height:450px; bottom:5%; left:2%;
background:radial-gradient(circle, rgba(139,111,239,.09) 0%, transparent 70%);
filter:blur(80px);
}
.orb-3 {
width:400px; height:400px; top:15%; right:2%;
background:radial-gradient(circle, rgba(232,184,75,.07) 0%, transparent 70%);
filter:blur(70px);
}
.hero-eyebrow {
display:inline-flex; align-items:center; gap:8px;
padding:5px 15px; border-radius:20px;
border:1px solid rgba(62,207,178,.22);
background:rgba(62,207,178,.06);
font-size:12px; font-weight:600; color:var(--a);
letter-spacing:.06em; text-transform:uppercase;
margin-bottom:28px;
animation: fadeUp .6s ease both;
}
.hero-eyebrow-dot {
width:6px; height:6px; border-radius:50%;
background:var(--a); animation:glow 2s ease infinite;
}
.hero-title {
font-family:'Syne',sans-serif;
font-size: clamp(42px, 7vw, 80px);
font-weight:800; line-height:1.04;
letter-spacing:-.04em;
max-width:820px;
animation: fadeUp .7s .1s ease both;
}
.hero-title .grad {
background: linear-gradient(135deg, #3ECFB2 0%, #8B6FEF 50%, #E8B84B 100%);
background-size: 200% 200%;
-webkit-background-clip:text; -webkit-text-fill-color:transparent;
background-clip:text;
animation: gradshift 5s ease infinite;
}
.hero-sub {
margin-top:22px; font-size:17px; color:var(--t2);
line-height:1.7; max-width:520px; font-weight:400;
animation: fadeUp .7s .2s ease both;
}
.hero-actions {
display:flex; align-items:center; gap:14px; margin-top:40px; flex-wrap:wrap; justify-content:center;
animation: fadeUp .7s .3s ease both;
}
.btn-hero {
padding:14px 32px; border-radius:10px;
background:var(--a); color:#000;
font-family:'Geist',sans-serif; font-size:14.5px; font-weight:700;
cursor:pointer; border:none; transition:all .2s;
box-shadow:0 4px 24px rgba(62,207,178,.32);
text-decoration:none; display:inline-flex; align-items:center; gap:8px;
}
.btn-hero:hover { transform:translateY(-2px); box-shadow:0 8px 36px rgba(62,207,178,.45); }
.btn-demo {
padding:14px 32px; border-radius:10px;
border:1px solid var(--brdhi); background:transparent;
color:var(--txt); font-family:'Geist',sans-serif;
font-size:14.5px; font-weight:600; cursor:pointer;
transition:all .2s; text-decoration:none;
display:inline-flex; align-items:center; gap:8px;
}
.btn-demo:hover { background:rgba(255,255,255,.04); }
.hero-note {
margin-top:18px; font-size:12px; color:var(--t3);
animation: fadeUp .7s .4s ease both;
}
/* stats strip */
.stats-strip {
display:flex; align-items:center; justify-content:center; gap:48px;
margin-top:64px; flex-wrap:wrap;
animation: fadeUp .7s .5s ease both;
}
.stat-item { text-align:center; }
.stat-num {
font-family:'Syne',sans-serif; font-size:28px; font-weight:800;
color:var(--txt); letter-spacing:-.02em;
}
.stat-num span { color:var(--a); }
.stat-lbl { font-size:11.5px; color:var(--t3); font-weight:500; margin-top:2px; letter-spacing:.04em; }
.stat-div { width:1px; height:36px; background:var(--brd); }
/* ── TICKER ── */
.ticker-wrap {
overflow:hidden; border-top:1px solid var(--brd); border-bottom:1px solid var(--brd);
padding:12px 0; background:rgba(255,255,255,.014);
}
.ticker-track {
display:inline-flex; gap:0; white-space:nowrap;
animation: ticker 40s linear infinite;
}
.ticker-item {
display:inline-flex; align-items:center; gap:8px;
padding:0 32px; font-size:12px; color:var(--t3);
font-weight:500; letter-spacing:.04em;
}
.ticker-item .dot { color:var(--a); font-size:16px; }
/* ── SECTION SHARED ── */
.section { padding:100px 52px; max-width:1200px; margin:0 auto; }
.section-label {
font-size:11px; font-weight:700; letter-spacing:.12em;
text-transform:uppercase; color:var(--a); margin-bottom:14px;
}
.section-title {
font-family:'Syne',sans-serif; font-size:clamp(28px,4vw,46px);
font-weight:800; letter-spacing:-.03em; line-height:1.1;
}
.section-sub {
font-size:16px; color:var(--t2); line-height:1.7;
max-width:480px; margin-top:14px;
}
/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s, transform .6s; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
/* ── FEATURES ── */
.features-grid {
display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px;
}
.feat-card {
background:var(--card); border:1px solid var(--brd);
border-radius:16px; padding:28px 26px;
transition:border-color .2s, transform .2s, box-shadow .2s;
position:relative; overflow:hidden;
}
.feat-card::before {
content:''; position:absolute; inset:0;
background:radial-gradient(ellipse 60% 40% at 50% 0%, rgba(62,207,178,.06), transparent);
opacity:0; transition:opacity .3s;
}
.feat-card:hover { border-color:var(--brdhi); transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,0,0,.4); }
.feat-card:hover::before { opacity:1; }
.feat-icon {
width:42px; height:42px; border-radius:11px;
display:flex; align-items:center; justify-content:center;
margin-bottom:18px; font-size:19px;
}
.feat-icon-a { background:rgba(62,207,178,.12); }
.feat-icon-b { background:rgba(139,111,239,.12); }
.feat-icon-c { background:rgba(232,184,75,.12); }
.feat-title {
font-family:'Syne',sans-serif; font-size:17px; font-weight:700;
margin-bottom:9px; letter-spacing:-.01em;
}
.feat-desc { font-size:13.5px; color:var(--t2); line-height:1.65; }
/* ── HOW IT WORKS ── */
.how-grid {
display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.steps { display:flex; flex-direction:column; gap:0; }
.step {
display:flex; gap:18px; padding:24px 0;
border-bottom:1px solid var(--brd);
position:relative;
}
.step:last-child { border-bottom:none; }
.step-num {
font-family:'Geist Mono',monospace; font-size:11px; font-weight:500;
color:var(--a); background:rgba(62,207,178,.1);
width:28px; height:28px; border-radius:7px;
display:flex; align-items:center; justify-content:center;
flex-shrink:0; margin-top:2px; letter-spacing:.04em;
}
.step-title {
font-family:'Syne',sans-serif; font-size:16px; font-weight:700;
letter-spacing:-.01em; margin-bottom:6px;
}
.step-desc { font-size:13.5px; color:var(--t2); line-height:1.6; }
/* mini dashboard */
.mini-dash {
background:var(--card); border:1px solid var(--brd);
border-radius:18px; padding:24px;
box-shadow:0 24px 72px rgba(0,0,0,.5);
}
.mini-dash-top {
display:flex; align-items:center; gap:10px; margin-bottom:20px;
}
.mini-logo-sm {
width:30px; height:30px; border-radius:8px;
background:linear-gradient(135deg,#3ECFB2,#1A8C78);
display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mini-brand { font-family:'Syne',sans-serif; font-size:14px; font-weight:800; }
.mini-badge {
margin-left:auto; padding:3px 10px; border-radius:6px;
font-size:9.5px; font-weight:700; letter-spacing:.06em;
text-transform:uppercase; background:rgba(62,207,178,.1); color:var(--a);
}
.metrics-row {
display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:16px;
}
.metric-cell {
background:var(--surf); border:1px solid var(--brd); border-radius:10px;
padding:13px 12px; position:relative; overflow:hidden;
}
.metric-cell-glow-red { background:radial-gradient(circle at 100% 0%,rgba(232,93,93,.13),transparent 60%) }
.metric-cell-glow-green { background:radial-gradient(circle at 100% 0%,rgba(62,207,178,.13),transparent 60%) }
.metric-cell-glow-gold { background:radial-gradient(circle at 100% 0%,rgba(232,184,75,.13),transparent 60%) }
.metric-label {
font-size:8px; font-weight:700; letter-spacing:.09em;
text-transform:uppercase; color:var(--t3); margin-bottom:5px;
}
.metric-val {
font-family:'Geist Mono',monospace; font-size:22px; font-weight:500;
}
.metric-val sup { font-size:11px; opacity:.4; }
.dash-insight {
font-size:12.5px; color:var(--t2); line-height:1.65;
padding:11px 13px; background:var(--surf); border-radius:9px;
border-left:2px solid var(--a); margin-bottom:16px;
}
.domains-label {
font-size:8px; font-weight:700; letter-spacing:.1em;
text-transform:uppercase; color:var(--t3); margin-bottom:9px;
}
.domains-row { display:flex; gap:7px; flex-wrap:wrap; }
.domain-tag {
padding:5px 10px; border-radius:7px;
font-size:10.5px; font-weight:700;
font-family:'Geist Mono',monospace;
}
.domain-tag.avail { background:rgba(62,207,178,.08); border:1.5px solid var(--a); color:var(--a); }
.domain-tag.taken { background:var(--surf); border:1.5px solid var(--brd); color:var(--t3); }
/* ── TESTIMONIALS ── */
.testimonials-grid {
display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px;
}
.testimonial {
background:var(--card); border:1px solid var(--brd);
border-radius:16px; padding:26px 24px;
transition:border-color .2s, box-shadow .2s;
}
.testimonial:hover { border-color:var(--brdhi); box-shadow:0 12px 40px rgba(0,0,0,.3); }
.testimonial-body {
font-size:13.5px; color:var(--t2); line-height:1.7;
margin-bottom:20px;
}
.testimonial-body::before { content:'\201C'; color:var(--a); font-size:18px; font-family:'Syne',sans-serif; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar {
width:36px; height:36px; border-radius:10px; flex-shrink:0;
display:flex; align-items:center; justify-content:center;
font-size:12px; font-weight:700; color:#fff;
}
.author-name { font-size:13px; font-weight:600; }
.author-role { font-size:11.5px; color:var(--t3); margin-top:1px; }
/* ── CTA SECTION ── */
.cta-section {
text-align:center; padding:120px 32px;
position:relative; overflow:hidden;
}
.cta-section::before {
content:''; position:absolute; inset:0;
background:radial-gradient(ellipse 60% 60% at 50% 50%, rgba(62,207,178,.06), transparent);
pointer-events:none;
}
.cta-title {
font-family:'Syne',sans-serif;
font-size:clamp(36px,5vw,64px);
font-weight:800; letter-spacing:-.04em;
line-height:1.05; margin-bottom:20px;
}
.cta-sub {
font-size:16px; color:var(--t2); line-height:1.7;
max-width:460px; margin:0 auto 38px;
}
.cta-note { font-size:12px; color:var(--t3); margin-top:16px; }
/* ── FOOTER ── */
footer {
border-top:1px solid var(--brd);
padding:40px 52px;
display:flex; align-items:center; justify-content:space-between;
flex-wrap:wrap; gap:16px;
}
.footer-brand {
font-family:'Syne',sans-serif; font-size:16px; font-weight:800;
letter-spacing:-.02em;
}
.footer-brand em { color:var(--a); font-style:normal; }
.footer-links { display:flex; gap:26px; }
.footer-links a {
font-size:13px; color:var(--t3); text-decoration:none;
transition:color .15s; font-weight:500;
}
.footer-links a:hover { color:var(--txt); }
.footer-copy { font-size:12px; color:var(--t3); }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav { padding:0 24px; }
.nav-links { display:none; }
.section { padding:70px 24px; }
.features-grid { grid-template-columns:1fr; }
.how-grid { grid-template-columns:1fr; gap:48px; }
.testimonials-grid { grid-template-columns:1fr; }
footer { flex-direction:column; padding:32px 24px; text-align:center; }
.footer-links { justify-content:center; }
}
</style>
</head>
<body>
<!-- NAVBAR -->
<nav id="nav">
<a href="index.html" class="nav-logo">
<div class="logo-mark">
<svg width="15" height="15" viewBox="0 0 18 18" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="1,14 6,8 10,11 17,3"/>
<polyline points="12,3 17,3 17,8"/>
</svg>
</div>
<div class="logo-word">Rizel<em>IQ</em></div>
</a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#how">How it works</a>
<a href="pricing.html">Pricing</a>
<a href="#">Docs</a>
</div>
<div class="nav-actions">
<a href="login.html" class="btn-ghost">Sign in</a>
<a href="login.html" class="btn-primary">
<svg width="12" height="12" viewBox="0 0 14 14" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"><path d="M7 1L9.2 5.8 14 7 9.2 8.8 7 14 4.8 8.8 0 7 4.8 5.2z"/></svg>
Get started free
</a>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="hero-eyebrow">
<span class="hero-eyebrow-dot"></span>
Now live — Real-time market intelligence
</div>
<h1 class="hero-title">
Know your market<br/>
<span class="grad">before you build.</span>
</h1>
<p class="hero-sub">
RizelIQ surfaces competitors, tracks market signals, and scores opportunities — so founders ship with conviction, not guesswork.
</p>
<div class="hero-actions">
<a href="login.html" class="btn-hero">
<svg width="14" height="14" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"><path d="M8 1l1.8 4.5L14 7l-4.2 2.5L8 15l-1.8-5.5L2 7l4.2-2.5z"/></svg>
Get Started Free
</a>
<a href="app.html" class="btn-demo">
<svg width="14" height="14" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><circle cx="8" cy="8" r="7"/><polygon points="6,5.5 11,8 6,10.5" fill="currentColor" stroke="none"/></svg>
See Demo
</a>
</div>
<p class="hero-note">No credit card required · Free tier forever</p>
<div class="stats-strip">
<div class="stat-item">
<div class="stat-num">14<span>k+</span></div>
<div class="stat-lbl">Companies tracked</div>
</div>
<div class="stat-div"></div>
<div class="stat-item">
<div class="stat-num">2<span>.3k</span></div>
<div class="stat-lbl">Active founders</div>
</div>
<div class="stat-div"></div>
<div class="stat-item">
<div class="stat-num">98<span>ms</span></div>
<div class="stat-lbl">Avg. query time</div>
</div>
<div class="stat-div"></div>
<div class="stat-item">
<div class="stat-num">4<span>.9</span></div>
<div class="stat-lbl">User rating</div>
</div>
</div>
</section>
<!-- TICKER -->
<div class="ticker-wrap">
<div class="ticker-track">
<span class="ticker-item"><span class="dot">•</span> Real-time competitor tracking</span>
<span class="ticker-item"><span class="dot">•</span> Domain monitoring</span>
<span class="ticker-item"><span class="dot">•</span> Market signal alerts</span>
<span class="ticker-item"><span class="dot">•</span> Industry trend analysis</span>
<span class="ticker-item"><span class="dot">•</span> Funding round detection</span>
<span class="ticker-item"><span class="dot">•</span> SEO gap intelligence</span>
<span class="ticker-item"><span class="dot">•</span> Verified data sources</span>
<span class="ticker-item"><span class="dot">•</span> Exportable reports</span>
<span class="ticker-item"><span class="dot">•</span> Real-time competitor tracking</span>
<span class="ticker-item"><span class="dot">•</span> Domain monitoring</span>
<span class="ticker-item"><span class="dot">•</span> Market signal alerts</span>
<span class="ticker-item"><span class="dot">•</span> Industry trend analysis</span>
<span class="ticker-item"><span class="dot">•</span> Funding round detection</span>
<span class="ticker-item"><span class="dot">•</span> SEO gap intelligence</span>
<span class="ticker-item"><span class="dot">•</span> Verified data sources</span>
<span class="ticker-item"><span class="dot">•</span> Exportable reports</span>
</div>
</div>
<!-- FEATURES -->
<section class="section" id="features">
<div class="reveal">
<div class="section-label">Core capabilities</div>
<h2 class="section-title">Everything you need to move first.</h2>
<p class="section-sub">Three focused tools that turn raw market noise into actionable intelligence.</p>
</div>
<div class="features-grid">
<div class="feat-card reveal reveal-d1">
<div class="feat-icon feat-icon-a">
<svg width="20" height="20" viewBox="0 0 22 22" fill="none" stroke="#3ECFB2" stroke-width="1.8" stroke-linecap="round">
<circle cx="10" cy="10" r="8"/><line x1="16" y1="16" x2="21" y2="21"/>
</svg>
</div>
<div class="feat-title">Real-Time Search</div>
<div class="feat-desc">Query our live database of 14,000+ companies by name, domain, keyword, or industry tag. Results ranked by relevance, updated continuously.</div>
</div>
<div class="feat-card reveal reveal-d2">
<div class="feat-icon feat-icon-b">
<svg width="20" height="20" viewBox="0 0 22 22" fill="none" stroke="#8B6FEF" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="18" height="14" rx="3"/>
<polyline points="6,10 9,13 13,9 16,12"/>
</svg>
</div>
<div class="feat-title">Competitor Tracking</div>
<div class="feat-desc">Monitor competitor moves, pricing changes, hiring signals, and domain updates — all aggregated into one clean dashboard.</div>
</div>
<div class="feat-card reveal reveal-d3">
<div class="feat-icon feat-icon-c">
<svg width="20" height="20" viewBox="0 0 22 22" fill="none" stroke="#E8B84B" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 17 L8 11 L12 14 L19 6"/>
<path d="M15 6 L19 6 L19 10"/>
</svg>
</div>
<div class="feat-title">Market Signals</div>
<div class="feat-desc">Catch emerging trends before they peak. Velocity scores, saturation index, and opportunity windows — updated every 24 hours.</div>
</div>
</div>
</section>
<!-- HOW IT WORKS -->
<section class="section" id="how" style="padding-top:20px;">
<div class="how-grid">
<div>
<div class="reveal">
<div class="section-label">How it works</div>
<h2 class="section-title">From idea to intelligence<br/>in 30 seconds.</h2>
</div>
<div class="steps" style="margin-top:40px;">
<div class="step reveal reveal-d1">
<div class="step-num">01</div>
<div>
<div class="step-title">Describe your space</div>
<div class="step-desc">Type your startup category, domain, or company name. No forms, no templates — plain language works.</div>
</div>
</div>
<div class="step reveal reveal-d2">
<div class="step-num">02</div>
<div>
<div class="step-title">We scan in real time</div>
<div class="step-desc">RizelIQ runs a focused live search, identifies competitors, scans trend signals, and scores your opportunity window.</div>
</div>
</div>
<div class="step reveal reveal-d3">
<div class="step-num">03</div>
<div>
<div class="step-title">Get your intelligence report</div>
<div class="step-desc">A full five-section report with scores, competitor cards, and actionable insights — ready to act on.</div>
</div>
</div>
</div>
</div>
<div class="reveal reveal-d2">
<div class="mini-dash">
<div class="mini-dash-top">
<div class="mini-logo-sm">
<svg width="13" height="13" viewBox="0 0 18 18" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="1,14 6,8 10,11 17,3"/>
<polyline points="12,3 17,3 17,8"/>
</svg>
</div>
<div class="mini-brand">RizelIQ Report</div>
<div class="mini-badge">▲ Rising</div>
</div>
<div class="metrics-row">
<div class="metric-cell">
<div style="position:absolute;inset:0;" class="metric-cell-glow-red"></div>
<div class="metric-label">Saturation</div>
<div class="metric-val" style="color:#E85D5D;">74<sup>%</sup></div>
</div>
<div class="metric-cell">
<div style="position:absolute;inset:0;" class="metric-cell-glow-green"></div>
<div class="metric-label">Opportunity</div>
<div class="metric-val" style="color:#3ECFB2;">8.2<sup>/10</sup></div>
</div>
<div class="metric-cell">
<div style="position:absolute;inset:0;" class="metric-cell-glow-gold"></div>
<div class="metric-label">Velocity</div>
<div class="metric-val" style="color:#E8B84B;">2.4<sup>×</sup></div>
</div>
</div>
<div class="dash-insight">
AI productivity tools growing at 2.4× MoM. Deep AI integration and mobile-first gaps create a genuine entry window.
</div>
<div class="domains-label">Domain availability — noteflow</div>
<div class="domains-row">
<div class="domain-tag avail">.ai ✓</div>
<div class="domain-tag avail">.io ✓</div>
<div class="domain-tag taken">.com ✗</div>
<div class="domain-tag avail">.app ✓</div>
<div class="domain-tag taken">.co ✗</div>
</div>
</div>
</div>
</div>
</section>
<!-- TESTIMONIALS -->
<section class="section">
<div class="reveal">
<div class="section-label">From the community</div>
<h2 class="section-title">Founders trust it.</h2>
</div>
<div class="testimonials-grid">
<div class="testimonial reveal reveal-d1">
<div class="testimonial-body">Before RizelIQ I'd spend a week on market research. Now I get a better report in 30 seconds. It changed how I evaluate every new idea.</div>
<div class="testimonial-author">
<div class="author-avatar" style="background:linear-gradient(135deg,#FF5B5B,#FF8C00);">SL</div>
<div>
<div class="author-name">Sarah L.</div>
<div class="author-role">Founder, Stackbloom</div>
</div>
</div>
</div>
<div class="testimonial reveal reveal-d2">
<div class="testimonial-body">The competitor intel cards alone saved us from building into a market where three well-funded startups had a two-year head start.</div>
<div class="testimonial-author">
<div class="author-avatar" style="background:linear-gradient(135deg,#1A6FC4,#00B4D8);">MK</div>
<div>
<div class="author-name">Marcus K.</div>
<div class="author-role">CEO, Arkwright Labs</div>
</div>
</div>
</div>
<div class="testimonial reveal reveal-d3">
<div class="testimonial-body">I showed my YC application reader the RizelIQ report for our idea. They said it was the most data-backed deck they'd seen from a pre-product team.</div>
<div class="testimonial-author">
<div class="author-avatar" style="background:linear-gradient(135deg,#6C3CE4,#9F60E8);">PR</div>
<div>
<div class="author-name">Priya R.</div>
<div class="author-role">Co-founder, Mira AI</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta-section">
<div class="cta-title reveal">
Stop guessing.<br/>
<span style="color:var(--a);">Start knowing.</span>
</div>
<p class="cta-sub reveal">Your next idea deserves a real market read. Start free — no sign-up required to search.</p>
<div class="reveal">
<a href="login.html" class="btn-hero" style="font-size:15px; padding:15px 36px;">
<svg width="14" height="14" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"><path d="M8 1l1.8 4.5L14 7l-4.2 2.5L8 15l-1.8-5.5L2 7l4.2-2.5z"/></svg>
Start Building Smarter Today
</a>
</div>
<p class="cta-note reveal">No credit card · No account required · Results in under 30 seconds</p>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-brand">Rizel<em>IQ</em></div>
<div class="footer-links">
<a href="#features">Features</a>
<a href="#how">How it works</a>
<a href="pricing.html">Pricing</a>
<a href="app.html">Dashboard</a>
<a href="login.html">Sign in</a>
</div>
<div class="footer-copy">© 2025 RizelIQ. All rights reserved.</div>
</footer>
<script>
const nav = document.getElementById('nav');
window.addEventListener('scroll', () => nav.classList.toggle('scrolled', scrollY > 20));
const reveals = document.querySelectorAll('.reveal');
const io = new IntersectionObserver(entries => {
entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); });
}, { threshold: 0.1 });
reveals.forEach(el => io.observe(el));
</script>
</body>
</html>