tmt / index.html
timoon811's picture
Add 3 files
d875a3d verified
<!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>