-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolutions.html
More file actions
601 lines (551 loc) · 26.3 KB
/
Copy pathsolutions.html
File metadata and controls
601 lines (551 loc) · 26.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solutions | Relay▸Launch</title>
<meta name="description" content="Two service tracks built for how businesses actually need help: digital growth for small businesses and operational infrastructure for startups.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://relaylaunch.com/solutions.html">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<meta name="theme-color" content="#238636">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://relaylaunch.com/solutions.html">
<meta property="og:title" content="Solutions | Relay▸Launch">
<meta property="og:description" content="Digital growth infrastructure for small businesses. Operational systems for startups. Two tracks, one standard of work.">
<meta property="og:site_name" content="Relay▸Launch">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Solutions | Relay▸Launch">
<meta name="twitter:description" content="Digital growth infrastructure for small businesses. Operational systems for startups. Two tracks, one standard of work.">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"provider": {
"@type": "Organization",
"name": "Relay Launch",
"url": "https://relaylaunch.com"
},
"serviceType": ["Small Business Growth", "Startup Operations Build"],
"description": "Two service tracks: digital growth for small businesses and operational infrastructure for startups.",
"areaServed": "US"
}
</script>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--brand-dark: #0d1117;
--brand-accent: #238636;
--brand-accent-light: #2ea043;
--brand-muted: #8b949e;
--brand-border: #21262d;
--brand-surface: #161b22;
--brand-surface-hover: #1c2128;
--text-primary: #e6edf3;
--text-secondary: #8b949e;
--text-link: #58a6ff;
--radius-sm: 6px;
--radius-md: 8px;
--radius-lg: 10px;
--transition-fast: 0.2s ease;
}
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
background-color: var(--brand-dark);
color: var(--text-primary);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--brand-accent-light); outline-offset: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
nav {
border-bottom: 1px solid var(--brand-border); padding: 16px 0;
position: sticky; top: 0;
background: rgba(13, 17, 23, 0.85);
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
z-index: 50;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.brand span { color: var(--brand-accent-light); }
nav ul { list-style: none; display: flex; gap: 24px; }
nav ul a { color: var(--text-secondary); font-size: 0.9rem; transition: color var(--transition-fast); padding: 4px 0; }
nav ul a:hover { color: var(--text-primary); text-decoration: none; }
nav ul a.active { color: var(--text-primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-primary); }
.nav-toggle svg { display: block; }
.hero { padding: 80px 0 64px; text-align: center; position: relative; }
.hero::before {
content: '';
position: absolute;
top: 0; left: 50%;
transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(ellipse, rgba(35, 134, 54, 0.08) 0%, transparent 70%);
pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
display: inline-block;
background: rgba(35, 134, 54, 0.15);
border: 1px solid rgba(35, 134, 54, 0.4);
color: var(--brand-accent-light);
font-size: 0.8rem; font-weight: 600;
letter-spacing: 0.08em; text-transform: uppercase;
padding: 4px 12px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800; line-height: 1.1;
letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero-sub {
font-size: 1.15rem; color: var(--text-secondary);
max-width: 640px; margin: 0 auto;
}
section { padding: 64px 0; }
.section-label {
font-size: 0.75rem; font-weight: 700;
letter-spacing: 0.1em; text-transform: uppercase;
color: var(--brand-accent-light); margin-bottom: 12px;
}
.section-title {
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-sub {
color: var(--text-secondary); font-size: 1rem;
max-width: 600px; margin-bottom: 48px;
}
.divider { border: none; border-top: 1px solid var(--brand-border); }
.track-block {
background: var(--brand-surface);
border: 1px solid var(--brand-border);
border-radius: var(--radius-lg);
padding: 40px 36px;
margin-bottom: 32px;
}
.track-block h2 {
font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.track-block .track-tagline {
font-size: 1rem; color: var(--brand-accent-light);
font-style: italic; margin-bottom: 20px;
}
.track-block .track-intro {
font-size: 1rem; color: var(--text-secondary);
margin-bottom: 28px; max-width: 680px; line-height: 1.7;
}
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-bottom: 28px;
}
.service-item {
background: var(--brand-dark);
border: 1px solid var(--brand-border);
border-radius: var(--radius-md);
padding: 24px;
transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.service-item:hover {
border-color: var(--brand-accent);
transform: translateY(-2px);
}
.service-item h4 {
font-size: 0.95rem; font-weight: 700; margin-bottom: 8px;
}
.service-item p {
font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55;
}
.track-ideal {
background: rgba(35, 134, 54, 0.06);
border: 1px solid rgba(35, 134, 54, 0.2);
border-radius: var(--radius-md);
padding: 20px 24px;
margin-top: 8px;
}
.track-ideal h4 {
font-size: 0.85rem; font-weight: 700;
color: var(--brand-accent-light);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 10px;
}
.track-ideal ul { list-style: none; padding: 0; }
.track-ideal li {
font-size: 0.88rem; color: var(--text-secondary);
padding: 3px 0; padding-left: 18px; position: relative;
}
.track-ideal li::before {
content: '›'; position: absolute; left: 0;
color: var(--brand-accent-light); font-weight: 700;
}
.diff-section {
background: var(--brand-surface);
border: 1px solid var(--brand-border);
border-radius: var(--radius-lg);
padding: 40px 36px;
margin-top: 32px;
}
.diff-section h3 {
font-size: 1.2rem; font-weight: 700; margin-bottom: 16px;
}
.diff-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.diff-item {
padding: 16px;
border-radius: var(--radius-md);
transition: background var(--transition-fast);
}
.diff-item:hover { background: rgba(255,255,255,0.02); }
.diff-item h4 {
font-size: 0.9rem; font-weight: 700; margin-bottom: 6px;
}
.diff-item p {
font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55;
}
.btn-primary {
display: inline-block; background: var(--brand-accent); color: #fff;
padding: 12px 24px; border-radius: var(--radius-sm);
font-weight: 600; font-size: 0.95rem;
transition: background var(--transition-fast), transform 0.1s ease;
}
.btn-primary:hover { background: var(--brand-accent-light); text-decoration: none; }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
display: inline-block; background: transparent; color: var(--text-primary);
padding: 12px 24px; border-radius: var(--radius-sm);
font-weight: 600; font-size: 0.95rem;
border: 1px solid var(--brand-border);
transition: border-color var(--transition-fast), background var(--transition-fast);
}
.btn-secondary:hover { border-color: var(--text-secondary); background: var(--brand-surface); text-decoration: none; }
.cta-section { text-align: center; padding: 64px 0; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1rem; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
footer {
border-top: 1px solid var(--brand-border);
padding: 48px 0 32px;
}
.footer-inner { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.footer-brand span { color: var(--brand-accent-light); }
.footer-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-primary); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: var(--text-secondary); transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--text-primary); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--brand-border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-secondary); }
.footer-bottom a { font-size: 0.8rem; color: var(--text-secondary); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--text-primary); }
.skip-link {
position: absolute; top: -100%; left: 16px;
background: var(--brand-accent); color: #fff;
padding: 8px 16px; border-radius: 0 0 6px 6px;
z-index: 100; font-size: 0.85rem; font-weight: 600;
}
.skip-link:focus { top: 0; text-decoration: none; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.back-to-top {
position: fixed; bottom: 24px; right: 24px;
width: 40px; height: 40px; border-radius: 50%;
background: var(--brand-surface); border: 1px solid var(--brand-border);
color: var(--text-primary); display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; cursor: pointer;
opacity: 0; transform: translateY(10px);
transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
z-index: 40; text-decoration: none;
}
.back-to-top:hover { background: var(--brand-accent); border-color: var(--brand-accent); text-decoration: none; }
.back-to-top.show { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
.hero { padding: 48px 0 40px; }
section { padding: 48px 0; }
.track-block { padding: 28px 20px; }
.diff-section { padding: 28px 20px; }
nav ul { display: none; }
nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--brand-dark); border-bottom: 1px solid var(--brand-border); padding: 16px 24px; gap: 16px; }
.nav-toggle { display: block; }
}
@media print {
body { background: #fff; color: #000; }
nav, .hero-actions, .cta-section, .skip-link, .back-to-top { display: none; }
.track-block, .service-item, .diff-section { border-color: #ccc; background: #f9f9f9; }
a { color: #000; }
.section-label, .brand span { color: #238636; }
}
</style>
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<nav role="navigation" aria-label="Main navigation">
<div class="container">
<a href="index.html" class="brand" style="text-decoration:none;">Relay<span>▸</span>Launch</a>
<button class="nav-toggle" aria-label="Toggle navigation menu" aria-expanded="false">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="18" x2="21" y2="18"/></svg>
</button>
<ul>
<li><a href="solutions.html" class="active">Solutions</a></li>
<li><a href="index.html#services">Packages</a></li>
<li><a href="about.html">About</a></li>
<li><a href="work-with-us.html">Work With Us</a></li>
</ul>
</div>
</nav>
<main id="main-content" class="container">
<section class="hero">
<div class="hero-eyebrow">What We Build</div>
<h1>Two tracks. One standard.</h1>
<p class="hero-sub">
We work with two types of businesses, and we've structured everything
around delivering exactly what each one needs. No filler. No fluff.
Just the infrastructure that moves you forward.
</p>
</section>
<hr class="divider">
<!-- TRACK 1: SMALL BUSINESS GROWTH -->
<section id="growth" class="fade-in">
<div class="track-block">
<div class="section-label">Track 1</div>
<h2>Small Business Growth</h2>
<div class="track-tagline">Marketing infrastructure, digital visibility, and the automations that bring customers in the door.</div>
<p class="track-intro">
Most small businesses know they need a better online presence and smarter marketing, but they don't have
the time, the team, or the technical know-how to build it themselves. That's where we come in.
We set up everything from your Google Business page to your website to your lead capture automations
so you can focus on doing what you're already good at while the digital side actually starts
working for you.
</p>
<div class="service-grid">
<div class="service-item">
<h4>Marketing Strategy</h4>
<p>We map out where your customers are, what they're searching for, and how to put your business in front of them. Then we build the systems to make it happen consistently.</p>
</div>
<div class="service-item">
<h4>SEO & Search Visibility</h4>
<p>On-page optimization, keyword targeting, content structure, and technical SEO that gets your business ranking for the searches that actually matter to your bottom line.</p>
</div>
<div class="service-item">
<h4>Google Business Optimization</h4>
<p>Full profile buildout, review management strategy, posting schedules, and local search optimization so you show up when nearby customers are looking.</p>
</div>
<div class="service-item">
<h4>Custom Website Design</h4>
<p>Fast, modern websites built for conversions, not just looks. Deployed on reliable infrastructure with performance baked in from the start.</p>
</div>
<div class="service-item">
<h4>Lead Capture & CRM Automations</h4>
<p>Form submissions that route to your CRM, automatic follow-up sequences, appointment scheduling, and the handoff workflows that keep leads from falling through the cracks.</p>
</div>
<div class="service-item">
<h4>Referral & Growth Programs</h4>
<p>Structured referral programs, recommendation systems, and partnership frameworks designed to generate warm leads from your existing network and client base.</p>
</div>
</div>
<div class="track-ideal">
<h4>This track is built for</h4>
<ul>
<li>Local businesses that want more customers finding them online</li>
<li>Service providers who get referrals but need a digital presence to match</li>
<li>Small teams that know marketing matters but can't hire a department for it</li>
<li>Any business with a great product or service and a website that doesn't reflect it</li>
</ul>
</div>
</div>
</section>
<hr class="divider">
<!-- TRACK 2: STARTUP & OPERATIONS BUILD -->
<section id="systems" class="fade-in">
<div class="track-block">
<div class="section-label">Track 2</div>
<h2>Startup & Operations Build</h2>
<div class="track-tagline">System architecture, financial operations, and the infrastructure that keeps a growing company running.</div>
<p class="track-intro">
When a company is scaling, or trying to, the operational gaps become impossible to ignore.
Spreadsheets that should be databases. Manual processes that eat entire days. Financial closes
that take weeks when they should take hours. We step in and build the systems that make a
growing company actually function like one: ERP migrations, month-end close workflows,
process documentation, reporting dashboards, and whatever else the infrastructure gap calls for.
</p>
<div class="service-grid">
<div class="service-item">
<h4>ERP Migration & Implementation</h4>
<p>Full migration planning, data mapping, system configuration, and cutover execution. We handle the complexity so your team stays focused on running the business.</p>
</div>
<div class="service-item">
<h4>Month-End Close Design</h4>
<p>Streamlined close processes, reconciliation workflows, reporting templates, and the documentation that turns a chaotic month-end into a repeatable system.</p>
</div>
<div class="service-item">
<h4>Workflow Architecture</h4>
<p>From intake forms to approval chains to handoff protocols, we design and build the workflows that keep work moving without bottlenecks or dropped balls.</p>
</div>
<div class="service-item">
<h4>System Setup & Configuration</h4>
<p>Tool selection, platform configuration, user provisioning, and the integrations that tie everything together into one coherent operational stack.</p>
</div>
<div class="service-item">
<h4>Process Documentation & SOPs</h4>
<p>Detailed standard operating procedures, role-based playbooks, and training materials that let your team run systems consistently without depending on tribal knowledge.</p>
</div>
<div class="service-item">
<h4>Operational Reporting & Dashboards</h4>
<p>KPI frameworks, real-time dashboards, and performance tracking systems that give leadership the visibility they need to make grounded decisions.</p>
</div>
</div>
<div class="track-ideal">
<h4>This track is built for</h4>
<ul>
<li>Startups that have outgrown their initial tools and need real infrastructure</li>
<li>Companies going through system migrations or platform consolidation</li>
<li>Finance teams that need month-end close processes that don't break every cycle</li>
<li>Growing companies that need operational backbone before they can scale further</li>
</ul>
</div>
</div>
</section>
<hr class="divider">
<!-- ENGAGEMENT OPTIONS -->
<section class="fade-in">
<div class="track-block" style="border-color: var(--brand-accent);">
<div class="section-label">Flexible Engagement</div>
<h2>Contract work or dedicated roles: your call</h2>
<p class="track-intro">
We offer both project-based contract engagements and traditional W-2 arrangements
depending on what makes sense for your situation. Need someone embedded with your
team full-time? We do that. Need a focused project scoped and delivered on a timeline?
We do that too. The structure follows the work, not the other way around.
</p>
<div class="service-grid">
<div class="service-item">
<h4>Contract / Project-Based</h4>
<p>Scoped engagements with clear deliverables, milestones, and timelines. Ideal for migrations, builds, and defined infrastructure projects.</p>
</div>
<div class="service-item">
<h4>W-2 / Embedded Roles</h4>
<p>Dedicated team members embedded directly in your organization. Best for ongoing operational support, long-term system management, and continuous improvement.</p>
</div>
<div class="service-item">
<h4>Retainer / Advisory</h4>
<p>Ongoing monthly engagements with strategic reviews, priority support, and continuous optimization. For businesses that want a partner, not just a vendor.</p>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- WHAT MAKES US DIFFERENT -->
<section class="fade-in">
<div class="diff-section">
<div class="section-label">Why Relay▸Launch</div>
<h3>We build. We don't just plan.</h3>
<p style="color: var(--text-secondary); margin-bottom: 28px; max-width: 640px; line-height: 1.7;">
A lot of consultants hand you a deck and disappear. We hand you working systems. Our
delivery approach combines deep operational expertise with modern tooling and
proven frameworks that let us move faster and build better than traditional consulting.
You get expert-level infrastructure at a pace that actually matches how fast your
business needs to move.
</p>
<div class="diff-grid">
<div class="diff-item">
<h4>Execution-first</h4>
<p>Strategy matters, but only when it ships. Every engagement produces real, working deliverables, not just documents.</p>
</div>
<div class="diff-item">
<h4>Modern tooling</h4>
<p>We use the best platforms available to build faster, smarter, and more reliably so you get premium infrastructure on practical timelines.</p>
</div>
<div class="diff-item">
<h4>Proven frameworks</h4>
<p>Structured methodologies for everything from project scoping to system architecture so nothing gets missed and nothing gets wasted.</p>
</div>
<div class="diff-item">
<h4>Full ownership transfer</h4>
<p>Everything we build comes with documentation and training. When we're done, your team owns it. No vendor lock-in, no dependency.</p>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- CTA -->
<section class="cta-section">
<h2>Let's figure out what you need</h2>
<p>Tell us what's going on with your business and we'll map out the right approach. No commitment, no pressure.</p>
<div class="hero-actions">
<a href="work-with-us.html" class="btn-primary">Start a Conversation</a>
<a href="index.html#services" class="btn-secondary">See Service Packages</a>
</div>
</section>
</main>
<footer>
<div class="footer-inner">
<div class="footer-grid">
<div>
<div class="footer-brand">Relay<span>▸</span>Launch</div>
<p class="footer-desc">Operational clarity. Strategic momentum. Real results. We build the digital infrastructure that small businesses and startups actually need.</p>
</div>
<div class="footer-col">
<h4>Services</h4>
<ul>
<li><a href="solutions.html#growth">Small Business Growth</a></li>
<li><a href="solutions.html#systems">Startup Operations</a></li>
<li><a href="index.html#services">Service Packages</a></li>
<li><a href="work-with-us.html">Work With Us</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/Relay-Launch">GitHub</a></li>
<li><a href="mailto:hello@relaylaunch.com">Contact</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Relay▸Launch. All rights reserved.</p>
<a href="mailto:hello@relaylaunch.com">hello@relaylaunch.com</a>
</div>
</div>
</footer>
<a href="#" class="back-to-top" aria-label="Back to top">↑</a>
<script>
const navToggle = document.querySelector('.nav-toggle');
const navList = document.querySelector('nav ul');
if (navToggle) {
navToggle.addEventListener('click', () => {
const isOpen = navList.classList.toggle('open');
navToggle.setAttribute('aria-expanded', isOpen);
});
}
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => { if (entry.isIntersecting) entry.target.classList.add('visible'); });
}, { threshold: 0.1 });
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
const backToTop = document.querySelector('.back-to-top');
window.addEventListener('scroll', () => {
backToTop.classList.toggle('show', window.scrollY > 400);
}, { passive: true });
</script>
</body>
</html>