-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnike.html
More file actions
385 lines (353 loc) · 23.5 KB
/
Copy pathnike.html
File metadata and controls
385 lines (353 loc) · 23.5 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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nike.com Audit Report | SimplyCodes Truth Engine</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=Figtree:ital,wght@0,300..900;1,300..900&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
sc: {
black: '#070707',
surface: '#111111',
border: '#222222',
neon: '#86FC4F',
neonDim: 'rgba(134, 252, 79, 0.1)',
text: '#E5E5E5',
muted: '#737373',
blue: '#3b82f6',
blueDim: 'rgba(59, 130, 246, 0.1)'
}
},
fontFamily: {
sans: ['Figtree', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
}
}
}
</script>
<style>
.neon-glow { box-shadow: 0 0 20px rgba(134, 252, 79, 0.15); }
.glass-panel { background: rgba(17, 17, 17, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); }
/* Custom Details Marker */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] summary svg { transform: rotate(90deg); }
</style>
</head>
<body class="bg-sc-black text-sc-text font-sans antialiased selection:bg-sc-neon selection:text-black">
<nav class="fixed top-0 w-full z-50 border-b border-sc-border bg-sc-black/90 backdrop-blur-md">
<div class="max-w-7xl mx-auto px-6 h-16 flex items-center justify-between">
<div class="flex items-center gap-8">
<a href="index.html" class="flex items-center gap-2 group">
<div class="w-6 h-6 rounded bg-sc-neon flex items-center justify-center text-black font-bold text-lg group-hover:neon-glow transition-all">S</div>
<span class="font-bold tracking-tight text-white">SimplyCodes</span>
</a>
<div class="hidden md:flex items-center gap-1">
<div class="relative group">
<input type="text" placeholder="Audit a Store..." class="bg-sc-surface border border-sc-border rounded-lg pl-3 pr-8 py-1.5 text-sm w-48 focus:border-sc-neon/50 focus:outline-none transition-all text-white placeholder-sc-muted">
<kbd class="absolute right-2 top-2 text-[10px] text-sc-muted font-mono">⌘K</kbd>
</div>
</div>
<div class="hidden md:flex items-center gap-6 text-sm font-medium text-sc-muted">
<a href="live.html" class="hover:text-white transition-colors">Live Ledger</a>
<a href="truth.html" class="hover:text-white transition-colors">Methodology</a>
</div>
</div>
<div class="flex items-center gap-4">
<a href="api.html" class="hidden md:block text-sm font-mono text-sc-muted hover:text-white transition-colors">For Agents API</a>
<a href="#" class="text-sm font-medium hover:text-white transition-colors">Log In</a>
<a href="extension.html" class="bg-white text-black px-4 py-2 rounded-full text-sm font-bold hover:bg-sc-neon hover:neon-glow transition-all duration-300">
Get Extension
</a>
</div>
</div>
</nav>
<header class="pt-24 pb-8 border-b border-sc-border bg-sc-surface relative overflow-hidden">
<div class="absolute top-0 right-0 w-96 h-96 bg-sc-neon opacity-5 blur-[120px] pointer-events-none"></div>
<div class="max-w-5xl mx-auto px-6">
<div class="flex items-center gap-2 text-xs font-mono text-sc-muted mb-6">
<a href="index.html" class="hover:text-white">HOME</a>
<span>/</span>
<span>AUDIT REPORT</span>
<span>/</span>
<span class="text-white">NIKE.COM</span>
</div>
<div class="flex flex-col md:flex-row justify-between items-start gap-8">
<div>
<div class="flex items-center gap-4 mb-2">
<div class="w-16 h-16 bg-white rounded-lg flex items-center justify-center">
<svg class="w-10 h-10 text-black" viewBox="0 0 24 24" fill="currentColor"><path d="M21 8.719L7.836 14.303C6.74 14.768 5.818 15 5.075 15c-.836 0-1.445-.295-1.819-.884-.485-.76-.273-1.982.559-3.272.494-.754 1.122-1.446 1.734-2.108-.144.234-1.415 2.349-.025 3.345.275.2.666.298 1.147.298.386 0 .829-.063 1.316-.19L21 8.719z"/></svg>
</div>
<div>
<h1 class="text-3xl font-bold text-white tracking-tight">Nike Checkout Audit</h1>
<div class="flex items-center gap-2 text-sm text-sc-muted">
<span class="w-2 h-2 rounded-full bg-sc-neon animate-pulse-slow"></span>
<span>Status: <span class="text-sc-neon font-mono">VERIFIED ACTIVE</span></span>
<span class="text-sc-border">|</span>
<span>Last Scan: 12m ago</span>
</div>
</div>
</div>
</div>
<div class="flex items-center gap-6">
<div class="text-right">
<div class="text-xs font-mono text-sc-muted uppercase tracking-wider mb-1">Health Score</div>
<div class="text-4xl font-mono font-bold text-white">98<span class="text-lg text-sc-muted">/100</span></div>
</div>
<div class="relative w-16 h-16 rounded-full border-4 border-sc-border flex items-center justify-center">
<div class="absolute inset-0 rounded-full border-4 border-sc-neon border-t-transparent -rotate-45"></div>
<span class="text-xl">A+</span>
</div>
</div>
</div>
<div class="mt-12 grid grid-cols-3 gap-1 border-t border-sc-border pt-8">
<div class="border-r border-sc-border pr-6">
<div class="text-2xl font-mono font-bold text-white">42</div>
<div class="text-xs text-sc-muted uppercase tracking-widest mt-1">Codes Scanned</div>
</div>
<div class="border-r border-sc-border px-6">
<div class="text-2xl font-mono font-bold text-sc-muted">38</div>
<div class="text-xs text-sc-muted uppercase tracking-widest mt-1">Filtered (Junk)</div>
</div>
<div class="pl-6">
<div class="text-2xl font-mono font-bold text-sc-neon">4</div>
<div class="text-xs text-sc-muted uppercase tracking-widest mt-1">Verified Working</div>
</div>
</div>
</div>
</header>
<div class="bg-sc-blueDim border-b border-sc-blue/20 py-3">
<div class="max-w-5xl mx-auto px-6 flex items-start md:items-center gap-3 text-sm">
<svg class="w-5 h-5 text-blue-400 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
<div class="text-blue-100">
<span class="font-bold text-blue-400 font-mono text-xs uppercase tracking-wider mr-2">INTELLIGENCE:</span>
Most codes fail on "Snkrs" launch items. Use <span class="font-mono bg-blue-900/50 px-1 rounded text-white">STUDENT</span> codes for main-line items only.
</div>
</div>
</div>
<main class="max-w-5xl mx-auto px-6 py-12 grid md:grid-cols-3 gap-12">
<div class="md:col-span-2 space-y-6">
<div class="group relative bg-sc-black border border-sc-neon rounded-lg shadow-[0_0_20px_rgba(134,252,79,0.05)] overflow-hidden transition-all hover:border-sc-neon/80">
<div class="absolute top-0 right-0 bg-sc-neon text-black text-[10px] font-bold px-2 py-1 font-mono uppercase tracking-wider">Highest Probability</div>
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-2xl font-bold text-white mb-1">10% OFF</h3>
<p class="text-sm text-sc-muted">Sitewide • No Minimum</p>
</div>
<div class="text-right">
<div class="text-sm font-mono text-sc-neon font-bold">96% SUCCESS</div>
<div class="text-xs text-sc-muted">Used 1,204 times today</div>
</div>
</div>
<div class="flex gap-4 h-12">
<div class="flex-1 bg-sc-surface border border-sc-border rounded flex items-center justify-between px-4 font-mono text-white relative overflow-hidden group-hover:border-sc-neon/30 transition-colors cursor-pointer">
<span>JUSTDOIT</span>
<span class="text-xs text-sc-muted">Click to Copy</span>
</div>
<button class="bg-sc-neon text-black px-6 font-bold rounded hover:bg-white transition-colors">
APPLY
</button>
</div>
</div>
<details class="group/drawer border-t border-sc-border bg-sc-surface/30">
<summary class="flex items-center gap-2 p-3 px-6 cursor-pointer hover:bg-sc-surface transition-colors">
<svg class="w-3 h-3 text-sc-muted transition-transform group-open/drawer:rotate-90" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /></svg>
<span class="text-xs font-mono text-sc-muted uppercase tracking-widest">View Evidence Dossier</span>
</summary>
<div class="p-6 pt-2 grid grid-cols-2 gap-8 text-sm">
<div>
<h4 class="text-xs font-mono text-sc-muted uppercase mb-2">Source of Truth</h4>
<ul class="space-y-2 text-gray-400">
<li class="flex items-center gap-2"><svg class="w-3 h-3 text-sc-neon" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg> Nike Homepage Banner</li>
<li class="flex items-center gap-2"><svg class="w-3 h-3 text-sc-neon" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg> Verified by @SarahK (Admin)</li>
<li class="text-xs text-sc-muted pl-5">Timestamp: 2026-01-01 14:02:11 UTC</li>
</ul>
</div>
<div>
<h4 class="text-xs font-mono text-sc-muted uppercase mb-2">Logic Constraints</h4>
<p class="text-gray-400">Code is valid for all registered accounts. Does NOT stack with student discount.</p>
</div>
</div>
</details>
</div>
<div class="group bg-sc-black border border-sc-border rounded-lg hover:border-sc-muted transition-colors">
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold text-white mb-1">20% OFF</h3>
<p class="text-sm text-sc-muted flex items-center gap-2">
<span class="bg-yellow-900 text-yellow-500 text-[10px] px-1.5 py-0.5 rounded border border-yellow-800 font-mono">GATED</span>
Student Verification Required
</p>
</div>
<div class="text-right">
<div class="text-sm font-mono text-white font-bold">100% SUCCESS</div>
<div class="text-xs text-sc-muted">If eligible</div>
</div>
</div>
<div class="flex gap-4 h-12">
<div class="flex-1 bg-sc-surface border border-sc-border rounded flex items-center justify-between px-4 font-mono text-sc-muted cursor-not-allowed">
<span>UNIQUE CODE</span>
<span class="text-xs">Requires Login</span>
</div>
<a href="nike-student-discount.html" class="border border-sc-border text-white px-6 py-3 rounded text-sm font-bold hover:bg-sc-surface transition-colors">
GET VERIFIED
</a>
</div>
</div>
</div>
<div class="group bg-sc-black border border-sc-border rounded-lg hover:border-sc-muted transition-colors">
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold text-white mb-1">FREE SHIPPING</h3>
<p class="text-sm text-sc-muted">On Orders $50+</p>
</div>
<div class="text-right">
<div class="text-sm font-mono text-white font-bold">AUTO-APPLY</div>
</div>
</div>
<div class="h-px bg-sc-border my-4"></div>
<p class="text-sm text-gray-400">No code required. Applied automatically at checkout for members.</p>
</div>
</div>
<details class="group pt-8">
<summary class="flex items-center justify-center gap-2 text-sc-muted hover:text-white cursor-pointer transition-colors">
<span class="text-xs font-mono uppercase tracking-widest">View 38 Rejected Codes (The Graveyard)</span>
<svg class="w-4 h-4 transition-transform group-open:rotate-180" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" /></svg>
</summary>
<div class="mt-6 space-y-2 opacity-50">
<div class="flex justify-between items-center p-3 border border-sc-border rounded bg-sc-surface/20">
<span class="font-mono text-sc-muted line-through">SAVE20</span>
<span class="text-xs text-red-500 font-mono">EXPIRED</span>
</div>
<div class="flex justify-between items-center p-3 border border-sc-border rounded bg-sc-surface/20">
<span class="font-mono text-sc-muted line-through">NIKE50</span>
<span class="text-xs text-red-500 font-mono">FAKE / CLICKBAIT</span>
</div>
</div>
</details>
</div>
<div class="space-y-8">
<div class="p-6 bg-sc-surface border border-sc-border rounded-lg">
<h4 class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-6">Code Availability (30 Days)</h4>
<div class="flex items-end justify-between h-24 gap-1">
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[40%] rounded-sm"></div>
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[60%] rounded-sm"></div>
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[30%] rounded-sm"></div>
<div class="w-full bg-sc-neon shadow-[0_0_10px_rgba(134,252,79,0.3)] h-[80%] rounded-sm"></div>
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[50%] rounded-sm"></div>
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[45%] rounded-sm"></div>
<div class="w-full bg-sc-border hover:bg-sc-neon transition-colors h-[90%] rounded-sm"></div>
</div>
<div class="flex justify-between text-[10px] font-mono text-sc-muted mt-2">
<span>30d ago</span>
<span>Today</span>
</div>
</div>
<div class="p-6 bg-sc-surface border border-sc-border rounded-lg">
<h4 class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-6">Why Codes Fail Here</h4>
<div class="space-y-4">
<div>
<div class="flex justify-between text-xs mb-1">
<span class="text-white">New Customer Only</span>
<span class="text-sc-muted font-mono">42%</span>
</div>
<div class="h-1 bg-sc-border rounded-full overflow-hidden">
<div class="h-full bg-red-500 w-[42%]"></div>
</div>
</div>
<div>
<div class="flex justify-between text-xs mb-1">
<span class="text-white">Sale Item Exclusion</span>
<span class="text-sc-muted font-mono">28%</span>
</div>
<div class="h-1 bg-sc-border rounded-full overflow-hidden">
<div class="h-full bg-red-500 w-[28%]"></div>
</div>
</div>
<div>
<div class="flex justify-between text-xs mb-1">
<span class="text-white">Expired</span>
<span class="text-sc-muted font-mono">15%</span>
</div>
<div class="h-1 bg-sc-border rounded-full overflow-hidden">
<div class="h-full bg-red-500 w-[15%]"></div>
</div>
</div>
</div>
<div class="mt-6 pt-4 border-t border-sc-border">
<a href="taxonomy.html" class="text-xs text-sc-muted hover:text-white flex items-center gap-1 transition-colors">
View Full Failure Taxonomy <span class="text-lg">→</span>
</a>
</div>
</div>
<a href="nike-student-discount.html" class="block p-6 bg-sc-surface border border-sc-border rounded-lg hover:border-white transition-colors group">
<div class="text-[10px] font-mono text-blue-400 mb-2">DEEP DIVE REPORT</div>
<h4 class="font-bold text-white mb-2 group-hover:underline">Does the Student Discount stack?</h4>
<p class="text-xs text-sc-muted">We tested 50 carts. See the log.</p>
</a>
</div>
</main>
<footer class="bg-sc-black border-t border-sc-border pt-20 pb-10 px-6">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-2 md:grid-cols-4 gap-12 mb-20">
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Platform</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="extension.html" class="hover:text-white hover:text-sc-neon transition-colors">Extension</a></li>
<li><a href="mobile-app.html" class="hover:text-white hover:text-sc-neon transition-colors">Mobile App</a></li>
<li><a href="chatgpt.html" class="hover:text-white hover:text-sc-neon transition-colors">ChatGPT App</a></li>
<li><a href="api.html" class="hover:text-white hover:text-sc-neon transition-colors">Developer API</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Truth</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="live.html" class="hover:text-white hover:text-sc-neon transition-colors">Live Ledger</a></li>
<li><a href="truth.html" class="hover:text-white hover:text-sc-neon transition-colors">Methodology</a></li>
<li><a href="taxonomy.html" class="hover:text-white hover:text-sc-neon transition-colors">Failure Taxonomy</a></li>
<li><a href="privacy.html" class="hover:text-white hover:text-sc-neon transition-colors">Privacy Promise</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Workforce</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="workforce.html" class="hover:text-white hover:text-sc-neon transition-colors">Join the Workforce</a></li>
<li><a href="leaderboards.html" class="hover:text-white hover:text-sc-neon transition-colors">Leaderboards</a></li>
<li><a href="#" class="hover:text-white hover:text-sc-neon transition-colors">ShopGraph Tasks</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Status</h4>
<div class="flex items-center gap-2 mb-4">
<span class="w-2 h-2 rounded-full bg-sc-neon"></span>
<span class="text-sm text-white font-mono">Operational</span>
</div>
<p class="text-xs text-sc-muted">Latency: 12ms</p>
<p class="text-xs text-sc-muted">San Francisco, CA</p>
</div>
</div>
<div class="border-t border-sc-border pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
<div class="text-sm text-sc-muted">© 2026 Demand.io. All rights reserved.</div>
<div class="flex gap-6 text-sm text-sc-muted">
<a href="#" class="hover:text-white">Twitter / X</a>
<a href="#" class="hover:text-white">LinkedIn</a>
</div>
</div>
</div>
</footer>
</body>
</html>