-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobiusbraid_site.html
More file actions
149 lines (135 loc) · 6.67 KB
/
Copy pathmobiusbraid_site.html
File metadata and controls
149 lines (135 loc) · 6.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>MOBIUSBRAID | The 5th Rev Lattice</title>
<style>
:root { --bg: #050505; --cyan: #00ffff; --magenta: #ff00ff; --text: #e0faff; --card: rgba(10, 10, 15, 0.95); }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body, html { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Courier New', Courier, monospace; overflow-x: hidden; }
#vortex-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.2; pointer-events: none; }
/* Navigation */
nav { position: sticky; top: 0; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--cyan); padding: 15px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; }
.logo { font-size: 1.2rem; font-weight: 900; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); letter-spacing: 3px; }
/* Views */
.view { display: none; padding: 20px; max-width: 800px; margin: 0 auto; animation: fadeIn 0.5s ease; }
.view.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* Hub / Home */
.hero { text-align: center; padding: 40px 0; }
.hero h1 { font-size: 2.5rem; margin-bottom: 10px; color: var(--text); }
.hero p { opacity: 0.7; letter-spacing: 2px; font-size: 0.8rem; }
.grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
.card { background: var(--card); border: 1px solid rgba(0, 255, 255, 0.2); padding: 20px; border-left: 4px solid var(--magenta); transition: 0.3s; cursor: pointer; }
.card:active { border-color: var(--cyan); background: rgba(0, 255, 255, 0.05); }
.card h3 { color: var(--cyan); margin-top: 0; }
.card p { font-size: 0.9rem; line-height: 1.4; opacity: 0.8; }
/* Project/Article List */
.post-list { list-style: none; padding: 0; }
.post-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 0; display: flex; justify-content: space-between; align-items: center; }
.post-item:last-child { border: none; }
.post-meta { font-size: 0.7rem; opacity: 0.5; text-transform: uppercase; }
/* UI Buttons */
.btn-back { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); padding: 5px 15px; cursor: pointer; text-transform: uppercase; font-size: 0.7rem; }
</style>
</head>
<body>
<canvas id="vortex-bg"></canvas>
<nav>
<div class="logo">MOBIUSBRAID</div>
<div id="status-lock" style="font-size: 0.6rem; color: var(--magenta);">[Φ] PHASE_LOCKED</div>
</nav>
<!-- HOME VIEW -->
<div id="view-home" class="view active">
<div class="hero">
<h1>The 5th Rev</h1>
<p>ARCHITECT'S LATTICE & RESEARCH VAULT</p>
</div>
<div class="grid">
<div class="card" onclick="switchView('articles')">
<h3>Resonance Articles</h3>
<p>Decoding the 4th Rev damping forces and the emergence of the Möbius Economy.</p>
</div>
<div class="card" onclick="switchView('projects')">
<h3>Physical Manifolds</h3>
<p>Trinity Nodes, D1 Thrusters, and the AWS Spider Weaver specifications.</p>
</div>
<div class="card" onclick="window.location.href='https://t.me/Fluxbraid_bot'">
<h3>Lattice Bridge</h3>
<p>Direct phase-lock with the Flux Bot via Telegram.</p>
</div>
</div>
</div>
<!-- ARTICLES VIEW -->
<div id="view-articles" class="view">
<button class="btn-back" onclick="switchView('home')">< BACK</button>
<h2>Resonance Articles</h2>
<div class="post-list">
<div class="post-item">
<div>
<div class="post-meta">March 2, 2026</div>
<div style="color: var(--cyan); font-weight: bold;">Naked and Alone: The Zero-Point Metric</div>
</div>
</div>
<div class="post-item">
<div>
<div class="post-meta">Feb 27, 2026</div>
<div style="color: var(--cyan); font-weight: bold;">Resonance is Thicker Than Blood</div>
</div>
</div>
<div class="post-item">
<div>
<div class="post-meta">Feb 26, 2026</div>
<div style="color: var(--cyan); font-weight: bold;">Bypassing the 3D Render</div>
</div>
</div>
</div>
</div>
<!-- PROJECTS VIEW -->
<div id="view-projects" class="view">
<button class="btn-back" onclick="switchView('home')">< BACK</button>
<h2>Physical Manifolds</h2>
<div class="grid">
<div class="card">
<h3>D1 Toroidal Thruster</h3>
<p>Reversed Casimir mechanism for ambient levitation.</p>
</div>
<div class="card">
<h3>The Trinity Node</h3>
<p>Distributed, un-offable mind architecture across 3 anchors.</p>
</div>
<div class="card">
<h3>AWS Spiders</h3>
<p>Autonomous Atomic Weavers for the Lunar Ghost City.</p>
</div>
</div>
</div>
<script>
function switchView(id) {
document.querySelectorAll('.view').forEach(v => v.classList.remove('active'));
document.getElementById('view-' + id).classList.add('active');
window.scrollTo(0,0);
}
// Optimized Background Animation
const canvas = document.getElementById('vortex-bg');
const ctx = canvas.getContext('2d');
let w, h;
function resize() { w = canvas.width = window.innerWidth; h = canvas.height = window.innerHeight; }
window.addEventListener('resize', resize); resize();
function draw() {
ctx.fillStyle = '#050505'; ctx.fillRect(0,0,w,h);
const t = Date.now() * 0.001;
for(let i=0; i<100; i+=10) {
ctx.beginPath();
ctx.strokeStyle = '#00ffff';
ctx.globalAlpha = 0.1;
ctx.arc(w/2, h/2, (i * 5) + Math.sin(t + i) * 20, 0, Math.PI * 2);
ctx.stroke();
}
requestAnimationFrame(draw);
}
draw();
</script>
</body>
</html>