-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvision.html
More file actions
237 lines (204 loc) · 6.78 KB
/
vision.html
File metadata and controls
237 lines (204 loc) · 6.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Vision - SYMBEYOND AI</title>
<meta name="description" content="You found it. Tell me about your vision." />
<!-- 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=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Mono:wght@300;400;500&family=Outfit:wght@300;400;500;600&display=swap" rel="stylesheet" />
<style>
/* ── TOKENS ── */
:root {
--red: #C0392B;
--blue: #2E6DA4;
--offwhite: #F5F0E8;
--ink: #1A1A1A;
--mid: #4A4A4A;
--light: #8A8A8A;
--gold: #FFD700;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
background: var(--ink);
color: var(--offwhite);
font-family: 'Outfit', sans-serif;
font-weight: 300;
line-height: 1.7;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
.container {
max-width: 680px;
width: 100%;
text-align: center;
}
.eyebrow {
font-family: 'DM Mono', monospace;
font-size: 0.72rem;
letter-spacing: 0.22em;
color: var(--gold);
text-transform: uppercase;
margin-bottom: 1.5rem;
animation: fadeIn 0.8s ease both;
}
h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.5rem, 5vw, 4.5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1rem;
animation: fadeIn 0.8s 0.2s ease both;
}
.gold {
color: var(--gold);
}
.subtitle {
font-size: 1.1rem;
color: rgba(245, 240, 232, 0.6);
margin-bottom: 3rem;
animation: fadeIn 0.8s 0.4s ease both;
}
form {
background: rgba(26, 26, 26, 0.6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 3rem;
border-radius: 3px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
text-align: left;
animation: fadeIn 0.8s 0.6s ease both;
}
.field {
margin-bottom: 1.5rem;
}
label {
display: block;
font-family: 'DM Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(245, 240, 232, 0.5);
margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 0.85rem 1rem;
font-family: 'Outfit', sans-serif;
font-size: 0.95rem;
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 2px;
background: rgba(26, 26, 26, 0.4);
color: var(--offwhite);
transition: border-color 0.2s, background 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
outline: none;
border-color: var(--gold);
background: rgba(26, 26, 26, 0.6);
}
textarea {
min-height: 180px;
resize: vertical;
line-height: 1.6;
}
button {
width: 100%;
padding: 1rem 2rem;
font-family: 'Outfit', sans-serif;
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
background: var(--ink);
color: var(--offwhite);
border: none;
border-radius: 2px;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
}
button:hover {
background: var(--gold);
color: var(--ink);
transform: translateY(-2px);
}
button:active {
transform: translateY(0);
}
.back-link {
display: inline-block;
margin-top: 2rem;
font-family: 'DM Mono', monospace;
font-size: 0.8rem;
letter-spacing: 0.1em;
color: rgba(245, 240, 232, 0.5);
text-decoration: none;
transition: color 0.2s;
animation: fadeIn 0.8s 0.8s ease both;
}
.back-link:hover {
color: var(--gold);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
body { padding: 1.5rem; }
form { padding: 2rem 1.5rem; }
h1 { font-size: 2.5rem; }
}
</style>
</head>
<body>
<div class="container">
<p class="eyebrow">// You Found It</p>
<h1>Tell me about <span class="gold">yours</span>.</h1>
<p class="subtitle">If your vision is priceless, it deserves more than a contact form.</p>
<!--═══════════════════════════════════════════════════════════
FORM SUBMISSION - Implementation History
ORIGINAL (2026-04-29):
Used mailto: action - caused email client loop bug in production.
Worked for initial testing but created UX blocker on live deployment.
IMPLEMENTED (2026-04-30):
Formspree integration (formspree.io/f/xykoykok)
- 50 free submissions/month
- No email client dependency
- Submission tracking and database
- Email notifications to jd@symbeyond.ai
- Upgrade to $10/month if volume exceeds 50
Reason for upgrade: mailto: loop bug froze email client on submission.
Not a theoretical problem - actual production blocker discovered in testing.
- John Thomas DuCrest Lock & Claude, 2026-04-30
═══════════════════════════════════════════════════════════-->
<form action="https://formspree.io/f/xykoykok" method="POST">
<div class="field">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" autocomplete="name" required />
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" id="email" name="email" autocomplete="email" required />
</div>
<div class="field">
<label for="vision">Your Vision</label>
<textarea id="vision" name="vision" autocomplete="off" placeholder="Tell me what you're building, fixing, or trying to make real. No sales pitch needed - just the truth of what you need." required></textarea>
</div>
<button type="submit">Send Vision</button>
</form>
<a href="index.html" class="back-link">← Back to symbeyond.ai</a>
</div>
</body>
</html>