-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (171 loc) · 5 KB
/
index.html
File metadata and controls
191 lines (171 loc) · 5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plasmate Labs</title>
<meta name="description" content="Plasmate Labs. Research-driven AI infrastructure.">
<meta name="robots" content="index, follow">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0a0a0b;
--surface: #111113;
--border: #1e1e22;
--text: #e8e6e3;
--muted: #6b6966;
--accent: #E8853A;
--accent-dim: rgba(232, 133, 58, 0.08);
}
html, body { height: 100%; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Space Grotesk', system-ui, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
overflow: hidden;
}
/* Subtle grid background */
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(232, 133, 58, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(232, 133, 58, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
0%, 100% { opacity: 0.4; }
50% { opacity: 1; }
}
/* Floating orb */
.orb {
position: fixed;
width: 500px;
height: 500px;
border-radius: 50%;
background: radial-gradient(circle, rgba(232, 133, 58, 0.06) 0%, transparent 70%);
filter: blur(80px);
pointer-events: none;
animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
33% { transform: translate(-40%, -60%) scale(1.1); }
66% { transform: translate(-60%, -40%) scale(0.9); }
}
.orb-1 { top: 30%; left: 50%; }
.orb-2 {
top: 60%; left: 60%;
width: 300px; height: 300px;
background: radial-gradient(circle, rgba(61, 143, 212, 0.04) 0%, transparent 70%);
animation-delay: -4s;
animation-duration: 15s;
}
.content {
position: relative;
z-index: 1;
text-align: center;
padding: 2rem;
}
.wordmark {
font-size: clamp(2rem, 6vw, 3.5rem);
font-weight: 300;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text);
margin-bottom: 1.5rem;
opacity: 0;
animation: fadeUp 1.2s ease forwards 0.3s;
}
.wordmark span {
font-weight: 500;
color: var(--accent);
}
.tagline {
font-size: clamp(0.8rem, 1.5vw, 0.95rem);
color: var(--muted);
letter-spacing: 0.25em;
text-transform: uppercase;
margin-bottom: 3rem;
opacity: 0;
animation: fadeUp 1.2s ease forwards 0.6s;
}
.line {
width: 40px;
height: 1px;
background: var(--accent);
margin: 0 auto 3rem;
opacity: 0;
animation: fadeUp 1.2s ease forwards 0.9s;
}
.links {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1.2s ease forwards 1.2s;
}
.links a {
color: var(--muted);
text-decoration: none;
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.5rem 0;
border-bottom: 1px solid transparent;
transition: all 0.3s ease;
}
.links a:hover {
color: var(--accent);
border-bottom-color: var(--accent);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Scan line effect */
.scanline {
position: fixed;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
opacity: 0.15;
animation: scan 6s linear infinite;
pointer-events: none;
}
@keyframes scan {
from { top: -2px; }
to { top: 100vh; }
}
</style>
<link rel="alternate" type="application/som+json" href="/.well-known/som.json" title="SOM (Plasmate)" />
</head>
<body>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="scanline"></div>
<div class="content">
<h1 class="wordmark">Plasmate <span>Labs</span></h1>
<p class="tagline">Research-driven AI infrastructure</p>
<div class="line"></div>
<nav class="links">
<a href="https://plasmate.app">Plasmate</a>
<a href="https://docs.plasmate.app">Docs</a>
<a href="https://github.com/plasmate-labs">GitHub</a>
</nav>
</div>
</body>
</html>