|
22 | 22 | <link rel="canonical" href="https://samuele95.github.io/neos/"> |
23 | 23 | <meta name="author" content="Samuele Stronati"> |
24 | 24 | <meta name="theme-color" content="#07070c"> |
| 25 | +<link rel="preconnect" href="https://fonts.googleapis.com"> |
| 26 | +<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 27 | +<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Outfit:wght@600;700;800&display=swap" rel="stylesheet"> |
25 | 28 | <script type="application/ld+json"> |
26 | 29 | { |
27 | 30 | "@context": "https://schema.org", |
|
36 | 39 | } |
37 | 40 | } |
38 | 41 | </script> |
39 | | -<meta http-equiv="refresh" content="0;url=NEOS-BREAKTHROUGH.html"> |
40 | | -<script>window.location.replace("NEOS-BREAKTHROUGH.html");</script> |
| 42 | +<style> |
| 43 | +:root { |
| 44 | + --bg: #07070c; |
| 45 | + --bg2: #0c0c14; |
| 46 | + --text: #e8e8ed; |
| 47 | + --text-dim: #8888a0; |
| 48 | + --cyan: #00d4ff; |
| 49 | + --purple: #7b61ff; |
| 50 | + --pink: #ff3d8e; |
| 51 | + --green: #00ff88; |
| 52 | + --gold: #ffd700; |
| 53 | + --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Helvetica, sans-serif; |
| 54 | + --font-display: "Outfit", system-ui, sans-serif; |
| 55 | + --mono: "JetBrains Mono", "SF Mono", "Fira Code", Consolas, monospace; |
| 56 | +} |
| 57 | +*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |
| 58 | +html { scroll-behavior: smooth; } |
| 59 | +body { |
| 60 | + font-family: var(--font); |
| 61 | + background: var(--bg); |
| 62 | + color: var(--text); |
| 63 | + min-height: 100vh; |
| 64 | + display: flex; |
| 65 | + flex-direction: column; |
| 66 | + align-items: center; |
| 67 | + justify-content: center; |
| 68 | + padding: 2rem; |
| 69 | + text-align: center; |
| 70 | +} |
| 71 | +a { color: inherit; text-decoration: none; } |
| 72 | + |
| 73 | +.hero { max-width: 720px; } |
| 74 | +.hero-label { |
| 75 | + font-family: var(--mono); |
| 76 | + font-size: 0.8rem; |
| 77 | + color: var(--cyan); |
| 78 | + letter-spacing: 0.2em; |
| 79 | + text-transform: uppercase; |
| 80 | + margin-bottom: 1rem; |
| 81 | + opacity: 0.8; |
| 82 | +} |
| 83 | +.hero-title { |
| 84 | + font-family: var(--font-display); |
| 85 | + font-size: clamp(3rem, 10vw, 6rem); |
| 86 | + font-weight: 800; |
| 87 | + letter-spacing: -0.02em; |
| 88 | + background: linear-gradient(135deg, var(--cyan), var(--purple)); |
| 89 | + -webkit-background-clip: text; |
| 90 | + -webkit-text-fill-color: transparent; |
| 91 | + background-clip: text; |
| 92 | + margin-bottom: 0.5rem; |
| 93 | +} |
| 94 | +.hero-subtitle { |
| 95 | + font-family: var(--font-display); |
| 96 | + font-size: 1.1rem; |
| 97 | + color: var(--text-dim); |
| 98 | + letter-spacing: 0.1em; |
| 99 | + margin-bottom: 1.5rem; |
| 100 | +} |
| 101 | +.hero-tagline { |
| 102 | + font-size: 1.2rem; |
| 103 | + font-style: italic; |
| 104 | + color: var(--text); |
| 105 | + margin-bottom: 2.5rem; |
| 106 | + line-height: 1.6; |
| 107 | +} |
| 108 | +.hero-tagline em { |
| 109 | + font-style: normal; |
| 110 | + color: #fff; |
| 111 | + font-weight: 700; |
| 112 | +} |
| 113 | + |
| 114 | +.cta-group { |
| 115 | + display: flex; |
| 116 | + flex-wrap: wrap; |
| 117 | + gap: 1rem; |
| 118 | + justify-content: center; |
| 119 | + margin-bottom: 2.5rem; |
| 120 | +} |
| 121 | +.cta-btn { |
| 122 | + display: inline-flex; |
| 123 | + align-items: center; |
| 124 | + gap: 0.5rem; |
| 125 | + padding: 0.75rem 1.5rem; |
| 126 | + border-radius: 8px; |
| 127 | + font-size: 0.95rem; |
| 128 | + font-weight: 600; |
| 129 | + transition: all 0.2s; |
| 130 | + border: 1.5px solid; |
| 131 | +} |
| 132 | +.cta-btn.primary { |
| 133 | + background: linear-gradient(135deg, var(--cyan), var(--purple)); |
| 134 | + border-color: transparent; |
| 135 | + color: #fff; |
| 136 | +} |
| 137 | +.cta-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); } |
| 138 | +.cta-btn.secondary { border-color: var(--cyan); color: var(--cyan); } |
| 139 | +.cta-btn.secondary:hover { background: rgba(0,212,255,0.08); } |
| 140 | +.cta-btn.tertiary { border-color: var(--pink); color: var(--pink); } |
| 141 | +.cta-btn.tertiary:hover { background: rgba(255,61,142,0.08); } |
| 142 | +.cta-btn.paper { border-color: var(--gold); color: var(--gold); } |
| 143 | +.cta-btn.paper:hover { background: rgba(255,215,0,0.08); } |
| 144 | + |
| 145 | +.quickstart { |
| 146 | + background: var(--bg2); |
| 147 | + border: 1px solid rgba(255,255,255,0.06); |
| 148 | + border-radius: 12px; |
| 149 | + padding: 1.5rem 2rem; |
| 150 | + margin-bottom: 2rem; |
| 151 | + max-width: 600px; |
| 152 | +} |
| 153 | +.quickstart-label { |
| 154 | + font-size: 0.75rem; |
| 155 | + color: var(--text-dim); |
| 156 | + letter-spacing: 0.1em; |
| 157 | + text-transform: uppercase; |
| 158 | + margin-bottom: 0.75rem; |
| 159 | +} |
| 160 | +.quickstart-code { |
| 161 | + font-family: var(--mono); |
| 162 | + font-size: 0.9rem; |
| 163 | + color: var(--cyan); |
| 164 | + word-break: break-all; |
| 165 | +} |
| 166 | +.quickstart-code span { color: var(--text-dim); } |
| 167 | + |
| 168 | +.star-widget { margin-bottom: 2rem; } |
| 169 | + |
| 170 | +.footer-line { |
| 171 | + height: 2px; |
| 172 | + width: 200px; |
| 173 | + background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent); |
| 174 | + border: none; |
| 175 | + border-radius: 1px; |
| 176 | + margin-bottom: 1rem; |
| 177 | +} |
| 178 | +.footer-text { |
| 179 | + font-size: 0.75rem; |
| 180 | + color: rgba(136,136,160,0.6); |
| 181 | +} |
| 182 | +</style> |
41 | 183 | </head> |
42 | | -<body style="font-family:system-ui,sans-serif;background:#07070c;color:#e8e8ed;display:flex;align-items:center;justify-content:center;min-height:100vh;margin:0"> |
43 | | -<p>Redirecting to <a href="NEOS-BREAKTHROUGH.html" style="color:#00d4ff">NEOS</a>…</p> |
| 184 | +<body> |
| 185 | + |
| 186 | +<div class="hero"> |
| 187 | + <p class="hero-label">Neural Field Operating System v1.0</p> |
| 188 | + <h1 class="hero-title">NEOS</h1> |
| 189 | + <p class="hero-subtitle">The Operating System for Machine Intelligence</p> |
| 190 | + <p class="hero-tagline">"The last operating system will not manage files.<br>It will manage <em>meaning</em>."</p> |
| 191 | + |
| 192 | + <div class="cta-group"> |
| 193 | + <a href="NEOS-BREAKTHROUGH.html" class="cta-btn primary">Explore the Website</a> |
| 194 | + <a href="neos-paper.pdf" class="cta-btn paper">Read the Paper</a> |
| 195 | + <a href="NEOS-PRESENTATION.html" class="cta-btn tertiary">View Presentation</a> |
| 196 | + <a href="https://github.com/Samuele95/neos" class="cta-btn secondary" target="_blank" rel="noopener">GitHub</a> |
| 197 | + </div> |
| 198 | + |
| 199 | + <div class="quickstart"> |
| 200 | + <p class="quickstart-label">Quick Start</p> |
| 201 | + <p class="quickstart-code"> |
| 202 | + <span>$</span> claude --prompt "Load nfos bootloader from prompts/nfos-kernel.md" |
| 203 | + </p> |
| 204 | + </div> |
| 205 | + |
| 206 | + <div class="star-widget"> |
| 207 | + <iframe src="https://ghbtns.com/github-btn.html?user=Samuele95&repo=neos&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub Stars"></iframe> |
| 208 | + </div> |
| 209 | + |
| 210 | + <hr class="footer-line"> |
| 211 | + <p class="footer-text">© 2025–2026 Samuele Stronati. MIT License.</p> |
| 212 | +</div> |
| 213 | + |
44 | 214 | </body> |
45 | 215 | </html> |
0 commit comments