-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstartups.html
More file actions
412 lines (378 loc) · 15.1 KB
/
startups.html
File metadata and controls
412 lines (378 loc) · 15.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlackRoad OS for Startups - Ship Faster, Spend Less</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Built for startups. Get enterprise features at startup prices. Ship your MVP in days, not months. $29/mo for everything.">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
}
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 80px 40px;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}
.hero .tagline {
font-size: 1.5rem;
opacity: 0.95;
margin-bottom: 40px;
}
.hero-badges {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 40px;
}
.badge {
background: rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
padding: 10px 25px;
border-radius: 25px;
font-weight: 700;
font-size: 0.95rem;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.button {
background: #10b981;
color: white;
border: none;
padding: 20px 50px;
font-size: 1.2rem;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
text-decoration: none;
display: inline-block;
transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(16,185,129,0.4);
}
.button.secondary {
background: rgba(255,255,255,0.2);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 80px 40px;
}
.problem-section {
text-align: center;
margin-bottom: 80px;
}
.problem-section h2 {
font-size: 2.5rem;
color: #ef4444;
margin-bottom: 30px;
}
.problems-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 40px;
}
.problem-card {
background: #1e293b;
padding: 30px;
border-radius: 15px;
border-left: 4px solid #ef4444;
}
.problem-card .icon {
font-size: 2.5rem;
margin-bottom: 15px;
}
.problem-card h3 {
color: #ef4444;
margin-bottom: 10px;
}
.solution-section {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
padding: 60px;
border-radius: 30px;
text-align: center;
margin: 80px 0;
}
.solution-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.solution-section p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.95;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin: 60px 0;
}
.feature-card {
background: #1e293b;
padding: 40px;
border-radius: 20px;
border: 2px solid #10b981;
transition: transform 0.2s;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-card .icon {
font-size: 3rem;
margin-bottom: 20px;
}
.feature-card h3 {
color: #10b981;
font-size: 1.5rem;
margin-bottom: 15px;
}
.feature-card p {
color: #cbd5e1;
line-height: 1.7;
}
.pricing-highlight {
background: #1e293b;
padding: 60px;
border-radius: 30px;
text-align: center;
border: 3px solid #10b981;
}
.pricing-highlight .price {
font-size: 5rem;
font-weight: 800;
color: #10b981;
margin: 20px 0;
}
.pricing-highlight .price small {
font-size: 2rem;
}
.pricing-highlight .old-price {
text-decoration: line-through;
opacity: 0.5;
font-size: 2rem;
}
.testimonial {
background: rgba(16,185,129,0.1);
padding: 40px;
border-radius: 20px;
border-left: 5px solid #10b981;
margin: 30px 0;
}
.testimonial p {
font-size: 1.2rem;
font-style: italic;
color: #cbd5e1;
margin-bottom: 20px;
}
.testimonial .author {
color: #10b981;
font-weight: bold;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin: 60px 0;
text-align: center;
}
.stat-card {
background: #1e293b;
padding: 40px;
border-radius: 20px;
}
.stat-number {
font-size: 3.5rem;
font-weight: 800;
color: #10b981;
margin-bottom: 10px;
}
.stat-label {
color: #cbd5e1;
font-size: 1.1rem;
}
</style>
</head>
<body>
<div class="hero">
<h1>Built for Startups<br>Who Move Fast</h1>
<p class="tagline">Enterprise features at startup prices. Ship your MVP in days, not months.</p>
<div class="hero-badges">
<div class="badge">💰 $29/mo Total</div>
<div class="badge">⚡ Deploy in 30 Seconds</div>
<div class="badge">🤖 AI-Powered</div>
<div class="badge">🏆 500+ Startups</div>
</div>
<div class="cta-buttons">
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button">Get 50% Off Forever</a>
<a href="calculator.html" class="button secondary">Calculate Your Savings</a>
</div>
<p style="margin-top: 20px; opacity: 0.9;">✅ 14-day free trial • ✅ No credit card required</p>
</div>
<div class="container">
<!-- The Problem -->
<div class="problem-section">
<h2>The Startup Struggle 😫</h2>
<p style="font-size: 1.2rem; color: #cbd5e1; max-width: 700px; margin: 0 auto;">
You're trying to change the world, but you're drowning in tools, tabs, and bills.
</p>
<div class="problems-grid">
<div class="problem-card">
<div class="icon">💸</div>
<h3>Bleeding Cash</h3>
<p style="color: #cbd5e1;">$500+/mo on Vercel, Netlify, GitHub, Slack, Linear, Notion, Stripe, Auth0...</p>
</div>
<div class="problem-card">
<div class="icon">⏰</div>
<h3>Moving Too Slow</h3>
<p style="color: #cbd5e1;">Hours wasted on deployment configs, integrations, context switching between 10 tools.</p>
</div>
<div class="problem-card">
<div class="icon">🤯</div>
<h3>Complexity Overload</h3>
<p style="color: #cbd5e1;">Different login, different UI, different docs for every single service.</p>
</div>
<div class="problem-card">
<div class="icon">😤</div>
<h3">Team Frustration</h3>
<p style="color: #cbd5e1;">Developers hate tool sprawl. Morale suffers. Productivity tanks.</p>
</div>
</div>
</div>
<!-- The Solution -->
<div class="solution-section">
<h2>One Platform. Everything Included.</h2>
<p>Stop paying for 10 tools. Start shipping like a team 10x your size.</p>
<div class="cta-buttons">
<a href="#" class="button" style="background: white; color: #10b981;">Start Free Trial</a>
</div>
</div>
<!-- What You Get -->
<h2 style="text-align: center; font-size: 2.5rem; color: #10b981; margin-bottom: 50px;">
Everything a Startup Needs
</h2>
<div class="features-grid">
<div class="feature-card">
<div class="icon">🚀</div>
<h3>Instant Deployments</h3>
<p>Git push → Live in 30 seconds. Global edge network. Automatic SSL. Preview deployments for every PR.</p>
</div>
<div class="feature-card">
<div class="icon">🤖</div>
<h3>AI Workflows</h3>
<p>Automate code reviews, testing, documentation. Built-in AI agents powered by Claude & GPT-4.</p>
</div>
<div class="feature-card">
<div class="icon">👥</div>
<h3">Team Collaboration</h3>
<p>Chat, tasks, docs, code—all in one place. No more Slack + Linear + Notion.</p>
</div>
<div class="feature-card">
<div class="icon">📊</div>
<h3>Analytics Built-In</h3>
<p>Real-time performance monitoring, error tracking, user analytics. No PostHog or Sentry needed.</p>
</div>
<div class="feature-card">
<div class="icon">🔒</div>
<h3>Enterprise Security</h3>
<p>SOC 2, SSO, SAML, audit logs—all included. Impress enterprise customers from day one.</p>
</div>
<div class="feature-card">
<div class="icon">🔧</div>
<h3>Full API Access</h3>
<p>REST + GraphQL APIs, webhooks, CLI tools. Integrate with anything.</p>
</div>
</div>
<!-- Pricing for Startups -->
<div class="pricing-highlight">
<h2 style="font-size: 2.5rem; color: #10b981; margin-bottom: 20px;">Startup Pricing</h2>
<div class="old-price">Regular: $58/month</div>
<div class="price">$29<small>/mo</small></div>
<p style="font-size: 1.3rem; color: #cbd5e1; margin-bottom: 30px;">
<strong>50% off FOREVER</strong> for first 100 startups
</p>
<div style="text-align: left; max-width: 500px; margin: 40px auto; background: rgba(16,185,129,0.1); padding: 30px; border-radius: 15px;">
<h3 style="color: #10b981; margin-bottom: 20px;">What's Included:</h3>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Unlimited deployments</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Up to 10 team members</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ AI-powered workflows</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Team collaboration tools</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Real-time analytics</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Enterprise security (SSO, SAML)</div>
<div style="padding: 10px 0; border-bottom: 1px solid rgba(16,185,129,0.2);">✓ Priority support (4h response)</div>
<div style="padding: 10px 0;">✓ Founding member badge 🏆</div>
</div>
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button" style="font-size: 1.4rem; padding: 22px 60px;">Claim Your Spot - 79 Left</a>
<p style="margin-top: 20px; opacity: 0.8;">14-day free trial • Cancel anytime • No credit card required</p>
</div>
<!-- Stats -->
<h2 style="text-align: center; font-size: 2.5rem; color: #10b981; margin: 80px 0 50px 0;">
Trusted by 500+ Startups
</h2>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">500+</div>
<div class="stat-label">Startups Using BlackRoad</div>
</div>
<div class="stat-card">
<div class="stat-number">10k+</div>
<div class="stat-label">Deployments Daily</div>
</div>
<div class="stat-card">
<div class="stat-number">$400+</div>
<div class="stat-label">Avg Monthly Savings</div>
</div>
<div class="stat-card">
<div class="stat-number">3x</div>
<div class="stat-label">Faster Time to Market</div>
</div>
</div>
<!-- Testimonials -->
<div class="testimonial">
<p>"BlackRoad OS saved us $400/month in SaaS subscriptions. As a bootstrapped startup, that's a runway extension. We went from 8 tools to just one."</p>
<div class="author">— Sarah Martinez, CTO @ TechStart Inc (YC S24)</div>
</div>
<div class="testimonial">
<p>"I'm a solo founder and BlackRoad OS gives me superpowers. I can compete with teams 10x my size. The founding member discount is insane value."</p>
<div class="author">— Emily Kim, Founder @ SoloShip (Raised $2M)</div>
</div>
<div class="testimonial">
<p>"We shipped our MVP in 2 weeks using BlackRoad OS. Would've taken 2 months with our old stack. Got to market faster and beat our competitors."</p>
<div class="author">— David Lee, CEO @ StartupHub (500+ customers)</div>
</div>
<!-- Final CTA -->
<div style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 80px 40px; border-radius: 30px; text-align: center; margin-top: 80px;">
<h2 style="font-size: 3rem; margin-bottom: 20px;">Ready to Ship Faster?</h2>
<p style="font-size: 1.3rem; margin-bottom: 40px; opacity: 0.95;">
Join 500+ startups who've already made the switch. Get 50% off for life.
</p>
<div class="cta-buttons">
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button" style="font-size: 1.4rem; padding: 25px 70px;">
Start Free Trial - $29/mo Forever
</a>
</div>
<p style="margin-top: 30px; opacity: 0.9;">
✅ 14-day trial • ✅ No credit card • ✅ Cancel anytime • ✅ 79 spots left
</p>
</div>
</div>
</body>
</html>