-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1034 lines (913 loc) Β· 27.8 KB
/
index.html
File metadata and controls
1034 lines (913 loc) Β· 27.8 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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification" content="g15MsRYz-EaD4_jVAb0_y1AlkuP0_rYGeJ5r_LJmcfE" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invoice Finance - Tokenized Invoice Financing on Cardano</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #333;
overflow-x: hidden;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px;
background: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 24px;
font-weight: 800;
background: linear-gradient(135deg, #dc2626 0%, #fff 50%, #16a34a 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 35px;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: #555;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #dc2626;
}
.nav-cta {
background: linear-gradient(135deg, #dc2626, #991b1b);
color: white;
padding: 12px 28px;
border-radius: 25px;
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
padding: 120px 60px;
position: relative;
overflow: hidden;
min-height: 650px;
display: flex;
align-items: center;
justify-content: center;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background-image:
radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(22, 163, 74, 0.12) 0%, transparent 50%);
animation: pulse 15s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 950px;
}
.hero h1 {
font-size: 62px;
color: white;
margin-bottom: 24px;
line-height: 1.15;
font-weight: 800;
animation: fadeInUp 0.8s ease;
}
.hero p {
font-size: 22px;
color: #e5e7eb;
margin-bottom: 40px;
line-height: 1.6;
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
animation: fadeInUp 1.2s ease;
}
.btn-primary {
background: linear-gradient(135deg, #dc2626, #991b1b);
color: white;
padding: 18px 45px;
border: none;
border-radius: 30px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
}
.btn-secondary {
background: linear-gradient(135deg, #16a34a, #15803d);
color: white;
padding: 18px 45px;
border: none;
border-radius: 30px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-secondary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(22, 163, 74, 0.5);
}
/* Floating Invoices */
.floating-invoices {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.invoice-float {
position: absolute;
animation: floatInvoice 8s ease-in-out infinite;
opacity: 0.15;
}
.invoice-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 50px; }
.invoice-2 { top: 20%; right: 12%; animation-delay: 1.5s; font-size: 45px; }
.invoice-3 { bottom: 25%; left: 15%; animation-delay: 3s; font-size: 55px; }
.invoice-4 { bottom: 20%; right: 10%; animation-delay: 2s; font-size: 48px; }
.invoice-5 { top: 55%; left: 5%; animation-delay: 4s; font-size: 42px; }
.invoice-6 { top: 65%; right: 8%; animation-delay: 1s; font-size: 52px; }
@keyframes floatInvoice {
0%, 100% { transform: translateY(0) rotate(0deg); }
25% { transform: translateY(-30px) rotate(8deg); }
50% { transform: translateY(-20px) rotate(-8deg); }
75% { transform: translateY(-25px) rotate(5deg); }
}
/* Features Section */
.features {
padding: 120px 60px;
background: white;
}
.features-header {
text-align: center;
margin-bottom: 90px;
}
.features-header h2 {
font-size: 48px;
margin-bottom: 20px;
color: #1f2937;
font-weight: 800;
}
.features-header p {
font-size: 20px;
color: #6b7280;
max-width: 750px;
margin: 0 auto;
line-height: 1.7;
}
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 100px;
max-width: 1300px;
margin: 0 auto;
align-items: center;
}
/* Invoice Visual */
.invoice-visual {
position: relative;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
}
.invoice-stack {
position: relative;
width: 350px;
height: 450px;
}
.invoice-doc {
position: absolute;
width: 280px;
height: 360px;
background: linear-gradient(135deg, #fff, #f9fafb);
border-radius: 16px;
box-shadow: 0 15px 50px rgba(0,0,0,0.15);
padding: 30px;
border: 3px solid #e5e7eb;
}
.invoice-doc-1 {
top: 0;
left: 0;
z-index: 3;
animation: invoicePulse 3s ease-in-out infinite;
}
.invoice-doc-2 {
top: 20px;
left: 25px;
z-index: 2;
opacity: 0.7;
transform: rotate(5deg);
}
.invoice-doc-3 {
top: 40px;
left: 50px;
z-index: 1;
opacity: 0.5;
transform: rotate(8deg);
}
@keyframes invoicePulse {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-15px) scale(1.05); }
}
.invoice-header {
display: flex;
justify-content: space-between;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid #dc2626;
}
.invoice-title {
font-size: 22px;
font-weight: 800;
color: #dc2626;
}
.invoice-number {
font-size: 14px;
color: #6b7280;
font-weight: 600;
}
.invoice-line {
height: 8px;
background: linear-gradient(90deg, #dc2626, #16a34a);
border-radius: 4px;
margin: 12px 0;
opacity: 0.3;
}
.invoice-line.short {
width: 60%;
}
.nft-badge {
position: absolute;
bottom: 30px;
right: -30px;
background: linear-gradient(135deg, #16a34a, #15803d);
color: white;
padding: 15px 25px;
border-radius: 50px;
font-weight: 700;
font-size: 14px;
box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.feature-content h3 {
font-size: 38px;
margin-bottom: 25px;
color: #1f2937;
font-weight: 800;
}
.feature-content p {
font-size: 18px;
color: #6b7280;
line-height: 1.8;
margin-bottom: 18px;
}
.feature-list {
list-style: none;
margin-top: 35px;
}
.feature-list li {
padding: 14px 0;
display: flex;
align-items: center;
gap: 15px;
font-size: 17px;
color: #374151;
font-weight: 500;
}
.feature-list li::before {
content: 'β';
width: 28px;
height: 28px;
background: linear-gradient(135deg, #16a34a, #15803d);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-weight: 800;
font-size: 16px;
}
.feature-list.red li::before {
background: linear-gradient(135deg, #dc2626, #991b1b);
}
/* How It Works */
.how-it-works {
padding: 120px 60px;
background: #f9fafb;
}
.how-it-works h2 {
text-align: center;
font-size: 48px;
margin-bottom: 70px;
color: #1f2937;
font-weight: 800;
}
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 45px;
max-width: 1300px;
margin: 0 auto;
}
.step-card {
background: white;
padding: 45px 35px;
border-radius: 24px;
text-align: center;
box-shadow: 0 10px 35px rgba(0,0,0,0.08);
transition: all 0.4s;
position: relative;
border: 2px solid transparent;
}
.step-card:hover {
transform: translateY(-12px);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
border-color: #dc2626;
}
.step-number {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #dc2626, #991b1b);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
font-weight: 800;
margin: 0 auto 25px;
}
.step-card:nth-child(2) .step-number {
background: linear-gradient(135deg, #fff, #e5e7eb);
color: #1f2937;
border: 4px solid #6b7280;
}
.step-card:nth-child(3) .step-number {
background: linear-gradient(135deg, #16a34a, #15803d);
}
.step-icon {
font-size: 56px;
margin-bottom: 25px;
}
.step-card h3 {
font-size: 24px;
margin-bottom: 18px;
color: #1f2937;
font-weight: 700;
}
.step-card p {
color: #6b7280;
line-height: 1.7;
font-size: 16px;
}
/* Stats */
.stats {
padding: 90px 60px;
background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
color: white;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 50px;
max-width: 1300px;
margin: 0 auto;
text-align: center;
}
.stat-item h3 {
font-size: 56px;
margin-bottom: 12px;
background: linear-gradient(135deg, #dc2626, #16a34a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 900;
}
.stat-item p {
font-size: 18px;
color: #9ca3af;
font-weight: 500;
}
/* Testimonials */
.testimonials {
padding: 120px 60px;
background: white;
}
.testimonials h2 {
text-align: center;
font-size: 48px;
margin-bottom: 70px;
color: #1f2937;
font-weight: 800;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 45px;
max-width: 1300px;
margin: 0 auto;
}
.testimonial {
background: #f9fafb;
padding: 40px;
border-radius: 24px;
box-shadow: 0 6px 25px rgba(0,0,0,0.07);
transition: all 0.4s;
border: 2px solid transparent;
}
.testimonial:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
border-color: #16a34a;
}
.testimonial-text {
color: #4b5563;
line-height: 1.9;
margin-bottom: 28px;
font-style: italic;
font-size: 16px;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 18px;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, #dc2626, #16a34a);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 22px;
}
.author-info h4 {
font-size: 18px;
margin-bottom: 5px;
color: #1f2937;
font-weight: 700;
}
.author-info p {
font-size: 15px;
color: #6b7280;
}
/* CTA Section */
.cta-section {
padding: 120px 60px;
background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
text-align: center;
color: white;
}
.cta-section h2 {
font-size: 52px;
margin-bottom: 25px;
font-weight: 800;
}
.cta-section p {
font-size: 22px;
color: #e5e7eb;
margin-bottom: 45px;
line-height: 1.6;
}
/* Footer */
footer {
background: #111827;
color: white;
padding: 70px 60px 40px;
}
.footer-content {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 50px;
margin-bottom: 50px;
}
.footer-section h3 {
margin-bottom: 25px;
font-size: 19px;
font-weight: 700;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 14px;
}
.footer-section a {
color: #9ca3af;
text-decoration: none;
transition: color 0.3s;
font-size: 15px;
}
.footer-section a:hover {
color: white;
}
.social-links {
display: flex;
gap: 18px;
margin-top: 25px;
}
.social-icon {
width: 45px;
height: 45px;
background: #374151;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
cursor: pointer;
font-size: 20px;
}
.social-icon:hover {
background: #dc2626;
transform: translateY(-4px);
}
.footer-bottom {
text-align: center;
padding-top: 40px;
border-top: 1px solid #374151;
color: #9ca3af;
font-size: 14px;
}
@media (max-width: 768px) {
.features-grid,
.steps-grid,
.testimonial-grid,
.stats-grid,
.footer-content {
grid-template-columns: 1fr;
}
.nav-links {
display: none;
}
nav,
.hero,
.features,
.how-it-works,
.testimonials,
.cta-section,
footer {
padding-left: 30px;
padding-right: 30px;
}
.hero h1 {
font-size: 38px;
}
.invoice-visual {
height: 400px;
}
.hero-buttons {
flex-direction: column;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="logo">
π CoxyFi
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="register.php">Register</a></li>
</ul>
<a href="app.php" class="nav-cta">Launch App</a>
</nav>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="floating-invoices">
<div class="invoice-float invoice-1">π</div>
<div class="invoice-float invoice-2">π</div>
<div class="invoice-float invoice-3">π</div>
<div class="invoice-float invoice-4">π</div>
<div class="invoice-float invoice-5">π</div>
<div class="invoice-float invoice-6">π</div>
</div>
<div class="hero-content">
<h1>Transform Invoices into Instant Liquidity</h1>
<p>Tokenize your invoices as NFTs on Cardano blockchain, get funded instantly, and unlock working capital without waiting for payment terms</p>
<div class="hero-buttons">
<a href="register.php" class="btn-primary">Get Started</a>
<a href="doc.html" class="btn-secondary">Learn More</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="features-header">
<h2>Revolutionary Invoice Financing</h2>
<p>Leverage blockchain technology to convert your outstanding invoices into NFTs and access immediate funding from a decentralized marketplace of investors</p>
</div>
<!-- Tokenization Feature -->
<div class="features-grid">
<div class="invoice-visual">
<div class="invoice-stack">
<div class="invoice-doc invoice-doc-3"></div>
<div class="invoice-doc invoice-doc-2"></div>
<div class="invoice-doc invoice-doc-1">
<div class="invoice-header">
<div class="invoice-title">INVOICE</div>
<div class="invoice-number">#2026-001</div>
</div>
<div class="invoice-line"></div>
<div class="invoice-line short"></div>
<div class="invoice-line"></div>
<div class="invoice-line short"></div>
<div class="invoice-line"></div>
</div>
<div class="nft-badge">π¨ NFT Token</div>
</div>
</div>
<div class="feature-content">
<h3>Instant Invoice Tokenization</h3>
<p>Upload your invoice document and watch it automatically transform into a unique NFT on the Cardano blockchain. Each invoice becomes a tradeable digital asset with verifiable authenticity.</p>
<p>Our smart contracts ensure complete transparency and immutability, protecting both issuers and investors throughout the financing process.</p>
<ul class="feature-list red">
<li>Automatic NFT minting upon upload</li>
<li>Immutable on-chain record</li>
<li>Cryptographic verification</li>
<li>Instant marketplace listing</li>
<li>Full ownership transparency</li>
</ul>
</div>
</div>
<!-- Funding Feature -->
<div class="features-grid" style="margin-top: 120px;">
<div class="feature-content">
<h3>Decentralized Funding Marketplace</h3>
<p>Access a global pool of investors ready to fund your invoices. Set your terms, and let the marketplace connect you with capital providers seeking returns on invoice financing.</p>
<p>Skip traditional banks and factoring companies. Get funded within minutes, not weeks, with transparent terms and competitive rates driven by market demand.</p>
<ul class="feature-list">
<li>Instant funding availability</li>
<li>Competitive market-driven rates</li>
<li>No credit checks required</li>
<li>Smart contract escrow</li>
<li>Automated repayment handling</li>
</ul>
</div>
<div class="invoice-visual">
<svg width="450" height="450" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<!-- Central Hub -->
<circle cx="100" cy="100" r="30" fill="url(#redGradient)" opacity="0.9">
<animate attributeName="r" values="30;35;30" dur="3s" repeatCount="indefinite"/>
</circle>
<text x="100" y="108" font-size="28" fill="white" text-anchor="middle" font-weight="bold">π°</text>
<!-- Investor Nodes -->
<circle cx="100" cy="30" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" repeatCount="indefinite"/>
</circle>
<text x="100" y="36" font-size="16" fill="white" text-anchor="middle">π€</text>
<circle cx="165" cy="65" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" begin="0.4s" repeatCount="indefinite"/>
</circle>
<text x="165" y="71" font-size="16" fill="white" text-anchor="middle">π€</text>
<circle cx="165" cy="135" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" begin="0.8s" repeatCount="indefinite"/>
</circle>
<text x="165" y="141" font-size="16" fill="white" text-anchor="middle">π€</text>
<circle cx="100" cy="170" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" begin="1.2s" repeatCount="indefinite"/>
</circle>
<text x="100" y="176" font-size="16" fill="white" text-anchor="middle">π€</text>
<circle cx="35" cy="135" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" begin="1.6s" repeatCount="indefinite"/>
</circle>
<text x="35" y="141" font-size="16" fill="white" text-anchor="middle">π€</text>
<circle cx="35" cy="65" r="18" fill="#16a34a" opacity="0.8">
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" begin="2s" repeatCount="indefinite"/>
</circle>
<text x="35" y="71" font-size="16" fill="white" text-anchor="middle">π€</text>
<!-- Connection Lines -->
<line x1="100" y1="70" x2="100" y2="48" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<line x1="130" y1="100" x2="147" y2="82" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<line x1="130" y1="100" x2="147" y2="118" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<line x1="100" y1="130" x2="100" y2="152" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<line x1="70" y1="100" x2="53" y2="118" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<line x1="70" y1="100" x2="53" y2="82" stroke="#6b7280" stroke-width="2" stroke-dasharray="4,4" opacity="0.4"/>
<defs>
<linearGradient id="redGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#dc2626;stop-opacity:1" />
<stop offset="100%" style="stop-color:#991b1b;stop-opacity:1" />
</linearGradient>
</defs>
</svg>
</div>
</div>
</section>
<!-- How It Works -->
<section class="how-it-works" id="how-it-works">
<h2>How It Works</h2>
<div class="steps-grid">
<div class="step-card">
<div class="step-number">1</div>
<div class="step-icon">π€</div>
<h3>Upload Invoice</h3>
<p>Submit your unpaid invoice to our platform. Our system verifies the invoice details and creates a unique NFT representation on the Cardano blockchain.</p>
</div>
<div class="step-card">
<div class="step-number">2</div>
<div class="step-icon">π€</div>
<h3>Get Matched</h3>
<p>Investors browse available invoices and bid on funding opportunities. You receive competitive offers within minutes based on invoice value and terms.</p>
</div>
<div class="step-card">
<div class="step-number">3</div>
<div class="step-icon">πΈ</div>
<h3>Receive Funds</h3>
<p>Accept an offer and receive immediate payment minus a small discount. Smart contracts handle the entire transaction securely on the blockchain.</p>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="stats">
<div class="stats-grid">
<div class="stat-item">
<h3>$2.5B+</h3>
<p>Total Invoice Volume</p>
</div>
<div class="stat-item">
<h3>15K+</h3>
<p>Active Users</p>
</div>
<div class="stat-item">
<h3>98.7%</h3>
<p>Repayment Rate</p>
</div>
<div class="stat-item">
<h3>< 1hr</h3>
<p>Average Funding Time</p>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials" id="testimonials">
<h2>What Our Users Say</h2>
<div class="testimonial-grid">
<div class="testimonial">
<div class="testimonial-text">
"CoxyFi transformed our cash flow management. We went from waiting 90 days for payments to having immediate access to working capital. The platform is intuitive and the funding process is incredibly fast."
</div>
<div class="testimonial-author">
<div class="author-avatar">SM</div>
<div class="author-info">
<h4>Sarah Mitchell</h4>
<p>CEO, TechFlow Solutions</p>
</div>
</div>
</div>
<div class="testimonial">
<div class="testimonial-text">
"As an investor, I love the transparency and security of blockchain-based invoice financing. The returns are competitive and the smart contracts give me complete confidence in the process."
</div>
<div class="testimonial-author">
<div class="author-avatar">JC</div>
<div class="author-info">
<h4>James Chen</h4>
<p>Private Investor</p>
</div>
</div>
</div>
<div class="testimonial">
<div class="testimonial-text">
"We've financed over $500K in invoices through this platform. The rates are fair, the process is seamless, and we no longer have to deal with traditional banks or factoring companies."
</div>
<div class="testimonial-author">
<div class="author-avatar">RP</div>
<div class="author-info">
<h4>Rachel Park</h4>
<p>CFO, Global Logistics Inc</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section">
<h2>Ready to Transform Your Cash Flow?</h2>
<p>Join thousands of businesses unlocking liquidity through tokenized invoice financing</p>
<div class="hero-buttons">
<a href="register.php" class="btn-primary">Get Started Now</a>
<a href="#features" class="btn-secondary">Explore Features</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>CoxyFi</h3>
<p style="color: #9ca3af; line-height: 1.8; margin-top: 15px;">
Blockchain-powered invoice financing platform built on Cardano. Instant liquidity for businesses worldwide.
</p>
<div class="social-links">
<div class="social-icon">π</div>
<div class="social-icon">in</div>
<div class="social-icon">β</div>
<div class="social-icon">π±</div>
</div>
</div>
<div class="footer-section">
<h3>Platform</h3>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>