-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
455 lines (408 loc) · 16.4 KB
/
Copy pathindex.html
File metadata and controls
455 lines (408 loc) · 16.4 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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<!DOCTYPE html>
<html lang="es" data-theme="dark">
<head>
<link rel="icon" type="image/png" href="assets/favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Axiom Suite | Lanzadera DeepTech</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=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght=0,400;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
/* --- VARIABLES DE DISEÑO CON SOPORTE DE TEMAS --- */
:root[data-theme="dark"] {
--bg-color: #050608;
--surface-color: rgba(13, 15, 22, 0.96);
--text-main: #F5F6F8;
--text-muted: #8E919A;
--accent-glow-1: #00ff66; /* Verde Esmeralda Cyberpunk */
--accent-glow-2: #00e5ff; /* Cyan Eléctrico */
--border-color: rgba(255, 255, 255, 0.07);
--code-bg: #0A0C12;
--glass-fill: rgba(255, 255, 255, 0.02);
--glass-stroke: rgba(255, 255, 255, 0.14);
}
:root[data-theme="light"] {
--bg-color: #F4F6F9;
--surface-color: rgba(255, 255, 255, 0.94);
--text-main: #12141C;
--text-muted: #626673;
--accent-glow-1: #00cc52;
--accent-glow-2: #00b8cc;
--border-color: rgba(0, 0, 0, 0.08);
--code-bg: #EAEFF5;
--glass-fill: rgba(0, 0, 0, 0.01);
--glass-stroke: rgba(0, 0, 0, 0.12);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: 'Inter', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow-x: hidden;
position: relative;
transition: background-color 0.5s ease, color 0.5s ease;
}
/* --- GRADIENTES ORGÁNICOS DE FONDO --- */
.background-blob-1 {
position: absolute;
top: 20%;
left: 10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, var(--accent-glow-1) 0%, transparent 65%);
opacity: 0.18;
z-index: 1;
pointer-events: none;
}
.background-blob-2 {
position: absolute;
top: 40%;
right: 10%;
width: 450px;
height: 450px;
background: radial-gradient(circle, var(--accent-glow-2) 0%, transparent 65%);
opacity: 0.15;
z-index: 1;
pointer-events: none;
}
/* --- ESTILOS DE ESTRUCTURA --- */
header {
width: 100%;
max-width: 1100px;
margin: 0 auto;
padding: 40px 24px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10;
}
.logo {
font-weight: 600;
font-size: 13px;
letter-spacing: 0.25em;
text-transform: uppercase;
}
.theme-toggle {
background: none;
border: 1px solid var(--border-color);
color: var(--text-main);
padding: 8px 16px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
border-radius: 20px;
transition: all 0.3s ease;
}
.theme-toggle:hover {
background: var(--text-main);
color: var(--bg-color);
}
main {
max-width: 1100px; /* Ampliado para dar más espacio al Grid de herramientas */
width: 100%;
margin: auto;
padding: 20px 24px 80px 24px;
text-align: center;
z-index: 5;
}
.category-tag {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--text-muted);
margin-bottom: 24px;
display: block;
}
h1 {
font-family: 'Playfair Display', serif;
font-weight: 400;
font-size: 52px;
line-height: 1.15;
letter-spacing: -0.02em;
margin-bottom: 24px;
}
.subtitle {
font-size: 17px;
color: var(--text-muted);
line-height: 1.65;
max-width: 680px;
margin: 0 auto 48px auto;
font-weight: 300;
}
/* --- ESCENA DEL CRISTAL REFACTRIVO (CONTENEDOR GLOBAL) --- */
.glass-scene {
position: relative;
width: 100%;
margin: 0 auto 48px auto;
border-radius: 40px;
overflow: hidden;
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
border: 1px solid var(--border-color);
}
.glass-bg {
background-color: var(--surface-color);
padding: 48px 32px;
text-align: left;
display: flex;
flex-direction: column;
gap: 32px;
transition: background-color 0.5s ease;
}
.glass-wrapper {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 10;
}
/* --- GRID DE HERRAMIENTAS DE LA SUITE --- */
.suite-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
width: 100%;
position: relative;
z-index: 20; /* Por encima del pseudo-cristal para poder clicar los botones */
}
.suite-card {
background-color: var(--code-bg);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 28px;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.suite-card:hover {
border-color: var(--text-main);
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.suite-card-header {
margin-bottom: 16px;
}
.suite-card h3 {
font-size: 16px;
font-weight: 600;
letter-spacing: 0.05em;
margin-bottom: 12px;
color: var(--text-main);
display: flex;
align-items: center;
gap: 10px;
}
.suite-card h3 i {
color: var(--accent-glow-2);
font-size: 14px;
}
.suite-card p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 16px;
}
/* --- MINI MATRIZ TÉCNICA DENTRO DE CADA CARD --- */
.tech-matrix {
list-style: none;
margin-bottom: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.03);
padding-top: 12px;
}
.tech-matrix li {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 8px;
}
.tech-matrix li i {
color: var(--accent-glow-1);
font-size: 10px;
}
/* --- BOTÓN DE ACCIÓN ACCEDER --- */
.btn-action {
background-color: transparent;
border: 1px solid var(--border-color);
color: var(--text-main);
padding: 12px 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.15em;
cursor: pointer;
border-radius: 6px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
transition: all 0.3s ease;
}
.btn-action:hover {
background-color: var(--text-main);
color: var(--bg-color);
border-color: var(--text-main);
}
/* --- FOOTER --- */
footer {
padding: 40px 24px;
text-align: center;
font-size: 11px;
color: var(--text-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
border-top: 1px solid var(--border-color);
width: 100%;
z-index: 10;
}
</style>
</head>
<body>
<div class="background-blob-1"></div>
<div class="background-blob-2"></div>
<header>
<div class="logo">Axiom Systems</div>
<button class="theme-toggle" id="themeToggle">Light Mode</button>
</header>
<main>
<span class="category-tag">CENTRO DE OPERACIONES LOCALES</span>
<h1>AXIOM SUITE</h1>
<p class="subtitle">La capa base de tu entorno de ejecución. Una colección de frameworks y utilidades soberanas diseñadas para operar al 100% en el lado del cliente (Client-Side), directo a la memoria de ejecución y con coste cero de tokens o servidores externos.</p>
<div class="glass-scene" id="glassScene">
<div class="glass-bg">
<div class="suite-grid">
<div class="suite-card">
<div class="suite-card-header">
<h3><i class="fa-solid fa-satellite-dish"></i> Axiom Reach-Hub</h3>
<p>Consola de Datos Libres para Agentes. Extrae e indexa contenido de fuentes públicas sin necesidad de API, estructurando payloads informativos directamente en la memoria local de tu entorno.</p>
<ul class="tech-matrix">
<li><i class="fa-solid fa-network-wired"></i> Multi-Source Indexer (Extracción simulada y unificada de datos desde Twitter, Reddit, GitHub, IPTV, Hacker News y ArXiv)</li>
<li><i class="fa-solid fa-cubes"></i> Three.js Data Engine (Visualización avanzada en 3D mediante partículas de datos interactivos junto a un historial local y compartición por URL)</li>
<li><i class="fa-solid fa-brain"></i> IA In-Browser (Motor local con TensorFlow.js y Transformers.js para síntesis de información, exportable a Markdown, JSON y portapapeles)</li>
</ul>
</div>
<a href="https://axiom-systemstech.github.io/axiomreachhub/" target="_blank" class="btn-action">
Abrir <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="suite-card">
<div class="suite-card-header">
<h3><i class="fa-solid fa-brain"></i> Axiom Agent-Skills Registry</h3>
<p>Orquestador de superpoderes para tus agentes de IA. Configura parámetros y activa habilidades avanzadas de forma visual para generar estructuras JSON totalmente compatibles con los principales modelos de lenguaje del mercado.</p>
<ul class="tech-matrix">
<li><i class="fa-solid fa-cubes"></i> 15 Skills & Skill Packs (Habilidades predeterminadas como X-Grabber o Web Scraper con modos especializados para Dev, Data Analyst y Social Media)</li>
<li><i class="fa-solid fa-file-export"></i> Triple Formato de Exportación (Generación instantánea de esquemas listos para OpenAI Functions, Claude Tools y configuraciones locales)</li>
<li><i class="fa-solid fa-wand-magic-sparkles"></i> Recomendador Inteligente (Motor predictivo local con TensorFlow.js, templates guardables y compartición directa mediante URL)</li>
</ul>
</div>
<a href="https://axiom-systemstech.github.io/axiomagentskillsregistry/" target="_blank" class="btn-action">
Abrir <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="suite-card">
<div class="suite-card-header">
<h3><i class="fa-brands fa-x-twitter"></i> Axiom Void Pulse Twitter</h3>
<p>Analiza tus tweets antes de postear con IA real ejecutada localmente. Evalúa 47 métricas críticas para anticipar el impacto, medir el riesgo de "funada" y optimizar el rendimiento de tu contenido de forma inmediata.</p>
<ul class="tech-matrix">
<li><i class="fa-solid fa-gauge-high"></i> 3 Modos de Análisis (Desde reglas instantáneas hasta IA local con TensorFlow en el navegador)</li>
<li><i class="fa-solid fa-triangle-exclamation"></i> Threat & Ratio Radar (Detecta toxicidad, riesgo de backlash, polarización, sarcasmo y probabilidad de fake news)</li>
<li><i class="fa-solid fa-chart-pie"></i> Engagement Predictor (Gráfico de radar, estimación de likes/RTs, hashtags sugeridos, nube de palabras e historial de 20 análisis)</li>
</ul>
</div>
<a href="https://axiom-systemstech.github.io/axiomvoidpulsetwitter/" target="_blank" class="btn-action">
Abrir <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
</div> </div> <div class="glass-wrapper" id="glassWrapper"></div>
</div> </main>
<footer>
© 2026 Axiom Systems. MANTÉN LA SOBERANÍA. SUITE DE HERRAMIENTAS CORRE MÁS RÁPIDO AL SILICIO.
</footer>
<script>
// --- GESTOR EXCLUSIVO DE MODO CLARO / OSCURO ---
const themeToggle = document.getElementById('themeToggle');
const htmlElement = document.documentElement;
themeToggle.addEventListener('click', () => {
const currentTheme = htmlElement.getAttribute('data-theme');
if (currentTheme === 'dark') {
htmlElement.setAttribute('data-theme', 'light');
themeToggle.innerText = 'Dark Mode';
} else {
htmlElement.setAttribute('data-theme', 'dark');
themeToggle.innerText = 'Light Mode';
}
// Refrescar el cristal matemáticamente al cambiar de modo
applyAaveGlass();
});
// --- NÚCLEO MATEMÁTICO DE REFRACCIÓN DE CRISTAL ---
function applyAaveGlass() {
const wrapper = document.getElementById('glassWrapper');
const scene = document.getElementById('glassScene');
if (!scene || !wrapper) return;
const w = scene.offsetWidth;
const h = scene.offsetHeight;
const canvas = document.createElement('canvas');
canvas.width = w;
canvas.height = h;
const ctx = canvas.getContext('2d');
ctx.fillStyle = '#808080';
ctx.fillRect(0, 0, w, h);
const imgData = ctx.getImageData(0, 0, w, h);
const centerX = w / 2;
const centerY = h / 2;
const radius = Math.min(w, h) * 0.46;
for (let y = 0; y < h; y++) {
for (let x = 0; x < w; x++) {
const dx = x - centerX;
const dy = y - centerY;
const dist = Math.hypot(dx, dy);
if (dist < radius) {
const i = (y * w + x) * 4;
imgData.data[i] = 128 + (dx / radius) * 115;
imgData.data[i+1] = 128 + (dy / radius) * 115;
imgData.data[i+2] = 128;
imgData.data[i+3] = 255;
}
}
}
ctx.putImageData(imgData, 0, 0);
const mapUrl = canvas.toDataURL();
const theme = htmlElement.getAttribute('data-theme');
const rectFill = theme === 'dark' ? 'rgba(255, 255, 255, 0.02)' : 'rgba(0, 0, 0, 0.01)';
const rectStroke = theme === 'dark' ? 'rgba(255, 255, 255, 0.14)' : 'rgba(0, 0, 0, 0.10)';
wrapper.innerHTML = `
<svg width="${w}" height="${h}" xmlns="http://www.w3.org/2000/svg" style="display: block; position: absolute; inset:0;">
<defs>
<filter id="nomadGlassFilter" x="0%" y="0%" width="100%" height="100%" color-interpolation-filters="sRGB">
<feImage href="${mapUrl}" result="displacementMap"/>
<feDisplacementMap in="SourceGraphic" in2="displacementMap" scale="38" xChannelSelector="R" yChannelSelector="G"/>
<feGaussianBlur in="SourceGraphic" stdDeviation="1.5" result="blur"/>
<feComposite in="blur" in2="SourceGraphic" operator="arithmetic" k1="0" k2="1" k3="1" k4="0"/>
</filter>
</defs>
<rect width="${w}" height="${h}" rx="40" ry="40"
fill="${rectFill}"
filter="url(#nomadGlassFilter)"
stroke="${rectStroke}"
stroke-width="1.5"/>
</svg>
`;
}
window.addEventListener('DOMContentLoaded', applyAaveGlass);
window.addEventListener('resize', applyAaveGlass);
</script>
</body>
</html>