-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPitchmate.html
More file actions
580 lines (520 loc) · 22.1 KB
/
Pitchmate.html
File metadata and controls
580 lines (520 loc) · 22.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PitchMate | On-Device Sales Assistant for Founders</title>
<style>
:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--secondary: #64748b;
--light: #f8fafc;
--dark: #0f172a;
--accent: #8b5cf6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
background-color: var(--light);
color: var(--dark);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
header {
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: fixed;
width: 100%;
z-index: 100;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 0;
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 1.5rem;
color: var(--primary);
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
text-decoration: none;
color: var(--secondary);
font-weight: 500;
transition: color 0.2s ease;
}
.nav-links a:hover {
color: var(--primary);
}
.btn {
background-color: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.2s ease;
display: inline-block;
}
.btn:hover {
background-color: var(--primary-dark);
}
.hero {
padding: 12rem 0 6rem;
background: linear-gradient(to bottom right, #f0f9ff, #e0f2fe);
}
.hero-content {
display: flex;
align-items: center;
gap: 4rem;
}
.hero-text {
flex: 1;
}
.hero-text h1 {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
background: linear-gradient(90deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-text p {
font-size: 1.2rem;
color: var(--secondary);
margin-bottom: 2rem;
max-width: 540px;
}
.hero-image {
flex: 1;
position: relative;
}
.phone-mockup {
width: 100%;
max-width: 400px;
border-radius: 2rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
transition: transform 0.5s ease;
}
.phone-mockup:hover {
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}
.features {
padding: 6rem 0;
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 4rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background-color: white;
border-radius: 1rem;
padding: 2rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.feature-icon {
background-color: var(--primary);
color: white;
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.privacy {
background-color: var(--dark);
color: white;
padding: 6rem 0;
}
.privacy-content {
display: flex;
align-items: center;
gap: 4rem;
}
.privacy-text {
flex: 1;
}
.privacy-text h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.privacy-features {
flex: 1;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.privacy-feature {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.privacy-feature-icon {
background-color: var(--accent);
color: white;
width: 2.5rem;
height: 2.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
.cta {
padding: 6rem 0;
text-align: center;
background: linear-gradient(to right, #e0f2fe, #dbeafe);
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.cta p {
font-size: 1.2rem;
color: var(--secondary);
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
footer {
background-color: var(--dark);
color: white;
padding: 4rem 0;
}
.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 2rem;
}
.footer-logo {
flex: 1;
min-width: 250px;
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 4rem;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--light);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.75rem;
}
.footer-column ul li a {
color: var(--secondary);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-column ul li a:hover {
color: white;
}
.copyright {
text-align: center;
padding-top: 3rem;
color: var(--secondary);
font-size: 0.9rem;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.8s ease forwards;
opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@media (max-width: 768px) {
.hero-content, .privacy-content {
flex-direction: column;
}
.hero-text h1 {
font-size: 2.5rem;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<nav class="nav">
<div class="logo">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2"/>
<path d="M15 9L9 15M9 9L15 15" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
PitchMate
</div>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#privacy">Privacy</a>
<a href="#download">Download</a>
</div>
<a href="#download" class="btn">Get App</a>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero-content">
<div class="hero-text fade-in">
<h1>Your Private Sales Assistant</h1>
<p>PitchMate helps startup founders schedule meetings, take notes, and generate follow-ups — all offline and on-device.</p>
<a href="#download" class="btn">Download Now</a>
</div>
<div class="hero-image fade-in delay-2">
<img src="/api/placeholder/300/600" alt="PitchMate App Interface" class="phone-mockup">
</div>
</div>
</div>
</section>
<section class="features" id="features">
<div class="container">
<h2 class="section-title fade-in">Streamline Your Sales Process</h2>
<div class="features-grid">
<div class="feature-card fade-in delay-1">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3" y="4" width="18" height="18" rx="2" stroke="white" stroke-width="2"/>
<path d="M16 2V6" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M8 2V6" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M3 10H21" stroke="white" stroke-width="2"/>
<circle cx="12" cy="15" r="2" fill="white"/>
</svg>
</div>
<h3>Smart Scheduling</h3>
<p>Set your availability once and share available time slots with prospects. Automatically syncs with your native calendar.</p>
</div>
<div class="feature-card fade-in delay-2">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 2H16C17.1046 2 18 2.89543 18 4V20C18 21.1046 17.1046 22 16 22H8C6.89543 22 6 21.1046 6 20V4C6 2.89543 6.89543 2 8 2Z" stroke="white" stroke-width="2"/>
<path d="M9 6H15" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M9 10H15" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M9 14H13" stroke="white" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<h3>Meeting Notes</h3>
<p>Take quick structured notes during or after calls. Tag and categorize for easy filtering later.</p>
</div>
<div class="feature-card fade-in delay-3">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="white" stroke-width="2"/>
<path d="M12 16V16.01" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M8 9C8 7.34315 9.79086 6 12 6C14.2091 6 16 7.34315 16 9C16 10.6569 14.2091 12 12 12V14" stroke="white" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<h3>AI Follow-ups</h3>
<p>Convert your bullet points into professional follow-up messages with on-device machine learning.</p>
</div>
<div class="feature-card fade-in delay-4">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 3V21H21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 9L13 14L9 10L5 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 9H14V13" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<h3>Sales Dashboard</h3>
<p>Track your metrics with a simple, yet powerful dashboard. Monitor conversions and analyze your performance.</p>
</div>
<div class="feature-card fade-in delay-1">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 22H20C21.1046 22 22 21.1046 22 20V8L16 2H4C2.89543 2 2 2.89543 2 4V20C2 21.1046 2.89543 22 4 22Z" stroke="white" stroke-width="2"/>
<path d="M16 2V8H22" stroke="white" stroke-width="2"/>
<path d="M12 18V12" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M9 15L12 12L15 15" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<h3>File Attachments</h3>
<p>Attach PDFs, screenshots, and other files to your meetings for easy reference later.</p>
</div>
<div class="feature-card fade-in delay-2">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" stroke="white" stroke-width="2"/>
<path d="M12 6V12L16 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<h3>Smart Reminders</h3>
<p>Set follow-up reminders that integrate with your phone's notification system.</p>
</div>
</div>
</div>
</section>
<section class="privacy" id="privacy">
<div class="container">
<div class="privacy-content">
<div class="privacy-text fade-in">
<h2>Your Data Never Leaves Your Device</h2>
<p>PitchMate is built with privacy at its core. No cloud syncing, no third-party APIs, no data sharing.</p>
</div>
<div class="privacy-features">
<div class="privacy-feature fade-in delay-1">
<div class="privacy-feature-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2L4 5V11.09C4 16.14 7.41 20.85 12 22C16.59 20.85 20 16.14 20 11.09V5L12 2Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 22C16.59 20.85 20 16.14 20 11.09V5L12 2" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div>
<h3>100% Offline First</h3>
<p>All data is stored locally on your device with no external dependencies.</p>
</div>
</div>
<div class="privacy-feature fade-in delay-2">
<div class="privacy-feature-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3" y="11" width="18" height="11" rx="2" stroke="white" stroke-width="2"/>
<circle cx="12" cy="16" r="2" fill="white"/>
<path d="M8 11V7C8 4.79086 9.79086 3 12 3V3C14.2091 3 16 4.79086 16 7V11" stroke="white" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div>
<h3>On-Device ML</h3>
<p>Our machine learning models run directly on your device. Your data never leaves your phone.</p>
</div>
</div>
<div class="privacy-feature fade-in delay-3">
<div class="privacy-feature-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3Z" stroke="white" stroke-width="2"/>
<path d="M12 7V12L15 15" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div>
<h3>Apple Native Only</h3>
<p>Built with Apple's native frameworks for maximum security and reliability.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="cta" id="download">
<div class="container">
<h2 class="fade-in">Ready to Close More Deals?</h2>
<p class="fade-in delay-1">PitchMate is the perfect companion for solo founders and early-stage startups who need to manage their sales process efficiently.</p>
<a href="https://apps.apple.com/app/pitchmate" class="btn fade-in delay-2">Download on App Store</a>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<div class="logo">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2"/>
<path d="M15 9L9 15M9 9L15 15" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
PitchMate
</div>
<p style="margin-top: 1rem;">Your private, on-device sales assistant designed specifically for startup founders.</p>
</div>
<div class="footer-links">
<div class="footer-column">
<h3>App</h3>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#privacy">Privacy</a></li>
<li><a href="#download">Download</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Company</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Resources</h3>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
</div>
</div>
<div class="copyright">
<p>© 2025 PitchMate. All rights reserved.</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const fadeElements = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
fadeElements.forEach(element => {
observer.observe(element);
});
});
</script>
</body>
</html>