-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
628 lines (580 loc) · 19.9 KB
/
Copy pathindex.html
File metadata and controls
628 lines (580 loc) · 19.9 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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#0a0f0d" />
<title>Cipher Pine — From signal to software.</title>
<meta name="description" content="Cipher Pine is a North Carolina studio building AI-native tools, apps, and games. Makers of QuotaPane, an open-source Claude and Codex quota monitor. Built with signal-grade discipline." />
<!-- Canonical -->
<link rel="canonical" href="https://cipherpine.com/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Cipher Pine" />
<meta property="og:title" content="Cipher Pine — From signal to software." />
<meta property="og:description" content="A North Carolina studio building AI-native tools, apps, and games. Makers of QuotaPane, an open-source Claude and Codex quota monitor." />
<meta property="og:url" content="https://cipherpine.com/" />
<meta property="og:image" content="https://cipherpine.com/assets/og-image.png" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@cipher_pine" />
<meta name="twitter:title" content="Cipher Pine — From signal to software." />
<meta name="twitter:description" content="A North Carolina studio building AI-native tools, apps, and games. Makers of QuotaPane." />
<meta name="twitter:image" content="https://cipherpine.com/assets/og-image.png" />
<!-- Favicon -->
<link rel="icon" href="assets/favicon.ico" sizes="any" />
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600;700&display=swap" />
<style>
/* ---------- design tokens ---------- */
:root {
--bg: #0a0f0d;
--bg-soft: #0d1411;
--surface: #131a16;
--elevated: #1a221d;
--border: #1f2a24;
--border-strong: #2a3a32;
--pine: #2d7a4f;
--pine-deep: #1e4d2b;
--pine-glow: rgba(45, 122, 79, 0.18);
--cardinal: #c41e3a;
--cardinal-soft: #e8253f;
--cardinal-glow: rgba(196, 30, 58, 0.22);
--ink: #e8eae8;
--ink-soft: #b8c0bb;
--ink-muted: #8a948e;
--ink-faint: #54605a;
--mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
--sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
--maxw: 1080px;
--pad-x: clamp(20px, 4vw, 48px);
}
/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
margin: 0;
font-family: var(--sans);
color: var(--ink);
background: var(--bg);
line-height: 1.55;
min-height: 100vh;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
/* subtle ambient background — grid lines + radial glow */
body::before {
content: '';
position: fixed;
inset: 0;
pointer-events: none;
background-image:
radial-gradient(ellipse at 50% -10%, var(--pine-glow), transparent 60%),
radial-gradient(ellipse at 90% 110%, var(--cardinal-glow), transparent 55%),
linear-gradient(var(--border) 1px, transparent 1px),
linear-gradient(90deg, var(--border) 1px, transparent 1px);
background-size: auto, auto, 60px 60px, 60px 60px;
mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
-webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
opacity: 0.55;
z-index: 0;
}
/* container */
.wrap {
max-width: var(--maxw);
margin: 0 auto;
padding-inline: var(--pad-x);
position: relative;
z-index: 1;
}
/* ---------- nav ---------- */
nav.site {
position: sticky;
top: 0;
z-index: 10;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
background: rgba(10, 15, 13, 0.65);
border-bottom: 1px solid var(--border);
}
nav.site .row {
display: flex;
align-items: center;
justify-content: space-between;
padding-block: 18px;
}
nav.site .mark {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--mono);
font-weight: 600;
font-size: 16px;
letter-spacing: 0.5px;
}
nav.site .mark .chev { color: var(--cardinal); }
nav.site .mark .name { color: var(--ink); }
nav.site .mark .cursor {
width: 8px; height: 16px;
background: var(--cardinal);
display: inline-block;
margin-left: 2px;
animation: blink 1.1s steps(2, start) infinite;
}
nav.site .links {
display: flex; gap: 28px;
font-family: var(--mono);
font-size: 13px;
color: var(--ink-muted);
}
nav.site .links a:hover { color: var(--ink); }
@media (max-width: 600px) {
nav.site .links { display: none; }
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* ---------- hero ---------- */
.hero {
padding-top: clamp(64px, 12vh, 140px);
padding-bottom: clamp(64px, 10vh, 120px);
}
.status {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 6px 12px;
border: 1px solid var(--border-strong);
border-radius: 999px;
background: var(--surface);
font-family: var(--mono);
font-size: 12px;
letter-spacing: 0.5px;
color: var(--ink-soft);
margin-bottom: 32px;
}
.status .dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--pine);
box-shadow: 0 0 0 0 var(--pine);
animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(45, 122, 79, 0.55); }
80% { box-shadow: 0 0 0 10px rgba(45, 122, 79, 0); }
100% { box-shadow: 0 0 0 0 rgba(45, 122, 79, 0); }
}
h1.wordmark {
font-family: var(--mono);
font-weight: 600;
font-size: clamp(40px, 9vw, 96px);
line-height: 1;
letter-spacing: 0.5px;
margin: 0 0 28px 0;
color: var(--ink);
}
h1.wordmark .chev { color: var(--cardinal); }
h1.wordmark .cursor {
display: inline-block;
width: 0.55ch;
background: var(--cardinal);
vertical-align: text-bottom;
height: 0.85em;
margin-left: 0.1ch;
animation: blink 1.1s steps(2, start) infinite;
}
.tagline {
font-family: var(--mono);
font-size: clamp(15px, 1.8vw, 18px);
color: var(--pine);
letter-spacing: 1.5px;
text-transform: uppercase;
margin: 0 0 28px 0;
}
.lead {
font-size: clamp(17px, 1.7vw, 20px);
color: var(--ink-soft);
max-width: 56ch;
margin: 0 0 40px 0;
}
.lead em { color: var(--ink); font-style: normal; font-weight: 500; }
.cta-row {
display: flex;
flex-wrap: wrap;
gap: 14px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 13px 22px;
border-radius: 8px;
font-family: var(--mono);
font-size: 14px;
font-weight: 500;
transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
border: 1px solid transparent;
}
.btn-primary {
background: var(--cardinal);
color: #fff;
border-color: var(--cardinal);
}
.btn-primary:hover { background: var(--cardinal-soft); transform: translateY(-1px); }
.btn-ghost {
background: transparent;
color: var(--ink);
border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); }
.btn .arr { transition: transform 0.15s ease; }
.btn:hover .arr { transform: translateX(3px); }
/* ---------- sections shared ---------- */
section.block {
padding-block: clamp(56px, 10vh, 110px);
border-top: 1px solid var(--border);
}
.eyebrow {
font-family: var(--mono);
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--cardinal);
margin: 0 0 16px 0;
}
h2.section-title {
font-family: var(--mono);
font-weight: 600;
font-size: clamp(26px, 3.6vw, 40px);
line-height: 1.15;
margin: 0 0 24px 0;
color: var(--ink);
}
.section-intro {
max-width: 60ch;
color: var(--ink-soft);
font-size: clamp(15px, 1.4vw, 17px);
margin: 0 0 48px 0;
}
/* ---------- what-we-build cards ---------- */
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
}
.card {
position: relative;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.card:hover {
border-color: var(--pine);
background: var(--elevated);
transform: translateY(-2px);
}
.card .marker {
font-family: var(--mono);
font-size: 12px;
color: var(--cardinal);
letter-spacing: 1.5px;
margin-bottom: 16px;
}
.card h3 {
font-family: var(--mono);
font-weight: 600;
font-size: 20px;
margin: 0 0 12px 0;
color: var(--ink);
}
.card p {
margin: 0;
color: var(--ink-soft);
font-size: 15px;
line-height: 1.6;
}
/* ---------- product / repo ---------- */
.specs {
list-style: none;
margin: 0 0 40px 0;
padding: 0;
display: grid;
gap: 16px;
max-width: 68ch;
}
.specs li {
color: var(--ink-soft);
font-size: 15px;
line-height: 1.6;
padding-left: 18px;
border-left: 1px solid var(--border-strong);
}
.specs .k {
display: block;
font-family: var(--mono);
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--pine);
margin-bottom: 5px;
}
.repo-meta {
font-family: var(--mono);
font-size: 13px;
color: var(--ink-muted);
margin: 28px 0 0 0;
word-break: break-word;
}
.repo-meta .chev { color: var(--cardinal); }
/* ---------- contact ---------- */
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 32px;
margin-bottom: 40px;
}
.contact-item .label {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--ink-muted);
margin-bottom: 8px;
}
.contact-item .value {
font-family: var(--mono);
font-size: 16px;
color: var(--ink);
}
.contact-item a.value:hover { color: var(--cardinal); }
/* ---------- footer ---------- */
footer.site {
border-top: 1px solid var(--border);
padding-block: 32px;
margin-top: 32px;
color: var(--ink-muted);
font-family: var(--mono);
font-size: 13px;
}
footer.site .row {
display: flex;
flex-wrap: wrap;
gap: 16px 32px;
justify-content: space-between;
align-items: center;
}
footer.site .meta { display: flex; gap: 18px; flex-wrap: wrap; }
footer.site .meta span { color: var(--ink-faint); }
footer.site .social {
display: flex;
gap: 18px;
}
footer.site .social a {
color: var(--ink-muted);
transition: color 0.15s ease;
}
footer.site .social a:hover { color: var(--cardinal); }
/* ---------- a11y / motion ---------- */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
}
}
/* selection */
::selection { background: var(--cardinal); color: #fff; }
/* skip link */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--cardinal); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
</style>
</head>
<body>
<a class="skip" href="#main">Skip to content</a>
<nav class="site" aria-label="Primary">
<div class="wrap row">
<a class="mark" href="/" aria-label="Cipher Pine home">
<span class="chev">></span><span class="name">cipher pine</span><span class="cursor" aria-hidden="true"></span>
</a>
<div class="links">
<a href="#quotapane">QuotaPane</a>
<a href="#what">What we build</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<main id="main">
<!-- HERO -->
<section class="hero">
<div class="wrap">
<div class="status" role="status">
<span class="dot" aria-hidden="true"></span>
<span>Operational · QuotaPane is live</span>
</div>
<h1 class="wordmark">
<span class="chev">></span> cipher pine<span class="cursor" aria-hidden="true"></span>
</h1>
<p class="tagline">From signal to software.</p>
<p class="lead">
Cipher Pine is a North Carolina studio building <em>AI‑native tools, apps, and games</em>.
Quiet operations. Disciplined builds. A trustworthy stack — from the dashboard
to the deploy pipeline.
</p>
<div class="cta-row">
<a class="btn btn-primary" href="#quotapane">
See QuotaPane <span class="arr" aria-hidden="true">→</span>
</a>
<a class="btn btn-ghost" href="#contact">
Get in touch
</a>
</div>
</div>
</section>
<!-- SHIPPING NOW -->
<section class="block" id="quotapane">
<div class="wrap">
<p class="eyebrow">// Shipping now</p>
<h2 class="section-title">QuotaPane</h2>
<p class="section-intro">
A small, always‑on‑top desktop window that shows how much of your Claude and
Codex subscription quota you have left — read locally, from your own credentials,
with no account to create and nothing phoned home.
</p>
<ul class="specs">
<li>
<span class="k">Trust boundary</span>
Exactly two modules ever touch a credential or the network — deliberately small
enough to read end to end in one sitting.
</li>
<li>
<span class="k">Egress</span>
Deny‑by‑default through a single chokepoint, with a compile‑time allowlist
of two hosts. Tests prove it on every push.
</li>
<li>
<span class="k">Telemetry</span>
None, of any kind, to anyone. No auto‑update and no update check — there is
no updater in the codebase at all.
</li>
<li>
<span class="k">Open source</span>
Written in Rust. Signed releases with build attestation, verifiable from the artifact.
MIT OR Apache‑2.0.
</li>
</ul>
<div class="cta-row">
<a class="btn btn-primary" href="https://github.com/cipherpine/quotapane" target="_blank" rel="noopener noreferrer">
Source on GitHub <span class="arr" aria-hidden="true">→</span>
</a>
<a class="btn btn-ghost" href="https://github.com/cipherpine/quotapane/releases/latest" target="_blank" rel="noopener noreferrer">
Download latest release
</a>
</div>
<p class="repo-meta">
<span class="chev" aria-hidden="true">></span>
github.com/cipherpine/quotapane · Windows & Linux · MIT OR Apache‑2.0
</p>
</div>
</section>
<!-- WHAT WE BUILD -->
<section class="block" id="what">
<div class="wrap">
<p class="eyebrow">// What we build</p>
<h2 class="section-title">Three product surfaces, one operating discipline.</h2>
<p class="section-intro">
We design and ship across three lanes — all sharing the same standards for
security, observability, and craft.
</p>
<div class="cards">
<article class="card">
<div class="marker">01 — Tools</div>
<h3>AI tools & dashboards</h3>
<p>
Agent observability, workflow tooling, and operator dashboards for teams running
on LLMs. Built for clarity under load.
</p>
</article>
<article class="card">
<div class="marker">02 — Apps</div>
<h3>Focused applications</h3>
<p>
Desktop, mobile, and web applications that do one thing well. Apple, Google, and
the open web are all on the table.
</p>
</article>
<article class="card">
<div class="marker">03 — Games</div>
<h3>Original games</h3>
<p>
Independent games shipped to Steam, the App Store, and Google Play. Small scope,
high polish, repeatable craft.
</p>
</article>
</div>
</div>
</section>
<!-- CONTACT -->
<section class="block" id="contact">
<div class="wrap">
<p class="eyebrow">// Contact</p>
<h2 class="section-title">Open channel.</h2>
<p class="section-intro">
Partnership, press, or product questions — pick the channel that fits. We
respond inside two business days.
</p>
<div class="contact-grid">
<div class="contact-item">
<div class="label">Email</div>
<a class="value" href="mailto:hello@cipherpine.com">hello@cipherpine.com</a>
</div>
<div class="contact-item">
<div class="label">Location</div>
<div class="value">Raleigh, North Carolina</div>
</div>
<div class="contact-item">
<div class="label">Founded</div>
<div class="value">2026</div>
</div>
<div class="contact-item">
<div class="label">Entity</div>
<div class="value">Cipher Pine LLC</div>
</div>
</div>
<a class="btn btn-primary" href="mailto:hello@cipherpine.com">
Start a conversation <span class="arr" aria-hidden="true">→</span>
</a>
</div>
</section>
</main>
<footer class="site">
<div class="wrap row">
<div class="meta">
<span>© <span id="year">2026</span> Cipher Pine LLC</span>
<span>Veteran‑owned · Built in North Carolina</span>
</div>
<div class="social" aria-label="Social links">
<a href="https://x.com/cipher_pine" target="_blank" rel="noopener noreferrer">X / @cipher_pine</a>
<a href="https://github.com/cipherpine" target="_blank" rel="noopener noreferrer">GitHub / cipherpine</a>
<a href="https://github.com/cipherpine/quotapane" target="_blank" rel="noopener noreferrer">QuotaPane repo</a>
</div>
</div>
</footer>
<script>
// keep footer year fresh
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>