Spaces:
Running
Running
File size: 9,598 Bytes
4bf3814 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TMT - What We Control</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
@keyframes dataFlow {
0% { background-position: 0 0; }
100% { background-position: 0 -100px; }
}
@keyframes terminalType {
from { width: 0; }
to { width: 100%; }
}
@keyframes pulse {
0% { text-shadow: 0 0 5px #00FF00; }
50% { text-shadow: 0 0 20px #00FF00; }
100% { text-shadow: 0 0 5px #00FF00; }
}
@keyframes moduleAppear {
0% { opacity: 0; transform: scale(0.8); box-shadow: 0 0 0 rgba(0, 255, 0, 0); }
50% { opacity: 1; transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 0, 0.5); }
100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 0, 0); }
}
@keyframes borderGlow {
0% { box-shadow: 0 0 5px #00FF00; }
50% { box-shadow: 0 0 15px #00FF00; }
100% { box-shadow: 0 0 5px #00FF00; }
}
@keyframes textBreath {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.matrix-bg {
background-color: #000000;
background-image:
linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
background-size: 30px 30px;
position: relative;
overflow: hidden;
}
.matrix-bg::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
rgba(0, 255, 0, 0.03) 1px,
transparent 1px
);
background-size: 100% 5px;
animation: dataFlow 2s linear infinite;
pointer-events: none;
}
.terminal-text {
font-family: 'JetBrains Mono', monospace;
display: inline-block;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid #00FF00;
animation: terminalType 1.5s steps(15) 1s 1 normal both;
}
.terminal-text::after {
content: "";
animation: blink 1s steps(5) infinite;
}
.pulse-text {
animation: pulse 2s ease-in-out;
}
.module {
animation: moduleAppear 0.8s ease-out forwards;
opacity: 0;
}
.module:hover {
animation: borderGlow 1.5s infinite ease-in-out;
}
.module:hover .module-title {
animation: textBreath 2s infinite ease-in-out;
}
.pixel-icon {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
</style>
</head>
<body class="matrix-bg min-h-screen py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<!-- Section Header -->
<div class="text-center mb-16">
<h1 class="text-4xl sm:text-5xl md:text-6xl font-bold text-green-500 mb-4 overflow-hidden">
<span class="terminal-text">WHAT WE CONTROL</span>
</h1>
</div>
<!-- Control Modules Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-6">
<!-- Module 1: TRAFFIC SCALING -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 1.5s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🎯</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">TRAFFIC SCALING</h2>
</div>
<p class="text-green-300 font-mono">FB, TikTok, Google, Push, Native - we dominate all channels with surgical precision.</p>
</div>
<!-- Module 2: STRATEGIC OFFER MAPPING -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 1.8s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🗺️</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">STRATEGIC OFFER MAPPING</h2>
</div>
<p class="text-green-300 font-mono">Algorithmic matching of offers to traffic sources for maximum conversion efficiency.</p>
</div>
<!-- Module 3: INFRASTRUCTURE HACKING -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.1s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🔧</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">INFRASTRUCTURE HACKING</h2>
</div>
<p class="text-green-300 font-mono">Keitaro, API networks, custom tracking solutions - we build the tools that others copy.</p>
</div>
<!-- Module 4: CREATIVE LABS -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.4s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🎬</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">CREATIVE LABS</h2>
</div>
<p class="text-green-300 font-mono">Video, UGC, Deepfake modules - our creatives outperform industry benchmarks by 300%.</p>
</div>
<!-- Module 5: DIRECT INTEGRATIONS -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.7s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🤝</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">DIRECT INTEGRATIONS</h2>
</div>
<p class="text-green-300 font-mono">White-glove service for brands seeking direct access to premium traffic flows.</p>
</div>
<!-- Module 6: DATA SCIENCE -->
<div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 3.0s;">
<div class="flex items-center mb-4">
<span class="text-green-500 mr-3 text-xl">🧠</span>
<h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">DATA SCIENCE</h2>
</div>
<p class="text-green-300 font-mono">Predictive analytics and machine learning models that anticipate market shifts.</p>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Add pulse animation to header after typing completes
setTimeout(function() {
const terminalText = document.querySelector('.terminal-text');
terminalText.classList.remove('terminal-text');
terminalText.style.borderRight = 'none';
terminalText.classList.add('pulse-text');
}, 2500);
// Add hover effects to modules
const modules = document.querySelectorAll('.module');
modules.forEach(module => {
module.addEventListener('mouseenter', function() {
this.style.transform = 'translateY(-5px)';
});
module.addEventListener('mouseleave', function() {
this.style.transform = 'translateY(0)';
});
});
});
</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/whatwecont" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |