File size: 29,479 Bytes
c47b981
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hugging Face Pro - Unlock Advanced AI Features</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Inter', sans-serif;
        }
        .pro-gradient {
            background: linear-gradient(135deg, #6EE7B7 0%, #34D399 50%, #2DD4BF 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .highlight-text {
            position: relative;
            display: inline-block;
        }
        .highlight-text:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background-color: rgba(52, 211, 153, 0.3);
            z-index: -1;
            transition: all 0.3s ease;
        }
        .highlight-text:hover:after {
            height: 100%;
        }
    </style>
</head>
<body class="bg-gradient-to-br from-gray-50 to-gray-100 antialiased">
    <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
        <!-- Hero Section -->
        <section class="text-center mb-24 fade-in">
            <div class="inline-flex items-center justify-center space-x-4 mb-8">
                <span class="inline-flex items-center px-6 py-2 text-2xl font-bold text-gray-900 bg-gradient-to-r from-green-300 via-teal-300 to-cyan-400 rounded-xl shadow-md transform rotate-1">
                    PRO
                </span>
                <span class="text-5xl font-bold text-gray-900 tracking-tight">Account</span>
            </div>
            <h1 class="text-4xl md:text-6xl font-bold mb-8 text-gray-900 leading-tight">
                Supercharge your <span class="highlight-text">AI experience</span>
            </h1>
            <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10">
                Access premium features, higher quotas, and exclusive benefits to power your AI projects.
            </p>
            <a href="#pricing" class="inline-flex items-center justify-center space-x-2 bg-gray-900 text-white px-8 py-4 rounded-xl font-semibold hover:bg-gray-800 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
                <span>Get Pro $9/month</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd" />
                </svg>
            </a>
            <div class="mt-12 flex justify-center">
                <div class="flex -space-x-4">
                    <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
                    <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
                    <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
                </div>
                <div class="ml-4 text-left">
                    <p class="text-gray-700 font-medium">Trusted by 50K+ AI developers</p>
                    <div class="flex items-center">
                        <div class="flex -ml-1 text-yellow-400">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
                            </svg>
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
                            </svg>
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
                            </svg>
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
                            </svg>
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
                            </svg>
                        </div>
                        <span class="ml-2 text-gray-600">4.9/5 from 500+ reviews</span>
                    </div>
                </div>
            </div>
        </section>

        <!-- Inference Section -->
        <section class="mb-24 fade-in" style="animation-delay: 0.2s">
            <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
                <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
                    <div class="md:pr-8">
                        <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-green-100 text-green-800 mb-4">Enhanced Access</span>
                        <h2 class="text-3xl font-bold mb-5 text-gray-900">Pro Tier for Inference</h2>
                        <p class="text-gray-600 text-lg mb-6">
                            Unleash the full potential of state-of-the-art AI models with priority access and extended quotas.
                        </p>
                        <div class="flex items-center space-x-4">
                            <div class="flex items-center justify-center w-12 h-12 rounded-xl bg-green-100 text-green-700">
                                <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
                                </svg>
                            </div>
                            <p class="text-gray-700">
                                <span class="font-semibold">1,000,000 tokens</span> included every day
                            </p>
                        </div>
                    </div>
                    <div class="space-y-6">
                        <div>
                            <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
                                <span class="flex items-center">
                                    <span class="w-2 h-2 rounded-full bg-gray-500 mr-2"></span>
                                    gemma-2.7-b
                                </span>
                                <span>12M tokens daily</span>
                            </div>
                            <div class="w-full bg-gray-200 rounded-full h-2.5">
                                <div class="bg-gradient-to-r from-green-400 to-teal-400 h-2.5 rounded-full" style="width: 70%"></div>
                            </div>
                        </div>
                        <div>
                            <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
                                <span class="flex items-center">
                                    <span class="w-2 h-2 rounded-full bg-green-500 mr-2"></span>
                                    deepseek-V3
                                </span>
                                <span>1M tokens daily</span>
                            </div>
                            <div class="w-full bg-gray-200 rounded-full h-2.5">
                                <div class="bg-gradient-to-r from-blue-400 to-cyan-400 h-2.5 rounded-full" style="width: 95%"></div>
                            </div>
                        </div>
                        <div>
                            <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
                                <span class="flex items-center">
                                    <span class="w-2 h-2 rounded-full bg-purple-500 mr-2"></span>
                                    llama-3-70b
                                </span>
                                <span>5M tokens daily</span>
                            </div>
                            <div class="w-full bg-gray-200 rounded-full h-2.5">
                                <div class="bg-gradient-to-r from-purple-400 to-pink-400 h-2.5 rounded-full" style="width: 45%"></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- AI App Store Section -->
        <section class="mb-24 fade-in" style="animation-delay: 0.4s">
            <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
                <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-start">
                    <div class="md:pr-8">
                        <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-blue-100 text-blue-800 mb-4">Exclusive Access</span>
                        <h2 class="text-3xl font-bold mb-5 text-gray-900">Premium AI App Store</h2>
                        <p class="text-gray-600 text-lg mb-6">
                            Get prioritized access to the most popular AI applications with ZeroGPU Spaces.
                        </p>
                        <div class="relative group">
                            <div class="absolute -inset-1 bg-gradient-to-r from-blue-500 to-teal-500 rounded-xl opacity-20 group-hover:opacity-40 transition duration-1000 group-hover:duration-200 blur-sm"></div>
                            <div class="relative bg-gray-900 text-white px-6 py-3 rounded-lg">
                                <div class="flex items-center space-x-2">
                                    <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                                        <path fill-rule="evenodd" d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z" clip-rule="evenodd" />
                                    </svg>
                                    <span>Priority access to high-demand models</span>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="space-y-3 mt-2">
                        <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
                            <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-blue-100 text-blue-600 font-bold mr-4">7</span>
                            <a href="#" class="text-gray-800 hover:underline font-medium truncate">cagliostrolab/animagine-xl-3.1</a>
                            <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-blue-50 text-blue-700">Trending</span>
                        </div>
                        <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
                            <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-purple-100 text-purple-600 font-bold mr-4">6</span>
                            <a href="#" class="text-gray-800 hover:underline font-medium truncate">API123/IllusionDiffusion</a>
                            <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-purple-50 text-purple-700">Popular</span>
                        </div>
                        <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
                            <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-green-100 text-green-600 font-bold mr-4">6</span>
                            <a href="#" class="text-gray-800 hover:underline font-medium truncate">stabilityai/stable-diffusion-3-medium</a>
                            <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-green-50 text-green-700">New</span>
                        </div>
                    </div>
                </div>

                <div class="col-span-1 md:col-span-2 grid grid-cols-1 md:grid-cols-2 gap-8 mt-12">
                    <div class="bg-white border border-gray-200 p-8 rounded-2xl shadow-sm hover:border-blue-300 transition-all duration-300 hover:shadow-md">
                        <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-blue-100 text-blue-600 mb-4">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 11c0 3.517-1.009 6.799-2.753 9.571m-3.44-2.04l.054-.09A13.916 13.916 0 008 11a4 4 0 118 0c0 1.017-.07 2.019-.203 3m-2.118 6.844A21.88 21.88 0 0015.171 17m3.839 1.132c.645-2.266.99-4.659.99-7.132A8 8 0 008 4.07M3 15.364c.64-1.319 1-2.8 1-4.364 0-1.457.39-2.823 1.07-4" />
                            </svg>
                        </div>
                        <h3 class="text-xl font-bold mb-3 text-gray-900">Create your own ZeroGPU app</h3>
                        <p class="text-gray-600">
                            Build, deploy, and scale your AI applications effortlessly with distributed A100s. Join a vibrant community of creators and innovators.
                        </p>
                    </div>
                    <div class="bg-white border border-gray-200 p-8 rounded-2xl shadow-sm hover:border-blue-300 transition-all duration-300 hover:shadow-md">
                        <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-green-100 text-green-600 mb-4">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0 3.35a1.724 1.724 0 001.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572-1.065c-.426-1.756-2.924-1.756-3.35 0a1.724 1.724 0 00-2.573 1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0 3.35a1.724 1.724 0 001.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572-1.065c-.426-1.756-2.924-1.756-3.35 0z" />
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
                            </svg>
                        </div>
                        <h3 class="text-xl font-bold mb-3 text-gray-900">Access Space dev mode</h3>
                        <p class="text-gray-600">
                            Accelerate your development with persistent storage, secure access, and real-time collaboration features.
                        </p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Community Section -->
        <section class="mb-24 fade-in" style="animation-delay: 0.6s">
            <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
                <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-start">
                    <div class="md:pr-8">
                        <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-yellow-100 text-yellow-800 mb-4">Community</span>
                        <h2 class="text-3xl font-bold mb-5 text-gray-900">Share your knowledge, build your reputation</h2>
                        <p class="text-gray-600 text-lg mb-6">
                            Contribute to the Hugging Face ecosystem by sharing tutorials, research, and innovations with the community.
                        </p>
                        <div class="flex border border-gray-200 rounded-lg p-4">
                            <div class="flex-shrink-0 mr-4">
                                <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
                            </div>
                            <div>
                                <h4 class="font-semibold text-gray-800">"Pro features helped me grow my audience by 300%"</h4>
                                <p class="text-sm text-gray-500">- AI Research Scientist at Google</p>
                            </div>
                        </div>
                    </div>
                    <div class="space-y-5">
                        <div class="flex items-center mb-4">
                            <span class="flex items-center justify-center w-10 h-10 rounded-lg bg-yellow-100 text-yellow-600 mr-3">
                                <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" viewBox="0 0 20 20" fill="currentColor">
                                    <path fill-rule="evenodd" d="M4 4a2 2 0 012-2h8a2 2 0 012 2v12a1 1 0 110 2h-3a1 1 0 01-1-1v-2a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 01-1 1H5a1 1 0 110-2V4zm3 1h2v2H7V5zm2 4H7v2h2V9zm2-4h2v2h-2V5zm2 4h-2v2h2V9z" clip-rule="evenodd" />
                                </svg>
                            </span>
                            <h3 class="text-xl font-semibold text-gray-800">Featured Articles</h3>
                        </div>
                        <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
                            <div class="flex items-center mb-2 text-blue-600">
                                <svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" viewBox="0 0 20 20" fill="currentColor">
                                    <path d="M10 12a2 2 0 100-4 2 2 0 000 4z" />
                                    <path fill-rule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd" />
                                </svg>
                                <span class="text-xs font-medium">Featured</span>
                            </div>
                            <h4 class="font-semibold mb-2 text-gray-800">EU Training Data Transparency: A Proposal for a Sufficiency Framework</h4>
                            <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">yjernite</a> ・ about 19 hours ago ・ △ 2</p>
                        </div>
                        <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
                            <h4 class="font-semibold mb-2 text-gray-800">Fine-tuning Mistral on Your Dataset: A Comprehensive Guide</h4>
                            <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">mroggendorf1</a> ・ 1 day ago ・ △ 6</p>
                        </div>
                        <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
                            <h4 class="font-semibold mb-2 text-gray-800">Transformers in Production: Optimization Techniques</h4>
                            <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">Esmail-AGumaa</a> ・ 1 day ago ・ △ 2</p>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- Divider -->
        <div class="text-center my-16">
            <div class="inline-flex items-center">
                <div class="h-px w-16 bg-gray-300"></div>
                <span class="px-4 text-lg font-medium text-gray-500">Wait, there's more</span>
                <div class="h-px w-16 bg-gray-300"></div>
            </div>
        </div>

        <!-- Features Grid -->
        <section class="mb-24">
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
                    <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-purple-100 text-purple-600 mb-4">
                        <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
                        </svg>
                    </div>
                    <h3 class="text-2xl font-bold mb-4 text-gray-900">Exclusive PRO Badge</h3>
                    <p class="text-gray-600">
                        Stand out in the community with a verified PRO badge on your profile that showcases your support.
                    </p>
                </div>
                <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
                    <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-blue-100 text-blue-600 mb-4">
                        <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
                        </svg>
                    </div>
                    <h3 class="text-2xl font-bold mb-4 text-gray-900">Private Dataset Viewer</h3>
                    <p class="text-gray-600">
                        Collaborate seamlessly with visual dataset exploration tools for your private repositories.
                    </p>
                </div>
                <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
                    <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-green-100 text-green-600 mb-4">
                        <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
                        </svg>
                    </div>
                    <h3 class="text-2xl font-bold mb-4 text-gray-900">Early Feature Access</h3>
                    <p class="text-gray-600">
                        Be the first to test and provide feedback on upcoming platform features before general release.
                    </p>
                </div>
            </div>
        </section>

        <!-- CTA Section -->
        <section class="bg-gradient-to-r from-blue-900 to-gray-900 text-white rounded-2xl shadow-xl p-12 md:p-16 text-center fade-in" style="animation-delay: 0.8s">
            <h2 class="text-3xl md:text-4xl font-bold mb-5">Ready to accelerate your AI journey?</h2>
            <p class="text-gray-300 text-lg md:text-xl mb-8 max-w-3xl mx-auto">
                Join thousands of developers and researchers who are already using Hugging Face Pro to build the future of AI.
            </p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <a href="#pricing" class="inline-flex items-center justify-center space-x-2 bg-white text-gray-900 px-8 py-4 rounded-xl font-semibold hover:bg-gray-100 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
                    <span>Get Pro for $9/month</span>
                    <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                        <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd" />
                    </svg>
                </a>
                <a href="#enterprise" class="inline-flex items-center justify-center space-x-2 bg-gray-800 text-white px-8 py-4 rounded-xl font-semibold hover:bg-gray-700 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
                    <span>Enterprise Solutions</span>
                </a>
            </div>
            <p class="mt-6 text-gray-400 text-sm">
                No credit card required for 7-day free trial. Cancel anytime.
            </p>
        </section>

        <!-- Footer -->
        <footer class="mt-24 text-center text-gray-500 text-sm">
            <p>© 2023 Hugging Face. All rights reserved.</p>
            <div class="flex justify-center space-x-6 mt-4">
                <a href="#" class="text-gray-500 hover:text-gray-700">Terms</a>
                <a href="#" class="text-gray-500 hover:text-gray-700">Privacy</a>
                <a href="#" class="text-gray-500 hover:text-gray-700">Docs</a>
                <a href="#" class="text-gray-500 hover:text-gray-700">Support</a>
            </div>
        </footer>
    </div>
<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=victor/pro-landing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>