-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
463 lines (399 loc) · 11 KB
/
index.html
File metadata and controls
463 lines (399 loc) · 11 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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pineworks.dev — The Experimental Arm of Pine Works</title>
<meta name="description" content="Pineworks.dev is the skunk works division of Pineworks.co. Experimental projects, R&D, and new ideas.">
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #0a0a0a;
--surface: #141414;
--text: #f0f0f0;
--text-muted: #888888;
--accent: #4ade80;
--accent-glow: rgba(74, 222, 128, 0.15);
--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
--font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", Menlo, Courier, monospace;
}
html {
font-size: 16px;
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
a {
color: var(--accent);
text-decoration: none;
transition: opacity 0.2s ease;
}
a:hover {
opacity: 0.8;
}
/* --- Nav --- */
nav {
padding: 2rem 2rem 0;
opacity: 0;
animation: fadeIn 0.8s ease forwards;
}
.wordmark {
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 600;
color: var(--text);
letter-spacing: -0.02em;
}
.wordmark .dot-dev {
color: var(--accent);
}
/* --- Hero --- */
.hero {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 2rem 4rem;
position: relative;
}
.hero-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -55%);
width: 600px;
height: 400px;
background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
pointer-events: none;
animation: glowPulse 4s ease-in-out infinite;
}
.pine-icon {
position: relative;
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeInUp 0.8s ease 0.2s forwards;
}
.carets {
font-family: var(--font-mono);
font-size: 1.5rem;
line-height: 1.2;
color: var(--accent);
text-align: center;
display: block;
letter-spacing: 0.15em;
}
.carets div {
text-shadow: 0 0 20px var(--accent-glow);
animation: caretGlow 3s ease-in-out infinite;
}
.carets div:nth-child(1) { animation-delay: 0s; }
.carets div:nth-child(2) { animation-delay: 0.3s; }
.carets div:nth-child(3) { animation-delay: 0.6s; }
h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.03em;
max-width: 640px;
position: relative;
opacity: 0;
animation: fadeInUp 0.8s ease 0.35s forwards;
}
h1 .highlight {
color: var(--accent);
font-family: var(--font-mono);
font-weight: 600;
}
.description {
margin-top: 1.5rem;
font-size: 1.125rem;
line-height: 1.6;
color: var(--text-muted);
max-width: 480px;
position: relative;
opacity: 0;
animation: fadeInUp 0.8s ease 0.5s forwards;
}
/* --- CTA --- */
.cta {
margin-top: 3rem;
position: relative;
opacity: 0;
animation: fadeInUp 0.8s ease 0.65s forwards;
}
.cta-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-mono);
font-size: 0.9375rem;
color: var(--accent);
padding: 0.75rem 1.75rem;
border: 1px solid rgba(74, 222, 128, 0.3);
border-radius: 6px;
background: rgba(74, 222, 128, 0.05);
transition: all 0.25s ease;
}
.cta-link:hover {
opacity: 1;
background: rgba(74, 222, 128, 0.1);
border-color: rgba(74, 222, 128, 0.5);
box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}
.cta-link svg {
width: 16px;
height: 16px;
transition: transform 0.25s ease;
}
.cta-link:hover svg {
transform: translateX(3px);
}
/* --- Projects --- */
.projects {
padding: 2rem 2rem 6rem;
max-width: 640px;
margin: 0 auto;
width: 100%;
opacity: 0;
animation: fadeInUp 0.8s ease 0.8s forwards;
}
.projects-label {
font-family: var(--font-mono);
font-size: 0.75rem;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1.5rem;
}
.project {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
background: var(--surface);
transition: all 0.25s ease;
}
.project + .project {
margin-top: 0.75rem;
}
.project:hover {
opacity: 1;
border-color: rgba(74, 222, 128, 0.25);
background: rgba(74, 222, 128, 0.03);
}
.project-body {
flex: 1;
min-width: 0;
}
.project-header {
display: flex;
align-items: baseline;
gap: 0.75rem;
}
.project-name {
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 600;
color: var(--text);
}
.project-url {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--accent);
opacity: 0.7;
}
.project-desc {
margin-top: 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
color: var(--text-muted);
}
.project-arrow {
flex-shrink: 0;
width: 16px;
height: 16px;
color: var(--text-muted);
transition: all 0.25s ease;
}
.project:hover .project-arrow {
color: var(--accent);
transform: translateX(3px);
}
.project-mystery {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 1.5rem;
border: 1px dashed rgba(255, 255, 255, 0.08);
border-radius: 8px;
margin-top: 0.75rem;
color: var(--text-muted);
font-family: var(--font-mono);
font-size: 0.875rem;
letter-spacing: 0.05em;
overflow: hidden;
}
.project-mystery .dot {
display: inline-block;
color: var(--accent);
animation: mysteryPulse 2s ease-in-out infinite;
}
/* --- Footer --- */
footer {
padding: 2rem;
text-align: center;
font-size: 0.8125rem;
color: var(--text-muted);
opacity: 0;
animation: fadeIn 0.8s ease 0.95s forwards;
}
footer span {
margin: 0 0.25rem;
opacity: 0.4;
}
/* --- Animations --- */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes caretGlow {
0%, 100% {
opacity: 0.4;
text-shadow: 0 0 10px var(--accent-glow);
}
50% {
opacity: 1;
text-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent-glow);
}
}
@keyframes mysteryPulse {
0%, 100% { opacity: 0.2; }
50% { opacity: 1; }
}
@keyframes glowPulse {
0%, 100% { opacity: 0.5; transform: translate(-50%, -55%) scale(1); }
50% { opacity: 1; transform: translate(-50%, -55%) scale(1.05); }
}
/* --- Responsive --- */
@media (max-width: 640px) {
nav {
padding: 1.5rem 1.5rem 0;
}
.hero {
padding: 4rem 1.5rem 3rem;
}
.hero-glow {
width: 350px;
height: 250px;
}
.carets {
font-size: 1.25rem;
}
.description {
font-size: 1rem;
}
.projects {
padding: 2rem 1.5rem 4rem;
}
.project-header {
flex-direction: column;
gap: 0.25rem;
}
footer {
padding: 1.5rem;
}
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
}
}
</style>
</head>
<body>
<nav>
<div class="wordmark">pineworks<span class="dot-dev">.dev</span></div>
</nav>
<main class="hero">
<div class="hero-glow" aria-hidden="true"></div>
<div class="pine-icon" aria-hidden="true">
<div class="carets">
<div>^</div>
<div>^^^</div>
<div>^^^^^</div>
</div>
</div>
<h1>The experimental arm of <span class="highlight">Pine Works</span>.</h1>
<p class="description">
R&D, prototypes, and new ideas. Pineworks.dev is where we build things that don't exist yet.
</p>
<div class="cta">
<a href="mailto:hello@pineworks.co" class="cta-link">
Get in touch
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 8h10M9 4l4 4-4 4"/>
</svg>
</a>
</div>
</main>
<section class="projects">
<div class="projects-label">Recent projects</div>
<a href="https://gaplens.pineworks.dev" class="project">
<div class="project-body">
<div class="project-header">
<div class="project-name">Gaplens</div>
<div class="project-url">gaplens.pineworks.dev</div>
</div>
<div class="project-desc">AI visibility auditor that finds the content gaps where AI systems cite your competitors instead of you.</div>
</div>
<svg class="project-arrow" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M3 8h10M9 4l4 4-4 4"/></svg>
</a>
<a href="https://runsheet.run" class="project">
<div class="project-body">
<div class="project-header">
<div class="project-name">Runsheet</div>
<div class="project-url">runsheet.run</div>
</div>
<div class="project-desc">Turn GPX routes into printable, pocket-sized turn-by-turn cue sheets for runners.</div>
</div>
<svg class="project-arrow" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M3 8h10M9 4l4 4-4 4"/></svg>
</a>
<div class="project-mystery">Something new is sprouting <span class="dot" style="animation-delay:0s">›</span><span class="dot" style="animation-delay:0.3s">›</span><span class="dot" style="animation-delay:0.6s">›</span></div>
</section>
<footer>
© 2026 Pineworks
<span>·</span>
<a href="https://pineworks.co">pineworks.co</a>
</footer>
</body>
</html>