File size: 17,353 Bytes
8ef7cd2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0e93c97
8ef7cd2
 
 
 
 
 
 
 
 
0e93c97
8ef7cd2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Social Media Intelligence A (Agency)</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">
    <style>
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .floating-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            transform: translateY(-50px);
            transition: all 0.3s ease;
        }
        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .benefits-panel {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 300px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            padding: 20px;
            z-index: 99;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .benefits-panel.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .benefits-panel:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 40px;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid white;
        }
        .crypto-icons {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: 5px;
        }
        .crypto-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            background: #f7931a;
            color: white;
        }
        .crypto-icon.btc {
            background: #f7931a;
        }
        .crypto-icon.bch {
            background: #0ac18e;
        }
        .crypto-icon.fbtc {
            background: #6f42c1;
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <nav class="gradient-bg text-white shadow-lg">
        <div class="container mx-auto px-6 py-4">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-4">
                    <i class="fas fa-brain text-2xl"></i>
                    <span class="font-bold text-xl">Social Media Intelligence A</span>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#" class="hover:text-gray-200">Home</a>
                    <a href="#" class="hover:text-gray-200">About</a>
                    <a href="#" class="hover:text-gray-200">Resources</a>
                    <a href="#" class="hover:text-gray-200">Community</a>
                </div>
                <button id="openSignup" class="bg-white text-indigo-700 px-4 py-2 rounded-full font-medium hover:bg-gray-100 transition">
                    Join Us
                </button>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-20">
        <div class="container mx-auto px-6 text-center">
            <h1 class="text-4xl md:text-6xl font-bold mb-6">Next-Gen Influencer Agency</h1>
            <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
                The premier autonomous collective for digital creators. Harness AI, crypto, and collective bargaining for your success.
            </p>
            <div class="flex flex-col md:flex-row justify-center gap-4">
                <button id="openSignupHero" class="bg-white text-indigo-700 px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition transform hover:scale-105">
                    Join the Movement
                </button>
                <button class="border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-white hover:bg-opacity-10 transition transform hover:scale-105">
                    Learn More
                </button>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold text-center text-gray-800 mb-16">Why Choose Intelligence A?</h2>
            <div class="grid md:grid-cols-3 gap-10">
                <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
                    <div class="text-indigo-600 mb-4">
                        <i class="fas fa-robot text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">AI Avatar Technology</h3>
                    <p class="text-gray-600">License your digital likeness for commercials, films, and virtual appearances without being physically present.</p>
                </div>
                <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
                    <div class="text-indigo-600 mb-4">
                        <i class="fas fa-coins text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Crypto Payments</h3>
                    <p class="text-gray-600">Receive payments in Fractal Bitcoin, Bitcoin, or Bitcoin Cash for borderless, fast transactions with lower fees.</p>
                </div>
                <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
                    <div class="text-indigo-600 mb-4">
                        <i class="fas fa-shield-alt text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Legal Protection</h3>
                    <p class="text-gray-600">Access to legal resources and collective defense against platform changes, copyright issues, and contract disputes.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold text-center text-gray-800 mb-16">What Our Members Say</h2>
            <div class="grid md:grid-cols-2 gap-10 max-w-4xl mx-auto">
                <div class="bg-white p-8 rounded-xl shadow-md">
                    <div class="flex items-center mb-4">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Anonymous</h4>
                            <p class="text-gray-500 text-sm">Lifestyle Influencer</p>
                        </div>
                    </div>
                    <p class="text-gray-700 italic">"The AI avatar feature has allowed me to appear in international campaigns without travel. It's revolutionized my business model."</p>
                </div>
                <div class="bg-white p-8 rounded-xl shadow-md">
                    <div class="flex items-center mb-4">
                        <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Anonymous</h4>
                            <p class="text-gray-500 text-sm">Tech Reviewer</p>
                        </div>
                    </div>
                    <p class="text-gray-700 italic">"Getting paid in crypto means I can work with international brands without worrying about currency conversions or bank delays."</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Signup Modal -->
    <div id="signupModal" class="modal-overlay">
        <div class="modal-content bg-white rounded-xl w-full max-w-md mx-4">
            <div class="p-8">
                <div class="flex justify-between items-center mb-6">
                    <h3 class="text-2xl font-bold text-gray-800">Join Intelligence A</h3>
                    <button id="closeSignup" class="text-gray-500 hover:text-gray-700">
                        <i class="fas fa-times"></i>
                    </button>
                </div>
                <form id="signupForm" class="space-y-4">
                    <div>
                        <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
                        <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                    </div>
                    <div>
                        <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
                        <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                    </div>
                    <div>
                        <label for="platform" class="block text-sm font-medium text-gray-700 mb-1">Main Platform</label>
                        <select id="platform" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                            <option value="">Select your platform</option>
                            <option value="instagram">Instagram</option>
                            <option value="youtube">YouTube</option>
                            <option value="tiktok">TikTok</option>
                            <option value="twitter">Twitter</option>
                            <option value="other">Other</option>
                        </select>
                    </div>
                    <div>
                        <label for="followers" class="block text-sm font-medium text-gray-700 mb-1">Approx. Follower Count</label>
                        <input type="number" id="followers" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
                    </div>
                    <div class="pt-2">
                        <button type="submit" class="w-full gradient-bg text-white px-6 py-3 rounded-lg font-bold hover:opacity-90 transition">
                            Apply for Membership
                        </button>
                    </div>
                </form>
                <div class="mt-6 text-center text-sm text-gray-500">
                    By joining, you agree to our <a href="#" class="text-indigo-600 hover:underline">Terms</a> and <a href="#" class="text-indigo-600 hover:underline">Privacy Policy</a>
                </div>
            </div>
        </div>
    </div>

    <!-- Floating Benefits Button -->
    <button id="benefitsBtn" class="floating-btn bg-indigo-600 text-white w-16 h-16 rounded-full flex items-center justify-center">
        <i class="fas fa-star text-2xl"></i>
    </button>

    <!-- Benefits Panel -->
    <div id="benefitsPanel" class="benefits-panel">
        <h4 class="font-bold text-lg mb-4 text-indigo-700">Member Benefits</h4>
        <ul class="space-y-3">
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Collective bargaining with brands</span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Legal support and contract review</span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>AI Avatar for digital appearances</span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Crypto payouts 
                    <span class="crypto-icons">
                        <span class="crypto-icon fbtc" title="Fractal Bitcoin">FB</span>
                        <span class="crypto-icon btc" title="Bitcoin"></span>
                        <span class="crypto-icon bch" title="Bitcoin Cash">BCH</span>
                    </span>
                </span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Exclusive networking events</span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Platform change early warnings</span>
            </li>
            <li class="flex items-start">
                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                <span>Health insurance partnerships</span>
            </li>
        </ul>
        <div class="mt-6 text-center">
            <button id="openSignupFromBenefits" class="text-sm gradient-bg text-white px-4 py-2 rounded-full font-medium">
                Join to Access All Benefits
            </button>
        </div>
    </div>

    <script>
        // Modal functionality
        const openSignup = document.getElementById('openSignup');
        const openSignupHero = document.getElementById('openSignupHero');
        const openSignupFromBenefits = document.getElementById('openSignupFromBenefits');
        const closeSignup = document.getElementById('closeSignup');
        const signupModal = document.getElementById('signupModal');
        const signupForm = document.getElementById('signupForm');

        // Benefits panel functionality
        const benefitsBtn = document.getElementById('benefitsBtn');
        const benefitsPanel = document.getElementById('benefitsPanel');

        // Open modal from various buttons
        [openSignup, openSignupHero, openSignupFromBenefits].forEach(btn => {
            btn.addEventListener('click', () => {
                signupModal.classList.add('active');
                document.body.style.overflow = 'hidden';
            });
        });

        // Close modal
        closeSignup.addEventListener('click', () => {
            signupModal.classList.remove('active');
            document.body.style.overflow = 'auto';
        });

        // Form submission
        signupForm.addEventListener('submit', (e) => {
            e.preventDefault();
            // Here you would normally send the form data to your backend
            alert('Application submitted! We will review your information and get back to you soon.');
            signupModal.classList.remove('active');
            document.body.style.overflow = 'auto';
            signupForm.reset();
        });

        // Toggle benefits panel
        benefitsBtn.addEventListener('click', () => {
            benefitsPanel.classList.toggle('active');
        });

        // Close benefits panel when clicking outside
        document.addEventListener('click', (e) => {
            if (!benefitsPanel.contains(e.target) && e.target !== benefitsBtn) {
                benefitsPanel.classList.remove('active');
            }
        });

        // Close modal when clicking on overlay
        signupModal.addEventListener('click', (e) => {
            if (e.target === signupModal) {
                signupModal.classList.remove('active');
                document.body.style.overflow = 'auto';
            }
        });
    </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=privateuserh/privsmia-vbeta" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>