-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1380 lines (1221 loc) · 50.4 KB
/
index.html
File metadata and controls
1380 lines (1221 loc) · 50.4 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 charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Primary Meta Tags -->
<title>CenSync - Blockchain & Distributed Systems Development</title>
<meta name="title" content="CenSync - Blockchain & Distributed Systems Development">
<meta name="description"
content="Expert development of distributed systems, blockchain solutions, DEX/CEX platforms, crosschain bridges, and fintech applications. Professional algorithmic trading systems and enterprise blockchain infrastructure.">
<meta name="keywords"
content="blockchain development, distributed systems, DEX development, CEX platform, crosschain bridges, fintech applications, algorithmic trading, smart contracts, blockchain infrastructure, DeFi solutions">
<meta name="author" content="CenSync">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://censync.com/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://censync.com/">
<meta property="og:title" content="CenSync - Blockchain & Distributed Systems Development">
<meta property="og:description"
content="Expert development of distributed systems, blockchain solutions, and fintech applications. Building the future of decentralized systems.">
<meta property="og:image" content="https://censync.com/og-image.png">
<meta property="og:site_name" content="CenSync">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://censync.com/">
<meta property="twitter:title" content="CenSync - Blockchain & Distributed Systems Development">
<meta property="twitter:description"
content="Expert development of distributed systems, blockchain solutions, and fintech applications. Building the future of decentralized systems.">
<meta property="twitter:image" content="https://censync.com/og-image.png">
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#ffd200">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<!-- Favicon & Manifest -->
<link rel="manifest" href="/manifest.json">
<link rel="icon" type="image/svg+xml"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='75' font-size='80'%3E⚡%3C/text%3E%3C/svg%3E">
<link rel="apple-touch-icon" href="/icon-192.png">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Inline Styles -->
<style>
:root {
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
--gold-gradient: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
--animation-speed: 0.3s
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
* {
box-sizing: border-box
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
overflow-x: hidden;
min-height: 100vh;
line-height: 1.8;
font-weight: 300;
letter-spacing: -0.01em
}
.navbar {
transition: all var(--animation-speed) ease;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 100
}
.navbar-burger {
height: 3.25rem;
width: 3.25rem
}
.navbar-item {
font-weight: 400;
letter-spacing: 0.01em;
transition: color var(--animation-speed) ease
}
.navbar-item:hover {
color: #ffd200 !important
}
.navbar-menu {
box-shadow: none
}
@media screen and (max-width: 1023px) {
.navbar-menu {
background-color: #1a1a2e
}
.navbar-item {
color: #fff !important
}
}
.hero-gradient {
background: var(--dark-gradient);
position: relative;
overflow: hidden
}
.hero-gradient::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(247, 151, 30, 0.1) 0%, transparent 50%);
animation: gradientShift 10s ease infinite
}
@keyframes gradientShift {
0%, 100% {
opacity: 1
}
50% {
opacity: 0.8
}
}
.hero-body {
position: relative;
z-index: 1
}
.floating-icons {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
opacity: 0.1
}
.floating-icon {
position: absolute;
font-size: 3rem;
color: #ffd200;
animation: float 6s ease-in-out infinite
}
.floating-icon:nth-child(1) {
animation-delay: 0s
}
.floating-icon:nth-child(2) {
animation-delay: 1.5s
}
.floating-icon:nth-child(3) {
animation-delay: 3s
}
.floating-icon:nth-child(4) {
animation-delay: 4.5s
}
@keyframes float {
0%, 100% {
transform: translateY(0px)
}
50% {
transform: translateY(-20px)
}
}
.fade-in {
animation: fadeIn 1s ease-out
}
.fade-in-delay {
animation: fadeIn 1s ease-out 0.3s both
}
.fade-in-delay-2 {
animation: fadeIn 1s ease-out 0.6s both
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(30px)
}
to {
opacity: 1;
transform: translateY(0)
}
}
.bounce {
display: inline-block;
animation: bounce 2s infinite
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0)
}
40% {
transform: translateY(-10px)
}
60% {
transform: translateY(-5px)
}
}
.service-card {
height: 100%;
transition: all var(--animation-speed) ease;
border: none;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-radius: 8px
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}
.service-icon {
transition: transform var(--animation-speed) ease
}
.service-card:hover .service-icon {
transform: scale(1.1)
}
@media screen and (max-width: 768px) {
.service-card {
margin-bottom: 1rem
}
.service-card:hover {
transform: none
}
}
.solution-box {
height: 100%;
transition: all var(--animation-speed) ease;
border-left: 4px solid transparent;
border-radius: 6px
}
.solution-box:hover {
border-left-color: #ffd200;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15)
}
.feature-list {
list-style: none;
padding: 0;
margin: 0
}
.feature-list li {
padding: 0.5rem 0;
display: flex;
align-items: center;
gap: 0.75rem
}
@media screen and (max-width: 768px) {
.solution-box {
margin-bottom: 1rem
}
.solution-box:hover {
transform: none
}
}
.tech-card {
height: 100%;
transition: all var(--animation-speed) ease;
border-radius: 8px
}
.tech-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}
.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center
}
.tech-tags .tag {
border: 1px solid #ddd;
font-weight: 400
}
@media screen and (max-width: 768px) {
.tech-card {
margin-bottom: 1rem
}
.tech-card:hover {
transform: none
}
}
.stat-item {
padding: 2rem 0
}
.stat-number {
font-weight: 200;
margin-bottom: 0.5rem;
letter-spacing: -0.02em
}
.contact-box {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
border-radius: 8px
}
.contact-item {
font-size: 1.1rem;
font-weight: 300
}
.icon-text {
display: inline-flex;
align-items: center;
gap: 0.5rem
}
#contactForm .input, #contactForm .textarea {
border: 2px solid #e8e8e8;
transition: all var(--animation-speed) ease;
width: 100%
}
#contactForm .input:focus, #contactForm .textarea:focus {
border-color: #ffd200;
box-shadow: 0 0 0 0.125em rgba(255, 210, 0, 0.25);
outline: none
}
@media screen and (max-width: 768px) {
.contact-item {
font-size: 1rem;
margin-bottom: 1rem
}
}
.footer {
padding: 4rem 1.5rem 2rem
}
.footer-links {
list-style: none;
padding: 0
}
.footer-links li {
margin-bottom: 0.5rem
}
.footer-links a {
color: #b0b0b0;
transition: color var(--animation-speed) ease;
font-weight: 300
}
.footer-links a:hover {
color: #ffd200
}
.social-links {
display: flex;
gap: 0.75rem
}
.social-links .button:hover {
background: #ffd200;
color: #1a1a2e
}
.back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 50px;
height: 50px;
background: #ffd200;
color: #1a1a2e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
opacity: 0;
visibility: hidden;
transition: all var(--animation-speed) ease;
z-index: 1000
}
.back-to-top.visible {
opacity: 1;
visibility: visible
}
.back-to-top:hover {
background: #f7971e;
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4)
}
@media screen and (max-width: 1023px) {
.section.is-medium {
padding: 3rem 1.5rem
}
}
@media screen and (max-width: 768px) {
.hero.is-fullheight {
min-height: 100vh;
padding-top: 3.25rem
}
.hero-body {
padding: 3rem 1.5rem
}
.title.is-1 {
font-size: 2rem !important;
line-height: 1.2
}
.subtitle {
font-size: 1.1rem !important
}
.floating-icons {
display: none
}
.stat-item {
padding: 1rem 0
}
.stat-number {
font-size: 2rem !important
}
.back-to-top {
bottom: 1rem;
right: 1rem;
width: 40px;
height: 40px;
font-size: 1rem
}
.buttons {
flex-direction: column
}
.buttons .button {
width: 100%
}
.section {
padding: 2rem 1rem
}
.py-6-mobile {
padding-top: 2rem !important;
padding-bottom: 2rem !important
}
.px-4-mobile {
padding-left: 1rem !important;
padding-right: 1rem !important
}
.mb-5-mobile {
margin-bottom: 1.5rem !important
}
.mb-3-mobile {
margin-bottom: 1rem !important
}
.mb-2-mobile {
margin-bottom: 0.5rem !important
}
.mt-5-mobile {
margin-top: 1.5rem !important
}
.has-text-centered-mobile {
text-align: center !important
}
.is-fullwidth-mobile {
width: 100% !important;
display: block !important
}
.is-justify-content-center-mobile {
justify-content: center !important
}
.is-flex-wrap-wrap {
flex-wrap: wrap !important
}
.is-flex-direction-column-mobile {
flex-direction: column !important
}
}
@media screen and (max-width: 480px) {
.title.is-1 {
font-size: 1.75rem !important
}
.button.is-large {
font-size: 1rem;
padding: 0.75rem 1rem
}
.hero-body {
padding: 2rem 1rem
}
}
.has-gradient-text {
background: var(--gold-gradient);
background: -webkit-linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 300
}
.text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3)
}
.title {
font-weight: 300;
letter-spacing: -0.02em
}
.title.is-1 {
font-weight: 200;
letter-spacing: -0.03em
}
.subtitle {
font-weight: 300;
letter-spacing: 0.01em
}
.has-text-weight-bold {
font-weight: 500 !important
}
.is-flex {
display: flex !important
}
.is-align-items-center {
align-items: center !important
}
.is-justify-content-center {
justify-content: center !important
}
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1)
}
50% {
opacity: 0.8;
transform: scale(1.05)
}
}
.pulse {
animation: pulse 2s ease-in-out infinite
}
::-webkit-scrollbar {
width: 10px
}
::-webkit-scrollbar-track {
background: #f1f1f1
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 5px
}
::-webkit-scrollbar-thumb:hover {
background: #555
}
@media print {
.navbar, .back-to-top, #contactForm {
display: none
}
}
</style>
</head>
<body itemscope itemtype="https://schema.org/WebPage">
<!-- Navigation -->
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="#home">
<span class="icon-text">
<span class="icon has-text-warning">
<i class="fas fa-bolt"></i>
</span>
<span class="has-text-weight-bold is-size-4">CenSync</span>
</span>
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="#home">Home</a>
<a class="navbar-item" href="#services">Services</a>
<a class="navbar-item" href="#solutions">Solutions</a>
<a class="navbar-item" href="#technologies">Technologies</a>
</div>
</div>
</div>
</nav>
<!-- Services Section -->
<section id="services" class="section is-medium py-6-mobile">
<div class="container">
<div class="has-text-centered mb-6 px-4-mobile">
<br />
<h2 class="title is-2 has-text-weight-bold is-size-3-mobile">CenSync</h2>
<p class="subtitle is-5 has-text-grey is-size-6-mobile">
Comprehensive blockchain and distributed systems development <br />
Contact us: <a href="#" onclick="window.location.href='mailto:dev@censync.com';return false;">dev@censync.com</a>
</p>
</div>
<div class="columns is-multiline is-variable is-6-desktop is-4-tablet is-3-mobile">
<!-- Distributed Systems -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<article class="card service-card" itemscope itemtype="https://schema.org/Service">
<div class="card-content">
<div class="service-icon has-text-centered mb-4">
<span class="icon is-large has-text-info">
<i class="fas fa-network-wired fa-3x"></i>
</span>
</div>
<h3 class="title is-4 has-text-centered is-size-5-mobile" itemprop="name">Distributed
Systems</h3>
<p class="has-text-grey is-size-6-mobile" itemprop="description">
High-performance, scalable distributed architectures designed for resilience and efficiency.
We build systems that handle millions of transactions with zero downtime.
</p>
<div class="tags mt-4 is-justify-content-center">
<span class="tag is-info">Scalability</span>
<span class="tag is-info">Resilience</span>
<span class="tag is-info">Performance</span>
</div>
</div>
</article>
</div>
<!-- Blockchain Solutions -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<article class="card service-card" itemscope itemtype="https://schema.org/Service">
<div class="card-content">
<div class="service-icon has-text-centered mb-4">
<span class="icon is-large has-text-warning">
<i class="fas fa-cube fa-3x"></i>
</span>
</div>
<h3 class="title is-4 has-text-centered is-size-5-mobile" itemprop="name">Blockchain
Solutions</h3>
<p class="has-text-grey is-size-6-mobile" itemprop="description">
Secured blockchain infrastructure including nodes, cross-chain bridges, and custom
protocols.
Enterprise-grade security for your decentralized applications.
</p>
<div class="tags mt-4 is-justify-content-center">
<span class="tag is-warning is-light">Nodes</span>
<span class="tag is-warning is-light">Cross-chain</span>
<span class="tag is-warning is-light">Security</span>
</div>
</div>
</article>
</div>
<!-- Fintech Development -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<article class="card service-card" itemscope itemtype="https://schema.org/Service">
<div class="card-content">
<div class="service-icon has-text-centered mb-4">
<span class="icon is-large has-text-success">
<i class="fas fa-chart-line fa-3x"></i>
</span>
</div>
<h3 class="title is-4 has-text-centered is-size-5-mobile" itemprop="name">Fintech Solutions</h3>
<p class="has-text-grey is-size-6-mobile" itemprop="description">
Advanced algorithmic trading systems, market data pipelines, and financial infrastructure.
Built for speed, accuracy, and regulatory compliance.
</p>
<div class="tags mt-4 is-justify-content-center">
<span class="tag is-success is-light">Algo Trading</span>
<span class="tag is-success is-light">ETL</span>
<span class="tag is-success is-light">Analytics</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Solutions Section -->
<section id="solutions" class="section is-medium has-background-dark py-6-mobile">
<div class="container">
<div class="has-text-centered mb-6 px-4-mobile">
<h2 class="title is-2 has-text-weight-bold is-size-3-mobile">Specialized Solutions</h2>
<p class="subtitle is-5 has-text-grey is-size-6-mobile">Industry-leading implementations for modern
financial infrastructure</p>
</div>
<div class="columns is-multiline is-variable is-6-desktop is-4-tablet is-3-mobile">
<!-- DEX Development -->
<div class="column is-12-mobile is-12-tablet is-6-desktop">
<div class="box solution-box">
<div class="media is-flex-direction-column-mobile">
<div class="media-left has-text-centered-mobile mb-3-mobile">
<span class="icon is-large has-text-primary">
<i class="fas fa-exchange-alt fa-2x"></i>
</span>
</div>
<div class="media-content">
<h3 class="title is-4 has-text-centered-mobile is-size-5-mobile">DEX (Decentralized
Exchange)</h3>
<p class="has-text-grey">
Custom decentralized exchange platforms with advanced AMM algorithms, liquidity pools,
and order book systems. Ultra-low latency trading with institutional-grade security.
</p>
<div class="content mt-3">
<ul class="feature-list">
<li><i class="fas fa-check has-text-success"></i> Automated Market Makers (AMM)</li>
<li><i class="fas fa-check has-text-success"></i> Liquidity Pool Management</li>
<li><i class="fas fa-check has-text-success"></i> Multi-chain Support</li>
<li><i class="fas fa-check has-text-success"></i> Smart Contract Auditing</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- CEX Infrastructure -->
<div class="column is-12-mobile is-12-tablet is-6-desktop">
<div class="box solution-box">
<div class="media is-flex-direction-column-mobile">
<div class="media-left has-text-centered-mobile mb-3-mobile">
<span class="icon is-large has-text-link">
<i class="fas fa-server fa-2x"></i>
</span>
</div>
<div class="media-content">
<h3 class="title is-4 has-text-centered-mobile is-size-5-mobile">CEX (Centralized
Exchange)</h3>
<p class="has-text-grey">
High-performance centralized exchange infrastructure with matching engines,
custody solutions, and compliance frameworks. Handle millions of orders per second.
</p>
<div class="content mt-3">
<ul class="feature-list">
<li><i class="fas fa-check has-text-success"></i> Matching Engine (100k+ TPS)</li>
<li><i class="fas fa-check has-text-success"></i> Cold & Hot Wallet Systems</li>
<li><i class="fas fa-check has-text-success"></i> KYC/AML Integration</li>
<li><i class="fas fa-check has-text-success"></i> Real-time Risk Management</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Cross-chain Bridges -->
<div class="column is-12-mobile is-12-tablet is-6-desktop">
<div class="box solution-box">
<div class="media is-flex-direction-column-mobile">
<div class="media-left has-text-centered-mobile mb-3-mobile">
<span class="icon is-large has-text-warning">
<i class="fas fa-code-branch fa-2x"></i>
</span>
</div>
<div class="media-content">
<h3 class="title is-4 has-text-centered-mobile is-size-5-mobile">Cross-chain Solutions</h3>
<p class="has-text-grey">
Secure bridges connecting multiple blockchain networks. Enable seamless asset transfers
with cryptographic verification and fraud prevention mechanisms.
</p>
<div class="content mt-3">
<ul class="feature-list">
<li><i class="fas fa-check has-text-success"></i> Multi-sig Validation</li>
<li><i class="fas fa-check has-text-success"></i> Trustless Transfers</li>
<li><i class="fas fa-check has-text-success"></i> EVM & Non-EVM Chains</li>
<li><i class="fas fa-check has-text-success"></i> Atomic Swaps</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ETL & Data Pipelines -->
<div class="column is-12-mobile is-12-tablet is-6-desktop">
<div class="box solution-box">
<div class="media is-flex-direction-column-mobile">
<div class="media-left has-text-centered-mobile mb-3-mobile">
<span class="icon is-large has-text-info">
<i class="fas fa-database fa-2x"></i>
</span>
</div>
<div class="media-content">
<h3 class="title is-4 has-text-centered-mobile is-size-5-mobile">ETL & Data Engineering</h3>
<p class="has-text-grey">
Enterprise-scale data pipelines processing billions of events. Real-time analytics,
blockchain indexing, and market data aggregation systems.
</p>
<div class="content mt-3">
<ul class="feature-list">
<li><i class="fas fa-check has-text-success"></i> Real-time Streaming</li>
<li><i class="fas fa-check has-text-success"></i> Blockchain Indexing</li>
<li><i class="fas fa-check has-text-success"></i> Data Lake Architecture</li>
<li><i class="fas fa-check has-text-success"></i> Machine Learning Ready</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Technologies Section -->
<section id="technologies" class="section is-medium py-6-mobile">
<div class="container">
<div class="has-text-centered mb-6 px-4-mobile">
<h2 class="title is-2 has-text-weight-bold is-size-3-mobile">Technology Stack</h2>
<p class="subtitle is-5 has-text-grey is-size-6-mobile">Cutting-edge tools and frameworks powering our
solutions</p>
</div>
<div class="columns is-multiline is-variable is-5-desktop is-3-tablet is-2-mobile">
<!-- Blockchain -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<div class="card tech-card">
<div class="card-content">
<h3 class="title is-5 has-text-centered mb-4 is-size-6-mobile">
<span class="icon has-text-warning">
<i class="fas fa-cubes"></i>
</span>
Blockchain
</h3>
<div class="tech-tags is-justify-content-center">
<span class="tag is-medium">Ethereum</span>
<span class="tag is-medium">Solana</span>
<span class="tag is-medium">Polkadot</span>
<span class="tag is-medium">Cosmos</span>
<span class="tag is-medium">Bitcoin</span>
<span class="tag is-medium">BSC</span>
<span class="tag is-medium">Avalanche</span>
<span class="tag is-medium">Polygon</span>
</div>
</div>
</div>
</div>
<!-- Languages -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<div class="card tech-card">
<div class="card-content">
<h3 class="title is-5 has-text-centered mb-4 is-size-6-mobile">
<span class="icon has-text-info">
<i class="fas fa-code"></i>
</span>
Languages
</h3>
<div class="tech-tags is-justify-content-center">
<span class="tag is-medium">Rust</span>
<span class="tag is-medium">Go</span>
<span class="tag is-medium">Solidity</span>
<span class="tag is-medium">TypeScript</span>
<span class="tag is-medium">Python</span>
<span class="tag is-medium">C++</span>
<span class="tag is-medium">Java</span>
</div>
</div>
</div>
</div>
<!-- Infrastructure -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<div class="card tech-card">
<div class="card-content">
<h3 class="title is-5 has-text-centered mb-4 is-size-6-mobile">
<span class="icon has-text-success">
<i class="fas fa-server"></i>
</span>
Infrastructure
</h3>
<div class="tech-tags is-justify-content-center">
<span class="tag is-medium">Kubernetes</span>
<span class="tag is-medium">Docker</span>
<span class="tag is-medium">AWS</span>
<span class="tag is-medium">GCP</span>
<span class="tag is-medium">Terraform</span>
<span class="tag is-medium">Ansible</span>
<span class="tag is-medium">IPFS</span>
<span class="tag is-medium">Redis</span>
</div>
</div>
</div>
</div>
<!-- Data & Streaming -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<div class="card tech-card">
<div class="card-content">
<h3 class="title is-5 has-text-centered mb-4 is-size-6-mobile">
<span class="icon has-text-link">
<i class="fas fa-stream"></i>
</span>
Data & Streaming
</h3>
<div class="tech-tags is-justify-content-center">
<span class="tag is-medium">NATS</span>
<span class="tag is-medium">PostgreSQL</span>
<span class="tag is-medium">MongoDB</span>
<span class="tag is-medium">ClickHouse</span>
<span class="tag is-medium">NSQ</span>
<span class="tag is-medium">Cassandra</span>
<span class="tag is-medium">ScyllaDB</span>
<span class="tag is-medium">Kafka</span>
</div>
</div>
</div>
</div>
<!-- Smart Contracts -->
<div class="column is-12-mobile is-6-tablet is-4-desktop">
<div class="card tech-card">
<div class="card-content">
<h3 class="title is-5 has-text-centered mb-4 is-size-6-mobile">