-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
118 lines (102 loc) · 5.08 KB
/
404.html
File metadata and controls
118 lines (102 loc) · 5.08 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="keywords"
content="OS for Autonomy, autonomous-first, autonomous business OS, AI-native, human-on-the-loop, autonomous agents, generative AI, topological control, swarm speed, Flockrush, Policy Mesh" />
<title>Page Not Found | Flockrush</title>
<meta name="description" content="404 - The page you are looking for was moved, removed, renamed, or might have never existed." />
<link rel="canonical" href="https://www.flockrush.com" />
<meta property="og:url" content="https://www.flockrush.com/404" />
<meta property="og:image" content="../assets/flockrush/flockrush-og.webp" />
<style>
:root {
--base-bg: #050505;
--content-bg: #0B0E14;
--accent-cyan: #00ced1;
--accent-dim: rgba(0, 206, 209, 0.1);
--text-primary: #EDEDED;
--text-secondary: #888888;
--font-display: "Courier New", Courier, monospace;
--font-body: "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--base-bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
/* HERO SECTION */
header {
/* Changed to dvh for mobile browsers */
min-height: 90dvh;
display: flex; flex-direction: column; justify-content: center; align-items: center;
text-align: center; background: radial-gradient(circle at 50% 30%, #1a2525 0%, #050505 70%);
position: relative;
padding: 2rem 0; /* Add padding to prevent cutoff on short screens */
}
header::before {
content: ""; position: absolute; width: 100%; height: 100%; top: 0; left: 0;
background-image: linear-gradient(var(--accent-dim) 1px, transparent 1px),
linear-gradient(90deg, var(--accent-dim) 1px, transparent 1px);
background-size: 50px 50px; opacity: 0.3; pointer-events: none;
}
h1 {
font-family: var(--font-display); font-size: 4.5rem; letter-spacing: -2px; line-height: 1.1; margin-bottom: 2rem;
position: relative; z-index: 2;
}
.cyan-text { color: var(--accent-cyan); text-shadow: 0 0 20px rgba(0, 206, 209, 0.4); }
/* Navigation Links */
.nav-stack { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; position: relative; z-index: 2; }
.back-link { color: #666; text-decoration: none; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 1px; }
.back-link:hover { color: var(--accent-cyan); }
.quote-box {
border-left: 4px solid var(--accent-cyan); padding-left: 3rem; margin: 4rem 0;
text-align: left; position: relative; z-index: 2;
}
.quote-text { font-size: 2rem; font-family: var(--font-display); line-height: 1.4; color: #fff; }
footer { padding: 4rem 0; text-align: center; border-top: 1px solid #222; color: #444; font-family: var(--font-display); font-size: 0.9rem; }
/* MOBILE FIXES */
@media (max-width: 768px) {
h1 { font-size: 2.5rem; } /* Smaller font for mobile */
.quote-box {
padding-left: 1.5rem; /* Reduce huge left padding */
margin: 2rem 0;
border-left-width: 2px;
}
.quote-text { font-size: 1.4rem; } /* Readable quote size */
.container { padding: 0 1.5rem; } /* Reduce side padding to give content more room */
}
</style>
</head>
<body>
<header>
<div class="container">
<span style="font-family:var(--font-display); color:var(--text-secondary); text-transform:uppercase; letter-spacing:2px; margin-bottom:1.5rem; display:block;">
Est. in AI 2018 // Toronto • Luxembourg
</span>
<h1>
We are<br>
<span class="cyan-text">Flockrush.</span>
</h1>
<div class="quote-box">
<p class="quote-text">
The page you are looking for was moved, removed, renamed, or might have never <span class="cyan-text">existed</span>.
</p>
</div>
<div class="nav-stack">
<a href="./grid/index.html" class="back-link">< RETURN TO GRID</a>
<a href="index.html" class="back-link">< RETURN TO FLOCKRUSH</a>
</div>
</div>
</header>
<footer>
<div class="container">
<p>
OS for Autonomy®<br>
Flockrush: Governing the Autonomous Enterprise.<br>
© 2025 Flockrush. Based in Toronto & Luxembourg.
</p>
</div>
</footer>
</body>
</html>