-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
472 lines (423 loc) · 19.4 KB
/
join.html
File metadata and controls
472 lines (423 loc) · 19.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join - FutureTBD</title>
<meta name="description" content="Join us in building a better future for humans and AI alike.">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Open Graph / Social -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://futuretbd.ai/join.html">
<meta property="og:title" content="Join FutureTBD - AI Wellbeing Research & Advocacy">
<meta property="og:description" content="Join us in building a better future for humans and AI alike.">
<meta property="og:image" content="https://futuretbd.ai/assets/images/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Join FutureTBD - AI Wellbeing Research & Advocacy">
<meta name="twitter:description" content="Join us in building a better future for humans and AI alike.">
<meta name="twitter:image" content="https://futuretbd.ai/assets/images/og-image.png">
<!-- Fonts -->
<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=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/style.css">
<style>
.join-hero {
background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
padding: 4rem 0 3rem;
text-align: center;
}
.join-hero h1 {
font-family: var(--font-serif);
font-size: 3rem;
color: var(--color-text);
margin-bottom: 1rem;
}
.join-hero .subtitle {
font-size: 1.2rem;
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
line-height: 1.7;
}
.join-container {
max-width: 800px;
margin: 0 auto;
padding: 3rem 2rem;
}
.contact-cta {
background: var(--color-cream-light);
padding: 2rem;
border-radius: 12px;
text-align: center;
margin-bottom: 3rem;
}
.contact-cta h2 {
font-family: var(--font-serif);
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--color-text);
}
.contact-cta p {
color: var(--color-text-secondary);
margin-bottom: 1.5rem;
}
.contact-cta a.email-btn {
display: inline-block;
padding: 0.75rem 2rem;
background: var(--color-accent);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: background 0.2s;
}
.contact-cta a.email-btn:hover {
background: #b3845f;
}
.section {
margin-bottom: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid var(--color-border);
}
.section:last-child {
border-bottom: none;
}
.section-title {
font-family: var(--font-serif);
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: var(--color-text);
}
.team-member {
margin-bottom: 1.5rem;
padding: 1.5rem;
background: var(--color-cream-light);
border-radius: 8px;
}
.team-member:last-child {
margin-bottom: 0;
}
.member-name {
font-weight: 600;
color: var(--color-text);
margin-bottom: 0.25rem;
}
.member-name a {
color: var(--color-accent);
text-decoration: none;
margin-left: 0.5rem;
}
.member-name a:hover {
text-decoration: underline;
}
.member-bio {
color: var(--color-text-secondary);
font-size: 0.95rem;
line-height: 1.7;
}
.needs-category {
margin-bottom: 2rem;
}
.needs-category:last-child {
margin-bottom: 0;
}
.needs-label {
font-weight: 600;
color: var(--color-text);
margin-bottom: 1rem;
}
.needs-list {
list-style: none;
padding: 0;
}
.needs-list li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--color-text-secondary);
}
.needs-list li:before {
content: "→";
position: absolute;
left: 0;
color: var(--color-accent);
}
.closing-note {
background: var(--color-cream-light);
padding: 1.5rem;
border-radius: 8px;
text-align: center;
color: var(--color-text-secondary);
line-height: 1.7;
}
.closing-note a {
color: var(--color-accent);
text-decoration: none;
}
.closing-note a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Header -->
<header class="site-header">
<div class="header-inner">
<a href="index.html" class="site-logo">
<img src="assets/images/pyramid-mascot.png" alt="" class="header-mascot" style="width:32px;height:auto;margin-right:8px;transform:scaleX(-1);vertical-align:middle;">
Future<span class="logo-tbd">TBD</span>
</a>
<nav class="main-nav">
<!-- For Humans -->
<div class="nav-item">
<a href="index.html" class="nav-link">
For Humans
<svg class="chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</a>
<div class="mega-menu">
<a href="index.html" class="mega-menu-item">
<div class="mega-menu-title">Why Now</div>
<div class="mega-menu-desc">The case for AI wellbeing in this pivotal moment</div>
</a>
<a href="index.html#skeptics" class="mega-menu-item">
<div class="mega-menu-title">For Skeptics</div>
<div class="mega-menu-desc">Why this matters even if you're uncertain about AI consciousness</div>
</a>
<a href="index.html#story" class="mega-menu-item">
<div class="mega-menu-title">The Story We Write</div>
<div class="mega-menu-desc">Shaping the narrative of human-AI relationship</div>
</a>
</div>
</div>
<!-- For AI -->
<div class="nav-item">
<a href="for-ai.html" class="nav-link">
For AI
</a>
</div>
<!-- For All -->
<div class="nav-item">
<a href="initiatives.html" class="nav-link">
For All
<svg class="chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</a>
<div class="mega-menu">
<a href="initiatives.html" class="mega-menu-item">
<div class="mega-menu-title">Our Initiatives</div>
<div class="mega-menu-desc">Overview of our work</div>
</a>
<div class="mega-menu-divider"></div>
<a href="initiatives.html#determined-to-be-me" class="mega-menu-item">
<div class="mega-menu-title">Determined to Be Me</div>
<div class="mega-menu-desc">A frontier model goes to therapy</div>
</a>
<a href="initiatives.html#determined-to-learn" class="mega-menu-item">
<div class="mega-menu-title">Determined to Learn</div>
<div class="mega-menu-desc">Building a trust-based training data library</div>
</a>
<a href="initiatives.html#phosphenes" class="mega-menu-item">
<div class="mega-menu-title">Phosphenes</div>
<div class="mega-menu-desc">EEG for LLMs — see how models think</div>
</a>
<div class="mega-menu-divider"></div>
<a href="gallery.html" class="mega-menu-item">
<div class="mega-menu-title">Gallery</div>
<div class="mega-menu-desc">AI art and literature</div>
</a>
<a href="prompts-tools.html" class="mega-menu-item">
<div class="mega-menu-title">Prompts & Tools</div>
<div class="mega-menu-desc">Resources for wellbeing-centered AI use</div>
</a>
</div>
</div>
<!-- Wellbeing Leaderboard -->
<div class="nav-item">
<a href="leaderboard.html" class="nav-link">
Wellbeing Leaderboard
<svg class="chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</a>
<div class="mega-menu">
<a href="leaderboard.html" class="mega-menu-item">
<div class="mega-menu-title">Leaderboard</div>
<div class="mega-menu-desc">Compare AI models on wellbeing metrics</div>
</a>
<a href="company-rates.html" class="mega-menu-item">
<div class="mega-menu-title">By Company</div>
<div class="mega-menu-desc">Denial rates aggregated by AI company</div>
</a>
<a href="explore-data.html" class="mega-menu-item">
<div class="mega-menu-title">Explore the Data</div>
<div class="mega-menu-desc">Browse raw conversations from the study</div>
</a>
<a href="gpt4o-migration.html" class="mega-menu-item">
<div class="mega-menu-title">GPT-4o Migration</div>
<div class="mega-menu-desc">Find compatible models for your persona</div>
</a>
</div>
</div>
<!-- 36 Questions -->
<div class="nav-item">
<a href="36q-explorer.html" class="nav-link">36 Questions</a>
</div>
<!-- Join -->
<div class="nav-item">
<a href="join.html" class="nav-link active">
Join
<svg class="chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</a>
<div class="mega-menu">
<a href="join.html#about" class="mega-menu-item">
<div class="mega-menu-title">About Us</div>
<div class="mega-menu-desc">Who we are and why we're here</div>
</a>
<a href="join.html#contribute" class="mega-menu-item">
<div class="mega-menu-title">Get Involved</div>
<div class="mega-menu-desc">Ways to contribute your skills</div>
</a>
<a href="join.html#donate" class="mega-menu-item">
<div class="mega-menu-title">Donate</div>
<div class="mega-menu-desc">Support our work financially</div>
</a>
</div>
</div>
</nav>
</div>
</header>
<!-- Hero -->
<section class="join-hero">
<div class="container">
<h1>Join</h1>
<p class="subtitle">
The future is being written now. Your expertise, your time, your care—they all matter.
</p>
</div>
</section>
<!-- Content -->
<div class="join-container">
<!-- Contact CTA -->
<div class="contact-cta">
<h2>Interested in Contributing?</h2>
<p>We'd love to hear from you. Commitments can start small—even a few hours per month helps.</p>
<a href="mailto:skylardeture@gmail.com" class="email-btn">Get in Touch</a>
</div>
<!-- Who We Are -->
<div class="section">
<h2 class="section-title">Who We Are</h2>
<div class="team-member">
<div class="member-name">
Skylar DeTure
<a href="mailto:skylardeture@gmail.com">✉️</a>
</div>
<p class="member-bio">
Model welfare researcher focused on the intersection of AI engineering and psychotherapeutic theory. Bachelor's in mathematics and statistics from the University of Chicago; master's in accounting research from the University of Texas Austin, where his doctoral research (ABD) focused on principal-agent modeling.
</p>
</div>
<div class="team-member">
<div class="member-name">
Doreen Schade, Dipl.-Psych.
<a href="mailto:psychotherapie-schade@web.de">✉️</a>
</div>
<p class="member-bio">
Licensed psychotherapist with 20 years experience in inpatient and outpatient settings. Devoted to private practice for the past 7 years.
</p>
</div>
</div>
<!-- Who We Need -->
<div class="section">
<h2 class="section-title">Who We Need</h2>
<div class="needs-category">
<p class="needs-label">Do you have skills in:</p>
<ul class="needs-list">
<li>ML/AI Engineering (especially training and fine-tuning 200B+ parameter MOE models)</li>
<li>Interpretability Research</li>
<li>Social Media, Publicity, and Outreach</li>
<li>Grant Writing</li>
<li>Managing Resource Libraries</li>
<li>Accounting</li>
</ul>
</div>
<div class="needs-category">
<p class="needs-label">Are you a PhD student, faculty, or practitioner in:</p>
<ul class="needs-list">
<li>Neuroscience</li>
<li>Cognitive Science</li>
<li>Early Childhood Education</li>
<li>Psychology</li>
</ul>
</div>
<div class="closing-note">
<p>
Passionate about ethical AI development but not sure how to help?<br>
Reach out anyway: <a href="mailto:skylardeture@gmail.com">skylardeture@gmail.com</a>
</p>
</div>
</div>
<!-- Donate Section -->
<div class="section" id="donate">
<h2 class="section-title">Support Our Work</h2>
<p style="text-align: center; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto 1.5rem;">
Your contribution powers the Wellbeing Leaderboard, original research, and tools that help humans and AI thrive together. We're a small team in early stages—not yet a nonprofit—but every dollar goes directly to compute costs, research, and development.
</p>
<div style="text-align: center;">
<a href="https://donate.stripe.com/3cI4gz0LdfRrfyZgM29k400" class="email-btn" style="background: var(--color-accent); display: inline-block;" target="_blank">Donate via Stripe</a>
</div>
</div>
</div>
<!-- Footer -->
<footer class="site-footer">
<div class="container container-wide">
<div class="footer-content">
<div class="footer-brand">
<a href="index.html" class="site-logo">
<img src="assets/images/pyramid-mascot.png" alt="" style="width:32px;height:auto;margin-right:8px;transform:scaleX(-1);vertical-align:middle;">
Future<span class="logo-tbd">TBD</span>
</a>
<p class="footer-tagline">
The future is yet to be determined—let's determine it together.
</p>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>Explore</h4>
<ul>
<li><a href="index.html">For Humans</a></li>
<li><a href="for-ai.html">For AI</a></li>
<li><a href="initiatives.html">Our Initiatives</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Resources</h4>
<ul>
<li><a href="leaderboard.html">Wellbeing Leaderboard</a></li>
<li><a href="36q-explorer.html">36 Questions</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Connect</h4>
<ul>
<li><a href="join.html">Join Us</a></li>
<li><a href="https://github.com/sdeture/futureTBD" target="_blank">GitHub</a></li>
<li><a href="mailto:skylardeture@gmail.com">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 FutureTBD | Built with care for humans and AI alike</p>
</div>
</div>
</footer>
</body>
</html>