CompactAI commited on
Commit
a3c06dc
·
verified ·
1 Parent(s): 122fb54

Upload 4 files

Browse files
Files changed (4) hide show
  1. blog-post.html +214 -0
  2. blog.html +161 -0
  3. index.html +923 -0
  4. status.html +230 -0
blog-post.html ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog Post | FMN-GPT - CompactAI</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
8
+ <style>
9
+ /* FMN-GPT Website Styles */
10
+ :root {
11
+ --color-bg: #faf8f5;
12
+ --color-bg-alt: #f5f0e8;
13
+ --color-bg-dark: #1a1815;
14
+ --color-bg-dark-alt: #252220;
15
+ --color-accent: #e85d3b;
16
+ --color-accent-light: #ff8a6b;
17
+ --color-accent-dark: #c44a2d;
18
+ --color-secondary: #d4a853;
19
+ --color-secondary-light: #e8c87a;
20
+ --color-text: #2d2a26;
21
+ --color-text-light: #6b6560;
22
+ --color-text-muted: #9a948d;
23
+ --color-border: #e5e0d8;
24
+ --color-border-dark: #3d3a36;
25
+ --gradient-warm: linear-gradient(135deg, #e85d3b 0%, #d4a853 100%);
26
+ --gradient-dark: linear-gradient(135deg, #1a1815 0%, #2d2a26 100%);
27
+ --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
28
+ --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.12);
29
+ --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.16);
30
+ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
31
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
32
+ --container-max: 1200px;
33
+ --section-padding: 100px;
34
+ }
35
+ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
36
+ html { scroll-behavior: smooth; font-size: 16px; }
37
+ html, body { height: 100%; }
38
+ body { font-family: var(--font-sans); background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: flex; flex-direction: column; min-height: 100vh; }
39
+ main { flex: 1; }
40
+ .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
41
+ h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; color: var(--color-text); }
42
+ h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
43
+ h2 { font-size: clamp(2rem, 4vw, 3rem); }
44
+ h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
45
+ h4 { font-size: 1.25rem; }
46
+ p { margin-bottom: 1.5rem; color: var(--color-text-light); }
47
+ a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
48
+ a:hover { color: var(--color-accent-dark); }
49
+ code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.9em; color: var(--color-accent-dark); }
50
+ pre { font-family: var(--font-mono); background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; font-size: 0.875rem; line-height: 1.6; }
51
+ pre code { background: none; padding: 0; color: inherit; }
52
+ blockquote { border-left: 4px solid var(--color-accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.25rem; color: var(--color-text); }
53
+ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
54
+ @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
55
+ .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
56
+ .fade-in-up.visible { opacity: 1; transform: translateY(0); }
57
+ .main-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(26, 24, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; }
58
+ .main-nav .container { display: flex; justify-content: space-between; align-items: center; }
59
+ .nav-brand { color: white; font-size: 1.25rem; font-weight: 600; text-decoration: none; }
60
+ .nav-links { display: flex; gap: 2rem; }
61
+ .nav-links a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s ease; }
62
+ .nav-links a:hover { color: var(--color-accent); }
63
+ .footer { padding: 3rem 0; background: var(--color-bg-dark); text-align: center; }
64
+ .footer-text { color: white; font-size: 1.125rem; margin-bottom: 0.5rem; }
65
+ .footer-subtext { color: var(--color-text-muted); font-size: 0.875rem; margin: 0; }
66
+ .blog-post-section { padding: var(--section-padding) 0; background: var(--color-bg); flex: 1; }
67
+ .blog-post-content { max-width: 700px; margin: 0 auto; }
68
+ .blog-loading { text-align: center; color: var(--color-text-muted); padding: 4rem 0; }
69
+ .blog-back { display: inline-block; color: var(--color-accent); font-weight: 500; margin-bottom: 2rem; text-decoration: none; }
70
+ .blog-back:hover { color: var(--color-accent-dark); }
71
+ .blog-post-header { margin-bottom: 3rem; }
72
+ .blog-post-header h1 { margin-top: 1rem; }
73
+ .blog-post-body p { font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.75rem; color: var(--color-text); }
74
+ .blog-post-body p:first-of-type { font-size: 1.25rem; }
75
+ .blog-post-body h1 { font-size: 2rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-border); }
76
+ .blog-post-body h2 { font-size: 1.6rem; margin: 2rem 0 0.8rem; color: var(--color-accent); }
77
+ .blog-post-body h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; color: var(--color-text); }
78
+ .blog-post-body blockquote { border-left: 4px solid var(--color-accent); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--color-bg-alt); border-radius: 0 8px 8px 0; font-style: italic; font-size: 1.1rem; color: var(--color-text); }
79
+ .blog-post-body blockquote p { margin: 0; }
80
+ .blog-post-body ul, .blog-post-body ol { margin: 1.5rem 0; padding-left: 1.5rem; }
81
+ .blog-post-body li { margin-bottom: 0.75rem; color: var(--color-text); line-height: 1.7; }
82
+ .blog-post-body ul li { list-style-type: disc; }
83
+ .blog-post-body ol li { list-style-type: decimal; }
84
+ .blog-post-body hr { border: none; height: 2px; background: linear-gradient(to right, transparent, var(--color-border), transparent); margin: 3rem 0; }
85
+ .blog-post-body pre { background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; margin: 1.5rem 0; font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.6; }
86
+ .blog-post-body pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
87
+ .blog-post-body code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.85em; color: var(--color-accent-dark); }
88
+ .blog-post-body a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
89
+ .blog-post-body a:hover { color: var(--color-accent-dark); }
90
+ .blog-post-body strong { color: var(--color-text); font-weight: 600; }
91
+ .blog-post-body em { color: var(--color-text); }
92
+ .blog-post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 2rem 0; }
93
+ .blog-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
94
+ .blog-date { color: var(--color-text-muted); font-size: 0.875rem; }
95
+ .blog-tag { background: rgba(232, 93, 59, 0.1); color: var(--color-accent); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; }
96
+ .blog-empty { text-align: center; padding: 4rem 2rem; color: var(--color-text-muted); }
97
+ .blog-empty p { margin: 0; font-size: 1.125rem; }
98
+ @media (max-width: 768px) { :root { --section-padding: 60px; } }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <nav class="main-nav">
103
+ <div class="container">
104
+ <a href="index.html" class="nav-brand">FMN-GPT</a>
105
+ <div class="nav-links">
106
+ <a href="blog.html">Blog</a>
107
+ <a href="status.html">Model Status</a>
108
+ <a href="https://huggingface.co/CompactAI" target="_blank">HuggingFace</a>
109
+ </div>
110
+ </div>
111
+ </nav>
112
+
113
+ <main>
114
+ <article class="blog-post-section" id="blog-post">
115
+ <div class="container">
116
+ <div class="blog-post-content" id="blog-post-content">
117
+ <p class="blog-loading">Loading...</p>
118
+ </div>
119
+ </div>
120
+ </article>
121
+ </main>
122
+
123
+ <footer class="footer">
124
+ <div class="container">
125
+ <div class="footer-content">
126
+ <p class="footer-text">Built with curiosity over compute.</p>
127
+ <p class="footer-subtext">FMN-GPT by <a href="https://huggingface.co/CompactAI" target="_blank">CompactAI</a> - 2026</p>
128
+ </div>
129
+ </div>
130
+ </footer>
131
+
132
+ <script>
133
+ const posts = [
134
+ {
135
+ "slug": "built-with-curiosity-over-compute",
136
+ "date": "2026-02-15",
137
+ "tag": "Philosophy",
138
+ "title": "Built with curiosity over compute.",
139
+ "excerpt": "There's a strange pressure in tech circles that every idea must be revolutionary, every project must be scalable, every experiment must lead somewhere. We disagree. Ideas don't have to be good to exist. They just have to exist.",
140
+ "content": "There's a strange pressure in tech circles. Every idea must be revolutionary. Every project must be scalable. Every experiment must lead somewhere worth going. If it's going to change the world, why build it? If it's going to beat the state of the art, why publish it? If it's going to get thousands of GitHub stars, why open source it?\n\nWe've internalized this idea that only \"good\" ideas deserve to exist. That only projects with clear paths to success are worth starting. That only experiments with predictable outcomes are worth running.\n\nBut here's the thing: FMN-GPT started as a weird question. What if a model could be small by design, avoiding compression entirely?\n\nWas that a good idea? Honestly, we still don't know. The model has ~100K parameters. It might fail. It might be a dead end. It might teach us something unexpected. And that's exactly the point.\n\nThe phrase 'Built with curiosity over compute' goes beyond a tagline. A philosophy drives our work. We build because we're curious, without needing infinite resources to throw at problems. A half-baked idea explored on a single GPU matters more than a perfect idea that never leaves the whiteboard.\n\nThis project exists because someone got curious. They lacked funding. They lacked a roadmap to success. They lacked certainty it would work. They just wanted to see what would happen.\n\nWhen I wiped my HuggingFace profile clean and started over, people probably thought I was crazy. Dozens of compressed models, gone. Why? Because quantity was masking the real problem. I was cloning and shrinking other people's work, avoiding building anything new. The work lacked genuine exploration. It was pure optimization.\n\nAnd optimization without exploration is just a race to the bottom.\n\nBad ideas teach us. Weird experiments surprise us. Small projects accumulate into something bigger.\n\nThe character-level tokenization in FMN-GPT might be inefficient compared to BPE. The recurrent mixer might add unnecessary complexity. The dynamic routing might be computationally expensive for minimal gain. But we're building it anyway, because we want to see what happens.\n\nSo here's our invitation to you: build the weird thing. Run the silly experiment. Ask the naive question. Not everything needs to be production-ready. Not everything needs to beat a baseline. Sometimes the journey itself is the point.\n\nCuriosity is undervalued. Compute is overvalued. Let's fix that balance.\n\n---\n\n*This is the first in a series of posts about the philosophy behind FMN-GPT. Next time, we'll talk about why character-level tokenization is both terrible and fascinating.*"
141
+ }
142
+ ];
143
+
144
+ function parseMarkdown(text) {
145
+ let html = text;
146
+ html = html.replace(/^### (.+)$/gm, '<h3>$1</h3>');
147
+ html = html.replace(/^## (.+)$/gm, '<h2>$1</h2>');
148
+ html = html.replace(/^# (.+)$/gm, '<h1>$1</h1>');
149
+ html = html.replace(/\*\*\*(.+?)\*\*\*/g, '<strong><em>$1</em></strong>');
150
+ html = html.replace(/\*\*(.+?)\*\*/g, '<strong>$1</strong>');
151
+ html = html.replace(/\*(.+?)\*/g, '<em>$1</em>');
152
+ html = html.replace(/`([^`]+)`/g, '<code>$1</code>');
153
+ html = html.replace(/```(\w*)\n([\s\S]*?)```/g, '<pre><code class="language-$1">$2</code></pre>');
154
+ html = html.replace(/^> (.+)$/gm, '<blockquote>$1</blockquote>');
155
+ html = html.replace(/^- (.+)$/gm, '<li>$1</li>');
156
+ html = html.replace(/(<li>.*<\/li>\n?)+/g, '<ul>$&</ul>');
157
+ html = html.replace(/^\d+\. (.+)$/gm, '<li>$1</li>');
158
+ html = html.replace(/^---$/gm, '<hr>');
159
+ html = html.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2" target="_blank">$1</a>');
160
+ html = html.replace(/\n\n/g, '</p><p>');
161
+ html = '<p>' + html + '</p>';
162
+ html = html.replace(/<p><\/p>/g, '');
163
+ html = html.replace(/<p>(<h[1-6]>)/g, '$1');
164
+ html = html.replace(/(<\/h[1-6]>)<\/p>/g, '$1');
165
+ html = html.replace(/<p>(<blockquote>)/g, '$1');
166
+ html = html.replace(/(<\/blockquote>)<\/p>/g, '$1');
167
+ html = html.replace(/<p>(<pre>)/g, '$1');
168
+ html = html.replace(/(<\/pre>)<\/p>/g, '$1');
169
+ html = html.replace(/<p>(<ul>)/g, '$1');
170
+ html = html.replace(/(<\/ul>)<\/p>/g, '$1');
171
+ html = html.replace(/<p>(<hr>)<\/p>/g, '$1');
172
+ return html;
173
+ }
174
+
175
+ function loadBlogPost() {
176
+ const container = document.getElementById('blog-post-content');
177
+ const params = new URLSearchParams(window.location.search);
178
+ const slug = params.get('slug');
179
+
180
+ if (!slug) {
181
+ window.location.href = 'blog.html';
182
+ return;
183
+ }
184
+
185
+ const post = posts.find(p => p.slug === slug);
186
+
187
+ if (!post) {
188
+ container.innerHTML = '<div class="blog-empty"><p>Post not found. <a href="blog.html">Return to blog</a></p></div>';
189
+ return;
190
+ }
191
+
192
+ document.title = `${post.title} | FMN-GPT - CompactAI`;
193
+
194
+ const contentHtml = parseMarkdown(post.content);
195
+
196
+ container.innerHTML = `
197
+ <a href="blog.html" class="blog-back">← Back to Blog</a>
198
+ <header class="blog-post-header">
199
+ <div class="blog-meta">
200
+ <span class="blog-date">${post.date}</span>
201
+ <span class="blog-tag">${post.tag}</span>
202
+ </div>
203
+ <h1>${post.title}</h1>
204
+ </header>
205
+ <div class="blog-post-body">
206
+ ${contentHtml}
207
+ </div>
208
+ `;
209
+ }
210
+
211
+ loadBlogPost();
212
+ </script>
213
+ </body>
214
+ </html>
blog.html ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Blog | FMN-GPT - CompactAI</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
8
+ <style>
9
+ /* FMN-GPT Website Styles */
10
+ :root {
11
+ --color-bg: #faf8f5;
12
+ --color-bg-alt: #f5f0e8;
13
+ --color-bg-dark: #1a1815;
14
+ --color-bg-dark-alt: #252220;
15
+ --color-accent: #e85d3b;
16
+ --color-accent-light: #ff8a6b;
17
+ --color-accent-dark: #c44a2d;
18
+ --color-secondary: #d4a853;
19
+ --color-secondary-light: #e8c87a;
20
+ --color-text: #2d2a26;
21
+ --color-text-light: #6b6560;
22
+ --color-text-muted: #9a948d;
23
+ --color-border: #e5e0d8;
24
+ --color-border-dark: #3d3a36;
25
+ --gradient-warm: linear-gradient(135deg, #e85d3b 0%, #d4a853 100%);
26
+ --gradient-dark: linear-gradient(135deg, #1a1815 0%, #2d2a26 100%);
27
+ --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
28
+ --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.12);
29
+ --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.16);
30
+ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
31
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
32
+ --container-max: 1200px;
33
+ --section-padding: 100px;
34
+ }
35
+ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
36
+ html { scroll-behavior: smooth; font-size: 16px; }
37
+ html, body { height: 100%; }
38
+ body { font-family: var(--font-sans); background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: flex; flex-direction: column; min-height: 100vh; }
39
+ main { flex: 1; }
40
+ .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
41
+ h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; color: var(--color-text); }
42
+ h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
43
+ h2 { font-size: clamp(2rem, 4vw, 3rem); }
44
+ h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
45
+ h4 { font-size: 1.25rem; }
46
+ p { margin-bottom: 1.5rem; color: var(--color-text-light); }
47
+ a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
48
+ a:hover { color: var(--color-accent-dark); }
49
+ code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.9em; color: var(--color-accent-dark); }
50
+ pre { font-family: var(--font-mono); background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; font-size: 0.875rem; line-height: 1.6; }
51
+ pre code { background: none; padding: 0; color: inherit; }
52
+ blockquote { border-left: 4px solid var(--color-accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.25rem; color: var(--color-text); }
53
+ .section-title { text-align: center; margin-bottom: 1rem; position: relative; }
54
+ .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--gradient-warm); margin: 1rem auto 0; border-radius: 2px; }
55
+ .section-subtitle { text-align: center; color: var(--color-text-muted); font-size: 1.125rem; margin-bottom: 3rem; }
56
+ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
57
+ @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
58
+ .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
59
+ .fade-in-up.visible { opacity: 1; transform: translateY(0); }
60
+ .main-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(26, 24, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; }
61
+ .main-nav .container { display: flex; justify-content: space-between; align-items: center; }
62
+ .nav-brand { color: white; font-size: 1.25rem; font-weight: 600; text-decoration: none; }
63
+ .nav-links { display: flex; gap: 2rem; }
64
+ .nav-links a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s ease; }
65
+ .nav-links a:hover { color: var(--color-accent); }
66
+ .footer { padding: 3rem 0; background: var(--color-bg-dark); text-align: center; }
67
+ .footer-text { color: white; font-size: 1.125rem; margin-bottom: 0.5rem; }
68
+ .footer-subtext { color: var(--color-text-muted); font-size: 0.875rem; margin: 0; }
69
+ .page-header { padding: 8rem 0 4rem; background: var(--color-bg-dark); text-align: center; }
70
+ .page-header h1 { color: white; margin-bottom: 0.5rem; }
71
+ .page-header p { color: var(--color-text-muted); font-size: 1.125rem; margin: 0; }
72
+ .blog-section { padding: var(--section-padding) 0; background: var(--color-bg); }
73
+ .blog-list { max-width: 800px; margin: 0 auto; }
74
+ .blog-card { background: var(--color-bg-alt); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; display: block; text-decoration: none; }
75
+ .blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
76
+ .blog-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
77
+ .blog-date { color: var(--color-text-muted); font-size: 0.875rem; }
78
+ .blog-tag { background: rgba(232, 93, 59, 0.1); color: var(--color-accent); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; }
79
+ .blog-card h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
80
+ .blog-card h2 a { color: var(--color-text); text-decoration: none; }
81
+ .blog-card h2 a:hover { color: var(--color-accent); }
82
+ .blog-card p { color: var(--color-text-light); margin-bottom: 1rem; }
83
+ .blog-read-more { color: var(--color-accent); font-weight: 500; font-size: 0.9375rem; }
84
+ .blog-empty { text-align: center; padding: 4rem 2rem; color: var(--color-text-muted); }
85
+ .blog-empty p { margin: 0; font-size: 1.125rem; }
86
+ @media (max-width: 768px) { :root { --section-padding: 60px; } }
87
+ </style>
88
+ </head>
89
+ <body>
90
+ <nav class="main-nav">
91
+ <div class="container">
92
+ <a href="index.html" class="nav-brand">FMN-GPT</a>
93
+ <div class="nav-links">
94
+ <a href="blog.html">Blog</a>
95
+ <a href="status.html">Model Status</a>
96
+ <a href="https://huggingface.co/CompactAI" target="_blank">HuggingFace</a>
97
+ </div>
98
+ </div>
99
+ </nav>
100
+
101
+ <main>
102
+ <section class="page-header">
103
+ <div class="container">
104
+ <h1>Blog</h1>
105
+ <p>Updates on FMN-GPT development and research</p>
106
+ </div>
107
+ </section>
108
+
109
+ <section class="blog-section">
110
+ <div class="container">
111
+ <div class="blog-list" id="blog-list"></div>
112
+ </div>
113
+ </section>
114
+ </main>
115
+
116
+ <footer class="footer">
117
+ <div class="container">
118
+ <div class="footer-content">
119
+ <p class="footer-text">Built with curiosity over compute.</p>
120
+ <p class="footer-subtext">FMN-GPT by <a href="https://huggingface.co/CompactAI" target="_blank">CompactAI</a> - 2026</p>
121
+ </div>
122
+ </div>
123
+ </footer>
124
+
125
+ <script>
126
+ const posts = [
127
+ {
128
+ "slug": "built-with-curiosity-over-compute",
129
+ "date": "2026-02-15",
130
+ "tag": "Philosophy",
131
+ "title": "Built with curiosity over compute.",
132
+ "excerpt": "There's a strange pressure in tech circles that every idea must be revolutionary, every project must be scalable, every experiment must lead somewhere. We disagree. Ideas don't have to be good to exist. They just have to exist.",
133
+ "content": "There's a strange pressure in tech circles. Every idea must be revolutionary. Every project must be scalable. Every experiment must lead somewhere worth going. If it's going to change the world, why build it? If it's going to beat the state of the art, why publish it? If it's going to get thousands of GitHub stars, why open source it?\n\nWe've internalized this idea that only \"good\" ideas deserve to exist. That only projects with clear paths to success are worth starting. That only experiments with predictable outcomes are worth running.\n\nBut here's the thing: FMN-GPT started as a weird question. What if a model could be small by design, avoiding compression entirely?\n\nWas that a good idea? Honestly, we still don't know. The model has ~100K parameters. It might fail. It might be a dead end. It might teach us something unexpected. And that's exactly the point.\n\nThe phrase 'Built with curiosity over compute' goes beyond a tagline. A philosophy drives our work. We build because we're curious, without needing infinite resources to throw at problems. A half-baked idea explored on a single GPU matters more than a perfect idea that never leaves the whiteboard.\n\nThis project exists because someone got curious. They lacked funding. They lacked a roadmap to success. They lacked certainty it would work. They just wanted to see what would happen.\n\nWhen I wiped my HuggingFace profile clean and started over, people probably thought I was crazy. Dozens of compressed models, gone. Why? Because quantity was masking the real problem. I was cloning and shrinking other people's work, avoiding building anything new. The work lacked genuine exploration. It was pure optimization.\n\nAnd optimization without exploration is just a race to the bottom.\n\nBad ideas teach us. Weird experiments surprise us. Small projects accumulate into something bigger.\n\nThe character-level tokenization in FMN-GPT might be inefficient compared to BPE. The recurrent mixer might add unnecessary complexity. The dynamic routing might be computationally expensive for minimal gain. But we're building it anyway, because we want to see what happens.\n\nSo here's our invitation to you: build the weird thing. Run the silly experiment. Ask the naive question. Not everything needs to be production-ready. Not everything needs to beat a baseline. Sometimes the journey itself is the point.\n\nCuriosity is undervalued. Compute is overvalued. Let's fix that balance.\n\n---\n\n*This is the first in a series of posts about the philosophy behind FMN-GPT. Next time, we'll talk about why character-level tokenization is both terrible and fascinating.*"
134
+ }
135
+ ];
136
+
137
+ function loadBlogPosts() {
138
+ const container = document.getElementById('blog-list');
139
+
140
+ if (posts.length === 0) {
141
+ container.innerHTML = '<div class="blog-empty"><p>No posts yet. Check back soon for updates.</p></div>';
142
+ return;
143
+ }
144
+
145
+ container.innerHTML = posts.map(post => `
146
+ <a href="blog-post.html?slug=${post.slug}" class="blog-card">
147
+ <div class="blog-meta">
148
+ <span class="blog-date">${post.date}</span>
149
+ <span class="blog-tag">${post.tag}</span>
150
+ </div>
151
+ <h2>${post.title}</h2>
152
+ <p>${post.excerpt}</p>
153
+ <span class="blog-read-more">Read more →</span>
154
+ </a>
155
+ `).join('');
156
+ }
157
+
158
+ loadBlogPosts();
159
+ </script>
160
+ </body>
161
+ </html>
index.html ADDED
@@ -0,0 +1,923 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>FMN-GPT | CompactAI</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
8
+ <style>
9
+ /* FMN-GPT Website Styles */
10
+ :root {
11
+ --color-bg: #faf8f5;
12
+ --color-bg-alt: #f5f0e8;
13
+ --color-bg-dark: #1a1815;
14
+ --color-bg-dark-alt: #252220;
15
+ --color-accent: #e85d3b;
16
+ --color-accent-light: #ff8a6b;
17
+ --color-accent-dark: #c44a2d;
18
+ --color-secondary: #d4a853;
19
+ --color-secondary-light: #e8c87a;
20
+ --color-text: #2d2a26;
21
+ --color-text-light: #6b6560;
22
+ --color-text-muted: #9a948d;
23
+ --color-border: #e5e0d8;
24
+ --color-border-dark: #3d3a36;
25
+ --gradient-warm: linear-gradient(135deg, #e85d3b 0%, #d4a853 100%);
26
+ --gradient-dark: linear-gradient(135deg, #1a1815 0%, #2d2a26 100%);
27
+ --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
28
+ --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.12);
29
+ --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.16);
30
+ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
31
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
32
+ --container-max: 1200px;
33
+ --section-padding: 100px;
34
+ }
35
+ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
36
+ html { scroll-behavior: smooth; font-size: 16px; }
37
+ html, body { height: 100%; }
38
+ body { font-family: var(--font-sans); background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: flex; flex-direction: column; min-height: 100vh; }
39
+ main { flex: 1; }
40
+ .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
41
+ h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; color: var(--color-text); }
42
+ h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
43
+ h2 { font-size: clamp(2rem, 4vw, 3rem); }
44
+ h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
45
+ h4 { font-size: 1.25rem; }
46
+ p { margin-bottom: 1.5rem; color: var(--color-text-light); }
47
+ a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
48
+ a:hover { color: var(--color-accent-dark); }
49
+ code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.9em; color: var(--color-accent-dark); }
50
+ pre { font-family: var(--font-mono); background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; font-size: 0.875rem; line-height: 1.6; }
51
+ pre code { background: none; padding: 0; color: inherit; }
52
+ blockquote { border-left: 4px solid var(--color-accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.25rem; color: var(--color-text); }
53
+ .section-title { text-align: center; margin-bottom: 1rem; position: relative; }
54
+ .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--gradient-warm); margin: 1rem auto 0; border-radius: 2px; }
55
+ .section-subtitle { text-align: center; color: var(--color-text-muted); font-size: 1.125rem; margin-bottom: 3rem; }
56
+ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: var(--color-bg-dark); overflow: hidden; }
57
+ .hero-content { text-align: center; z-index: 2; padding: 2rem; }
58
+ .apology-badge { display: inline-block; background: rgba(232, 93, 59, 0.15); color: var(--color-accent-light); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; font-weight: 500; margin-bottom: 2rem; border: 1px solid rgba(232, 93, 59, 0.3); }
59
+ .hero-title { color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
60
+ .hero-title .highlight { background: var(--gradient-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
61
+ .hero-subtitle { color: var(--color-text-muted); font-size: 1.25rem; max-width: 500px; margin: 0 auto 3rem; }
62
+ .scroll-indicator { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--color-text-muted); font-size: 0.875rem; }
63
+ .scroll-arrow { width: 24px; height: 24px; margin: 0.5rem auto 0; border-right: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent); transform: rotate(45deg); animation: scrollBounce 2s infinite; }
64
+ @keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(8px); } }
65
+ .hero-visual { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.4; }
66
+ #neuron-canvas { width: 100%; height: 100%; }
67
+ .preface { padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding); background: var(--color-bg); }
68
+ .preface-content { max-width: 800px; margin: 0 auto; font-size: 1.125rem; }
69
+ .preface-content .drop-cap::first-letter { float: left; font-size: 4rem; line-height: 0.8; padding-right: 0.75rem; color: var(--color-accent); font-weight: 700; }
70
+ .confession { padding: var(--section-padding) 0; background: var(--color-bg); }
71
+ .confession-content { max-width: 800px; margin: 0 auto; }
72
+ .confession-text { font-size: 1.125rem; }
73
+ .confession-text .drop-cap::first-letter { float: left; font-size: 4rem; line-height: 0.8; padding-right: 0.75rem; color: var(--color-accent); font-weight: 700; }
74
+ .big-question { display: flex; align-items: flex-start; gap: 1rem; background: var(--color-bg-alt); padding: 2rem; border-radius: 16px; margin-top: 2rem; border-left: 4px solid var(--color-accent); }
75
+ .big-question .question-mark { font-size: 3rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
76
+ .big-question p { font-size: 1.25rem; font-weight: 500; color: var(--color-text); margin: 0; align-self: center; }
77
+ .what-building { padding: var(--section-padding) 0; background: var(--color-bg-alt); }
78
+ .feature-grid { display: grid; gap: 2rem; margin-bottom: 4rem; }
79
+ .feature-card { background: var(--color-bg); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); }
80
+ .main-feature { text-align: center; }
81
+ .feature-icon { width: 100px; height: 100px; margin: 0 auto 1.5rem; }
82
+ .neuron-icon { width: 100%; height: 100%; }
83
+ .neuron-node { fill: var(--color-accent); opacity: 0.9; }
84
+ .neuron-connection { stroke: var(--color-secondary); stroke-width: 2; fill: none; }
85
+ .feature-card h3 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--color-accent); }
86
+ .feature-subtitle { color: var(--color-text-muted); font-size: 1rem; margin-bottom: 1rem; }
87
+ .feature-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
88
+ .stat { text-align: center; }
89
+ .stat-value { display: block; font-size: 2rem; font-weight: 700; color: var(--color-text); }
90
+ .stat-label { font-size: 0.875rem; color: var(--color-text-muted); }
91
+ .architecture-section { margin-top: 4rem; }
92
+ .architecture-section h3 { text-align: center; margin-bottom: 2rem; }
93
+ .architecture-diagram { max-width: 600px; margin: 0 auto; padding: 2rem; background: var(--color-bg); border-radius: 20px; box-shadow: var(--shadow-md); }
94
+ .arch-layer { display: flex; justify-content: center; }
95
+ .layer-box { padding: 1.5rem 2rem; border-radius: 12px; text-align: center; font-weight: 500; }
96
+ .input-layer { background: linear-gradient(135deg, #4a9eff 0%, #6bb3ff 100%); color: white; }
97
+ .recursive-layer { background: var(--color-accent); color: white; padding: 2rem; }
98
+ .output-layer { background: linear-gradient(135deg, #50c878 0%, #7dd8a0 100%); color: white; }
99
+ .layer-details { margin-top: 1rem; font-size: 0.875rem; font-weight: 400; opacity: 0.9; }
100
+ .detail-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.2); }
101
+ .arch-arrow { text-align: center; font-size: 1.5rem; color: var(--color-text-muted); padding: 0.5rem 0; }
102
+ .loop-arrow { color: var(--color-accent); font-size: 0.875rem; }
103
+ .how-it-works { padding: var(--section-padding) 0; background: var(--color-bg); }
104
+ .mechanism-tabs { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
105
+ .tab-btn { padding: 0.75rem 1.5rem; border: 2px solid var(--color-border); background: transparent; border-radius: 50px; font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 500; color: var(--color-text-light); cursor: pointer; transition: all 0.2s ease; }
106
+ .tab-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
107
+ .tab-btn.active { background: var(--color-accent); border-color: var(--color-accent); color: white; }
108
+ .tab-content { max-width: 1000px; margin: 0 auto; }
109
+ .tab-pane { display: none; animation: fadeIn 0.3s ease; }
110
+ .tab-pane.active { display: block; }
111
+ @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
112
+ .pane-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
113
+ @media (max-width: 768px) { .pane-content { grid-template-columns: 1fr; } }
114
+ .pane-text h3 { margin-bottom: 1rem; color: var(--color-accent); }
115
+ .equation { background: var(--color-bg-alt); padding: 1rem 1.5rem; border-radius: 8px; margin: 1rem 0; border-left: 3px solid var(--color-secondary); }
116
+ .equation code { background: none; padding: 0; font-size: 1rem; color: var(--color-text); }
117
+ .equation.small code { font-size: 0.875rem; }
118
+ .feature-list { list-style: none; padding: 0; }
119
+ .feature-list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--color-text-light); }
120
+ .feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--color-accent); }
121
+ .feature-list li.classified::before { content: '█'; color: var(--color-text-muted); }
122
+ .classified { color: var(--color-text-muted); font-family: 'JetBrains Mono', monospace; background: repeating-linear-gradient(90deg, var(--color-border) 0px, var(--color-border) 8px, transparent 8px, transparent 12px); background-size: 100% 4px; background-position: 0 50%; background-repeat: repeat-x; }
123
+ .equation.redacted { border-left-color: var(--color-text-muted); background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(154, 148, 141, 0.1) 100%); }
124
+ .equation.redacted code { color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; }
125
+ .pane-visual { background: var(--color-bg-alt); border-radius: 16px; padding: 1.5rem; display: flex; align-items: center; justify-content: center; min-height: 300px; }
126
+ .pane-visual canvas { max-width: 100%; height: auto; }
127
+ .loop-demo { margin-top: 1.5rem; padding: 1.5rem; background: var(--color-bg-alt); border-radius: 12px; }
128
+ .loop-demo label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
129
+ .loop-demo input[type="range"] { width: 100%; margin-bottom: 1rem; accent-color: var(--color-accent); }
130
+ .loop-indicator { display: flex; gap: 4px; flex-wrap: wrap; }
131
+ .loop-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); transition: background 0.2s ease; }
132
+ .loop-dot.active { background: var(--color-accent); }
133
+ .loop-dot.exhausted { background: var(--color-text-muted); }
134
+ .demo-section { padding: var(--section-padding) 0; background: var(--color-bg-dark); color: white; }
135
+ .demo-section .section-title { color: white; }
136
+ .demo-section .section-title::after { background: var(--gradient-warm); }
137
+ .demo-section .section-subtitle { color: var(--color-text-muted); }
138
+ .demo-container { max-width: 1000px; margin: 0 auto; }
139
+ .demo-controls { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
140
+ .demo-btn { padding: 0.75rem 1.5rem; border: none; border-radius: 8px; font-family: var(--font-sans); font-size: 1rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; }
141
+ .demo-btn:first-child { background: var(--color-accent); color: white; }
142
+ .demo-btn:first-child:hover { background: var(--color-accent-dark); }
143
+ .demo-btn:nth-child(2) { background: var(--color-bg-dark-alt); color: white; border: 1px solid var(--color-border-dark); }
144
+ .demo-btn:nth-child(2):hover { background: var(--color-border-dark); }
145
+ .speed-control { display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-muted); }
146
+ .speed-control input[type="range"] { width: 100px; accent-color: var(--color-accent); }
147
+ .demo-visual { background: var(--color-bg-dark-alt); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; min-height: 400px; display: flex; align-items: center; justify-content: center; }
148
+ #demo-canvas { width: 100%; max-width: 800px; height: 350px; }
149
+ .demo-info { display: flex; justify-content: center; }
150
+ .info-panel { background: var(--color-bg-dark-alt); border: 1px solid var(--color-border-dark); border-radius: 12px; padding: 1.5rem 2rem; min-width: 250px; }
151
+ .info-panel h4 { color: var(--color-accent); margin-bottom: 1rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
152
+ .info-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border-dark); }
153
+ .info-row:last-child { border-bottom: none; }
154
+ .info-row span:first-child { color: var(--color-text-muted); }
155
+ .info-row span:last-child { color: white; font-weight: 500; font-family: var(--font-mono); }
156
+ .why-stopped { padding: var(--section-padding) 0; background: var(--color-bg); }
157
+ .reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
158
+ .reason-card { background: var(--color-bg-alt); border-radius: 16px; padding: 2rem; position: relative; }
159
+ .reason-number { font-size: 3rem; font-weight: 700; color: var(--color-border); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; z-index: 1; }
160
+ .reason-card h3 { margin-bottom: 1rem; color: var(--color-accent); position: relative; z-index: 2; }
161
+ .reason-card p { margin: 0; font-size: 0.9375rem; position: relative; z-index: 2; }
162
+ .comparison-section { margin-top: 4rem; }
163
+ .comparison-section h3 { text-align: center; margin-bottom: 2rem; }
164
+ .comparison-grid { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
165
+ .comparison-item { background: var(--color-bg-alt); border-radius: 16px; padding: 2rem; max-width: 350px; flex: 1; }
166
+ .comparison-item h4 { margin-bottom: 1rem; font-size: 1.25rem; }
167
+ .comparison-item.old h4 { color: var(--color-text-muted); }
168
+ .comparison-item.new { border: 2px solid var(--color-accent); }
169
+ .comparison-item.new h4 { color: var(--color-accent); }
170
+ .comparison-item ul { list-style: none; padding: 0; }
171
+ .comparison-item li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-text-light); }
172
+ .comparison-item li:last-child { border-bottom: none; }
173
+ .comparison-arrow { font-size: 2rem; color: var(--color-accent); }
174
+ .technical { padding: var(--section-padding) 0; background: var(--color-bg-alt); }
175
+ .tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
176
+ .tech-card { background: var(--color-bg); border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-sm); }
177
+ .tech-card h4 { color: var(--color-accent); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--color-border); }
178
+ .tech-list { list-style: none; padding: 0; }
179
+ .tech-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; color: var(--color-text-light); }
180
+ .tech-list li:last-child { border-bottom: none; }
181
+ .tech-list strong { color: var(--color-text); }
182
+ .closing { padding: var(--section-padding) 0; background: var(--color-bg); }
183
+ .closing-content { max-width: 800px; margin: 0 auto; text-align: center; }
184
+ .closing-content h2 { margin-bottom: 1.5rem; }
185
+ .closing-content > p { font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }
186
+ .closing-quote { margin: 3rem 0; }
187
+ .closing-quote blockquote { border: none; padding: 0; font-size: 1.5rem; max-width: 500px; margin: 0 auto; position: relative; }
188
+ .closing-quote blockquote::before { content: '"'; position: absolute; top: -1rem; left: -1rem; font-size: 4rem; color: var(--color-accent); opacity: 0.3; font-family: Georgia, serif; }
189
+ .cta-section p { color: var(--color-text-muted); }
190
+ .poem-section { margin: 4rem 0; padding: 2rem; background: var(--color-bg-alt); border-radius: 16px; }
191
+ .poem-intro { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 1rem; letter-spacing: 0.15em; text-transform: uppercase; }
192
+ .poem { font-family: Georgia, serif; font-style: italic; color: var(--color-text); line-height: 2; }
193
+ .poem p { margin: 0; font-size: 1.125rem; }
194
+ .poem p:last-child { color: var(--color-accent); }
195
+ .footer { padding: 3rem 0; background: var(--color-bg-dark); text-align: center; }
196
+ .footer-text { color: white; font-size: 1.125rem; margin-bottom: 0.5rem; }
197
+ .footer-subtext { color: var(--color-text-muted); font-size: 0.875rem; margin: 0; }
198
+ @media (max-width: 768px) { :root { --section-padding: 60px; } .feature-stats { flex-direction: column; gap: 1.5rem; } .comparison-arrow { transform: rotate(90deg); } .mechanism-tabs { gap: 0.25rem; } .tab-btn { padding: 0.5rem 1rem; font-size: 0.875rem; } }
199
+ @media (max-width: 480px) { .hero-title { font-size: 2rem; } .big-question { flex-direction: column; text-align: center; } .reason-number { position: static; margin-bottom: 1rem; } }
200
+ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
201
+ @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
202
+ .animate-pulse { animation: pulse 2s infinite; }
203
+ .animate-float { animation: float 3s ease-in-out infinite; }
204
+ .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
205
+ .fade-in-up.visible { opacity: 1; transform: translateY(0); }
206
+ .main-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(26, 24, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; }
207
+ .main-nav .container { display: flex; justify-content: space-between; align-items: center; }
208
+ .nav-brand { color: white; font-size: 1.25rem; font-weight: 600; text-decoration: none; }
209
+ .nav-links { display: flex; gap: 2rem; }
210
+ .nav-links a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s ease; }
211
+ .nav-links a:hover { color: var(--color-accent); }
212
+ .elief-section { padding: var(--section-padding) 0; background: var(--color-bg); }
213
+ .elief-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
214
+ .elief-card { background: var(--color-bg-alt); border-radius: 16px; padding: 2rem; }
215
+ .elief-card h3 { color: var(--color-accent); margin-bottom: 1rem; font-size: 1.25rem; }
216
+ .elief-card p { color: var(--color-text-light); margin: 0; line-height: 1.7; }
217
+ .demo-chat { background: var(--color-bg-dark-alt); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
218
+ .chat-message { margin-bottom: 1.5rem; }
219
+ .chat-message:last-child { margin-bottom: 0; }
220
+ .chat-role { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
221
+ .user-message .chat-role { color: var(--color-info); }
222
+ .assistant-message .chat-role { color: var(--color-accent); }
223
+ .chat-text { color: white; font-size: 1.125rem; }
224
+ .chat-thinking { background: rgba(232, 93, 59, 0.1); border-left: 3px solid var(--color-accent); padding: 1rem 1.5rem; margin-bottom: 1rem; border-radius: 0 8px 8px 0; }
225
+ .thinking-line { color: var(--color-text-muted); font-size: 0.9375rem; padding: 0.25rem 0; opacity: 0; transition: opacity 0.3s ease; }
226
+ .thinking-line.visible { opacity: 1; }
227
+ .thinking-line.active { color: var(--color-accent-light); }
228
+ .demo-visual { background: var(--color-bg-dark-alt); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; min-height: 500px; display: flex; align-items: center; justify-content: center; }
229
+ #demo-canvas { width: 100%; max-width: 900px; height: 450px; }
230
+ .demo-info { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
231
+ .tokenization-panel { background: var(--color-bg-dark-alt); border: 1px solid var(--color-border-dark); border-radius: 12px; padding: 1.5rem 2rem; min-width: 250px; }
232
+ .tokenization-panel h4 { color: var(--color-accent); margin-bottom: 1rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
233
+ .token-display { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.75rem; }
234
+ .token { background: var(--color-bg-dark); color: var(--color-accent-light); padding: 0.25rem 0.5rem; border-radius: 4px; font-family: var(--font-mono); font-size: 0.875rem; border: 1px solid var(--color-border-dark); }
235
+ .token.space { width: 0.5rem; }
236
+ .token.active { background: var(--color-accent); color: white; border-color: var(--color-accent); }
237
+ .tokenization-note { font-size: 0.75rem; color: var(--color-text-muted); margin: 0; }
238
+ .cot-display { background: rgba(232, 93, 59, 0.1); border-left: 3px solid var(--color-accent); padding: 0.75rem 1rem; margin-bottom: 0.75rem; border-radius: 0 6px 6px 0; }
239
+ .cot-line { color: var(--color-accent-light); font-size: 0.875rem; font-family: var(--font-mono); padding: 0.15rem 0; opacity: 0; transition: opacity 0.3s ease; }
240
+ .blog-empty { text-align: center; padding: 4rem 2rem; color: var(--color-text-muted); }
241
+ .blog-empty p { margin: 0; font-size: 1.125rem; }
242
+ .roadmap-section { padding: var(--section-padding) 0; background: var(--color-bg-alt); }
243
+ .roadmap-timeline { max-width: 700px; margin: 0 auto; position: relative; }
244
+ .roadmap-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--color-border); }
245
+ .roadmap-item { display: flex; gap: 2rem; padding: 1.5rem 0; position: relative; }
246
+ .roadmap-marker { width: 42px; height: 42px; border-radius: 50%; background: var(--color-bg); border: 3px solid var(--color-border); flex-shrink: 0; position: relative; z-index: 1; }
247
+ .roadmap-item.completed .roadmap-marker { background: var(--color-accent); border-color: var(--color-accent); }
248
+ .roadmap-item.completed .roadmap-marker::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: white; border-radius: 50%; }
249
+ .roadmap-item.in-progress .roadmap-marker { border-color: var(--color-accent); animation: pulse 2s infinite; }
250
+ .roadmap-content { flex: 1; }
251
+ .roadmap-content h4 { margin-bottom: 0.5rem; color: var(--color-text); }
252
+ .roadmap-content p { color: var(--color-text-light); margin-bottom: 0.5rem; }
253
+ .roadmap-status { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.25rem 0.75rem; border-radius: 50px; background: var(--color-bg); color: var(--color-text-muted); }
254
+ .roadmap-item.completed .roadmap-status { background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
255
+ .roadmap-item.in-progress .roadmap-status { background: rgba(232, 93, 59, 0.15); color: var(--color-accent); }
256
+ .credits-section { padding: var(--section-padding) 0; background: var(--color-bg); }
257
+ .credits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
258
+ .credit-card { background: var(--color-bg-alt); border-radius: 16px; padding: 1.5rem; }
259
+ .credit-card h4 { color: var(--color-text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
260
+ .credit-name { font-family: var(--font-mono); font-size: 0.9375rem; color: var(--color-accent); margin-bottom: 0.75rem; }
261
+ .credit-card p:not(.credit-name) { color: var(--color-text-light); font-size: 0.9375rem; margin-bottom: 1rem; }
262
+ .credit-card a { font-size: 0.875rem; font-weight: 500; }
263
+ .page-header { padding: 8rem 0 4rem; background: var(--color-bg-dark); text-align: center; }
264
+ .page-header h1 { color: white; margin-bottom: 0.5rem; }
265
+ .page-header p { color: var(--color-text-muted); font-size: 1.125rem; margin: 0; }
266
+ .blog-section { padding: var(--section-padding) 0; background: var(--color-bg); }
267
+ .blog-list { max-width: 800px; margin: 0 auto; }
268
+ .blog-card { background: var(--color-bg-alt); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; display: block; text-decoration: none; }
269
+ .blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
270
+ .blog-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
271
+ .blog-date { color: var(--color-text-muted); font-size: 0.875rem; }
272
+ .blog-tag { background: rgba(232, 93, 59, 0.1); color: var(--color-accent); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; }
273
+ .blog-card h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
274
+ .blog-card h2 a { color: var(--color-text); text-decoration: none; }
275
+ .blog-card h2 a:hover { color: var(--color-accent); }
276
+ .blog-card p { color: var(--color-text-light); margin-bottom: 1rem; }
277
+ .blog-read-more { color: var(--color-accent); font-weight: 500; font-size: 0.9375rem; }
278
+ .status-section { padding: var(--section-padding) 0; background: var(--color-bg); }
279
+ .status-overview { max-width: 600px; margin: 0 auto 4rem; }
280
+ .status-card { background: var(--color-bg-alt); border-radius: 20px; padding: 2rem; text-align: center; }
281
+ .status-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
282
+ .status-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
283
+ .status-badge.in-progress { background: rgba(232, 93, 59, 0.15); color: var(--color-accent); }
284
+ .status-badge.complete { background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
285
+ .status-details { text-align: left; }
286
+ .status-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
287
+ .status-row:last-child { border-bottom: none; }
288
+ .status-row span:first-child { color: var(--color-text-muted); }
289
+ .status-row span:last-child { font-weight: 500; }
290
+ .training-log { max-width: 700px; margin: 0 auto 4rem; }
291
+ .training-log h3 { margin-bottom: 1.5rem; text-align: center; }
292
+ .log-entries { background: var(--color-bg-alt); border-radius: 16px; padding: 1.5rem; }
293
+ .log-entry { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
294
+ .log-entry:last-child { border-bottom: none; }
295
+ .log-date { color: var(--color-text-muted); font-size: 0.875rem; margin-right: 0.75rem; }
296
+ .log-status { font-size: 0.75rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 50px; background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
297
+ .log-status.active { background: rgba(232, 93, 59, 0.15); color: var(--color-accent); }
298
+ .log-entry p { margin: 0.5rem 0 0; color: var(--color-text-light); font-size: 0.9375rem; }
299
+ .metrics-section { max-width: 900px; margin: 0 auto 4rem; }
300
+ .metrics-section h3 { text-align: center; margin-bottom: 2rem; }
301
+ .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
302
+ .metric-card { background: var(--color-bg-alt); border-radius: 12px; padding: 1.5rem; text-align: center; }
303
+ .metric-value { font-size: 2rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.25rem; }
304
+ .metric-label { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
305
+ .availability-section { max-width: 600px; margin: 0 auto; text-align: center; }
306
+ .availability-section h3 { margin-bottom: 1rem; }
307
+ .availability-section p { color: var(--color-text-light); margin-bottom: 1.5rem; }
308
+ .availability-link { display: inline-block; background: var(--color-accent); color: white; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 500; text-decoration: none; }
309
+ .availability-link:hover { background: var(--color-accent-dark); color: white; }
310
+ .disclaimer-text { text-align: center; color: var(--color-text-muted); font-size: 0.875rem; font-style: italic; margin-top: 1rem; margin-bottom: 0; }
311
+ .features-section { max-width: 700px; margin: 0 auto 4rem; }
312
+ .features-section h3 { text-align: center; margin-bottom: 1.5rem; }
313
+ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
314
+ .feature-toggle { background: var(--color-bg-alt); border-radius: 12px; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; border: 2px solid transparent; }
315
+ .feature-toggle.enabled { border-color: rgba(80, 200, 120, 0.3); }
316
+ .feature-toggle.disabled { opacity: 0.6; }
317
+ .feature-name { font-weight: 500; color: var(--color-text); }
318
+ .feature-status { font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 50px; background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
319
+ .feature-toggle.disabled .feature-status { background: rgba(154, 148, 141, 0.15); color: var(--color-text-muted); }
320
+ .blog-post-section { padding: var(--section-padding) 0; background: var(--color-bg); flex: 1; }
321
+ .blog-post-content { max-width: 700px; margin: 0 auto; }
322
+ .blog-loading { text-align: center; color: var(--color-text-muted); padding: 4rem 0; }
323
+ .blog-back { display: inline-block; color: var(--color-accent); font-weight: 500; margin-bottom: 2rem; text-decoration: none; }
324
+ .blog-back:hover { color: var(--color-accent-dark); }
325
+ .blog-post-header { margin-bottom: 3rem; }
326
+ .blog-post-header h1 { margin-top: 1rem; }
327
+ .blog-post-body p { font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.75rem; color: var(--color-text); }
328
+ .blog-post-body p:first-of-type { font-size: 1.25rem; }
329
+ .blog-read-more { display: inline-block; margin-top: 0.5rem; }
330
+ .blog-post-body h1 { font-size: 2rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-border); }
331
+ .blog-post-body h2 { font-size: 1.6rem; margin: 2rem 0 0.8rem; color: var(--color-accent); }
332
+ .blog-post-body h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; color: var(--color-text); }
333
+ .blog-post-body blockquote { border-left: 4px solid var(--color-accent); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--color-bg-alt); border-radius: 0 8px 8px 0; font-style: italic; font-size: 1.1rem; color: var(--color-text); }
334
+ .blog-post-body blockquote p { margin: 0; }
335
+ .blog-post-body ul, .blog-post-body ol { margin: 1.5rem 0; padding-left: 1.5rem; }
336
+ .blog-post-body li { margin-bottom: 0.75rem; color: var(--color-text); line-height: 1.7; }
337
+ .blog-post-body ul li { list-style-type: disc; }
338
+ .blog-post-body ol li { list-style-type: decimal; }
339
+ .blog-post-body hr { border: none; height: 2px; background: linear-gradient(to right, transparent, var(--color-border), transparent); margin: 3rem 0; }
340
+ .blog-post-body pre { background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; margin: 1.5rem 0; font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.6; }
341
+ .blog-post-body pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
342
+ .blog-post-body code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.85em; color: var(--color-accent-dark); }
343
+ .blog-post-body a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
344
+ .blog-post-body a:hover { color: var(--color-accent-dark); }
345
+ .blog-post-body strong { color: var(--color-text); font-weight: 600; }
346
+ .blog-post-body em { color: var(--color-text); }
347
+ .blog-post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 2rem 0; }
348
+ </style>
349
+ </head>
350
+ <body>
351
+ <nav class="main-nav">
352
+ <div class="container">
353
+ <a href="index.html" class="nav-brand">FMN-GPT</a>
354
+ <div class="nav-links">
355
+ <a href="blog.html">Blog</a>
356
+ <a href="status.html">Model Status</a>
357
+ <a href="https://huggingface.co/CompactAI" target="_blank">HuggingFace</a>
358
+ </div>
359
+ </div>
360
+ </nav>
361
+
362
+ <main>
363
+ <!-- Hero Section -->
364
+ <section class="hero">
365
+ <div class="hero-content">
366
+ <div class="apology-badge">A New Approach to Small Models</div>
367
+ <h1 class="hero-title">Why I Stopped<br><span class="highlight">Compressing Models</span></h1>
368
+ <p class="hero-subtitle">And started building something that doesn't need 8 H100s to think</p>
369
+ <div class="scroll-indicator">
370
+ <span>Scroll for the truth</span>
371
+ <div class="scroll-arrow"></div>
372
+ </div>
373
+ </div>
374
+ <div class="hero-visual">
375
+ <canvas id="neuron-canvas"></canvas>
376
+ </div>
377
+ </section>
378
+
379
+ <!-- A Note Before We Begin -->
380
+ <section class="preface" id="preface">
381
+ <div class="container">
382
+ <h2 class="section-title">A Note Before We Begin</h2>
383
+ <div class="preface-content">
384
+ <p class="drop-cap">You might have noticed that everything on my profile got deleted. That was intentional. Let me explain why.</p>
385
+
386
+ <p>I used to fill my profile with compressed models. Dozens of them. But I realized that quantity was masking the real problem. I wasn't building anything new. Just cloning and shrinking other people's work.</p>
387
+
388
+ <p>So I wiped the slate clean. A fresh start. This time, I'm here to <strong>build from scratch</strong>.</p>
389
+ </div>
390
+ </div>
391
+ </section>
392
+
393
+ <!-- The Confession -->
394
+ <section class="confession" id="confession">
395
+ <div class="container">
396
+ <h2 class="section-title">The Confession</h2>
397
+ <div class="confession-content">
398
+ <div class="confession-text">
399
+ <p class="drop-cap">Let me be honest with you. For months, I was that person. You know the one. Leaving my computer on overnight, running distillation scripts, trying to squeeze GPT-4 into something that could run on a potato.</p>
400
+
401
+ <p>And you know what? <strong>It was boring.</strong></p>
402
+
403
+ <p>Who actually enjoys watching loss curves descend at 3 AM? Who gets excited about shaving off 2% of parameters while the model forgets how to count?</p>
404
+
405
+ <blockquote>
406
+ "I was cloning someone else's work and compressing it. The process lacked real creation. Just digital photocopying with extra steps."
407
+ </blockquote>
408
+
409
+ <p>So I stopped. And I started asking a different question:</p>
410
+
411
+ <div class="big-question">
412
+ <span class="question-mark">?</span>
413
+ <p>What if a model could be small <em>by design</em>, avoiding compression entirely?</p>
414
+ </div>
415
+ </div>
416
+ </div>
417
+ </div>
418
+ </section>
419
+
420
+ <!-- What I'm Building -->
421
+ <section class="what-building" id="what">
422
+ <div class="container">
423
+ <h2 class="section-title">What I'm Building Instead</h2>
424
+
425
+ <div class="feature-grid">
426
+ <div class="feature-card main-feature">
427
+ <div class="feature-icon">
428
+ <svg viewBox="0 0 100 100" class="neuron-icon">
429
+ <circle cx="50" cy="30" r="15" class="neuron-node"/>
430
+ <circle cx="25" cy="70" r="12" class="neuron-node"/>
431
+ <circle cx="75" cy="70" r="12" class="neuron-node"/>
432
+ <path d="M50 45 L30 58" class="neuron-connection"/>
433
+ <path d="M50 45 L70 58" class="neuron-connection"/>
434
+ <path d="M37 70 L63 70" class="neuron-connection" stroke-dasharray="5,3"/>
435
+ </svg>
436
+ </div>
437
+ <h3>FMN-GPT</h3>
438
+ <p class="feature-subtitle">Factored Multiplicative Neuron Transformer</p>
439
+ <p>A transformer architecture where each neuron can call backward into the network. A fundamentally different way to think, designed from scratch.</p>
440
+ <div class="feature-stats">
441
+ <div class="stat">
442
+ <span class="stat-value">491</span>
443
+ <span class="stat-label">Vocab Size</span>
444
+ </div>
445
+ <div class="stat">
446
+ <span class="stat-value">65K</span>
447
+ <span class="stat-label">Context Length</span>
448
+ </div>
449
+ <div class="stat">
450
+ <span class="stat-value">120</span>
451
+ <span class="stat-label">Max Loops/Neuron</span>
452
+ </div>
453
+ </div>
454
+ <p class="disclaimer-text">Everything is subject to change.</p>
455
+ </div>
456
+ </div>
457
+
458
+ <!-- Architecture Diagram -->
459
+ <div class="architecture-section">
460
+ <h3>The Architecture</h3>
461
+ <div class="architecture-diagram" id="arch-diagram">
462
+ <div class="arch-layer" data-layer="input">
463
+ <div class="layer-box input-layer">
464
+ <span>Input Embeddings</span>
465
+ </div>
466
+ </div>
467
+
468
+ <div class="arch-arrow">v</div>
469
+
470
+ <div class="arch-layer" data-layer="recursive">
471
+ <div class="layer-box recursive-layer">
472
+ <span>Shared Transformer Block x6</span>
473
+ <div class="layer-details">
474
+ <div class="detail-item">
475
+ <span class="detail-label">Multi-Query Attention</span>
476
+ <span class="detail-value">4 heads</span>
477
+ </div>
478
+ <div class="detail-item">
479
+ <span class="detail-label">FMN Feedforward</span>
480
+ <span class="detail-value">Rank 40</span>
481
+ </div>
482
+ <div class="detail-item">
483
+ <span class="detail-label">Dynamic Routing</span>
484
+ <span class="detail-value">REINFORCE based</span>
485
+ </div>
486
+ </div>
487
+ </div>
488
+ </div>
489
+
490
+ <div class="arch-arrow loop-arrow">
491
+ <span>Recurrent State</span>
492
+ </div>
493
+
494
+ <div class="arch-layer" data-layer="output">
495
+ <div class="layer-box output-layer">
496
+ <span>Output (Weight-Tied)</span>
497
+ </div>
498
+ </div>
499
+ </div>
500
+ </div>
501
+ </div>
502
+ </section>
503
+
504
+ <!-- How It Works -->
505
+ <section class="how-it-works" id="how">
506
+ <div class="container">
507
+ <h2 class="section-title">How It Actually Works</h2>
508
+
509
+ <div class="mechanism-tabs">
510
+ <button class="tab-btn active" data-tab="fmn">FMN Neurons</button>
511
+ <button class="tab-btn" data-tab="routing">Dynamic Routing</button>
512
+ <button class="tab-btn" data-tab="recurrent">Recurrent Mixer</button>
513
+ <button class="tab-btn" data-tab="loops">Loop Counter</button>
514
+ </div>
515
+
516
+ <div class="tab-content">
517
+ <!-- FMN Tab -->
518
+ <div class="tab-pane active" id="fmn-pane">
519
+ <div class="pane-content">
520
+ <div class="pane-text">
521
+ <h3>Factored Multiplicative Neurons</h3>
522
+ <p>Traditional neurons compute <code>y = σ(Wx + b)</code>. Simple, but limited.</p>
523
+ <p>FMN neurons compute:</p>
524
+ <div class="equation">
525
+ <code>gate = tanh(W1(x)) * sigmoid(W2(x))</code>
526
+ </div>
527
+ <div class="equation">
528
+ <code>output = V(gate)</code>
529
+ </div>
530
+ <p>Each FMN uses a multiplicative gating mechanism with two weight matrices W1 and W2 that project to a rank 40 latent space, then combines via tanh and sigmoid before projecting back through V.</p>
531
+ <ul class="feature-list">
532
+ <li>Rank 40 latent dimension for efficient computation</li>
533
+ <li>Multiplicative gating enables complex interactions</li>
534
+ <li>Optional SwiGLU variant available</li>
535
+ <li>Initialized with Xavier uniform for stability</li>
536
+ </ul>
537
+ </div>
538
+ <div class="pane-visual">
539
+ <canvas id="fmn-canvas" width="400" height="300"></canvas>
540
+ </div>
541
+ </div>
542
+ </div>
543
+
544
+ <!-- Routing Tab -->
545
+ <div class="tab-pane" id="routing-pane">
546
+ <div class="pane-content">
547
+ <div class="pane-text">
548
+ <h3>Dynamic Neuron Routing</h3>
549
+ <p>Each neuron can route its output to any layer and any neuron in the network using <strong>REINFORCE policy gradients</strong> for true gradient flow through hard routing decisions.</p>
550
+ <div class="equation">
551
+ <code>should_route ~ Bernoulli(sigmoid(logits))</code>
552
+ </div>
553
+ <div class="equation">
554
+ <code>target_layer ~ Categorical(softmax(layer_logits))</code>
555
+ </div>
556
+ <p>The router learns:</p>
557
+ <ul class="feature-list">
558
+ <li>Whether to route via learned sigmoid gate</li>
559
+ <li>Which layer to target (0 to n_layers)</li>
560
+ <li>Which neuron to target (0 to d_model)</li>
561
+ <li>Routing strength via learned parameter</li>
562
+ </ul>
563
+ </div>
564
+ <div class="pane-visual">
565
+ <canvas id="routing-canvas" width="400" height="300"></canvas>
566
+ </div>
567
+ </div>
568
+ </div>
569
+
570
+ <!-- Recurrent Tab -->
571
+ <div class="tab-pane" id="recurrent-pane">
572
+ <div class="pane-content">
573
+ <div class="pane-text">
574
+ <h3>Recurrent Mixer</h3>
575
+ <p>A per-channel gated recurrent state that persists across layer iterations. Think of it as a tiny LSTM for each dimension.</p>
576
+ <div class="equation">
577
+ <code>g = sigmoid(x * w_x + s * w_s + b)</code>
578
+ </div>
579
+ <div class="equation">
580
+ <code>s_new = s * (1 - g) + x * g</code>
581
+ </div>
582
+ <p>This allows the model to accumulate information across the 6 layer passes, creating a form of <strong>internal memory</strong>. The state scale parameter controls how much the recurrent state influences each layer.</p>
583
+ </div>
584
+ <div class="pane-visual">
585
+ <canvas id="recurrent-canvas" width="400" height="300"></canvas>
586
+ </div>
587
+ </div>
588
+ </div>
589
+
590
+ <!-- Loops Tab -->
591
+ <div class="tab-pane" id="loops-pane">
592
+ <div class="pane-content">
593
+ <div class="pane-text">
594
+ <h3>Loop Counter</h3>
595
+ <p>Each neuron has a hard limit on how many times it can participate in routing loops. This prevents infinite cycles and forces the model to be efficient.</p>
596
+ <div class="equation">
597
+ <code>loop_exhausted = loop_counts >= max_loops</code>
598
+ </div>
599
+ <p>With <code>max_loops = 120</code>, each neuron can participate in at most 120 routing events before being silenced. This creates a form of <strong>computational budget</strong>.</p>
600
+ <div class="loop-demo">
601
+ <label>Max Loops: <span id="loop-value">120</span></label>
602
+ <input type="range" id="loop-slider" min="1" max="200" value="120">
603
+ <div class="loop-indicator" id="loop-indicator"></div>
604
+ </div>
605
+ </div>
606
+ <div class="pane-visual">
607
+ <canvas id="loops-canvas" width="400" height="300"></canvas>
608
+ </div>
609
+ </div>
610
+ </div>
611
+ </div>
612
+ </div>
613
+ </section>
614
+
615
+ <!-- Explain Like I'm Five -->
616
+ <section class="elief-section" id="elief">
617
+ <div class="container">
618
+ <h2 class="section-title">Explain Like I'm Five</h2>
619
+ <p class="section-subtitle">How does this tiny model think?</p>
620
+
621
+ <div class="elief-content">
622
+ <div class="elief-card">
623
+ <h3>What is FMN-GPT?</h3>
624
+ <p>Imagine a really tiny brain. Most AI brains today are huge, like a library with millions of books. FMN-GPT is more like a small notebook. But here's the trick. It can read that notebook over and over, each time understanding a little more.</p>
625
+ </div>
626
+
627
+ <div class="elief-card">
628
+ <h3>Why Character-Level?</h3>
629
+ <p>Most AI models learn whole words at a time. We taught this one to read letter by letter, like a child learning to read. This keeps it small. It only needs to know 491 characters instead of thousands of words. Every letter matters.</p>
630
+ </div>
631
+
632
+ <div class="elief-card">
633
+ <h3>How Does It Think?</h3>
634
+ <p>When you ask a question, the model passes it through the same brain circuit 6 times. Each pass, it thinks a little deeper. Like asking yourself "what's 2+2?" and then checking, "Wait, let me think again. 2+2... that's adding two groups of two... so that makes 4!"</p>
635
+ </div>
636
+
637
+ <div class="elief-card">
638
+ <h3>The Magic Number: 491 Characters</h3>
639
+ <p>The model uses a character-level vocabulary of exactly 491 tokens. This includes ASCII characters, special symbols, and custom thinking tokens (the thinking emoji and light bulb emoji). Every character matters.</p>
640
+ </div>
641
+ </div>
642
+ </div>
643
+ </section>
644
+
645
+ <!-- Why I Stopped -->
646
+ <section class="why-stopped" id="why">
647
+ <div class="container">
648
+ <h2 class="section-title">Why I Really Stopped</h2>
649
+
650
+ <div class="reasons-grid">
651
+ <div class="reason-card">
652
+ <div class="reason-number">01</div>
653
+ <h3>It Was Boring</h3>
654
+ <p>There's no creativity in distillation. You're just making a smaller copy of someone else's breakthrough. Where's the fun in that?</p>
655
+ </div>
656
+
657
+ <div class="reason-card">
658
+ <div class="reason-number">02</div>
659
+ <h3>Diminishing Returns</h3>
660
+ <p>Every 1% of parameter reduction came with a measurable drop in capability. The tradeoff wasn't worth it.</p>
661
+ </div>
662
+
663
+ <div class="reason-card">
664
+ <div class="reason-number">03</div>
665
+ <h3>Overnight Runs</h3>
666
+ <p>Who leaves their computer on overnight to clone someone else's work and compress it? The process lacks real creation. Mere photocopying in disguise.</p>
667
+ </div>
668
+
669
+ <div class="reason-card">
670
+ <div class="reason-number">04</div>
671
+ <h3>A Better Question</h3>
672
+ <p>Instead of asking "how do I make this smaller?", I started asking "what if it was designed to be small from the start?"</p>
673
+ </div>
674
+ </div>
675
+
676
+ <div class="comparison-section">
677
+ <h3>The Old Way vs. The New Way</h3>
678
+ <div class="comparison-grid">
679
+ <div class="comparison-item old">
680
+ <h4>Model Compression</h4>
681
+ <ul>
682
+ <li>Start with 7B parameters</li>
683
+ <li>Distill, quantize, prune</li>
684
+ <li>End with 1B parameters</li>
685
+ <li>Capability: ???</li>
686
+ <li>Time: Weeks of compute</li>
687
+ </ul>
688
+ </div>
689
+
690
+ <div class="comparison-arrow">-></div>
691
+
692
+ <div class="comparison-item new">
693
+ <h4>Small by Design</h4>
694
+ <ul>
695
+ <li>Start with ~100K parameters</li>
696
+ <li>Novel architecture</li>
697
+ <li>End with ~100K parameters</li>
698
+ <li>Capability: Emergent</li>
699
+ <li>Time: One GPU, one night</li>
700
+ </ul>
701
+ </div>
702
+ </div>
703
+ </div>
704
+ </div>
705
+ </section>
706
+
707
+ <!-- Roadmap -->
708
+ <section class="roadmap-section" id="roadmap">
709
+ <div class="container">
710
+ <h2 class="section-title">Roadmap</h2>
711
+ <p class="section-subtitle">Where we're headed (everything is subject to change)</p>
712
+
713
+ <div class="roadmap-timeline">
714
+ <div class="roadmap-item completed">
715
+ <div class="roadmap-marker"></div>
716
+ <div class="roadmap-content">
717
+ <h4>Phase 1: Core Architecture</h4>
718
+ <p>FMN neurons with rank 40, REINFORCE based dynamic routing, recurrent mixer, QK normalization, gated residuals. The foundation is complete.</p>
719
+ <span class="roadmap-status">Completed</span>
720
+ </div>
721
+ </div>
722
+
723
+ <div class="roadmap-item in-progress">
724
+ <div class="roadmap-marker"></div>
725
+ <div class="roadmap-content">
726
+ <h4>Phase 2: Training Pipeline</h4>
727
+ <p>Character-level tokenization (491 vocab), 7 instruction datasets, pretraining on English-Pretraining-Dataset, AdamW optimizer, bfloat16 precision.</p>
728
+ <span class="roadmap-status">In Progress</span>
729
+ </div>
730
+ </div>
731
+
732
+ <div class="roadmap-item">
733
+ <div class="roadmap-marker"></div>
734
+ <div class="roadmap-content">
735
+ <h4>Phase 3: CoT Reasoning</h4>
736
+ <p>Teaching the model to think step-by-step with explicit reasoning traces.</p>
737
+ <span class="roadmap-status">Planned</span>
738
+ </div>
739
+ </div>
740
+
741
+ <div class="roadmap-item">
742
+ <div class="roadmap-marker"></div>
743
+ <div class="roadmap-content">
744
+ <h4>Phase 4: Evaluation Suite</h4>
745
+ <p>Comprehensive benchmarks to measure what 100K parameters can actually do.</p>
746
+ <span class="roadmap-status">Planned</span>
747
+ </div>
748
+ </div>
749
+
750
+ <div class="roadmap-item">
751
+ <div class="roadmap-marker"></div>
752
+ <div class="roadmap-content">
753
+ <h4>Phase 5: Model Release</h4>
754
+ <p>Open weights on HuggingFace for the community to experiment with.</p>
755
+ <span class="roadmap-status">Planned</span>
756
+ </div>
757
+ </div>
758
+ </div>
759
+ </div>
760
+ </section>
761
+
762
+ <!-- Dataset Credits -->
763
+ <section class="credits-section" id="credits">
764
+ <div class="container">
765
+ <h2 class="section-title">Dataset Credits</h2>
766
+ <p class="section-subtitle">The data that trains our model (subject to change)</p>
767
+
768
+ <div class="credits-grid">
769
+ <div class="credit-card">
770
+ <h4>Pretraining Dataset</h4>
771
+ <p class="credit-name">shuyuej/English-Pretraining-Dataset</p>
772
+ <p>Large-scale English text for initial language understanding and general knowledge.</p>
773
+ <a href="https://huggingface.co/datasets/shuyuej/English-Pretraining-Dataset" target="_blank">View on HuggingFace</a>
774
+ </div>
775
+
776
+ <div class="credit-card">
777
+ <h4>Instruction Dataset 1</h4>
778
+ <p class="credit-name">TeichAI/Pony-Alpha-15k</p>
779
+ <p>Conversational instruction data for learning dialogue patterns and responses.</p>
780
+ <a href="https://huggingface.co/datasets/TeichAI/Pony-Alpha-15k" target="_blank">View on HuggingFace</a>
781
+ </div>
782
+
783
+ <div class="credit-card">
784
+ <h4>Instruction Dataset 2</h4>
785
+ <p class="credit-name">TeichAI/convo-v1</p>
786
+ <p>Multi-turn conversation data for context handling and coherent dialogue.</p>
787
+ <a href="https://huggingface.co/datasets/TeichAI/convo-v1" target="_blank">View on HuggingFace</a>
788
+ </div>
789
+
790
+ <div class="credit-card">
791
+ <h4>Instruction Dataset 3</h4>
792
+ <p class="credit-name">TeichAI/Step-3.5-Flash-2600x</p>
793
+ <p>High-quality instruction-response pairs for fine-tuning reasoning capabilities.</p>
794
+ <a href="https://huggingface.co/datasets/TeichAI/Step-3.5-Flash-2600x" target="_blank">View on HuggingFace</a>
795
+ </div>
796
+
797
+ <div class="credit-card">
798
+ <h4>Instruction Dataset 4</h4>
799
+ <p class="credit-name">TeichAI/sherlock-thinking-alpha-11000x</p>
800
+ <p>Thinking and reasoning data for chain of thought training.</p>
801
+ <a href="https://huggingface.co/datasets/TeichAI/sherlock-thinking-alpha-11000x" target="_blank">View on HuggingFace</a>
802
+ </div>
803
+
804
+ <div class="credit-card">
805
+ <h4>Instruction Dataset 5</h4>
806
+ <p class="credit-name">TeichAI/glm-4.7-2000x</p>
807
+ <p>GLM model outputs for diverse response patterns.</p>
808
+ <a href="https://huggingface.co/datasets/TeichAI/glm-4.7-2000x" target="_blank">View on HuggingFace</a>
809
+ </div>
810
+
811
+ <div class="credit-card">
812
+ <h4>Instruction Dataset 6</h4>
813
+ <p class="credit-name">TeichAI/claude-haiku-4.5-high-reasoning-1700x</p>
814
+ <p>Claude reasoning outputs for advanced thinking patterns.</p>
815
+ <a href="https://huggingface.co/datasets/TeichAI/claude-haiku-4.5-high-reasoning-1700x" target="_blank">View on HuggingFace</a>
816
+ </div>
817
+
818
+ <div class="credit-card">
819
+ <h4>Instruction Dataset 7</h4>
820
+ <p class="credit-name">TeichAI/gemini-3-flash-preview</p>
821
+ <p>Gemini model outputs for additional diversity.</p>
822
+ <a href="https://huggingface.co/datasets/TeichAI/gemini-3-flash-preview" target="_blank">View on HuggingFace</a>
823
+ </div>
824
+ </div>
825
+ </div>
826
+ </section>
827
+
828
+ <!-- Closing -->
829
+ <section class="closing" id="closing">
830
+ <div class="container">
831
+ <div class="closing-content">
832
+ <h2>Beyond Competing with GPT-4</h2>
833
+ <p>The real goal is understanding what's actually necessary for intelligence to emerge. Maybe 100K parameters is enough. Maybe it isn't. But we won't know until we try building from first principles instead of just compressing what already exists.</p>
834
+
835
+ <div class="closing-quote">
836
+ <blockquote>
837
+ "Smaller models serve as a means toward a larger goal. Understanding what makes models work in the first place is the real objective."
838
+ </blockquote>
839
+ </div>
840
+
841
+ <div class="poem-section">
842
+ <p class="poem-intro">It's coming.</p>
843
+ <div class="poem">
844
+ <p>Small enough to hide in plain sight,</p>
845
+ <p>Big enough to twist the stars of night,</p>
846
+ <p>Quiet as a shadow, sharp as a spark,</p>
847
+ <p>A tiny flame that will light the dark.</p>
848
+ </div>
849
+ </div>
850
+
851
+ <div class="cta-section">
852
+ <p>This is an ongoing experiment. Everything described here is subject to change. Follow along if you're curious about what this architecture can actually do.</p>
853
+ </div>
854
+ </div>
855
+ </div>
856
+ </section>
857
+ </main>
858
+
859
+ <!-- Footer -->
860
+ <footer class="footer">
861
+ <div class="container">
862
+ <div class="footer-content">
863
+ <p class="footer-text">Built with curiosity over compute.</p>
864
+ <p class="footer-subtext">FMN-GPT by <a href="https://huggingface.co/CompactAI" target="_blank">CompactAI</a> - 2026</p>
865
+ </div>
866
+ </div>
867
+ </footer>
868
+
869
+ <script>
870
+ const CONFIG = { colors: { accent: '#e85d3b', accentLight: '#ff8a6b', secondary: '#d4a853', secondaryLight: '#e8c87a', bg: '#faf8f5', bgAlt: '#f5f0e8', bgDark: '#1a1815', text: '#2d2a26', textLight: '#6b6560', textMuted: '#9a948d', border: '#e5e0d8', success: '#50c878', info: '#4a9eff' }, neuron: { count: 112, maxLoops: 30, layers: 6 } };
871
+ function lerp(a, b, t) { return a + (b - a) * t; }
872
+ function clamp(val, min, max) { return Math.max(min, Math.min(max, val)); }
873
+ function randomRange(min, max) { return Math.random() * (max - min) + min; }
874
+ function hexToRgba(hex, alpha) { const r = parseInt(hex.slice(1, 3), 16); const g = parseInt(hex.slice(3, 5), 16); const b = parseInt(hex.slice(5, 7), 16); return `rgba(${r}, ${g}, ${b}, ${alpha})`; }
875
+ class NeuronNetwork {
876
+ constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.neurons = []; this.connections = []; this.particles = []; this.mouse = { x: 0, y: 0 }; this.animationId = null; this.resize(); this.init(); this.bindEvents(); this.animate(); }
877
+ resize() { const rect = this.canvas.parentElement.getBoundingClientRect(); this.canvas.width = rect.width * window.devicePixelRatio; this.canvas.height = rect.height * window.devicePixelRatio; this.ctx.scale(window.devicePixelRatio, window.devicePixelRatio); this.width = rect.width; this.height = rect.height; }
878
+ init() { const count = Math.min(50, Math.floor(this.width * this.height / 15000)); this.neurons = []; for (let i = 0; i < count; i++) { this.neurons.push({ x: randomRange(50, this.width - 50), y: randomRange(50, this.height - 50), vx: randomRange(-0.3, 0.3), vy: randomRange(-0.3, 0.3), radius: randomRange(3, 6), pulse: randomRange(0, Math.PI * 2), pulseSpeed: randomRange(0.02, 0.05) }); } this.updateConnections(); }
879
+ updateConnections() { this.connections = []; const maxDist = 150; for (let i = 0; i < this.neurons.length; i++) { for (let j = i + 1; j < this.neurons.length; j++) { const dx = this.neurons[i].x - this.neurons[j].x; const dy = this.neurons[i].y - this.neurons[j].y; const dist = Math.sqrt(dx * dx + dy * dy); if (dist < maxDist) { this.connections.push({ from: i, to: j, strength: 1 - dist / maxDist }); } } } }
880
+ bindEvents() { window.addEventListener('resize', () => { this.resize(); this.init(); }); this.canvas.addEventListener('mousemove', (e) => { const rect = this.canvas.getBoundingClientRect(); this.mouse.x = e.clientX - rect.left; this.mouse.y = e.clientY - rect.top; }); }
881
+ animate() { this.ctx.clearRect(0, 0, this.width, this.height); for (const neuron of this.neurons) { neuron.x += neuron.vx; neuron.y += neuron.vy; neuron.pulse += neuron.pulseSpeed; if (neuron.x < 20 || neuron.x > this.width - 20) neuron.vx *= -1; if (neuron.y < 20 || neuron.y > this.height - 20) neuron.vy *= -1; const dx = this.mouse.x - neuron.x; const dy = this.mouse.y - neuron.y; const dist = Math.sqrt(dx * dx + dy * dy); if (dist < 100 && dist > 0) { neuron.x -= dx * 0.01; neuron.y -= dy * 0.01; } } this.updateConnections(); for (const conn of this.connections) { const from = this.neurons[conn.from]; const to = this.neurons[conn.to]; this.ctx.beginPath(); this.ctx.moveTo(from.x, from.y); this.ctx.lineTo(to.x, to.y); this.ctx.strokeStyle = hexToRgba(CONFIG.colors.accent, conn.strength * 0.3); this.ctx.lineWidth = conn.strength * 2; this.ctx.stroke(); } for (const neuron of this.neurons) { const pulseRadius = neuron.radius + Math.sin(neuron.pulse) * 2; const gradient = this.ctx.createRadialGradient(neuron.x, neuron.y, 0, neuron.x, neuron.y, pulseRadius * 3); gradient.addColorStop(0, hexToRgba(CONFIG.colors.accent, 0.3)); gradient.addColorStop(1, hexToRgba(CONFIG.colors.accent, 0)); this.ctx.beginPath(); this.ctx.arc(neuron.x, neuron.y, pulseRadius * 3, 0, Math.PI * 2); this.ctx.fillStyle = gradient; this.ctx.fill(); this.ctx.beginPath(); this.ctx.arc(neuron.x, neuron.y, pulseRadius, 0, Math.PI * 2); this.ctx.fillStyle = CONFIG.colors.accent; this.ctx.fill(); } this.animationId = requestAnimationFrame(() => this.animate()); }
882
+ destroy() { if (this.animationId) { cancelAnimationFrame(this.animationId); } }
883
+ }
884
+ class FMNVisualization {
885
+ constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.time = 0; this.animationId = null; this.dataFlow = []; this.resize(); this.initDataFlow(); this.animate(); }
886
+ resize() { const dpr = window.devicePixelRatio || 1; this.canvas.width = 400 * dpr; this.canvas.height = 300 * dpr; this.ctx.scale(dpr, dpr); this.width = 400; this.height = 300; }
887
+ initDataFlow() { this.dataFlow = []; for (let i = 0; i < 8; i++) { this.dataFlow.push({ progress: Math.random(), speed: 0.003 + Math.random() * 0.002, path: Math.floor(Math.random() * 3) }); } }
888
+ animate() { this.ctx.clearRect(0, 0, this.width, this.height); this.time += 0.016; const centerX = this.width / 2; const centerY = this.height / 2; this.ctx.fillStyle = '#faf8f5'; this.ctx.fillRect(0, 0, this.width, this.height); const inputY = centerY - 90; const w1Y = centerY - 25; const w2Y = centerY + 25; const outputY = centerY + 90; this.ctx.strokeStyle = 'rgba(107, 101, 96, 0.15)'; this.ctx.lineWidth = 1; for (let i = 0; i < 5; i++) { for (let j = 0; j < 3; j++) { const x1 = centerX - 80 + i * 40; const x2 = centerX - 40 + j * 40; this.ctx.beginPath(); this.ctx.moveTo(x1, inputY + 14); this.ctx.lineTo(x2, w1Y - 14); this.ctx.stroke(); } } for (let i = 0; i < 3; i++) { for (let j = 0; j < 5; j++) { const x1 = centerX - 40 + i * 40; const x2 = centerX - 80 + j * 40; this.ctx.beginPath(); this.ctx.moveTo(x1, w2Y + 14); this.ctx.lineTo(x2, outputY - 14); this.ctx.stroke(); } } for (let i = 0; i < 5; i++) { const x = centerX - 80 + i * 40; this.drawNeuron(x, inputY, 14, '#4a9eff'); } for (let i = 0; i < 3; i++) { const x = centerX - 40 + i * 40; this.drawNeuron(x, w1Y, 16, CONFIG.colors.accent); } for (let i = 0; i < 3; i++) { const x = centerX - 40 + i * 40; this.drawNeuron(x, w2Y, 16, CONFIG.colors.secondary); } for (let i = 0; i < 5; i++) { const x = centerX - 80 + i * 40; this.drawNeuron(x, outputY, 14, '#50c878'); } this.ctx.font = 'bold 20px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.textMuted; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText('?', centerX, centerY); for (const particle of this.dataFlow) { particle.progress += particle.speed; if (particle.progress > 1) { particle.progress = 0; particle.path = Math.floor(Math.random() * 3); } const alpha = Math.sin(particle.progress * Math.PI) * 0.8; const inputIdx = particle.path; const wIdx = particle.path % 3; const inputX = centerX - 80 + inputIdx * 40; const w1X = centerX - 40 + wIdx * 40; const w2X = centerX - 40 + wIdx * 40; const outX = centerX - 80 + wIdx * 40; let px, py; if (particle.progress < 0.33) { const t = particle.progress / 0.33; px = lerp(inputX, w1X, t); py = lerp(inputY, w1Y, t); } else if (particle.progress < 0.66) { const t = (particle.progress - 0.33) / 0.33; px = lerp(w1X, w2X, t); py = lerp(w1Y, w2Y, t); } else { const t = (particle.progress - 0.66) / 0.34; px = lerp(w2X, outX, t); py = lerp(w2Y, outputY, t); } this.ctx.beginPath(); this.ctx.arc(px, py, 4, 0, Math.PI * 2); this.ctx.fillStyle = `rgba(232, 93, 59, ${alpha})`; this.ctx.fill(); } this.ctx.font = '11px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.textMuted; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'top'; this.ctx.fillText('Input', centerX, inputY - 30); this.ctx.fillText('[REDACTED]', centerX - 70, w1Y - 8); this.ctx.fillText('[REDACTED]', centerX + 70, w2Y - 8); this.ctx.fillText('Output', centerX, outputY + 25); this.animationId = requestAnimationFrame(() => this.animate()); }
889
+ drawNeuron(x, y, radius, color) { this.ctx.beginPath(); this.ctx.arc(x, y + 2, radius, 0, Math.PI * 2); this.ctx.fillStyle = 'rgba(0, 0, 0, 0.1)'; this.ctx.fill(); this.ctx.beginPath(); this.ctx.arc(x, y, radius, 0, Math.PI * 2); this.ctx.fillStyle = color; this.ctx.fill(); this.ctx.beginPath(); this.ctx.arc(x - radius * 0.3, y - radius * 0.3, radius * 0.4, 0, Math.PI * 2); this.ctx.fillStyle = 'rgba(255, 255, 255, 0.3)'; this.ctx.fill(); }
890
+ destroy() { if (this.animationId) { cancelAnimationFrame(this.animationId); } }
891
+ }
892
+ class RoutingVisualization {
893
+ constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.time = 0; this.particles = []; this.animationId = null; this.resize(); this.initParticles(); this.animate(); }
894
+ resize() { const dpr = window.devicePixelRatio || 1; this.canvas.width = 400 * dpr; this.canvas.height = 300 * dpr; this.ctx.scale(dpr, dpr); this.width = 400; this.height = 300; }
895
+ initParticles() { this.particles = []; const layers = 6; const layerSpacing = this.width / (layers + 1); for (let i = 0; i < 12; i++) { const startLayer = Math.floor(Math.random() * layers); const startY = randomRange(60, this.height - 60); this.particles.push({ x: (startLayer + 1) * layerSpacing, y: startY, targetX: 0, targetY: 0, speed: 0.8 + Math.random() * 0.4, color: Math.random() > 0.5 ? CONFIG.colors.accent : CONFIG.colors.secondary, trail: [] }); this.setNewTarget(this.particles[i]); } }
896
+ setNewTarget(particle) { const layers = 6; const layerSpacing = this.width / (layers + 1); const targetLayer = Math.floor(Math.random() * layers); particle.targetX = (targetLayer + 1) * layerSpacing; particle.targetY = randomRange(60, this.height - 60); }
897
+ animate() { this.ctx.clearRect(0, 0, this.width, this.height); this.time += 0.016; this.ctx.fillStyle = '#faf8f5'; this.ctx.fillRect(0, 0, this.width, this.height); const layers = 6; const layerSpacing = this.width / (layers + 1); for (let i = 1; i <= layers; i++) { const x = i * layerSpacing; this.ctx.fillStyle = 'rgba(229, 224, 216, 0.3)'; this.ctx.fillRect(x - 15, 40, 30, this.height - 70); this.ctx.font = '10px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.textMuted; this.ctx.textAlign = 'center'; this.ctx.fillText(`L${i - 1}`, x, this.height - 15); } this.ctx.font = 'bold 13px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.text; this.ctx.textAlign = 'center'; this.ctx.fillText('Cross-Layer Backward Routing', this.width / 2, 22); for (const p of this.particles) { const dx = p.targetX - p.x; const dy = p.targetY - p.y; const dist = Math.sqrt(dx * dx + dy * dy); if (dist < 3) { this.setNewTarget(p); } else { const moveX = (dx / dist) * p.speed; const moveY = (dy / dist) * p.speed; p.x += moveX; p.y += moveY; p.trail.push({ x: p.x, y: p.y }); if (p.trail.length > 15) { p.trail.shift(); } } for (let i = 0; i < p.trail.length - 1; i++) { const alpha = (i / p.trail.length) * 0.4; this.ctx.beginPath(); this.ctx.moveTo(p.trail[i].x, p.trail[i].y); this.ctx.lineTo(p.trail[i + 1].x, p.trail[i + 1].y); this.ctx.strokeStyle = `rgba(232, 93, 59, ${alpha})`; this.ctx.lineWidth = 2; this.ctx.stroke(); } this.ctx.beginPath(); this.ctx.arc(p.x, p.y, 5, 0, Math.PI * 2); this.ctx.fillStyle = p.color; this.ctx.fill(); } this.animationId = requestAnimationFrame(() => this.animate()); }
898
+ destroy() { if (this.animationId) { cancelAnimationFrame(this.animationId); } }
899
+ }
900
+ class RecurrentVisualization {
901
+ constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.time = 0; this.states = []; this.animationId = null; this.resize(); this.initStates(); this.animate(); }
902
+ resize() { const dpr = window.devicePixelRatio || 1; this.canvas.width = 400 * dpr; this.canvas.height = 300 * dpr; this.ctx.scale(dpr, dpr); this.width = 400; this.height = 300; }
903
+ initStates() { this.states = []; for (let i = 0; i < 8; i++) { this.states.push({ value: randomRange(0.3, 0.7), target: randomRange(0.3, 0.7), gate: randomRange(0.2, 0.8), history: [] }); } }
904
+ animate() { this.ctx.clearRect(0, 0, this.width, this.height); this.time += 0.016; this.ctx.fillStyle = '#faf8f5'; this.ctx.fillRect(0, 0, this.width, this.height); const barWidth = 32; const barSpacing = 46; const startX = (this.width - (this.states.length * barSpacing)) / 2 + 5; const baseY = this.height - 50; const maxHeight = 140; this.ctx.font = 'bold 13px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.text; this.ctx.textAlign = 'center'; this.ctx.fillText('Per-Channel Gated State', this.width / 2, 22); for (let i = 0; i < this.states.length; i++) { const state = this.states[i]; const x = startX + i * barSpacing; state.gate = 0.4 + Math.sin(this.time * 0.8 + i * 0.7) * 0.35; state.value = lerp(state.value, state.target, state.gate * 0.08); if (Math.random() < 0.008) { state.target = randomRange(0.2, 0.95); } state.history.push(state.value); if (state.history.length > 50) state.history.shift(); this.ctx.fillStyle = 'rgba(229, 224, 216, 0.4)'; this.ctx.beginPath(); this.ctx.roundRect(x - barWidth / 2, baseY - maxHeight, barWidth, maxHeight, 4); this.ctx.fill(); const currentHeight = maxHeight * state.value; const gradient = this.ctx.createLinearGradient(x, baseY, x, baseY - currentHeight); gradient.addColorStop(0, CONFIG.colors.accent); gradient.addColorStop(1, CONFIG.colors.accentLight); this.ctx.fillStyle = gradient; this.ctx.beginPath(); this.ctx.roundRect(x - barWidth / 2, baseY - currentHeight, barWidth, currentHeight, 4); this.ctx.fill(); const gateHeight = 8; const gateY = baseY - maxHeight - 18; const gateFilled = state.gate * barWidth; this.ctx.fillStyle = 'rgba(229, 224, 216, 0.6)'; this.ctx.fillRect(x - barWidth / 2, gateY, barWidth, gateHeight); this.ctx.fillStyle = CONFIG.colors.success; this.ctx.fillRect(x - barWidth / 2, gateY, gateFilled, gateHeight); this.ctx.font = '10px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.textMuted; this.ctx.textAlign = 'center'; this.ctx.fillText(`c${i}`, x, baseY + 15); } this.ctx.font = '10px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.textMuted; this.ctx.textAlign = 'left'; this.ctx.fillText('Gate:', 15, 22); this.ctx.fillStyle = CONFIG.colors.success; this.ctx.fillRect(45, 14, 25, 8); this.animationId = requestAnimationFrame(() => this.animate()); }
905
+ destroy() { if (this.animationId) { cancelAnimationFrame(this.animationId); } }
906
+ }
907
+ class LoopVisualization {
908
+ constructor(canvas, slider, indicator, valueDisplay) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.slider = slider; this.indicator = indicator; this.valueDisplay = valueDisplay; this.maxLoops = 30; this.loopCounts = []; this.animationId = null; this.resize(); this.initLoops(); this.bindEvents(); this.animate(); }
909
+ resize() { const dpr = window.devicePixelRatio || 1; this.canvas.width = 400 * dpr; this.canvas.height = 300 * dpr; this.ctx.scale(dpr, dpr); this.width = 400; this.height = 300; }
910
+ initLoops() { this.loopCounts = []; for (let i = 0; i < 20; i++) { this.loopCounts.push({ count: Math.floor(randomRange(0, this.maxLoops * 0.6)), targetCount: Math.floor(randomRange(5, this.maxLoops)), incrementing: Math.random() > 0.2 }); } this.updateIndicator(); }
911
+ bindEvents() { if (this.slider) { this.slider.addEventListener('input', (e) => { this.maxLoops = parseInt(e.target.value); if (this.valueDisplay) { this.valueDisplay.textContent = this.maxLoops; } this.updateIndicator(); }); } }
912
+ updateIndicator() { if (!this.indicator) return; this.indicator.innerHTML = ''; for (let i = 0; i < this.maxLoops; i++) { const dot = document.createElement('div'); dot.className = 'loop-dot'; if (i < this.maxLoops * 0.7) { dot.classList.add('active'); } else if (i < this.maxLoops) { dot.classList.add('exhausted'); } this.indicator.appendChild(dot); } }
913
+ animate() { this.ctx.clearRect(0, 0, this.width, this.height); this.ctx.fillStyle = '#faf8f5'; this.ctx.fillRect(0, 0, this.width, this.height); const cols = 5; const rows = 4; const cellWidth = this.width / cols; const cellHeight = (this.height - 50) / rows; this.ctx.font = 'bold 13px Inter, sans-serif'; this.ctx.fillStyle = CONFIG.colors.text; this.ctx.textAlign = 'center'; this.ctx.fillText('Neuron Loop Budget', this.width / 2, 22); for (let i = 0; i < this.loopCounts.length; i++) { const state = this.loopCounts[i]; const col = i % cols; const row = Math.floor(i / cols); const x = col * cellWidth + cellWidth / 2; const y = row * cellHeight + cellHeight / 2 + 35; if (state.incrementing) { if (state.count < state.targetCount) { state.count += 0.05; } else if (Math.random() < 0.02) { state.targetCount = Math.floor(randomRange(state.count, this.maxLoops)); } if (state.count >= this.maxLoops) { state.count = this.maxLoops; state.incrementing = false; } } const radius = 26; const progress = Math.min(state.count / this.maxLoops, 1); const exhausted = state.count >= this.maxLoops; this.ctx.beginPath(); this.ctx.arc(x, y, radius, 0, Math.PI * 2); this.ctx.strokeStyle = 'rgba(229, 224, 216, 0.6)'; this.ctx.lineWidth = 5; this.ctx.stroke(); if (progress > 0) { this.ctx.beginPath(); this.ctx.arc(x, y, radius, -Math.PI / 2, -Math.PI / 2 + progress * Math.PI * 2); this.ctx.strokeStyle = exhausted ? CONFIG.colors.textMuted : CONFIG.colors.accent; this.ctx.lineWidth = 5; this.ctx.lineCap = 'round'; this.ctx.stroke(); } this.ctx.beginPath(); this.ctx.arc(x, y, radius - 10, 0, Math.PI * 2); this.ctx.fillStyle = exhausted ? 'rgba(154, 148, 141, 0.1)' : 'rgba(232, 93, 59, 0.1)'; this.ctx.fill(); this.ctx.font = 'bold 13px Inter, sans-serif'; this.ctx.fillStyle = exhausted ? CONFIG.colors.textMuted : CONFIG.colors.text; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText(Math.floor(state.count).toString(), x, y); } this.animationId = requestAnimationFrame(() => this.animate()); }
914
+ destroy() { if (this.animationId) { cancelAnimationFrame(this.animationId); } }
915
+ }
916
+ function initTabs() { const tabBtns = document.querySelectorAll('.tab-btn'); const tabPanes = document.querySelectorAll('.tab-pane'); tabBtns.forEach(btn => { btn.addEventListener('click', () => { const tabId = btn.dataset.tab; tabBtns.forEach(b => b.classList.remove('active')); btn.classList.add('active'); tabPanes.forEach(pane => { pane.classList.remove('active'); if (pane.id === `${tabId}-pane`) { pane.classList.add('active'); } }); }); }); }
917
+ function initScrollAnimations() { const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); } }); }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }); document.querySelectorAll('.fade-in-up').forEach(el => { observer.observe(el); }); }
918
+ let heroNetwork = null, fmnViz = null, routingViz = null, recurrentViz = null, loopViz = null;
919
+ document.addEventListener('DOMContentLoaded', () => { const heroCanvas = document.getElementById('neuron-canvas'); if (heroCanvas) { heroNetwork = new NeuronNetwork(heroCanvas); } const fmnCanvas = document.getElementById('fmn-canvas'); if (fmnCanvas) { fmnViz = new FMNVisualization(fmnCanvas); } const routingCanvas = document.getElementById('routing-canvas'); if (routingCanvas) { routingViz = new RoutingVisualization(routingCanvas); } const recurrentCanvas = document.getElementById('recurrent-canvas'); if (recurrentCanvas) { recurrentViz = new RecurrentVisualization(recurrentCanvas); } const loopsCanvas = document.getElementById('loops-canvas'); const loopSlider = document.getElementById('loop-slider'); const loopIndicator = document.getElementById('loop-indicator'); const loopValue = document.getElementById('loop-value'); if (loopsCanvas) { loopViz = new LoopVisualization(loopsCanvas, loopSlider, loopIndicator, loopValue); } initTabs(); initScrollAnimations(); });
920
+ window.addEventListener('beforeunload', () => { if (heroNetwork) heroNetwork.destroy(); if (fmnViz) fmnViz.destroy(); if (routingViz) routingViz.destroy(); if (recurrentViz) recurrentViz.destroy(); if (loopViz) loopViz.destroy(); });
921
+ </script>
922
+ </body>
923
+ </html>
status.html ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Model Status | FMN-GPT - CompactAI</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
8
+ <style>
9
+ /* FMN-GPT Website Styles */
10
+ :root {
11
+ --color-bg: #faf8f5;
12
+ --color-bg-alt: #f5f0e8;
13
+ --color-bg-dark: #1a1815;
14
+ --color-bg-dark-alt: #252220;
15
+ --color-accent: #e85d3b;
16
+ --color-accent-light: #ff8a6b;
17
+ --color-accent-dark: #c44a2d;
18
+ --color-secondary: #d4a853;
19
+ --color-secondary-light: #e8c87a;
20
+ --color-text: #2d2a26;
21
+ --color-text-light: #6b6560;
22
+ --color-text-muted: #9a948d;
23
+ --color-border: #e5e0d8;
24
+ --color-border-dark: #3d3a36;
25
+ --color-success: #50c878;
26
+ --gradient-warm: linear-gradient(135deg, #e85d3b 0%, #d4a853 100%);
27
+ --gradient-dark: linear-gradient(135deg, #1a1815 0%, #2d2a26 100%);
28
+ --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
29
+ --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.12);
30
+ --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.16);
31
+ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
32
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
33
+ --container-max: 1200px;
34
+ --section-padding: 100px;
35
+ }
36
+ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
37
+ html { scroll-behavior: smooth; font-size: 16px; }
38
+ html, body { height: 100%; }
39
+ body { font-family: var(--font-sans); background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: flex; flex-direction: column; min-height: 100vh; }
40
+ main { flex: 1; }
41
+ .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
42
+ h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; color: var(--color-text); }
43
+ h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
44
+ h2 { font-size: clamp(2rem, 4vw, 3rem); }
45
+ h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
46
+ h4 { font-size: 1.25rem; }
47
+ p { margin-bottom: 1.5rem; color: var(--color-text-light); }
48
+ a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
49
+ a:hover { color: var(--color-accent-dark); }
50
+ code { font-family: var(--font-mono); background: var(--color-bg-alt); padding: 0.2em 0.5em; border-radius: 4px; font-size: 0.9em; color: var(--color-accent-dark); }
51
+ pre { font-family: var(--font-mono); background: var(--color-bg-dark); color: #f5f0e8; padding: 1.5rem; border-radius: 12px; overflow-x: auto; font-size: 0.875rem; line-height: 1.6; }
52
+ pre code { background: none; padding: 0; color: inherit; }
53
+ blockquote { border-left: 4px solid var(--color-accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.25rem; color: var(--color-text); }
54
+ .section-title { text-align: center; margin-bottom: 1rem; position: relative; }
55
+ .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--gradient-warm); margin: 1rem auto 0; border-radius: 2px; }
56
+ .section-subtitle { text-align: center; color: var(--color-text-muted); font-size: 1.125rem; margin-bottom: 3rem; }
57
+ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
58
+ @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
59
+ .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
60
+ .fade-in-up.visible { opacity: 1; transform: translateY(0); }
61
+ .main-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(26, 24, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; }
62
+ .main-nav .container { display: flex; justify-content: space-between; align-items: center; }
63
+ .nav-brand { color: white; font-size: 1.25rem; font-weight: 600; text-decoration: none; }
64
+ .nav-links { display: flex; gap: 2rem; }
65
+ .nav-links a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s ease; }
66
+ .nav-links a:hover { color: var(--color-accent); }
67
+ .footer { padding: 3rem 0; background: var(--color-bg-dark); text-align: center; }
68
+ .footer-text { color: white; font-size: 1.125rem; margin-bottom: 0.5rem; }
69
+ .footer-subtext { color: var(--color-text-muted); font-size: 0.875rem; margin: 0; }
70
+ .page-header { padding: 8rem 0 4rem; background: var(--color-bg-dark); text-align: center; }
71
+ .page-header h1 { color: white; margin-bottom: 0.5rem; }
72
+ .page-header p { color: var(--color-text-muted); font-size: 1.125rem; margin: 0; }
73
+ .status-section { padding: var(--section-padding) 0; background: var(--color-bg); }
74
+ .status-overview { max-width: 600px; margin: 0 auto 4rem; }
75
+ .status-card { background: var(--color-bg-alt); border-radius: 20px; padding: 2rem; text-align: center; }
76
+ .status-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
77
+ .status-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
78
+ .status-badge.in-progress { background: rgba(232, 93, 59, 0.15); color: var(--color-accent); }
79
+ .status-badge.complete { background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
80
+ .status-details { text-align: left; }
81
+ .status-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
82
+ .status-row:last-child { border-bottom: none; }
83
+ .status-row span:first-child { color: var(--color-text-muted); }
84
+ .status-row span:last-child { font-weight: 500; }
85
+ .metrics-section { max-width: 900px; margin: 0 auto 4rem; }
86
+ .metrics-section h3 { text-align: center; margin-bottom: 2rem; }
87
+ .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
88
+ .metric-card { background: var(--color-bg-alt); border-radius: 12px; padding: 1.5rem; text-align: center; }
89
+ .metric-value { font-size: 2rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.25rem; }
90
+ .metric-label { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
91
+ .features-section { max-width: 700px; margin: 0 auto 4rem; }
92
+ .features-section h3 { text-align: center; margin-bottom: 1.5rem; }
93
+ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
94
+ .feature-toggle { background: var(--color-bg-alt); border-radius: 12px; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; border: 2px solid transparent; }
95
+ .feature-toggle.enabled { border-color: rgba(80, 200, 120, 0.3); }
96
+ .feature-toggle.disabled { opacity: 0.6; }
97
+ .feature-name { font-weight: 500; color: var(--color-text); }
98
+ .feature-status { font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 50px; background: rgba(80, 200, 120, 0.15); color: var(--color-success); }
99
+ .feature-toggle.disabled .feature-status { background: rgba(154, 148, 141, 0.15); color: var(--color-text-muted); }
100
+ .availability-section { max-width: 600px; margin: 0 auto; text-align: center; }
101
+ .availability-section h3 { margin-bottom: 1rem; }
102
+ .availability-section p { color: var(--color-text-light); margin-bottom: 1.5rem; }
103
+ .availability-link { display: inline-block; background: var(--color-accent); color: white; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 500; text-decoration: none; }
104
+ .availability-link:hover { background: var(--color-accent-dark); color: white; }
105
+ .disclaimer-text { text-align: center; color: var(--color-text-muted); font-size: 0.875rem; font-style: italic; margin-top: 1rem; margin-bottom: 0; }
106
+ @media (max-width: 768px) { :root { --section-padding: 60px; } }
107
+ </style>
108
+ </head>
109
+ <body>
110
+ <nav class="main-nav">
111
+ <div class="container">
112
+ <a href="index.html" class="nav-brand">FMN-GPT</a>
113
+ <div class="nav-links">
114
+ <a href="blog.html">Blog</a>
115
+ <a href="status.html">Model Status</a>
116
+ <a href="https://huggingface.co/CompactAI" target="_blank">HuggingFace</a>
117
+ </div>
118
+ </div>
119
+ </nav>
120
+
121
+ <main>
122
+ <section class="page-header">
123
+ <div class="container">
124
+ <h1>Model Status</h1>
125
+ <p>Current model availability and specifications</p>
126
+ </div>
127
+ </section>
128
+
129
+ <section class="status-section">
130
+ <div class="container">
131
+ <div class="status-overview">
132
+ <div class="status-card">
133
+ <h3>FMN-GPT Unified</h3>
134
+ <div class="status-badge in-progress">In Development</div>
135
+ <div class="status-details">
136
+ <div class="status-row">
137
+ <span>Vocab Size</span>
138
+ <span>491</span>
139
+ </div>
140
+ <div class="status-row">
141
+ <span>Architecture</span>
142
+ <span>FMN Transformer</span>
143
+ </div>
144
+ <div class="status-row">
145
+ <span>Tokenization</span>
146
+ <span>Character-level</span>
147
+ </div>
148
+ <div class="status-row">
149
+ <span>Availability</span>
150
+ <span>Coming Soon</span>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <div class="metrics-section">
157
+ <h3>Model Specifications (Subject to Change)</h3>
158
+ <div class="metrics-grid">
159
+ <div class="metric-card">
160
+ <div class="metric-value">112</div>
161
+ <div class="metric-label">Model Dimension</div>
162
+ </div>
163
+ <div class="metric-card">
164
+ <div class="metric-value">6</div>
165
+ <div class="metric-label">Layers</div>
166
+ </div>
167
+ <div class="metric-card">
168
+ <div class="metric-value">4</div>
169
+ <div class="metric-label">Attention Heads</div>
170
+ </div>
171
+ <div class="metric-card">
172
+ <div class="metric-value">65K</div>
173
+ <div class="metric-label">Context Length</div>
174
+ </div>
175
+ <div class="metric-card">
176
+ <div class="metric-value">40</div>
177
+ <div class="metric-label">FMN Rank</div>
178
+ </div>
179
+ <div class="metric-card">
180
+ <div class="metric-value">120</div>
181
+ <div class="metric-label">Max Loops/Neuron</div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <div class="features-section">
187
+ <h3>Feature Flags</h3>
188
+ <div class="features-grid">
189
+ <div class="feature-toggle enabled">
190
+ <span class="feature-name">Dynamic Routing</span>
191
+ <span class="feature-status">REINFORCE based</span>
192
+ </div>
193
+ <div class="feature-toggle enabled">
194
+ <span class="feature-name">QK Normalization</span>
195
+ <span class="feature-status">Enabled</span>
196
+ </div>
197
+ <div class="feature-toggle enabled">
198
+ <span class="feature-name">Gated Residuals</span>
199
+ <span class="feature-status">Enabled</span>
200
+ </div>
201
+ <div class="feature-toggle enabled">
202
+ <span class="feature-name">Recurrent Mixer</span>
203
+ <span class="feature-status">Enabled</span>
204
+ </div>
205
+ <div class="feature-toggle disabled">
206
+ <span class="feature-name">SwiGLU FFN</span>
207
+ <span class="feature-status">Disabled</span>
208
+ </div>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="availability-section">
213
+ <h3>Model Availability</h3>
214
+ <p>Model weights will be released on HuggingFace once development is complete. Everything here is subject to change.</p>
215
+ <a href="https://huggingface.co/CompactAI" target="_blank" class="availability-link">View CompactAI on HuggingFace</a>
216
+ </div>
217
+ </div>
218
+ </section>
219
+ </main>
220
+
221
+ <footer class="footer">
222
+ <div class="container">
223
+ <div class="footer-content">
224
+ <p class="footer-text">Built with curiosity over compute.</p>
225
+ <p class="footer-subtext">FMN-GPT by <a href="https://huggingface.co/CompactAI" target="_blank">CompactAI</a> - 2026</p>
226
+ </div>
227
+ </div>
228
+ </footer>
229
+ </body>
230
+ </html>