-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
282 lines (275 loc) · 10.3 KB
/
index.html
File metadata and controls
282 lines (275 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SENTINEL</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--black: #0a0a0a;
--white: #f0f0f0;
--grey: #888;
--accent: #ff3333;
--wolf: #ff6600;
--dim: #333;
--dark: #111;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--black);
color: var(--white);
font-family: 'Space Mono', monospace;
line-height: 1.6;
text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.nav {
position: fixed;
top: 0; left: 0; right: 0;
background: rgba(10,10,10,0.9);
backdrop-filter: blur(6px);
border-bottom: 1px solid var(--dim);
z-index: 1000;
}
.nav .inner {
max-width: 1100px;
margin: 0 auto;
padding: 16px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.brand {
font-family: 'Syne', sans-serif;
font-size: 1.05rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.nav-links { display: flex; gap: 14px; align-items: center; }
.nav-links a { padding: 8px 10px; border-radius: 8px; transition: background 0.2s ease, color 0.2s ease; color: var(--grey); }
.nav-links a:hover, .nav-links a:focus { background: var(--dark); color: var(--white); }
.menu-toggle {
display: none;
background: var(--dark);
color: var(--white);
border: 1px solid var(--dim);
border-radius: 8px;
padding: 8px 10px;
font-family: 'Space Mono', monospace;
}
main { padding: 120px 20px 80px; max-width: 1100px; margin: 0 auto; }
.hero {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
align-items: center;
margin-bottom: 48px;
}
.hero h1 {
font-family: 'Syne', sans-serif;
font-size: clamp(2.4rem, 4vw, 3.4rem);
margin: 0 0 12px;
letter-spacing: -0.02em;
}
.tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border: 1px solid var(--dim);
border-radius: 999px;
background: var(--dark);
color: var(--grey);
font-size: 0.9rem;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.btn {
padding: 12px 16px;
border-radius: 10px;
border: 1px solid var(--accent);
background: var(--accent);
color: var(--black);
font-weight: 700;
letter-spacing: 0.02em;
transition: transform 0.15s ease, box-shadow 0.15s ease;
font-family: 'Syne', sans-serif;
}
.btn.secondary {
background: transparent;
color: var(--white);
border-color: var(--dim);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,51,51,0.2); }
.pill { color: var(--wolf); }
.section { margin: 48px 0; border: 1px solid var(--dim); border-radius: 16px; padding: 24px; background: var(--dark); }
.section h2 {
font-family: 'Syne', sans-serif;
margin: 0 0 12px;
font-size: 1.6rem;
letter-spacing: -0.01em;
}
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
padding: 18px;
border: 1px solid var(--dim);
border-radius: 12px;
background: linear-gradient(145deg, #0c0c0c, #0e0e0e);
min-height: 140px;
}
.card h3 { font-family: 'Syne', sans-serif; margin: 0 0 10px; font-size: 1.2rem; }
.meta { color: var(--grey); font-size: 0.95rem; }
.list { padding-left: 18px; color: var(--white); }
footer { margin-top: 60px; padding: 20px 0 10px; color: var(--grey); font-size: 0.95rem; }
.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 760px) {
.nav .inner { align-items: flex-start; }
.menu-toggle { display: inline-flex; }
.nav-links {
position: absolute;
top: 62px; left: 0; right: 0;
flex-direction: column;
padding: 12px 20px;
background: var(--dark);
border-top: 1px solid var(--dim);
display: none;
}
.nav-links.open { display: flex; }
main { padding-top: 120px; }
}
</style>
</head>
<body>
<header class="nav">
<div class="inner">
<div class="brand">SENTINEL</div>
<button class="menu-toggle" aria-label="Toggle navigation">Menu</button>
<nav class="nav-links" aria-label="Primary">
<a href="index.html">Home</a>
<a href="manifesto.html">Manifesto</a>
<a href="wolf.html">CORD</a>
<a href="architecture.html">Architecture</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero fade" style="text-align:center; justify-items:center;">
<div style="max-width:720px; margin: 0 auto;">
<p class="tag" style="margin-left:auto;margin-right:auto;justify-content:center;">SENTINEL</p>
<h1 style="margin-top:8px;margin-bottom:16px;">Observe → Decide → Improve</h1>
<p class="tag" style="margin: 16px auto 8px; justify-content:center;">Core / CORD</p>
<h2 style="font-size:1.6rem; margin-top:8px;margin-bottom:24px;">Verify → Contain → Enforce</h2>
<p style="margin:0; color: var(--grey); line-height:1.6;">
Intelligence without control is dangerous.<br>
Control without intelligence is useless.<br>
We built both.
</p>
</div>
</section>
<section class="section fade">
<h2 style="text-align:center;">How it works</h2>
<div class="grid" style="grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));">
<div class="card" style="border:1px solid var(--dim); box-shadow: 0 10px 30px rgba(255,51,51,0.05);">
<h3>SENTINEL (Partner Loop)</h3>
<p class="meta">Observe → Assess → Decide → Plan → Request → Act → Measure → Learn</p>
<ul class="list">
<li>Observes only what you authorize.</li>
<li>Picks the highest-value next move for your goals.</li>
<li>Measures outcomes and adapts to you over time.</li>
</ul>
</div>
<div class="card" style="border:1px solid var(--dim); box-shadow: 0 10px 30px rgba(255,51,51,0.05);">
<h3>Core / CORD (Protection Loop)</h3>
<p class="meta">Normalize → Authenticate → Scope Check → Intent Match → Risk Score → Decision → Instrument → Audit → Watch</p>
<p class="meta">Decision outcomes: ALLOW / CHALLENGE / CONTAIN / BLOCK</p>
<ul class="list">
<li>No outbound network without explicit allowlist.</li>
<li>No credentials/keychain access without explicit approval.</li>
<li>No destructive actions without confirmation + preview.</li>
<li>Intent mismatch = BLOCK.</li>
</ul>
</div>
</div>
</section>
<section class="section fade">
<h2>Why SENTINEL</h2>
<div class="grid">
<div class="card">
<h3>Persistent Watch</h3>
<p class="meta">Always-on perception tuned for signal-to-noise dominance.</p>
</div>
<div class="card">
<h3>Aligned Autonomy</h3>
<p class="meta">Bounded decision loops that obey intent, policy, and ethics.</p>
</div>
<div class="card">
<h3>Interpretable Moves</h3>
<p class="meta">Every action paired with rationale, evidence, and rollback.</p>
</div>
<div class="card">
<h3>Tempo & Precision</h3>
<p class="meta">Microsecond sensing, millisecond routing, human-speed comprehension.</p>
</div>
</div>
</section>
<section class="section fade">
<h2>Principles</h2>
<div class="grid">
<div class="card">
<h3>Reliability First</h3>
<p class="meta">Redundant pathways and deterministic fallbacks keep state stable.</p>
</div>
<div class="card">
<h3>Security Native</h3>
<p class="meta">Identity, audit, and least privilege are default—not bolted on.</p>
</div>
<div class="card">
<h3>Human-Centric</h3>
<p class="meta">Interfaces explain, invite correction, and defer to human direction.</p>
</div>
</div>
<p class="meta" style="margin-top:12px;">SENTINEL can act — not just advise — through a user-approved OS permission model.</p>
<div class="cta-row" style="margin-top:18px;">
<a class="btn" href="wolf.html">Visit CORD</a>
<a class="btn secondary" href="contact.html">Engage</a>
</div>
</section>
<section class="section fade">
<h2>Algorithms</h2>
<div class="grid">
<div class="card">
<h3>SENTINEL Partner Loop</h3>
<p class="meta">Observe → Assess → Decide → Plan → Request → Act → Measure → Learn</p>
</div>
<div class="card">
<h3>Core/CORD Protector Loop</h3>
<p class="meta">Normalize → Authenticate → Scope Check → Intent Match → Risk Score → Decision → Instrument → Audit → Watch</p>
<p class="meta">Outcomes: ALLOW / CHALLENGE / CONTAIN / BLOCK</p>
</div>
</div>
</section>
<footer class="fade">
Built for persistence. SENTINEL v1.</footer>
</main>
<script>
(() => {
const navLinks = document.querySelector('.nav-links');
const toggle = document.querySelector('.menu-toggle');
if (toggle && navLinks) {
toggle.addEventListener('click', () => navLinks.classList.toggle('open'));
navLinks.querySelectorAll('a').forEach(link => link.addEventListener('click', () => navLinks.classList.remove('open')));
}
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.15 });
document.querySelectorAll('.fade').forEach(el => observer.observe(el));
})();
</script>
</body>
</html>