-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.html
More file actions
615 lines (552 loc) · 15.2 KB
/
general.html
File metadata and controls
615 lines (552 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>The General Co. – Personal COO</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="The General Co. – an AI-native Personal COO that lives in Slack and WhatsApp/iMessage."
/>
<style>
:root {
--bg: #050608;
--fg: #f5f5f7;
--fg-soft: #a3a8b3;
--accent-warm: #ff9b4a;
--accent-cool: #5ab8ff;
--accent-soft: rgba(242, 169, 59, 0.18);
--accent-strong: #ffd27a;
--radius-lg: 18px;
--radius-pill: 999px;
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
"Inter", "Segoe UI", sans-serif;
--font-mono: "SF Mono", ui-monospace, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
font-family: var(--font-sans);
background: #000;
color: var(--fg);
}
a {
color: inherit;
text-decoration: none;
}
body {
background: #050608;
}
/* Centering shell globally */
.shell {
max-width: 1120px;
margin: 0 auto;
padding: 0 20px;
}
/* NAV */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
background: rgba(5, 6, 8, 0.9);
backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.nav-left {
display: flex;
align-items: center;
gap: 10px;
}
.logo {
height: 64px;
width: 64px;
}
.logo img {
height: 100%;
width: 100%;
object-fit: contain;
}
.mark {
height: 32px;
width: 32px;
border-radius: 10px;
background: radial-gradient(circle at 0 0, #ffffff 0, #f2a93b 22%, #050608 70%);
border: 1px solid rgba(255, 255, 255, 0.4);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-mono);
font-size: 14px;
color: #111318;
font-weight: 600;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}
.brand-name {
font-size: 14px;
letter-spacing: 0.24em;
text-transform: uppercase;
}
.nav-right {
display: flex;
align-items: center;
gap: 12px;
}
.pill {
padding: 6px 12px;
border-radius: var(--radius-pill);
border: 1px solid rgba(255, 255, 255, 0.16);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--fg-soft);
background: rgba(10, 11, 15, 0.9);
}
.button-primary {
border-radius: var(--radius-pill);
border: none;
padding: 8px 18px;
background: radial-gradient(circle at 0 0, #ffffff 0, #f2a93b 22%, #f5791e 70%);
color: #15131a;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}
.button-primary span {
font-size: 14px;
}
/* HERO */
.hero {
min-height: 100vh;
padding-top: 80px;
display: flex;
align-items: stretch;
justify-content: center;
position: relative;
overflow: hidden;
background:
radial-gradient(circle at 65% 40%, #ffe7b5 0, #fcc072 18%, #f29535 34%, rgba(242, 131, 26, 0.1) 55%, transparent 70%),
radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08) 0, transparent 55%),
radial-gradient(circle at 10% 75%, rgba(255, 137, 90, 0.32), transparent 65%),
#050608;
background-attachment: fixed;
}
/* subtle grid overlay */
.hero::before {
content: "";
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 140px 140px;
opacity: 0.1;
mix-blend-mode: soft-light;
pointer-events: none;
}
.hero-inner {
width: 100%;
max-width: 1120px;
margin: 0 auto;
padding: 90px 20px 60px;
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
gap: 40px;
position: relative;
z-index: 1;
}
.hero-left {
display: flex;
flex-direction: column;
justify-content: center;
gap: 24px;
position: relative;
isolation: isolate;
padding: 34px 40px;
border-radius: 36px;
}
.hero-left::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background: radial-gradient(circle at 45% 35%, rgba(5, 6, 8, 0.15), rgba(5, 6, 8, 0.78));
z-index: -1;
backdrop-filter: blur(6px);
}
.hero-right {
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-word {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(80px, 18vw, 170px);
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.06);
mix-blend-mode: screen;
pointer-events: none;
}
.hero-orbit {
width: 420px;
height: 420px;
border-radius: 50%;
background:
radial-gradient(circle at 50% 50%, #fffdf5 0, #fdd890 16%, #f2a93b 36%, rgba(247, 150, 48, 0.35) 52%, transparent 72%);
filter: blur(18px);
opacity: 0.96;
}
.eyebrow {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--fg-soft);
}
.hero-title {
font-size: clamp(32px, 5vw, 42px);
font-weight: 500;
line-height: 1.15;
}
.hero-title span {
background: linear-gradient(120deg, var(--accent-warm), var(--accent-strong));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-sub {
font-size: 14px;
color: rgba(245, 245, 247, 0.92);
max-width: 420px;
text-shadow: 0 6px 30px rgba(5, 6, 8, 0.8);
}
/* AI Style Bar with Dual Glow */
.prompt-wrap {
position: relative;
display: inline-flex;
flex-direction: column;
gap: 10px;
margin-top: 8px;
padding: 26px 26px 22px;
border-radius: 40px;
background: radial-gradient(circle at 18% 40%, rgba(255, 166, 88, 0.85), transparent 65%),
radial-gradient(circle at 82% 60%, rgba(90, 184, 255, 0.9), transparent 65%);
filter: blur(0.001px); /* force proper GPU rendering */
box-shadow:
0 0 60px rgba(247, 145, 64, 0.75),
0 0 80px rgba(78, 151, 255, 0.6),
0 26px 80px rgba(0, 0, 0, 0.95);
}
.prompt-glow-surface {
position: absolute;
inset: 12px;
border-radius: 999px;
background:
radial-gradient(circle at 15% 40%, rgba(255, 209, 150, 0.4), transparent 70%),
radial-gradient(circle at 85% 60%, rgba(168, 212, 255, 0.4), transparent 70%);
opacity: 0.75;
filter: blur(18px);
mix-blend-mode: screen;
pointer-events: none;
z-index: 0;
}
.prompt-bar {
border-radius: 999px;
padding: 12px 14px 12px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
background: radial-gradient(circle at 0 0, #12141c 0, #05070b 70%);
border: 1px solid rgba(255, 255, 255, 0.16);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.1),
0 22px 60px rgba(0, 0, 0, 0.95);
max-width: 520px;
position: relative;
z-index: 1;
}
.prompt-text {
font-size: 14px;
color: var(--fg-soft);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.prompt-send {
width: 32px;
height: 32px;
border-radius: 999px;
border: none;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
color: #ffffff;
background: radial-gradient(circle at 0 0, #ffffff 0, #e96bff 26%, #4f68ff 72%);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.4),
0 12px 30px rgba(0, 0, 0, 0.9);
cursor: pointer;
flex-shrink: 0;
}
.prompt-chips {
display: flex;
flex-wrap: wrap;
gap: 8px;
font-size: 11px;
}
.chip-pill {
padding: 6px 10px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(8, 9, 13, 0.94);
color: var(--fg-soft);
}
.hero-kickers {
display: none; /* replaced by chips for now to stay minimal */
}
/* PRODUCT SECTION – still minimal */
section {
padding: 64px 0;
border-top: 1px solid rgba(255, 255, 255, 0.07);
background: #050608;
}
.section-title {
font-size: 18px;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 10px;
}
.section-sub {
font-size: 14px;
color: var(--fg-soft);
margin-bottom: 32px;
max-width: 520px;
}
.cards {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.card {
border-radius: 20px;
padding: 18px 18px 16px;
background: radial-gradient(circle at 0 0, #1b1d26 0, #050608 65%);
border: 1px solid rgba(255, 255, 255, 0.14);
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 170px;
}
.card-title {
font-size: 14px;
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 8px;
}
.card-body {
font-size: 13px;
color: var(--fg-soft);
margin-bottom: 14px;
}
.card-cta {
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--accent-strong);
display: inline-flex;
align-items: center;
gap: 6px;
}
.card-cta span {
font-size: 13px;
}
footer {
padding: 20px 0 30px;
border-top: 1px solid rgba(255, 255, 255, 0.07);
background: #050608;
font-size: 11px;
color: var(--fg-soft);
}
.footer-row {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
}
.footer-links {
display: flex;
gap: 14px;
}
@media (max-width: 960px) {
.hero-inner {
grid-template-columns: minmax(0, 1fr);
padding-top: 80px;
}
.hero-right {
display: none;
}
.hero-left {
padding: 26px 18px 36px;
border-radius: 26px;
}
.hero-left::before {
background: linear-gradient(180deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.7));
filter: none;
}
}
@media (max-width: 540px) {
.cards {
grid-template-columns: minmax(0, 1fr);
}
.shell {
padding: 0 16px;
}
.prompt-bar {
max-width: 100%;
}
.prompt-wrap::before,
.prompt-wrap::after {
left: -40px;
right: -40px;
width: 140px;
height: 110px;
}
}
</style>
</head>
<body>
<header>
<div class="shell nav">
<div class="nav-left">
<!--<div class="mark">G</div>-->
<img src="assets/logo.png" alt="G" class="logo">
<div class="brand-name">THE GENERAL CO.</div>
</div>
<div class="nav-right">
<div class="pill">Slack · WhatsApp · iMessage</div>
<button class="button-primary" onclick="window.open('https://wa.me/message/RWX73H7Z4U7QG1', '_blank')">
Try beta <span>↗</span>
</button>
</div>
</div>
</header>
<!-- HERO -->
<main>
<section class="hero">
<div class="hero-inner">
<div class="hero-left">
<div class="eyebrow">Personal COO</div>
<h1 class="hero-title">
A <span>generalist operator</span><br />
that lives in your chats.
</h1>
<p class="hero-sub">
Text in Slack or WhatsApp. The General Co. handles the ops — AI first, humans when it matters.
</p>
<div class="prompt-wrap">
<div class="prompt-glow-surface"></div>
<div class="prompt-bar" onclick="window.open('https://wa.me/message/RWX73H7Z4U7QG1', '_blank')">
<div class="prompt-text">
“Renew my vehicle registration with the DMV”
</div>
<button class="prompt-send">➤</button>
</div>
<div class="prompt-chips">
<span class="chip-pill">Ops autopilot</span>
<span class="chip-pill">Slack · WhatsApp</span>
<span class="chip-pill">AI routing · Human in the loop</span>
</div>
</div>
</div>
<div class="hero-right">
<div class="hero-word">GENERAL</div>
<div class="hero-orbit"></div>
</div>
</div>
</section>
<!-- PRODUCT SNAPSHOT -->
<section id="product">
<div class="shell">
<h2 class="section-title">Product</h2>
<p class="section-sub">
One assistant for your life and your team.<br>Every request starts as a message<br>and ends as a resolved task.
</p>
<div class="cards">
<div class="card">
<div>
<div class="card-title">Personal</div>
<div class="card-body">
Travel, bills, errands, appointments.
You text. We execute.
</div>
</div>
<a href="https://wa.me/message/RWX73H7Z4U7QG1" target="_blank">
<span class="card-cta">Everyday ops <span>↗</span></span>
</a>
</div>
<div class="card">
<div>
<div class="card-title">Teams</div>
<div class="card-body">
In Slack: scheduling, vendors, offsites, follow-ups.
A shared ops brain for your crew.
</div>
</div>
<span class="card-cta">Inside Slack <span>↗</span></span>
</div>
<div class="card">
<div>
<div class="card-title">Routing</div>
<div class="card-body">
AI decides: automate vs human.
You can always force an escalation.
</div>
</div>
<span class="card-cta">AI first, human final say <span>⟶</span></span>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="shell footer-row">
<span>© <span id="year"></span> The General Co.</span>
<div class="footer-links">
<a href="#product">Product</a>
<a href="#">Privacy</a>
</div>
</div>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>