File size: 57,319 Bytes
d875a3d |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TMT - Traffic Monsters Team</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root {
--primary: #0f172a;
--secondary: #1e293b;
--accent: #f59e0b;
--accent-dark: #d97706;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--primary);
color: white;
overflow-x: hidden;
}
.gradient-text {
background: linear-gradient(90deg, #f59e0b, #f97316);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.glow {
text-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}
.btn-glow {
box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}
.btn-glow:hover {
box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}
.stat-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
backdrop-filter: blur(10px);
border: 1px solid rgba(245, 158, 11, 0.2);
transition: all 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
border-color: rgba(245, 158, 11, 0.5);
}
.graph-line {
stroke: url(#line-gradient);
stroke-width: 3;
fill: none;
stroke-linecap: round;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.fade-in {
opacity: 0;
transform: translateY(20px);
}
.section-divider {
height: 150px;
background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%);
}
.money-particle {
position: absolute;
background: radial-gradient(circle, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0) 70%);
border-radius: 50%;
pointer-events: none;
}
.timeline-item::before {
content: '';
position: absolute;
left: -20px;
top: 0;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--accent);
border: 3px solid var(--accent-dark);
}
.testimonial-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
border: 1px solid rgba(245, 158, 11, 0.2);
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
border-color: rgba(245, 158, 11, 0.5);
}
.apply-form {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
border: 1px solid rgba(245, 158, 11, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.input-field {
background: rgba(15, 23, 42, 0.7);
border: 1px solid rgba(245, 158, 11, 0.2);
transition: all 0.3s ease;
}
.input-field:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}
.countup {
font-variant-numeric: tabular-nums;
}
.hero-pattern {
background-image: radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}
/* New styles for added sections */
.principle-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
border: 1px solid rgba(245, 158, 11, 0.2);
transition: all 0.3s ease;
}
.principle-card:hover {
transform: translateY(-5px);
border-color: rgba(245, 158, 11, 0.5);
box-shadow: 0 10px 20px rgba(245, 158, 11, 0.1);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.role-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
border: 1px solid rgba(245, 158, 11, 0.2);
transition: all 0.3s ease;
}
.role-card:hover {
transform: translateY(-5px);
border-color: rgba(245, 158, 11, 0.5);
}
.timeline-connector {
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, #f59e0b, #f97316);
transform: translateX(-50%);
}
.timeline-dot {
width: 16px;
height: 16px;
border-radius: 50%;
background: linear-gradient(135deg, #f59e0b, #f97316);
position: relative;
z-index: 1;
}
.roadmap-item {
transition: all 0.3s ease;
}
.roadmap-item:hover {
transform: scale(1.05);
}
.money-rain {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.money-bill {
position: absolute;
background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(245, 158, 11, 0.6));
width: 30px;
height: 15px;
border-radius: 2px;
opacity: 0.8;
animation: money-fall linear infinite;
}
@keyframes money-fall {
0% {
transform: translateY(-100px) rotate(0deg);
}
100% {
transform: translateY(100vh) rotate(360deg);
}
}
</style>
</head>
<body class="antialiased">
<!-- Preloader -->
<div id="preloader" class="fixed inset-0 bg-black z-50 flex items-center justify-center">
<div class="text-center">
<div class="w-16 h-16 border-4 border-amber-500 border-t-transparent rounded-full animate-spin mx-auto"></div>
<p class="mt-4 text-amber-500 font-semibold">LOADING TMT UNIVERSE</p>
</div>
</div>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden hero-pattern">
<!-- Money rain animation -->
<div id="money-rain" class="money-rain"></div>
<!-- Animated particles -->
<div id="particles"></div>
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-black opacity-40"></div>
<div class="container mx-auto px-6 relative z-10">
<div class="flex flex-col items-center text-center py-20">
<div class="mb-6">
<span class="inline-block px-4 py-1 bg-amber-900 bg-opacity-30 text-amber-400 rounded-full text-sm font-medium">ELITE TRAFFIC TEAM</span>
</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6 max-w-4xl mx-auto">
<span class="gradient-text glow">TRAFFIC MONSTERS TEAM</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
Money loves the invisible. We don't chase trends — we <span class="font-bold text-amber-400">create</span> them. Join the <span class="font-bold text-amber-400">1%</span> who control the digital economy.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#apply" class="px-8 py-4 bg-gradient-to-r from-amber-500 to-amber-600 text-black font-bold rounded-lg transition-all duration-300 transform hover:scale-105 btn-glow">
JOIN THE TEAM
<i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="#about" class="px-8 py-4 bg-transparent border-2 border-amber-500 text-amber-400 font-bold rounded-lg transition-all duration-300 transform hover:scale-105 hover:bg-amber-500 hover:bg-opacity-10">
LEARN MORE
</a>
</div>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center animate-bounce">
<a href="#about" class="text-amber-400 text-4xl">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<!-- Stats Section -->
<section id="stats" class="py-20 bg-gradient-to-b from-black to-gray-900 relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-6">
<div class="stat-card rounded-xl p-6 text-center fade-in">
<div class="text-4xl font-bold mb-2 text-amber-400 countup" data-count="150">0</div>
<div class="text-gray-400">MILLION+ MONTHLY TRAFFIC</div>
</div>
<div class="stat-card rounded-xl p-6 text-center fade-in">
<div class="text-4xl font-bold mb-2 text-amber-400 countup" data-count="42">0</div>
<div class="text-gray-400">COUNTRIES COVERED</div>
</div>
<div class="stat-card rounded-xl p-6 text-center fade-in">
<div class="text-4xl font-bold mb-2 text-amber-400 countup" data-count="27">0</div>
<div class="text-gray-400">VERTICALS DOMINATED</div>
</div>
<div class="stat-card rounded-xl p-6 text-center fade-in">
<div class="text-4xl font-bold mb-2 text-amber-400 countup" data-count="500">0</div>
<div class="text-gray-400">MILLION+ YEARLY PROFIT</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-900 relative">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">
<span class="gradient-text">WHO WE ARE</span>
</h2>
<p class="text-gray-300 mb-6 text-lg">
TMT is not just a team. It's a <span class="text-amber-400 font-bold">machine</span> built to conquer the digital landscape. We're the silent force behind some of the most profitable traffic operations in the world.
</p>
<p class="text-gray-300 mb-8 text-lg">
Our 70+ specialists don't follow trends — they <span class="text-amber-400 font-bold">set them</span>. With proprietary technology, unmatched expertise, and a relentless drive, we turn traffic into gold across 40+ countries.
</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">Cutting-edge traffic acquisition strategies</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">Proprietary technology stack</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">Elite-level mentorship and growth</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2 relative fade-in">
<div class="relative">
<div class="absolute -inset-4 bg-amber-500 rounded-xl opacity-20 blur-lg"></div>
<div class="relative bg-gradient-to-br from-gray-800 to-gray-900 rounded-xl p-1">
<div class="bg-gray-900 rounded-lg p-6">
<div class="flex justify-between items-center mb-6">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-amber-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-sm text-gray-500">TMT_DASHBOARD</div>
</div>
<div class="mb-6">
<svg width="100%" height="200" viewBox="0 0 500 200" class="mx-auto">
<defs>
<linearGradient id="line-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#f59e0b" />
<stop offset="100%" stop-color="#f97316" />
</linearGradient>
</defs>
<path class="graph-line" d="M0,150 C50,50 100,200 150,100 C200,0 250,150 300,50 C350,200 400,100 450,150 C500,200 500,150 500,150" />
</svg>
</div>
<div class="grid grid-cols-3 gap-4 text-center">
<div>
<div class="text-2xl font-bold text-amber-400">87.5%</div>
<div class="text-xs text-gray-500">CONVERSION</div>
</div>
<div>
<div class="text-2xl font-bold text-amber-400">$4.27</div>
<div class="text-xs text-gray-500">EPC</div>
</div>
<div>
<div class="text-2xl font-bold text-amber-400">1:5.8</div>
<div class="text-xs text-gray-500">ROI</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Principles Section -->
<section class="py-20 bg-black relative">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">OUR PRINCIPLES</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
The foundation of everything we do at TMT
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="principle-card rounded-xl p-8 fade-in">
<div class="w-16 h-16 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-user-secret text-amber-400 text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">Anonymity</h3>
<p class="text-gray-400 text-center">
We operate in the shadows. No public profiles, no bragging rights. Just results that speak for themselves through bank accounts, not social media.
</p>
</div>
<div class="principle-card rounded-xl p-8 fade-in">
<div class="w-16 h-16 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-chart-line text-amber-400 text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">Growth</h3>
<p class="text-gray-400 text-center">
Your potential is our obsession. We push limits daily, turning $10k months into $100k months through relentless optimization and scale.
</p>
</div>
<div class="principle-card rounded-xl p-8 fade-in">
<div class="w-16 h-16 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-brain text-amber-400 text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-center mb-4">Collective Intelligence</h3>
<p class="text-gray-400 text-center">
Alone you're smart, together we're genius. Our war room shares billion-dollar insights daily, making every member stronger than they could ever be solo.
</p>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-gray-900 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">WHY TMT?</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
What separates us from every other "team" out there
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center fade-in">
<div class="feature-icon mx-auto">
<i class="fas fa-lock text-amber-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Private Offers</h3>
<p class="text-gray-400">
Access to exclusive offers you won't find on any network. Our private deals convert 3-5x better than public ones.
</p>
</div>
<div class="text-center fade-in">
<div class="feature-icon mx-auto">
<i class="fas fa-graduation-cap text-amber-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Elite Training</h3>
<p class="text-gray-400">
Weekly masterclasses from our top performers. Learn strategies that would cost $10k+ in courses elsewhere.
</p>
</div>
<div class="text-center fade-in">
<div class="feature-icon mx-auto">
<i class="fas fa-globe text-amber-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Global Reach</h3>
<p class="text-gray-400">
Infrastructure and connections in 40+ countries. Scale internationally from day one with our proven frameworks.
</p>
</div>
<div class="text-center fade-in">
<div class="feature-icon mx-auto">
<i class="fas fa-rocket text-amber-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Budget Scaling</h3>
<p class="text-gray-400">
Our members consistently scale from $1k/day to $10k/day budgets within months using our capital deployment strategies.
</p>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section class="py-20 bg-black relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">YOUR PATH IN TMT</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
From application to elite performer - here's how it works
</p>
</div>
<div class="relative">
<div class="hidden lg:block absolute left-1/2 top-0 h-full w-1 bg-gradient-to-b from-amber-500 to-amber-600 -ml-1"></div>
<div class="space-y-12 lg:space-y-0">
<div class="lg:flex lg:items-center lg:justify-between relative fade-in">
<div class="lg:w-5/12 lg:pr-12 mb-8 lg:mb-0">
<div class="roadmap-item bg-gradient-to-r from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">Application</h3>
</div>
<p class="text-gray-400">
Submit your application through our secure portal. Our team reviews every submission personally within 72 hours. Only 3% make it to the next stage.
</p>
</div>
</div>
<div class="lg:w-5/12 lg:pl-12">
<div class="roadmap-item bg-gradient-to-l from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">Interview</h3>
</div>
<p class="text-gray-400">
A 45-minute Telegram call with our recruitment lead. We assess your mindset, skills, and potential fit with the team. No technical tests - we care about how you think.
</p>
</div>
</div>
</div>
<div class="lg:flex lg:items-center lg:justify-between relative fade-in">
<div class="lg:w-5/12 lg:pr-12 mb-8 lg:mb-0">
<div class="roadmap-item bg-gradient-to-r from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">Onboarding</h3>
</div>
<p class="text-gray-400">
7-day intensive onboarding covering our systems, processes, and expectations. You'll get access to our private tools and initial capital to deploy.
</p>
</div>
</div>
<div class="lg:w-5/12 lg:pl-12">
<div class="roadmap-item bg-gradient-to-l from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">First Campaign</h3>
</div>
<p class="text-gray-400">
Launch your first campaign with direct mentorship from a senior team member. We focus on quick wins to build confidence and momentum.
</p>
</div>
</div>
</div>
<div class="lg:flex lg:items-center lg:justify-between relative fade-in">
<div class="lg:w-5/12 lg:pr-12 mb-8 lg:mb-0">
<div class="roadmap-item bg-gradient-to-r from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">Scale Phase</h3>
</div>
<p class="text-gray-400">
Once profitable, we rapidly scale your budget using our capital deployment framework. Most members 10x their initial volume within 60 days.
</p>
</div>
</div>
<div class="lg:w-5/12 lg:pl-12">
<div class="roadmap-item bg-gradient-to-l from-amber-900 to-transparent p-6 rounded-xl">
<div class="flex items-center mb-4">
<div class="timeline-dot"></div>
<h3 class="text-2xl font-bold ml-4">Elite Status</h3>
</div>
<p class="text-gray-400">
After 90 days of consistent performance, you gain access to our most valuable assets - private traffic sources, premium offers, and profit-sharing opportunities.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roles Section -->
<section class="py-20 bg-gray-900 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">WHO WE'RE LOOKING FOR</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
These are the roles we're actively recruiting for
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="role-card rounded-xl p-6 fade-in">
<div class="w-12 h-12 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-ad text-amber-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Media Buyers</h3>
<p class="text-gray-400 text-sm">
You live in ad accounts. Can scale campaigns from $100 to $10k/day while maintaining ROAS. Experience with FB, Google, Native required.
</p>
</div>
<div class="role-card rounded-xl p-6 fade-in">
<div class="w-12 h-12 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-pie text-amber-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Data Analysts</h3>
<p class="text-gray-400 text-sm">
SQL wizards who can spot patterns in millions of data points. You'll build our predictive models and optimization algorithms.
</p>
</div>
<div class="role-card rounded-xl p-6 fade-in">
<div class="w-12 h-12 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-users text-amber-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Team Leaders</h3>
<p class="text-gray-400 text-sm">
Managed teams of 10+ in performance marketing? We need your leadership to oversee our verticals and mentor junior members.
</p>
</div>
<div class="role-card rounded-xl p-6 fade-in">
<div class="w-12 h-12 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-paint-brush text-amber-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Creative Directors</h3>
<p class="text-gray-400 text-sm">
Your ads convert because you understand psychology, not just design. Can produce 100+ variations weekly that outperform control.
</p>
</div>
</div>
</div>
</section>
<!-- Results Section -->
<section class="py-20 bg-black relative">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">RESULTS SPEAK LOUDER</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
What our members achieve in their first 90 days
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="stat-card rounded-xl p-8 text-center fade-in">
<div class="text-5xl font-bold mb-4 text-amber-400">3-5x</div>
<p class="text-gray-300">
Average increase in conversion rates after implementing TMT frameworks
</p>
</div>
<div class="stat-card rounded-xl p-8 text-center fade-in">
<div class="text-5xl font-bold mb-4 text-amber-400">10-20x</div>
<p class="text-gray-300">
Budget scaling potential within first quarter for qualified members
</p>
</div>
<div class="stat-card rounded-xl p-8 text-center fade-in">
<div class="text-5xl font-bold mb-4 text-amber-400">92%</div>
<p class="text-gray-300">
Of members hit personal income records within their first 60 days
</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-900 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">TMT MEMBER VOICES</span>
</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
Don't take our word for it. Hear from those who've been through the fire.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="testimonial-card rounded-xl p-8 fade-in">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-amber-500 to-amber-600 flex items-center justify-center text-xl font-bold">A</div>
<div class="ml-4">
<div class="font-bold">Alex K.</div>
<div class="text-sm text-amber-400">Senior Arbitrage Specialist</div>
</div>
</div>
<p class="text-gray-300 italic">
"Before TMT, I thought I knew traffic. After 6 months with the team, I realized I was playing checkers while they were playing 4D chess. My earnings went from $15k/mo to over $120k. The private knowledge shared in our war room calls is worth millions."
</p>
</div>
<div class="testimonial-card rounded-xl p-8 fade-in">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-amber-500 to-amber-600 flex items-center justify-center text-xl font-bold">M</div>
<div class="ml-4">
<div class="font-bold">Maria S.</div>
<div class="text-sm text-amber-400">Media Buying Lead</div>
</div>
</div>
<p class="text-gray-300 italic">
"The access to proprietary tools and private forums is worth 10x the membership cost. I've discovered traffic sources I didn't even know existed, with ROI that makes public networks look like charity. TMT doesn't just give you fish — they teach you how to build a fishing empire."
</p>
</div>
<div class="testimonial-card rounded-xl p-8 fade-in">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-amber-500 to-amber-600 flex items-center justify-center text-xl font-bold">J</div>
<div class="ml-4">
<div class="font-bold">James L.</div>
<div class="text-sm text-amber-400">Funnel Architect</div>
</div>
</div>
<p class="text-gray-300 italic">
"TMT's approach to conversion optimization changed everything. What took me months to test independently, the team had already perfected through collective intelligence. The level of strategic thinking I've developed here has transformed every aspect of my business."
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-32 bg-gradient-to-br from-gray-900 to-black relative overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div class="absolute inset-0 bg-gradient-to-r from-amber-500 to-transparent opacity-30"></div>
<div class="absolute inset-0 bg-gradient-to-b from-amber-500 to-transparent opacity-20"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center max-w-3xl mx-auto fade-in">
<h2 class="text-3xl md:text-5xl font-bold mb-6">
<span class="gradient-text glow">RESULTS MATTER MORE THAN FACES</span>
</h2>
<p class="text-xl text-gray-300 mb-10">
The door to the inner circle opens <span class="text-amber-400 font-bold">once</span> every quarter. Will you be on the right side when it closes?
</p>
<a href="#apply" class="inline-block px-12 py-5 bg-gradient-to-r from-amber-500 to-amber-600 text-black font-bold rounded-lg text-lg transition-all duration-300 transform hover:scale-105 btn-glow">
APPLY NOW
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Apply Section -->
<section id="apply" class="py-20 bg-black relative">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">
<span class="gradient-text">APPLICATION</span>
</h2>
<p class="text-gray-300 mb-6 text-lg">
We're selective by design. The TMT roster is limited to those who can contribute as much as they gain. Less than 3% of applicants receive an invitation.
</p>
<p class="text-gray-300 mb-8 text-lg">
If you're ready to operate at the highest level, complete the form. Our recruitment team will review your application within 72 hours. Qualified candidates will receive a Telegram interview request.
</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">Current traffic volume and sources</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">Previous experience and results</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-amber-500 flex items-center justify-center">
<i class="fas fa-check text-black text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-300 font-medium">What you can bring to the team</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2 relative fade-in">
<div class="apply-form rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6 text-center text-amber-400">TMT APPLICATION FORM</h3>
<form id="applicationForm" class="space-y-6">
<div>
<label for="name" class="block text-gray-300 mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg input-field text-white" placeholder="Your name" required>
</div>
<div>
<label for="email" class="block text-gray-300 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg input-field text-white" placeholder="Your email" required>
</div>
<div>
<label for="telegram" class="block text-gray-300 mb-2">Telegram Username</label>
<input type="text" id="telegram" class="w-full px-4 py-3 rounded-lg input-field text-white" placeholder="@yourtelegram" required>
</div>
<div>
<label for="experience" class="block text-gray-300 mb-2">Traffic Experience</label>
<select id="experience" class="w-full px-4 py-3 rounded-lg input-field text-white" required>
<option value="" disabled selected>Select your experience level</option>
<option value="beginner">Beginner (0-6 months)</option>
<option value="intermediate">Intermediate (6-18 months)</option>
<option value="advanced">Advanced (18+ months)</option>
<option value="expert">Expert (3+ years)</option>
</select>
</div>
<div>
<label for="message" class="block text-gray-300 mb-2">Why should you join TMT?</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg input-field text-white" placeholder="Tell us about your skills, achievements, and what you can contribute..." required></textarea>
</div>
<button type="submit" class="w-full px-6 py-4 bg-gradient-to-r from-amber-500 to-amber-600 text-black font-bold rounded-lg transition-all duration-300 transform hover:scale-105 btn-glow">
SUBMIT APPLICATION
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA Section -->
<section class="py-32 bg-gradient-to-b from-black to-gray-900 relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-r from-amber-500 to-transparent opacity-10"></div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center max-w-3xl mx-auto fade-in">
<h2 class="text-3xl md:text-5xl font-bold mb-6">
<span class="gradient-text glow">YOU'RE ONE DECISION AWAY</span>
</h2>
<p class="text-xl text-gray-300 mb-10">
From joining the elite who don't just play the game — they <span class="text-amber-400 font-bold">change</span> it.
</p>
<a href="#apply" class="inline-block px-12 py-5 bg-gradient-to-r from-amber-500 to-amber-600 text-black font-bold rounded-lg text-lg transition-all duration-300 transform hover:scale-105 btn-glow">
BECOME A MONSTER
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-gray-900 border-t border-gray-800">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="text-2xl font-bold gradient-text">TMT</div>
<div class="text-gray-400 mt-2">Traffic Monsters Team © 2023</div>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
<i class="fab fa-telegram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition-colors">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
<p>TMT is an invite-only collective of elite traffic arbitrage specialists. All rights reserved.</p>
<p class="mt-2">Information shared within TMT is confidential and protected by NDA.</p>
</div>
</div>
</footer>
<!-- Success Modal -->
<div id="successModal" class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50 hidden">
<div class="bg-gradient-to-br from-gray-900 to-black rounded-xl p-8 max-w-md w-full relative border border-amber-500">
<button id="closeModal" class="absolute top-4 right-4 text-gray-400 hover:text-white">
<i class="fas fa-times"></i>
</button>
<div class="text-center">
<div class="w-20 h-20 bg-amber-500 bg-opacity-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-check text-amber-400 text-3xl"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-4">APPLICATION SUBMITTED</h3>
<p class="text-gray-300 mb-6">
Your application has been received. Our recruitment team will review your information and contact you via Telegram within 72 hours.
</p>
<button id="modalOk" class="px-6 py-3 bg-amber-500 text-black font-bold rounded-lg">
UNDERSTOOD
</button>
</div>
</div>
</div>
<script>
// Preloader
window.addEventListener('load', function() {
setTimeout(function() {
document.getElementById('preloader').classList.add('hidden');
}, 1000);
});
// Money rain animation
function createMoneyRain() {
const container = document.getElementById('money-rain');
const moneyCount = 30;
for (let i = 0; i < moneyCount; i++) {
const money = document.createElement('div');
money.classList.add('money-bill');
// Random properties
const left = Math.random() * 100;
const animationDuration = Math.random() * 5 + 5;
const delay = Math.random() * 5;
const size = Math.random() * 10 + 20;
money.style.left = `${left}%`;
money.style.width = `${size}px`;
money.style.height = `${size/2}px`;
money.style.animationDuration = `${animationDuration}s`;
money.style.animationDelay = `${delay}s`;
container.appendChild(money);
}
}
// Money particles animation
function createParticles() {
const container = document.getElementById('particles');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('money-particle');
// Random properties
const size = Math.random() * 10 + 5;
const posX = Math.random() * window.innerWidth;
const posY = Math.random() * window.innerHeight * 0.8;
const opacity = Math.random() * 0.5 + 0.1;
const delay = Math.random() * 5;
const duration = Math.random() * 10 + 10;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.left = `${posX}px`;
particle.style.top = `${posY}px`;
particle.style.opacity = opacity;
particle.style.animationDelay = `${delay}s`;
particle.style.animationDuration = `${duration}s`;
particle.style.animationName = 'float';
particle.style.animationTimingFunction = 'ease-in-out';
particle.style.animationIterationCount = 'infinite';
container.appendChild(particle);
}
}
// CountUp animation
function animateCountUp() {
const counters = document.querySelectorAll('.countup');
const speed = 200;
counters.forEach(counter => {
const target = +counter.getAttribute('data-count');
const count = +counter.innerText;
const increment = target / speed;
if (count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(animateCountUp, 1);
} else {
counter.innerText = target;
}
});
}
// GSAP Animations
document.addEventListener('DOMContentLoaded', function() {
createMoneyRain();
createParticles();
// Animate elements on scroll
gsap.registerPlugin(ScrollTrigger);
gsap.utils.toArray('.fade-in').forEach(element => {
gsap.from(element, {
scrollTrigger: {
trigger: element,
start: 'top 80%',
toggleActions: 'play none none none'
},
opacity: 0,
y: 50,
duration: 1,
ease: 'power3.out'
});
});
// Animate graph line
const graphLine = document.querySelector('.graph-line');
if (graphLine) {
const pathLength = graphLine.getTotalLength();
gsap.set(graphLine, {
strokeDasharray: pathLength,
strokeDashoffset: pathLength
});
gsap.to(graphLine, {
scrollTrigger: {
trigger: graphLine,
start: 'top 80%',
toggleActions: 'play none none none'
},
strokeDashoffset: 0,
duration: 2,
ease: 'power3.out'
});
}
// Start countup when stats section is in view
ScrollTrigger.create({
trigger: '#stats',
start: 'top 80%',
onEnter: animateCountUp,
once: true
});
// Form submission
const applicationForm = document.getElementById('applicationForm');
const successModal = document.getElementById('successModal');
const closeModal = document.getElementById('closeModal');
const modalOk = document.getElementById('modalOk');
if (applicationForm) {
applicationForm.addEventListener('submit', function(e) {
e.preventDefault();
// Here you would normally send the form data to your server
// For demo purposes, we'll just show the success modal
// Reset form
applicationForm.reset();
// Show success modal
successModal.classList.remove('hidden');
// Play success sound (optional)
const audio = new Audio('https://assets.mixkit.co/sfx/preview/mixkit-achievement-bell-600.mp3');
audio.volume = 0.3;
audio.play();
});
}
// Close modal handlers
if (closeModal) {
closeModal.addEventListener('click', function() {
successModal.classList.add('hidden');
});
}
if (modalOk) {
modalOk.addEventListener('click', function() {
successModal.classList.add('hidden');
});
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=timoon811/tmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |