-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisual.html
More file actions
335 lines (328 loc) · 34.6 KB
/
visual.html
File metadata and controls
335 lines (328 loc) · 34.6 KB
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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Visual — Argus</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/tailwindcss/browser/4"></script>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #0a0a0f; overflow: hidden; height: 100vh; width: 100vw; }
body { font-family: 'Inter', sans-serif; color: #e8e8f0; }
.deck { width: 100vw; height: 100vh; position: relative; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #0a0a0f; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: scale(0.97); transition: opacity 0.65s ease, transform 0.65s ease; pointer-events: none; overflow: hidden; }
.slide.active { opacity: 1; transform: scale(1); pointer-events: all; }
.slide .content { position: relative; z-index: 2; width: 100%; max-width: 1100px; padding: clamp(1.5rem,4vw,3.5rem); }
.nav-controls { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; z-index: 100; background: rgba(255,100,180,0.05); backdrop-filter: blur(12px); padding: 9px 22px; border-radius: 40px; border: 1px solid rgba(255,100,180,0.14); }
.nav-btn { width: 38px; height: 38px; border: none; background: rgba(255,100,180,0.07); color: #ff64b4; border-radius: 50%; font-size: 1.15rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.nav-btn:hover { background: rgba(255,100,180,0.17); }
.slide-dots { display: flex; gap: 7px; }
.slide-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,100,180,0.16); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.slide-dots .dot.active { background: #ff64b4; transform: scale(1.35); }
.slide-counter { font-size: 0.75rem; color: #6060a0; min-width: 38px; text-align: center; font-family: 'JetBrains Mono', monospace; }
.reveal { opacity: 0; transform: translateY(18px); }
.scanlines::before { content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); }
@keyframes glow-pink { 0%,100% { text-shadow: 0 0 22px rgba(255,100,180,0.6), 0 0 44px rgba(255,100,180,0.25); } 50% { text-shadow: 0 0 36px rgba(255,100,180,0.95), 0 0 65px rgba(255,100,180,0.42); } }
.glow-pulse { animation: glow-pink 2.8s ease-in-out infinite; }
.stat-glow { text-shadow: 0 0 30px rgba(255,100,180,0.65), 0 0 60px rgba(255,100,180,0.28); }
@keyframes float-slow { 0% { transform: translate(0,0) scale(1); } 25% { transform: translate(60px,-50px) scale(1.15); } 75% { transform: translate(-40px,40px) scale(0.92); } 100% { transform: translate(0,0) scale(1); } }
@keyframes float-drift { 0% { transform: translate(0,0) scale(1) rotate(0deg); } 33% { transform: translate(-50px,-60px) scale(1.13) rotate(3deg); } 66% { transform: translate(40px,30px) scale(0.9) rotate(-2deg); } 100% { transform: translate(0,0) scale(1) rotate(0deg); } }
.gradient-mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); animation: float-slow 11s ease-in-out infinite; }
.blob:nth-child(2) { animation: float-drift 15s ease-in-out infinite; }
.blob:nth-child(3) { animation: float-slow 19s ease-in-out infinite reverse; }
.slide::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,0.55) 100%); }
.slide::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); background-size: 256px 256px; opacity: 0.025; mix-blend-mode: overlay; }
@keyframes canvas-float { 0%,100% { transform: translateY(0) rotate(3deg) scale(1); } 50% { transform: translateY(-18px) rotate(3deg) scale(1.04); } }
@keyframes pixel-fade { 0%,100% { opacity: 0.9; } 50% { opacity: 0.3; } }
.canvas-hero { animation: canvas-float 3.8s ease-in-out infinite; filter: drop-shadow(0 0 28px rgba(255,100,180,0.48)); }
.particle-canvas { position: absolute; inset: 0; z-index: 1; }
.bar-track { background: rgba(255,100,180,0.1); border-radius: 4px; height: 8px; overflow: hidden; }
.bar-fill-pink { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #ff64b4, #a78bfa); width: 0; transition: width 0.7s ease; }
.mouse-spotlight { position: fixed; inset: 0; z-index: 99; pointer-events: none; display: none; }
.tag { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 99px; font-size: 0.7rem; font-family: 'JetBrains Mono', monospace; border: 1px solid rgba(255,100,180,0.24); color: #ff64b4; background: rgba(255,100,180,0.07); }
.tag-purple { border-color: rgba(124,58,237,0.35); color: #a78bfa; background: rgba(124,58,237,0.08); }
.tag-blue { border-color: rgba(0,204,255,0.25); color: #00ccff; background: rgba(0,204,255,0.06); }
.tag-green { border-color: rgba(0,255,136,0.22); color: #00ff88; background: rgba(0,255,136,0.06); }
.phase-badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 12px; border-radius: 4px; font-size: 0.68rem; font-family: 'JetBrains Mono', monospace; background: rgba(255,100,180,0.09); border: 1px solid rgba(255,100,180,0.2); color: #ff64b4; }
</style>
</head>
<body>
<div class="mouse-spotlight" id="spotlight"></div>
<div class="deck">
<!-- SLIDE 1: HERO -->
<div class="slide slide-1 scanlines active" data-slide="1">
<div class="gradient-mesh">
<div class="blob" style="width:520px;height:520px;top:-140px;right:-90px;background:#ff64b4;opacity:0.11"></div>
<div class="blob" style="width:300px;height:300px;bottom:-80px;left:-60px;background:#a78bfa;opacity:0.09"></div>
<div class="blob" style="width:180px;height:180px;top:38%;left:8%;background:#ff64b4;opacity:0.07"></div>
</div>
<canvas class="particle-canvas"></canvas>
<div class="content" style="display:flex;align-items:center;justify-content:center;gap:clamp(2rem,6vw,6rem)">
<div class="canvas-hero" style="flex-shrink:0">
<svg width="200" height="215" viewBox="0 0 200 215" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Canvas frame -->
<rect x="14" y="14" width="172" height="158" rx="8" fill="rgba(255,100,180,0.04)" stroke="#ff64b4" stroke-width="1.5"/>
<!-- Inner art grid -->
<rect x="24" y="24" width="72" height="54" rx="4" fill="rgba(255,100,180,0.12)"/>
<rect x="104" y="24" width="72" height="54" rx="4" fill="rgba(167,139,250,0.10)"/>
<rect x="24" y="86" width="72" height="76" rx="4" fill="rgba(0,204,255,0.08)"/>
<rect x="104" y="86" width="72" height="76" rx="4" fill="rgba(255,100,180,0.07)"/>
<!-- Pixel art detail top-left -->
<rect x="28" y="28" width="14" height="14" rx="2" fill="rgba(255,100,180,0.35)"><animate attributeName="opacity" values="0.9;0.3;0.9" dur="2.1s" repeatCount="indefinite"/></rect>
<rect x="46" y="28" width="14" height="14" rx="2" fill="rgba(255,100,180,0.22)"/>
<rect x="64" y="28" width="14" height="14" rx="2" fill="rgba(255,100,180,0.40)"><animate attributeName="opacity" values="0.8;0.2;0.8" dur="1.7s" repeatCount="indefinite"/></rect>
<rect x="28" y="46" width="14" height="14" rx="2" fill="rgba(255,100,180,0.18)"/>
<rect x="46" y="46" width="26" height="26" rx="3" fill="rgba(255,100,180,0.5)"><animate attributeName="opacity" values="1;0.4;1" dur="2.4s" repeatCount="indefinite"/></rect>
<!-- Top-right block: purple -->
<rect x="108" y="28" width="64" height="46" rx="4" fill="rgba(167,139,250,0.18)"/>
<rect x="120" y="36" width="40" height="6" rx="2" fill="rgba(167,139,250,0.45)"/>
<rect x="120" y="46" width="28" height="6" rx="2" fill="rgba(167,139,250,0.30)"/>
<rect x="120" y="56" width="34" height="6" rx="2" fill="rgba(167,139,250,0.22)"/>
<!-- Bottom-left: cyan art -->
<circle cx="60" cy="124" r="24" stroke="#00ccff" stroke-width="1.2" fill="rgba(0,204,255,0.06)" opacity="0.7"/>
<circle cx="60" cy="124" r="14" fill="rgba(0,204,255,0.14)"/>
<circle cx="60" cy="124" r="5" fill="#00ccff" opacity="0.8"><animate attributeName="r" values="4;7;4" dur="2s" repeatCount="indefinite"/></circle>
<!-- Bottom-right: video play icon -->
<rect x="108" y="90" width="64" height="68" rx="4" fill="rgba(255,100,180,0.10)"/>
<circle cx="140" cy="124" r="20" stroke="#ff64b4" stroke-width="1.2" fill="rgba(255,100,180,0.06)" opacity="0.8"/>
<polygon points="134,116 134,132 152,124" fill="#ff64b4" opacity="0.7"><animate attributeName="opacity" values="0.7;0.3;0.7" dur="1.8s" repeatCount="indefinite"/></polygon>
<!-- 4K badge -->
<rect x="14" y="180" width="48" height="20" rx="4" fill="rgba(255,100,180,0.10)" stroke="rgba(255,100,180,0.3)" stroke-width="0.8"/>
<text x="38" y="194" fill="#ff64b4" font-size="9" text-anchor="middle" font-family="monospace" font-weight="bold">4K/8K</text>
<!-- AI gen badge -->
<rect x="70" y="180" width="56" height="20" rx="4" fill="rgba(167,139,250,0.10)" stroke="rgba(167,139,250,0.28)" stroke-width="0.8"/>
<text x="98" y="194" fill="#a78bfa" font-size="8.5" text-anchor="middle" font-family="monospace">Magnus</text>
<!-- Flux badge -->
<rect x="134" y="180" width="52" height="20" rx="4" fill="rgba(0,204,255,0.08)" stroke="rgba(0,204,255,0.2)" stroke-width="0.8"/>
<text x="160" y="194" fill="#00ccff" font-size="8.5" text-anchor="middle" font-family="monospace">Flux Dev</text>
<!-- Sparkles -->
<text x="188" y="30" fill="#ff64b4" font-size="11" opacity="0.8"><animate attributeName="opacity" values="0.8;0.15;0.8" dur="2s" repeatCount="indefinite"/>✦</text>
<text x="4" y="55" fill="#a78bfa" font-size="9" opacity="0.65"><animate attributeName="opacity" values="0.65;0.1;0.65" dur="2.8s" repeatCount="indefinite"/>✦</text>
<text x="192" y="110" fill="#00ccff" font-size="8" opacity="0.55"><animate attributeName="opacity" values="0.55;0.1;0.55" dur="1.9s" repeatCount="indefinite"/>✦</text>
</svg>
</div>
<div style="text-align:left">
<div style="font-family:'JetBrains Mono',monospace;font-size:clamp(0.65rem,1.1vw,0.8rem);color:#ff64b4;letter-spacing:0.15em;margin-bottom:0.8rem" class="reveal">// argus-ai-visual</div>
<h1 style="font-family:'JetBrains Mono',monospace;font-size:clamp(2.4rem,5.5vw,4.5rem);font-weight:700;line-height:1;background:linear-gradient(135deg,#ff64b4,#a78bfa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:0.5rem" class="reveal glow-pulse">AI<br>Visual</h1>
<div style="font-family:'JetBrains Mono',monospace;font-size:clamp(0.7rem,1.2vw,0.9rem);color:#a78bfa;letter-spacing:0.08em;margin-bottom:1.4rem" class="reveal">Magnus 4K · Kling AI Video · ComfyUI</div>
<div style="display:flex;flex-wrap:wrap;gap:8px" class="reveal">
<span class="tag">Magnus</span>
<span class="tag tag-purple">Flux Dev</span>
<span class="tag">Kling AI</span>
<span class="tag tag-blue">ComfyUI</span>
<span class="tag tag-purple">ControlNet</span>
<span class="tag tag-green">4K / 8K</span>
</div>
<div style="margin-top:1.4rem;font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:#6060a0" class="reveal">
<a href="https://github.com/Argus-Tech-Solutions/argus-ai-visual" target="_blank" style="color:#ff64b4;text-decoration:none">github.com/Argus-Tech-Solutions</a>
</div>
</div>
</div>
</div>
<!-- SLIDE 2: WHAT YOU GET -->
<div class="slide slide-2 scanlines" data-slide="2">
<div class="gradient-mesh">
<div class="blob" style="width:360px;height:360px;top:-80px;right:-60px;background:#ff64b4;opacity:0.09"></div>
<div class="blob" style="width:220px;height:220px;bottom:-60px;left:-40px;background:#a78bfa;opacity:0.07"></div>
</div>
<div class="content">
<div style="display:flex;align-items:center;gap:10px;margin-bottom:0.5rem" class="reveal">
<span style="font-family:'JetBrains Mono',monospace;font-size:0.72rem;color:#6060a0">01 · SERVICE</span>
<span class="phase-badge">IMAGES · VIDEO · COMMERCIAL</span>
</div>
<h2 style="font-family:'JetBrains Mono',monospace;font-size:clamp(1.4rem,3vw,2.2rem);font-weight:700;color:#ff64b4;margin-bottom:0.4rem" class="reveal">What You Get</h2>
<p style="color:#a0a0b8;font-size:0.9rem;max-width:70ch;margin-bottom:1.4rem;line-height:1.65" class="reveal">
<strong style="color:#ff64b4">AI-generated images at 4K/8K resolution</strong> using Magnus and Flux Dev — precise composition via ControlNet — plus <strong style="color:#a78bfa">Kling AI video generation</strong> at cinematic quality. Every output includes commercial license and source prompts.
</p>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:1.4rem" class="reveal">
<div style="background:rgba(255,100,180,0.05);border:1px solid rgba(255,100,180,0.16);border-radius:8px;padding:14px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#ff64b4;margin-bottom:6px">IMAGES</div>
<div style="font-size:0.82rem;color:#e8e8f0;font-weight:600">4K / 8K Output</div>
<div style="font-size:0.72rem;color:#6060a0;margin-top:4px">Magnus · Flux Dev<br>ControlNet precision</div>
</div>
<div style="background:rgba(124,58,237,0.06);border:1px solid rgba(124,58,237,0.16);border-radius:8px;padding:14px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#a78bfa;margin-bottom:6px">VIDEO</div>
<div style="font-size:0.82rem;color:#e8e8f0;font-weight:600">Kling AI Cinematic</div>
<div style="font-size:0.72rem;color:#6060a0;margin-top:4px">4K · Motion coherence<br>Text-to-video</div>
</div>
<div style="background:rgba(0,204,255,0.05);border:1px solid rgba(0,204,255,0.13);border-radius:8px;padding:14px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#00ccff;margin-bottom:6px">DELIVERY</div>
<div style="font-size:0.82rem;color:#e8e8f0;font-weight:600">Commercial License</div>
<div style="font-size:0.72rem;color:#6060a0;margin-top:4px">Prompts included<br>PNG · MP4 · Workflows</div>
</div>
</div>
<div style="display:grid;grid-template-columns:repeat(4,1fr);gap:10px" class="reveal">
<div style="text-align:center"><div style="font-family:'JetBrains Mono',monospace;font-size:1.6rem;font-weight:700;color:#ff64b4" class="stat-glow">8K</div><div style="font-size:0.68rem;color:#6060a0;margin-top:2px">MAX RESOLUTION</div></div>
<div style="text-align:center"><div style="font-family:'JetBrains Mono',monospace;font-size:1.6rem;font-weight:700;color:#a78bfa">4K</div><div style="font-size:0.68rem;color:#6060a0;margin-top:2px">VIDEO</div></div>
<div style="text-align:center"><div style="font-family:'JetBrains Mono',monospace;font-size:1.6rem;font-weight:700;color:#00ccff">COM</div><div style="font-size:0.68rem;color:#6060a0;margin-top:2px">LICENSE</div></div>
<div style="text-align:center"><div style="font-family:'JetBrains Mono',monospace;font-size:1.6rem;font-weight:700;color:#ff64b4" data-count="24" data-suffix="h">0</div><div style="font-size:0.68rem;color:#6060a0;margin-top:2px">DELIVERY</div></div>
</div>
</div>
</div>
<!-- SLIDE 3: TECHNICAL -->
<div class="slide slide-3 scanlines" data-slide="3">
<div class="gradient-mesh">
<div class="blob" style="width:300px;height:300px;top:-60px;left:-60px;background:#ff64b4;opacity:0.08"></div>
<div class="blob" style="width:200px;height:200px;bottom:-40px;right:-40px;background:#a78bfa;opacity:0.07"></div>
</div>
<div class="content">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.72rem;color:#6060a0;margin-bottom:0.4rem" class="reveal">argus-ai-visual · TECHNICAL</div>
<h2 style="font-family:'JetBrains Mono',monospace;font-size:clamp(1.2rem,2.5vw,1.8rem);font-weight:700;color:#ff64b4;margin-bottom:1.2rem" class="reveal">Generation Pipeline & Model Stack</h2>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:14px" class="reveal">
<div style="background:rgba(255,100,180,0.04);border:1px solid rgba(255,100,180,0.14);border-radius:8px;padding:16px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#ff64b4;margin-bottom:10px;letter-spacing:0.1em">GENERATION PIPELINE</div>
<div style="display:flex;flex-direction:column;gap:7px">
<div style="display:flex;align-items:center;gap:8px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#ff64b4;width:72px">Step 1</span><div class="bar-track" style="flex:1"><div class="bar-fill-pink" data-width="100"></div></div><span style="font-size:0.68rem;color:#6060a0;width:110px">Prompt engineering</span></div>
<div style="display:flex;align-items:center;gap:8px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#ff64b4;width:72px">Step 2</span><div class="bar-track" style="flex:1"><div class="bar-fill-pink" data-width="100"></div></div><span style="font-size:0.68rem;color:#6060a0;width:110px">Magnus / Flux Dev</span></div>
<div style="display:flex;align-items:center;gap:8px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#a78bfa;width:72px">Step 3</span><div class="bar-track" style="flex:1"><div class="bar-fill-pink" data-width="100"></div></div><span style="font-size:0.68rem;color:#6060a0;width:110px">ControlNet refine</span></div>
<div style="display:flex;align-items:center;gap:8px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#a78bfa;width:72px">Step 4</span><div class="bar-track" style="flex:1"><div class="bar-fill-pink" data-width="100"></div></div><span style="font-size:0.68rem;color:#6060a0;width:110px">4K / 8K upscale</span></div>
<div style="display:flex;align-items:center;gap:8px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;color:#00ccff;width:72px">Step 5</span><div class="bar-track" style="flex:1"><div class="bar-fill-pink" data-width="100"></div></div><span style="font-size:0.68rem;color:#6060a0;width:110px">PNG / MP4 export</span></div>
</div>
</div>
<div style="background:rgba(124,58,237,0.05);border:1px solid rgba(124,58,237,0.14);border-radius:8px;padding:16px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#a78bfa;margin-bottom:10px;letter-spacing:0.1em">MODEL CAPABILITIES</div>
<div style="display:flex;flex-direction:column;gap:8px;font-size:0.8rem">
<div style="display:flex;justify-content:space-between;align-items:center"><span style="color:#a0a0b8">Magnus</span><span style="font-family:'JetBrains Mono',monospace;color:#ff64b4;font-weight:600">Image · 8K</span></div>
<div style="display:flex;justify-content:space-between;align-items:center"><span style="color:#a0a0b8">Flux Dev</span><span style="font-family:'JetBrains Mono',monospace;color:#a78bfa;font-weight:600">Image · Realism</span></div>
<div style="display:flex;justify-content:space-between;align-items:center"><span style="color:#a0a0b8">ControlNet</span><span style="font-family:'JetBrains Mono',monospace;color:#ff64b4;font-weight:600">Pose · Depth · Edge</span></div>
<div style="display:flex;justify-content:space-between;align-items:center"><span style="color:#a0a0b8">Kling AI</span><span style="font-family:'JetBrains Mono',monospace;color:#00ccff;font-weight:600">Video · 4K</span></div>
<div style="display:flex;justify-content:space-between;align-items:center"><span style="color:#a0a0b8">ComfyUI</span><span style="font-family:'JetBrains Mono',monospace;color:#a78bfa;font-weight:600">Workflow engine</span></div>
</div>
</div>
</div>
<div style="display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px" class="reveal">
<div style="background:rgba(255,100,180,0.05);border:1px solid rgba(255,100,180,0.15);border-radius:6px;padding:10px;text-align:center"><div style="font-size:0.68rem;color:#ff64b4;font-family:'JetBrains Mono',monospace">Magnus</div><div style="font-size:0.7rem;color:#6060a0;margin-top:3px">Image Gen</div></div>
<div style="background:rgba(124,58,237,0.05);border:1px solid rgba(124,58,237,0.14);border-radius:6px;padding:10px;text-align:center"><div style="font-size:0.68rem;color:#a78bfa;font-family:'JetBrains Mono',monospace">Flux Dev</div><div style="font-size:0.7rem;color:#6060a0;margin-top:3px">Realism</div></div>
<div style="background:rgba(255,100,180,0.04);border:1px solid rgba(255,100,180,0.12);border-radius:6px;padding:10px;text-align:center"><div style="font-size:0.68rem;color:#ff64b4;font-family:'JetBrains Mono',monospace">Kling AI</div><div style="font-size:0.7rem;color:#6060a0;margin-top:3px">Video</div></div>
<div style="background:rgba(0,204,255,0.04);border:1px solid rgba(0,204,255,0.12);border-radius:6px;padding:10px;text-align:center"><div style="font-size:0.68rem;color:#00ccff;font-family:'JetBrains Mono',monospace">ComfyUI</div><div style="font-size:0.7rem;color:#6060a0;margin-top:3px">Workflow</div></div>
</div>
</div>
</div>
<!-- SLIDE 4: PRICING -->
<div class="slide slide-4 scanlines" data-slide="4">
<div class="gradient-mesh">
<div class="blob" style="width:400px;height:400px;top:-100px;left:-80px;background:#ff64b4;opacity:0.09"></div>
<div class="blob" style="width:250px;height:250px;bottom:-70px;right:-50px;background:#a78bfa;opacity:0.07"></div>
</div>
<div class="content">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.72rem;color:#6060a0;margin-bottom:0.4rem" class="reveal">argus-ai-visual · PRICING</div>
<h2 style="font-family:'JetBrains Mono',monospace;font-size:clamp(1.4rem,3vw,2.2rem);font-weight:700;color:#ff64b4;margin-bottom:1.4rem" class="reveal">Service Packages</h2>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:14px" class="reveal">
<!-- BASIC -->
<div style="background:rgba(255,100,180,0.04);border:1px solid rgba(255,100,180,0.16);border-radius:10px;padding:20px;display:flex;flex-direction:column;gap:10px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#6060a0;letter-spacing:0.1em">BASIC</div>
<div style="font-family:'JetBrains Mono',monospace;font-size:2.2rem;font-weight:700;color:#ff64b4">$40</div>
<div style="display:flex;gap:6px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;background:rgba(255,100,180,0.1);color:#ff64b4;padding:2px 8px;border-radius:4px">⚡ 24h delivery</span></div>
<div style="font-size:0.8rem;color:#a0a0b8;line-height:1.6">3 AI images in HD<br>1 style · commercial use<br>PNG export</div>
<div style="display:flex;flex-wrap:wrap;gap:4px;margin-top:auto">
<span class="tag" style="font-size:0.65rem">Magnus</span>
<span class="tag tag-green" style="font-size:0.65rem">HD</span>
</div>
</div>
<!-- STANDARD -->
<div style="background:rgba(255,100,180,0.07);border:2px solid rgba(255,100,180,0.42);border-radius:10px;padding:20px;display:flex;flex-direction:column;gap:10px;position:relative">
<div style="position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#ff64b4;color:#0a0a0f;font-family:'JetBrains Mono',monospace;font-size:0.65rem;font-weight:700;padding:3px 12px;border-radius:99px;white-space:nowrap">MOST POPULAR</div>
<div style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#ff64b4;letter-spacing:0.1em">STANDARD</div>
<div style="font-family:'JetBrains Mono',monospace;font-size:2.2rem;font-weight:700;color:#ff64b4">$120</div>
<div style="display:flex;gap:6px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;background:rgba(255,100,180,0.1);color:#ff64b4;padding:2px 8px;border-radius:4px">⚡ 24h delivery</span></div>
<div style="font-size:0.8rem;color:#a0a0b8;line-height:1.6">5 images 4K + 1 video 4K<br>Any style · ControlNet<br>Commercial license + prompts</div>
<div style="display:flex;flex-wrap:wrap;gap:4px;margin-top:auto">
<span class="tag" style="font-size:0.65rem">Magnus 4K</span>
<span class="tag tag-purple" style="font-size:0.65rem">Kling AI</span>
</div>
</div>
<!-- PREMIUM -->
<div style="background:rgba(124,58,237,0.07);border:1px solid rgba(124,58,237,0.28);border-radius:10px;padding:20px;display:flex;flex-direction:column;gap:10px">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#a78bfa;letter-spacing:0.1em">PREMIUM</div>
<div style="font-family:'JetBrains Mono',monospace;font-size:2.2rem;font-weight:700;color:#a78bfa">$280</div>
<div style="display:flex;gap:6px"><span style="font-family:'JetBrains Mono',monospace;font-size:0.68rem;background:rgba(124,58,237,0.12);color:#a78bfa;padding:2px 8px;border-radius:4px">⚡ 48h delivery</span></div>
<div style="font-size:0.8rem;color:#a0a0b8;line-height:1.6">10 images 4K/8K + 3 videos 4K<br>Multi-style · Brand kit<br>Full rights + source workflows</div>
<div style="display:flex;flex-wrap:wrap;gap:4px;margin-top:auto">
<span class="tag tag-purple" style="font-size:0.65rem">8K</span>
<span class="tag tag-purple" style="font-size:0.65rem">Brand Kit</span>
</div>
</div>
</div>
<div style="display:flex;flex-wrap:wrap;gap:6px;margin-top:1.4rem;align-items:center" class="reveal">
<span class="tag">Magnus</span>
<span class="tag tag-purple">Flux Dev</span>
<span class="tag">Kling AI</span>
<span class="tag tag-blue">ComfyUI</span>
<span class="tag tag-purple">ControlNet</span>
<span class="tag tag-green">4K / 8K</span>
<a href="https://github.com/Argus-Tech-Solutions/argus-ai-visual" target="_blank" style="margin-left:auto;font-family:'JetBrains Mono',monospace;font-size:0.72rem;color:#ff64b4;text-decoration:none;border:1px solid rgba(255,100,180,0.28);padding:4px 14px;border-radius:4px">github →</a>
</div>
</div>
</div>
<!-- SLIDE 5: CTA -->
<div class="slide slide-5 scanlines" data-slide="5">
<div class="gradient-mesh">
<div class="blob" style="width:520px;height:520px;top:-130px;right:-100px;background:#ff64b4;opacity:0.12"></div>
<div class="blob" style="width:300px;height:300px;bottom:-80px;left:-60px;background:#a78bfa;opacity:0.10"></div>
<div class="blob" style="width:200px;height:200px;top:35%;left:10%;background:#ff64b4;opacity:0.07"></div>
</div>
<canvas class="particle-canvas"></canvas>
<div class="content" style="text-align:center">
<div style="font-family:'JetBrains Mono',monospace;font-size:0.8rem;color:#6060a0;margin-bottom:0.8rem" class="reveal">// prompt accepted · rendering at 8K</div>
<h2 style="font-family:'JetBrains Mono',monospace;font-size:clamp(2rem,5vw,3.8rem);font-weight:700;background:linear-gradient(135deg,#ff64b4,#a78bfa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:0.6rem" class="reveal glow-pulse">Create the<br>uncreatable.</h2>
<p style="color:#a0a0b8;font-size:0.9rem;margin-bottom:2rem;max-width:52ch;margin-left:auto;margin-right:auto" class="reveal">4K/8K images + cinematic AI video.<br>Commercial license. Delivered in 24h.</p>
<div style="display:flex;justify-content:center;gap:14px;flex-wrap:wrap" class="reveal">
<a href="https://www.fiverr.com" target="_blank" style="display:inline-flex;align-items:center;gap:8px;padding:11px 26px;background:rgba(255,100,180,0.13);border:1px solid rgba(255,100,180,0.42);border-radius:6px;color:#ff64b4;text-decoration:none;font-family:'JetBrains Mono',monospace;font-size:0.85rem;font-weight:600">Order on Fiverr →</a>
<a href="https://github.com/Argus-Tech-Solutions" target="_blank" style="display:inline-flex;align-items:center;gap:8px;padding:11px 26px;background:rgba(124,58,237,0.08);border:1px solid rgba(124,58,237,0.25);border-radius:6px;color:#a78bfa;text-decoration:none;font-family:'JetBrains Mono',monospace;font-size:0.85rem">Argus-Tech-Solutions</a>
<a href="https://github.com/marcosantcs" target="_blank" style="display:inline-flex;align-items:center;gap:8px;padding:11px 26px;background:rgba(0,204,255,0.07);border:1px solid rgba(0,204,255,0.2);border-radius:6px;color:#00ccff;text-decoration:none;font-family:'JetBrains Mono',monospace;font-size:0.85rem">github.com/marcosantcs</a>
</div>
<div style="margin-top:2.5rem;font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#6060a0" class="reveal">argus-ai-visual · Argus Intelligence · marcosantcs</div>
</div>
</div>
</div>
<!-- NAV -->
<div style="display:flex;align-items:center;justify-content:center;gap:10px;
margin:0 auto 1.6rem;padding:10px 22px;
background:rgba(0,255,136,0.04);border:1px solid rgba(0,255,136,0.1);
border-radius:8px;max-width:460px;">
<span style="font-size:1.1rem">🔒</span>
<span style="font-family:'JetBrains Mono',monospace;font-size:0.72rem;
color:#6060a0;line-height:1.6">
<strong style="color:#00ff88">No prompt sharing.</strong>
Your data stays yours.<br>
<span style="opacity:0.6">All outputs are yours to own, deploy & modify.</span>
</span>
</div>
<div style="margin:0 auto 0.4rem;text-align:center">
<a href="https://github.com/Argus-Tech-Solutions/argus-ai-visual#demo" target="_blank"
style="font-family:'JetBrains Mono',monospace;font-size:0.7rem;
color:#ff64b4;text-decoration:none;border-bottom:1px solid rgba(0,0,0,0.2);padding-bottom:1px">
⬡ Sample outputs & live demo → github.com/Argus-Tech-Solutions/argus-ai-visual
</a>
</div>
<div class="nav-controls">
<button class="nav-btn" onclick="changeSlide(-1)">‹</button>
<div class="slide-dots" id="dots"></div>
<button class="nav-btn" onclick="changeSlide(1)">›</button>
<span class="slide-counter" id="counter">1 / 5</span>
</div>
<script>
let current=1;
const total=document.querySelectorAll('.slide').length;
const dotsContainer=document.getElementById('dots');
const counter=document.getElementById('counter');
for(let i=1;i<=total;i++){const d=document.createElement('div');d.className='dot'+(i===1?' active':'');d.onclick=()=>goToSlide(i);dotsContainer.appendChild(d);}
function goToSlide(n){const prev=document.querySelector('.slide.active');const next=document.querySelector(`.slide[data-slide="${n}"]`);if(prev)prev.classList.remove('active');if(next){next.classList.add('active');animateSlide(next);}current=n;updateNav();}
function changeSlide(dir){let n=current+dir;if(n<1)n=total;if(n>total)n=1;goToSlide(n);}
function updateNav(){document.querySelectorAll('.dot').forEach((d,i)=>d.classList.toggle('active',i+1===current));counter.textContent=current+' / '+total;}
function animateSlide(slide){slide.querySelectorAll('.reveal').forEach((el,i)=>{el.style.transition='none';el.style.opacity=0;el.style.transform='translateY(18px)';el.offsetHeight;const delay=i*0.07;el.style.transition=`opacity 0.32s ease ${delay}s, transform 0.32s ease ${delay}s`;el.style.opacity=1;el.style.transform='translateY(0)';});animateEffects(slide);}
function animateEffects(slide){slide.querySelectorAll('[data-count]:not(.counted)').forEach(el=>{el.classList.add('counted');const target=parseInt(el.dataset.count);const suffix=el.dataset.suffix||'';let cur=0;const step=target/40;const t=setInterval(()=>{cur+=step;if(cur>=target){cur=target;clearInterval(t);}el.textContent=Math.round(cur).toLocaleString()+suffix;},28);});slide.querySelectorAll('.bar-fill-pink:not(.fill-init)').forEach((bar,i)=>{bar.classList.add('fill-init');bar.style.width='0';bar.style.transition=`width 0.55s ease ${i*0.1}s`;bar.offsetHeight;bar.style.width=bar.dataset.width+'%';});}
document.addEventListener('keydown',e=>{if(e.key==='ArrowRight'||e.key===' '){e.preventDefault();changeSlide(1);}if(e.key==='ArrowLeft'){e.preventDefault();changeSlide(-1);}});
let tsX=0;document.addEventListener('touchstart',e=>tsX=e.touches[0].clientX);document.addEventListener('touchend',e=>{const d=tsX-e.changedTouches[0].clientX;if(Math.abs(d)>50)changeSlide(d>0?1:-1);});
function animateSlideInit(slide){slide.querySelectorAll('.reveal').forEach(el=>{el.style.opacity=1;el.style.transform='translateY(0)';});animateEffects(slide);}
document.addEventListener('mousemove',e=>{const s=document.getElementById('spotlight');s.style.display='block';s.style.background=`radial-gradient(600px circle at ${e.clientX}px ${e.clientY}px, rgba(255,100,180,0.07), transparent 40%)`;});
function initParticles(canvas,opts){if(!canvas)return;const ctx=canvas.getContext('2d');canvas.width=canvas.offsetWidth;canvas.height=canvas.offsetHeight;const count=opts.count||50;let mx=-1000,my=-1000;const colors=['rgba(255,100,180,','rgba(167,139,250,','rgba(0,204,255,'];const particles=Array.from({length:count},()=>({x:Math.random()*canvas.width,y:Math.random()*canvas.height,vx:Math.random()*0.6-0.3,vy:Math.random()*0.6-0.3,size:Math.random()*2+0.6,alpha:Math.random()*0.3+0.08,color:colors[Math.floor(Math.random()*colors.length)]}));if(opts.interactive){canvas.addEventListener('mousemove',e=>{const r=canvas.getBoundingClientRect();mx=e.clientX-r.left;my=e.clientY-r.top;});canvas.addEventListener('mouseleave',()=>{mx=-1000;my=-1000;});}function animate(){ctx.clearRect(0,0,canvas.width,canvas.height);particles.forEach(p=>{if(opts.interactive){const dx=p.x-mx,dy=p.y-my,dist=Math.sqrt(dx*dx+dy*dy);if(dist<100){const f=(100-dist)/100*1.8;p.vx+=dx/dist*f*0.08;p.vy+=dy/dist*f*0.08;}}p.vx*=0.98;p.vy*=0.98;p.x+=p.vx;p.y+=p.vy;if(p.x<0)p.x=canvas.width;if(p.x>canvas.width)p.x=0;if(p.y<0)p.y=canvas.height;if(p.y>canvas.height)p.y=0;ctx.beginPath();ctx.arc(p.x,p.y,p.size,0,Math.PI*2);ctx.fillStyle=p.color+p.alpha+')';ctx.fill();});requestAnimationFrame(animate);}animate();}
document.querySelectorAll('.particle-canvas').forEach(c=>initParticles(c,{interactive:true,count:60}));
try{animateSlideInit(document.querySelector('.slide.active'));}catch(e){}
</script>
</body>
</html>