-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
332 lines (301 loc) · 14.4 KB
/
faq.html
File metadata and controls
332 lines (301 loc) · 14.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - BlackRoad OS</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Frequently asked questions about BlackRoad OS - pricing, features, integrations, and more.">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 60px 40px;
text-align: center;
}
.header h1 {
font-size: 3rem;
margin-bottom: 15px;
font-weight: 800;
}
.header p {
font-size: 1.2rem;
opacity: 0.9;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 60px 40px;
}
.faq-category {
margin-bottom: 50px;
}
.faq-category h2 {
color: #10b981;
font-size: 1.8rem;
margin-bottom: 25px;
border-bottom: 2px solid #334155;
padding-bottom: 15px;
}
.faq-item {
background: #1e293b;
padding: 30px;
border-radius: 15px;
margin-bottom: 20px;
border: 1px solid #334155;
transition: transform 0.2s, border-color 0.2s;
}
.faq-item:hover {
transform: translateY(-2px);
border-color: #10b981;
}
.faq-question {
font-size: 1.3rem;
font-weight: 700;
color: #10b981;
margin-bottom: 15px;
}
.faq-answer {
line-height: 1.7;
color: #cbd5e1;
}
.faq-answer strong {
color: #e2e8f0;
}
.cta-box {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 50px;
border-radius: 20px;
text-align: center;
margin-top: 60px;
}
.cta-box h2 {
font-size: 2rem;
margin-bottom: 15px;
}
.cta-box p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.9;
}
.button {
background: #10b981;
color: white;
border: none;
padding: 18px 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;
margin: 5px;
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.button.secondary {
background: rgba(255,255,255,0.2);
}
.nav-link {
display: inline-block;
color: white;
text-decoration: none;
margin: 0 15px;
padding: 10px;
transition: opacity 0.2s;
}
.nav-link:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<div class="header">
<div style="margin-bottom: 30px;">
<a href="index.html" class="nav-link">Home</a>
<a href="pricing.html" class="nav-link">Pricing</a>
<a href="faq.html" class="nav-link">FAQ</a>
<a href="dashboard.html" class="nav-link">Dashboard</a>
</div>
<h1>Frequently Asked Questions</h1>
<p>Everything you need to know about BlackRoad OS</p>
</div>
<div class="container">
<!-- General -->
<div class="faq-category">
<h2>🎯 General Questions</h2>
<div class="faq-item">
<div class="faq-question">What is BlackRoad OS?</div>
<div class="faq-answer">
BlackRoad OS is an AI-powered operating system for teams. We combine deployment, collaboration, workflow automation, and analytics into one beautiful platform. Think of it as replacing Slack + GitHub + Linear + Notion + Vercel + Railway + 6 other tools with a single, unified system.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Who is BlackRoad OS for?</div>
<div class="faq-answer">
<strong>Startups</strong> shipping MVPs to market, <strong>dev teams</strong> tired of tool sprawl, <strong>solo builders</strong> who need enterprise features without enterprise complexity, and <strong>agencies</strong> managing multiple client projects.
</div>
</div>
<div class="faq-item">
<div class="faq-question">How is this different from other platforms?</div>
<div class="faq-answer">
We're <strong>AI-first from the ground up</strong>. Every feature is designed for the era of AI-powered development. Plus, we're building in public and giving our founding members 50% off for life. We're rewarding early adopters, not treating them as guinea pigs.
</div>
</div>
</div>
<!-- Pricing & Billing -->
<div class="faq-category">
<h2>💰 Pricing & Billing</h2>
<div class="faq-item">
<div class="faq-question">How does the 14-day free trial work?</div>
<div class="faq-answer">
Sign up, enter your payment info, and use BlackRoad OS free for 14 days. <strong>No charges until day 15.</strong> Cancel anytime before then and you won't be charged a cent. No tricks, no hidden fees.
</div>
</div>
<div class="faq-item">
<div class="faq-question">What's the Founding Member deal?</div>
<div class="faq-answer">
The first 100 customers get <strong>50% off FOREVER</strong>. That means $29/month instead of $58, for as long as you stay subscribed. Plus you get early access to new features, priority support, and a founding member badge. Only <strong>79 spots left</strong>.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I cancel anytime?</div>
<div class="faq-answer">
<strong>Yes, absolutely.</strong> No long-term contracts. No cancellation fees. Cancel with one click from your dashboard. If you're a founding member, you can always come back at the same $29/mo rate.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Do you offer refunds?</div>
<div class="faq-answer">
We offer a <strong>14-day money-back guarantee</strong>. If you're not satisfied within the first 14 days, email us and we'll refund you immediately, no questions asked.
</div>
</div>
<div class="faq-item">
<div class="faq-question">What payment methods do you accept?</div>
<div class="faq-answer">
We accept all major credit cards (Visa, Mastercard, Amex, Discover) via Stripe. We also support ACH bank transfers for annual plans.
</div>
</div>
</div>
<!-- Features & Technical -->
<div class="faq-category">
<h2>⚡ Features & Technical</h2>
<div class="faq-item">
<div class="faq-question">What can I deploy with BlackRoad OS?</div>
<div class="faq-answer">
<strong>Anything.</strong> Next.js, React, Vue, Node.js, Python, Go, Rust—we support all major frameworks. We deploy to Cloudflare Pages for static sites and Railway for backend services. Global edge performance out of the box.
</div>
</div>
<div class="faq-item">
<div class="faq-question">How do the AI-powered workflows work?</div>
<div class="faq-answer">
You can create custom AI agents for code reviews, automated testing, customer support, documentation, and more. They integrate with Claude, GPT-4, and other models. Just describe what you want and the AI builds the workflow.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Is my data secure?</div>
<div class="faq-answer">
<strong>Absolutely.</strong> We use enterprise-grade encryption (AES-256), SOC 2 compliant infrastructure, and never train AI models on your data. Your code and data stay private. We also support SSO and SAML for Enterprise customers.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Do you have an API?</div>
<div class="faq-answer">
<strong>Yes!</strong> Full REST API with webhooks. Integrate BlackRoad OS with any tool in your stack. Documentation at <strong>docs.blackroad.io</strong> (coming soon).
</div>
</div>
<div class="faq-item">
<div class="faq-question">What integrations do you support?</div>
<div class="faq-answer">
GitHub, GitLab, Bitbucket, Slack, Discord, Linear, Notion, Stripe, Clerk, and 50+ more. Don't see what you need? Request it and we'll build it.
</div>
</div>
</div>
<!-- Support & Onboarding -->
<div class="faq-category">
<h2>💬 Support & Onboarding</h2>
<div class="faq-item">
<div class="faq-question">How do I get started?</div>
<div class="faq-answer">
1. Sign up for the 14-day trial<br>
2. Connect your GitHub/GitLab account<br>
3. Deploy your first project (takes 2 minutes)<br>
4. Join our Discord community<br>
5. Book an onboarding call (optional but recommended)
</div>
</div>
<div class="faq-item">
<div class="faq-question">What kind of support do you offer?</div>
<div class="faq-answer">
<strong>All plans</strong> include email support (response within 24 hours). <strong>Founding members</strong> get priority support (response within 4 hours) plus direct access to our team on Discord. <strong>Enterprise</strong> customers get 24/7 phone support and a dedicated account manager.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Do you offer training or onboarding?</div>
<div class="faq-answer">
<strong>Yes!</strong> All customers can book a free 30-minute onboarding call. Enterprise customers get custom team training sessions. We also have video tutorials, documentation, and a community Discord.
</div>
</div>
</div>
<!-- Founding Members -->
<div class="faq-category">
<h2>🏆 Founding Member Program</h2>
<div class="faq-item">
<div class="faq-question">Why only 100 founding members?</div>
<div class="faq-answer">
We want to keep it exclusive and give our first customers <strong>real VIP treatment</strong>. 100 is small enough that we can personally help each founding member succeed while building exactly the features they need.
</div>
</div>
<div class="faq-item">
<div class="faq-question">What if I sign up later? Can I still get the discount?</div>
<div class="faq-answer">
<strong>No.</strong> The 50% lifetime discount is only for the first 100 customers. Once all 100 spots are claimed, the price goes up to $58/month permanently. We're not doing this as a marketing gimmick—founding members get rewarded for taking a chance on us early.
</div>
</div>
<div class="faq-item">
<div class="faq-question">What happens if I cancel and want to come back?</div>
<div class="faq-answer">
Your founding member status is <strong>permanent</strong>. Cancel anytime and you can always reactivate at the same $29/month rate. The discount follows you forever.
</div>
</div>
</div>
<!-- Technical Details -->
<div class="faq-category">
<h2>🔧 Technical Details</h2>
<div class="faq-item">
<div class="faq-question">Where is my data hosted?</div>
<div class="faq-answer">
We use <strong>Cloudflare's global network</strong> for edge hosting and <strong>Railway</strong> for database infrastructure. Your data is replicated across multiple regions for reliability. Enterprise customers can choose specific regions or even on-premise deployment.
</div>
</div>
<div class="faq-item">
<div class="faq-question">What's your uptime guarantee?</div>
<div class="faq-answer">
We target <strong>99.9% uptime</strong> for all plans. Enterprise customers get a 99.95% SLA with credits for any downtime. Real-time status at <strong>status.blackroad.io</strong>.
</div>
</div>
<div class="faq-item">
<div class="faq-question">How do you handle backups?</div>
<div class="faq-answer">
<strong>Automated daily backups</strong> with 30-day retention. Point-in-time recovery for Enterprise. You can also export your data anytime in standard formats (JSON, CSV, SQL).
</div>
</div>
</div>
<!-- CTA -->
<div class="cta-box">
<h2>Still have questions?</h2>
<p>We're here to help! Email us or start your free trial now.</p>
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button">Start Free Trial - Get 50% Off</a>
<a href="mailto:blackroad.systems@gmail.com" class="button secondary">Email Us</a>
</div>
</div>
</body>
</html>