-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-prompts.html
More file actions
1814 lines (1640 loc) · 136 KB
/
ai-prompts.html
File metadata and controls
1814 lines (1640 loc) · 136 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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Prompt Builder for Marketing | Sortlist</title>
<meta name="description" content="Build custom AI prompts for marketing, SEO, branding, ads and more. Fill in your details, get a ready-to-use prompt for ChatGPT, Claude or Gemini. 100% free.">
<link rel="canonical" href="https://www.sortlist.com/ai-prompts/">
<meta property="og:title" content="AI Prompt Builder for Marketing | Sortlist">
<meta property="og:description" content="Build custom AI prompts for SEO, branding, ads, content and more. Free, no signup.">
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebApplication","name":"Sortlist AI Prompt Builder","description":"Build custom AI prompts for marketing.","url":"https://www.sortlist.com/ai-prompts/","applicationCategory":"Marketing","offers":{"@type":"Offer","price":"0","priceCurrency":"USD"},"publisher":{"@type":"Organization","name":"Sortlist","url":"https://www.sortlist.com"}}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<style>
:root {
--primary-500: #200DF2;
--primary-600: #1A0BC4;
--primary-700: #150996;
--primary-800: #100768;
--primary-900: #020219;
--primary-100: #DCDAFD;
--primary-200: #B9B5FB;
--primary-50: #EDECFE;
--secondary-100: #FBFAF9;
--secondary-200: #F1EDEA;
--secondary-300: #E7DFDA;
--secondary-400: #B8AFA8;
--secondary-500: #7E7367;
--secondary-600: #5C534A;
--secondary-700: #463F39;
--secondary-800: #2A2521;
--secondary-900: #1B1917;
--secondary-950: #0F0D0A;
--success-500: #5C9550;
--success-200: #E2F0DB;
--danger-500: #BD0F58;
--white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--secondary-950);
line-height: 1.6;
background: var(--white);
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
/* ── Nav ── */
.navbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: var(--white);
border-bottom: 1px solid #e5e7eb;
height: 72px; display: flex; align-items: center;
}
.navbar .container {
display: flex; align-items: center; gap: 32px; width: 100%;
}
.nav-logo {
font-family: 'Playfair Display', Georgia, serif;
font-size: 26px; font-weight: 700; color: var(--secondary-950);
text-decoration: none; letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
font-size: 14px; font-weight: 500; color: var(--secondary-700);
text-decoration: none; transition: color 0.2s;
display: inline-flex; align-items: center; gap: 4px;
padding: 8px 12px; border-radius: 6px;
}
.nav-link:hover { color: var(--secondary-950); background: var(--secondary-100); }
.nav-link .chevron {
font-size: 10px; color: var(--secondary-400); transition: transform 0.2s;
}
.nav-search {
flex: 1; max-width: 260px; position: relative; margin-left: auto;
}
.nav-search input {
width: 100%; padding: 9px 14px 9px 14px;
border: 1.5px solid #e5e7eb; border-radius: 8px;
font-size: 14px; font-family: inherit; color: var(--secondary-950);
background: var(--white); transition: border-color 0.2s;
}
.nav-search input:focus { outline: none; border-color: var(--primary-500); }
.nav-search input::placeholder { color: var(--secondary-400); }
.nav-search-icon {
position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
color: var(--secondary-400); font-size: 14px; pointer-events: none;
}
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-icon-btn {
width: 40px; height: 40px; border-radius: 50%; border: none;
background: transparent; cursor: pointer; display: flex;
align-items: center; justify-content: center; color: var(--secondary-500);
transition: background 0.2s; font-size: 18px;
}
.nav-icon-btn:hover { background: var(--secondary-100); }
.nav-post-btn {
background: var(--primary-500); color: var(--white);
font-family: inherit; font-size: 14px; font-weight: 600;
padding: 10px 20px; border-radius: 8px; border: none;
cursor: pointer; text-decoration: none; transition: background 0.2s;
white-space: nowrap;
}
.nav-post-btn:hover { background: var(--primary-600); }
/* ── Hero (dark) ── */
.hero {
background: var(--primary-900);
padding: 96px 0 32px;
text-align: center;
}
.hero-badge {
display: inline-block;
background: var(--primary-50); color: var(--primary-500);
padding: 5px 14px; border-radius: 40px;
font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(30px, 4.5vw, 42px); font-weight: 700; line-height: 1.1;
color: var(--white); max-width: 600px; margin: 0 auto 12px;
letter-spacing: -1px;
}
.hero h1 .dot {
color: var(--primary-500);
font-family: 'Playfair Display', Georgia, serif;
}
.hero p {
font-size: 15px; color: rgba(255,255,255,0.5);
max-width: 480px; margin: 0 auto; line-height: 1.6;
}
/* ── Builder Section ── */
.builder-section {
background: var(--secondary-100);
padding: 40px 24px 64px;
}
.builder-header {
text-align: center; margin-bottom: 24px;
}
.builder-header h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 28px; font-weight: 700; letter-spacing: -0.5px;
margin-bottom: 4px;
}
.builder-header p {
font-size: 14px; color: var(--secondary-500); max-width: 500px; margin: 0 auto;
}
/* Step indicators */
.steps-indicator {
display: flex; justify-content: center; gap: 0; margin-bottom: 40px;
}
.step-item {
display: flex; align-items: center; gap: 10px;
}
.step-number {
width: 36px; height: 36px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 14px; font-weight: 700;
background: var(--secondary-200); color: var(--secondary-500);
transition: all 0.3s;
}
.step-item.active .step-number {
background: var(--primary-500); color: var(--white);
box-shadow: 0 1px 2px rgba(32,13,242,.18), 0 0 8px rgba(32,13,242,.12);
}
.step-item.done .step-number {
background: var(--success-500); color: var(--white);
}
.step-label {
font-size: 14px; font-weight: 600; color: var(--secondary-400);
}
.step-item.active .step-label { color: var(--secondary-950); }
.step-item.done .step-label { color: var(--success-500); }
.step-connector {
width: 48px; height: 2px; background: var(--secondary-300);
margin: 0 16px; align-self: center;
}
/* Builder card */
.builder-card {
background: var(--white);
border: 2px solid var(--secondary-200);
border-radius: 16px;
max-width: 720px; margin: 0 auto;
box-shadow: 0 4px 8px rgba(15,13,10,.06), 0 0 25px rgba(15,13,10,.04);
overflow: hidden;
}
.builder-card-header {
padding: 28px 32px 0;
}
.builder-card-header h3 {
font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.builder-card-header p {
font-size: 14px; color: var(--secondary-500);
}
.builder-card-body {
padding: 24px 32px 32px;
}
/* Goal picker grid */
.goal-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.goal-card {
border: 2px solid var(--secondary-200);
border-radius: 12px; padding: 20px 16px;
text-align: center; cursor: pointer;
transition: all 0.2s; background: var(--white);
}
.goal-card:hover {
border-color: var(--primary-200);
background: var(--primary-50);
}
.goal-card.selected {
border-color: var(--primary-500);
background: var(--primary-50);
box-shadow: 0 0 0 2px var(--primary-200);
}
.goal-icon { font-size: 28px; margin-bottom: 8px; }
.goal-label { font-size: 13px; font-weight: 600; color: var(--secondary-800); }
.goal-sub { font-size: 11px; color: var(--secondary-500); margin-top: 2px; }
/* Form fields */
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block; font-size: 13px; font-weight: 600;
color: var(--secondary-800); margin-bottom: 6px;
}
.form-hint {
font-size: 12px; color: var(--secondary-400); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
width: 100%; padding: 13px 16px;
border: 1.5px solid var(--secondary-300);
border-radius: 10px; font-size: 15px;
font-family: inherit; color: var(--secondary-950);
background: var(--white); transition: all 0.2s;
min-height: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
outline: none; border-color: var(--primary-500);
box-shadow: 0 0 0 3px rgba(32,13,242,0.08);
}
.form-input::placeholder, .form-textarea::placeholder {
color: var(--secondary-400);
}
.form-textarea { resize: vertical; min-height: 80px; }
/* Pill selectors (click-based form fields) */
.pill-grid {
display: flex; flex-wrap: wrap; gap: 8px;
}
.pill-option {
padding: 9px 16px; border-radius: 40px;
font-size: 13px; font-weight: 500; cursor: pointer;
border: 1.5px solid var(--secondary-300);
background: var(--white); color: var(--secondary-700);
transition: all 0.15s; user-select: none;
}
.pill-option:hover {
border-color: var(--primary-200); color: var(--primary-500);
background: var(--primary-50);
}
.pill-option.selected {
border-color: var(--primary-500); color: var(--white);
background: var(--primary-500);
}
.form-select {
appearance: none; cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237E7367' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
padding-right: 44px;
}
.form-row {
display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
/* Buttons */
.btn-primary {
background: var(--primary-500); color: var(--white);
border: none; padding: 13px 20px; border-radius: 10px;
font-size: 15px; font-weight: 500; cursor: pointer;
font-family: inherit; transition: all 0.2s; min-height: 52px;
box-shadow: 0 1px 2px 0 rgba(32,13,242,.18), 0 0 8px 0 rgba(32,13,242,.12);
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
text-decoration: none;
}
.btn-primary:hover { background: var(--primary-600); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-secondary {
background: var(--white); color: var(--secondary-950);
border: 1px solid var(--secondary-300); padding: 13px 20px;
border-radius: 10px; font-size: 15px; font-weight: 500;
cursor: pointer; font-family: inherit; transition: all 0.2s;
min-height: 52px;
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
text-decoration: none;
box-shadow: 0 1px 2px 0 hsla(31,10%,45%,.18), 0 0 8px 0 hsla(31,10%,45%,.12);
}
.btn-secondary:hover { border-color: var(--secondary-500); }
.btn-success {
background: var(--success-500); color: var(--white);
border: none; padding: 13px 24px; border-radius: 10px;
font-size: 15px; font-weight: 600; cursor: pointer;
font-family: inherit; transition: all 0.2s; min-height: 52px;
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-success:hover { background: #4d8043; }
.btn-ghost {
background: transparent; color: var(--secondary-500);
border: none; padding: 13px 16px; border-radius: 10px;
font-size: 14px; font-weight: 600; cursor: pointer;
font-family: inherit; transition: all 0.2s;
}
.btn-ghost:hover { color: var(--primary-500); }
.builder-actions {
display: flex; gap: 12px; justify-content: space-between;
margin-top: 24px; padding-top: 24px;
border-top: 1px solid var(--secondary-200);
}
.builder-actions-right { display: flex; gap: 12px; }
/* Output section */
.output-area {
background: var(--secondary-100);
border: 1.5px solid var(--secondary-200);
border-radius: 12px; padding: 24px;
font-size: 14px; line-height: 1.7;
white-space: pre-wrap; max-height: 400px;
overflow-y: auto; position: relative;
}
.output-area code {
font-family: 'Inter', monospace; font-size: 14px;
}
.output-actions {
display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.copied-toast {
background: var(--success-500); color: white;
padding: 8px 16px; border-radius: 8px;
font-size: 13px; font-weight: 600;
position: fixed; bottom: 24px; left: 50%;
transform: translateX(-50%); z-index: 1000;
opacity: 0; transition: opacity 0.3s;
pointer-events: none;
}
.copied-toast.show { opacity: 1; }
/* ── Library Section ── */
.library-section {
background: var(--white);
padding: 80px 24px;
}
.library-header {
text-align: center; margin-bottom: 16px;
}
.library-header h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 40px; font-weight: 700; letter-spacing: -1px;
margin-bottom: 12px;
}
.library-header p {
font-size: 16px; color: var(--secondary-500);
max-width: 500px; margin: 0 auto;
}
/* Search bar */
.search-bar {
max-width: 520px; margin: 24px auto 32px; position: relative;
}
.search-bar input {
width: 100%; padding: 13px 16px 13px 48px;
border: 1.5px solid var(--secondary-300); border-radius: 10px;
font-size: 15px; font-family: inherit; background: var(--white);
transition: all 0.2s; min-height: 52px;
}
.search-bar input:focus {
outline: none; border-color: var(--primary-500);
box-shadow: 0 0 0 3px rgba(32,13,242,0.08);
}
.search-bar .search-icon {
position: absolute; left: 16px; top: 50%;
transform: translateY(-50%); color: var(--secondary-400);
font-size: 18px; pointer-events: none;
}
/* Category pills */
.cat-pills {
display: flex; flex-wrap: wrap; justify-content: center;
gap: 8px; margin-bottom: 40px;
}
.cat-pill {
padding: 8px 16px; border-radius: 40px;
font-size: 13px; font-weight: 600; cursor: pointer;
border: 1.5px solid var(--secondary-300);
background: var(--white); color: var(--secondary-600);
transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--primary-200); color: var(--primary-500); }
.cat-pill.active {
background: var(--primary-500); color: var(--white);
border-color: var(--primary-500);
}
/* Prompt cards grid */
.prompts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 16px;
}
.prompt-card {
background: var(--white);
border: 1.5px solid var(--secondary-200);
border-radius: 16px; padding: 24px;
transition: all 0.2s; display: flex;
flex-direction: column; cursor: pointer;
}
.prompt-card:hover {
border-color: var(--primary-200);
box-shadow: 0 4px 8px rgba(15,13,10,.08), 0 0 25px rgba(15,13,10,.04);
transform: translateY(-2px);
}
.prompt-card-top {
display: flex; align-items: center; justify-content: space-between;
margin-bottom: 12px;
}
.prompt-card-badge {
font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
text-transform: uppercase; padding: 4px 10px; border-radius: 40px;
background: var(--primary-50); color: var(--primary-500);
}
.prompt-card-diff {
font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}
.diff-b { background: var(--success-200); color: var(--success-500); }
.diff-i { background: #FEF3C7; color: #D97706; }
.diff-a { background: #FEE2E2; color: #DC2626; }
.prompt-card h3 {
font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.3;
}
.prompt-card-desc {
font-size: 14px; color: var(--secondary-500); margin-bottom: 16px;
flex-grow: 1;
}
.prompt-card-footer {
display: flex; gap: 8px; margin-top: auto;
}
.prompt-card-btn {
padding: 8px 14px; border-radius: 8px; font-size: 12px;
font-weight: 600; cursor: pointer; font-family: inherit;
transition: all 0.2s; border: none;
}
.prompt-card-btn-primary {
background: var(--primary-500); color: var(--white);
}
.prompt-card-btn-primary:hover { background: var(--primary-600); }
.prompt-card-btn-outline {
background: var(--white); color: var(--secondary-700);
border: 1.5px solid var(--secondary-300);
}
.prompt-card-btn-outline:hover { border-color: var(--primary-500); color: var(--primary-500); }
/* Inline CTA */
.inline-cta {
background: var(--primary-50); border: 2px solid var(--primary-100);
border-radius: 16px; padding: 32px; text-align: center;
grid-column: 1 / -1;
}
.inline-cta h3 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 22px; font-weight: 700; margin-bottom: 8px;
}
.inline-cta p {
color: var(--secondary-500); margin-bottom: 16px; font-size: 14px;
}
/* ── CTA Banner ── */
.cta-section {
background: var(--success-200); padding: 80px 24px; text-align: center;
}
.cta-section h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 40px; font-weight: 700; letter-spacing: -1px;
margin-bottom: 12px;
}
.cta-section p {
font-size: 16px; color: var(--secondary-600);
max-width: 500px; margin: 0 auto 32px;
}
.cta-buttons {
display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta-trust {
display: flex; justify-content: center; gap: 24px;
margin-top: 24px; font-size: 13px; color: var(--secondary-500); font-weight: 500;
}
/* ── FAQ ── */
.faq-section {
background: var(--secondary-100); padding: 80px 24px;
}
.faq-header {
text-align: center; margin-bottom: 40px;
}
.faq-header h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 40px; font-weight: 700; letter-spacing: -1px;
}
.faq-card {
max-width: 720px; margin: 0 auto;
background: var(--white); border-radius: 16px;
border: 1.5px solid var(--secondary-200);
overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--secondary-200); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
width: 100%; padding: 20px 24px;
display: flex; align-items: center; justify-content: space-between;
background: none; border: none; font-size: 15px; font-weight: 600;
color: var(--secondary-950); cursor: pointer; font-family: inherit;
text-align: left; gap: 16px;
}
.faq-question:hover { background: var(--secondary-100); }
.faq-arrow {
font-size: 12px; color: var(--secondary-400);
transition: transform 0.2s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
padding: 0 24px 20px; font-size: 14px;
color: var(--secondary-600); line-height: 1.7;
}
/* ── Footer ── */
.footer {
background: var(--white); padding: 60px 24px 32px;
color: var(--secondary-500); font-size: 13px;
border-top: 1px solid var(--secondary-300);
}
.footer .container {
display: flex; align-items: center; justify-content: space-between;
}
.footer a { color: var(--primary-500); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-brand {
font-size: 18px; font-weight: 800; color: var(--secondary-950);
margin-bottom: 4px;
}
/* ── Modal ── */
.modal-overlay {
display: none; position: fixed; inset: 0;
background: rgba(2,2,25,0.7); z-index: 1000;
align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
background: var(--white); border-radius: 16px;
max-width: 720px; width: 100%; max-height: 85vh;
overflow-y: auto;
box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.modal-header {
display: flex; align-items: center; justify-content: space-between;
padding: 24px 28px; border-bottom: 1px solid var(--secondary-200);
position: sticky; top: 0; background: var(--white);
border-radius: 16px 16px 0 0; z-index: 1;
}
.modal-header h3 { font-size: 17px; font-weight: 700; }
.modal-close {
width: 36px; height: 36px; border-radius: 8px;
border: 1px solid var(--secondary-300); background: var(--white);
cursor: pointer; font-size: 18px; display: flex;
align-items: center; justify-content: center;
color: var(--secondary-500); transition: all 0.2s;
}
.modal-close:hover { background: var(--secondary-100); }
.modal-body { padding: 24px 28px; }
.modal-prompt {
background: var(--secondary-100);
border: 1px solid var(--secondary-200);
border-radius: 12px; padding: 20px;
font-size: 14px; line-height: 1.7;
white-space: pre-wrap; margin-bottom: 20px;
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-form-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.modal-form-group { display: flex; flex-direction: column; gap: 4px; }
.modal-form-group.full { grid-column: 1 / -1; }
.modal-form-label {
font-size: 12px; font-weight: 600; color: var(--secondary-600);
text-transform: uppercase; letter-spacing: 0.04em;
}
.modal-form-input {
padding: 10px 14px; border: 1.5px solid var(--secondary-300);
border-radius: 8px; font-size: 14px; font-family: inherit;
color: var(--secondary-950); background: var(--white);
transition: border-color 0.2s;
}
.modal-form-input:focus {
outline: none; border-color: var(--primary-500);
box-shadow: 0 0 0 3px rgba(32,13,242,0.08);
}
.modal-form-input::placeholder { color: var(--secondary-400); }
.modal-form-hint {
font-size: 11px; color: var(--secondary-400);
padding: 8px 0 0; text-align: center;
}
@media (max-width: 768px) {
.modal-form-grid { grid-template-columns: 1fr; }
}
/* ── Responsive ── */
@media (max-width: 768px) {
.nav-links, .nav-search { display: none; }
.nav-icon-btn:first-child { display: none; }
.hero { padding: 96px 24px 24px; }
.hero h1 { font-size: clamp(24px, 6vw, 34px); }
.goal-grid { grid-template-columns: repeat(2, 1fr); }
.form-row { grid-template-columns: 1fr; }
.prompts-grid { grid-template-columns: 1fr; }
.hero-stats { gap: 24px; }
.builder-card-body { padding: 20px; }
.builder-card-header { padding: 20px 20px 0; }
.steps-indicator { flex-wrap: wrap; gap: 4px; }
.step-connector { width: 24px; margin: 0 8px; }
.footer .container { flex-direction: column; text-align: center; gap: 12px; }
}
/* Utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
</style>
</head>
<body>
<!-- Nav -->
<nav class="navbar">
<div class="container">
<a href="https://www.sortlist.com" class="nav-logo">sortlist</a>
<div class="nav-links">
<a href="https://www.sortlist.com" class="nav-link">Find providers <span class="chevron">▾</span></a>
<a href="https://www.sortlist.com/agencies" class="nav-link">Get clients <span class="chevron">▾</span></a>
<a href="https://www.sortlist.com/resources" class="nav-link">Resources <span class="chevron">▾</span></a>
</div>
<div class="nav-search">
<input type="text" placeholder="What service?">
<span class="nav-search-icon">🔍</span>
</div>
<div class="nav-right">
<button class="nav-icon-btn" title="Favorites">♡</button>
<a href="https://www.sortlist.com/projects/new" class="nav-post-btn">Post a project</a>
<button class="nav-icon-btn" title="Account">☺</button>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="container">
<span class="hero-badge">Free - 54 prompts - no signup</span>
<h1>AI Prompt Builder for Marketing<span class="dot">.</span></h1>
<p>Pick a goal, fill in your details, get a prompt for ChatGPT, Claude or Gemini.</p>
</div>
</section>
<!-- Builder -->
<section class="builder-section" id="builder">
<div class="container">
<div class="builder-header">
<h2>What do you need?</h2>
</div>
<div class="steps-indicator" id="stepsIndicator">
<div class="step-item active" data-step="1">
<div class="step-number">1</div>
<span class="step-label">Pick a goal</span>
</div>
<div class="step-connector"></div>
<div class="step-item" data-step="2">
<div class="step-number">2</div>
<span class="step-label">Your details</span>
</div>
<div class="step-connector"></div>
<div class="step-item" data-step="3">
<div class="step-number">3</div>
<span class="step-label">Get your prompt</span>
</div>
</div>
<div class="builder-card">
<!-- Step 1: Pick a goal -->
<div id="step1" class="builder-step">
<div class="builder-card-header">
<h3>What do you need help with?</h3>
<p>Choose a task and we'll build the perfect prompt for you.</p>
</div>
<div class="builder-card-body">
<div class="goal-grid" id="goalGrid"></div>
</div>
</div>
<!-- Step 2: Fill details -->
<div id="step2" class="builder-step hidden">
<div class="builder-card-header">
<h3 id="step2Title">Your details</h3>
<p id="step2Desc">Fill in your specifics. The more detail, the better the output.</p>
</div>
<div class="builder-card-body">
<div id="dynamicForm"></div>
<div class="builder-actions">
<button class="btn-ghost" onclick="goToStep(1)">← Back</button>
<div class="builder-actions-right">
<button class="btn-primary" onclick="generatePrompt()">Generate my prompt →</button>
</div>
</div>
</div>
</div>
<!-- Step 3: Output -->
<div id="step3" class="builder-step hidden">
<div class="builder-card-header">
<h3>Your prompt is ready</h3>
<p>Copy it and paste into Claude, ChatGPT, or Gemini.</p>
</div>
<div class="builder-card-body">
<div class="output-area" id="outputArea"></div>
<div class="output-actions">
<button class="btn-primary" onclick="copyOutput()">Copy prompt</button>
<a href="https://claude.ai" target="_blank" class="btn-secondary">Open Claude →</a>
<a href="https://chat.openai.com" target="_blank" class="btn-secondary">Open ChatGPT →</a>
</div>
<div style="margin-top:24px; padding:20px; background:var(--primary-50); border-radius:12px; text-align:center;">
<p style="font-size:14px; color:var(--secondary-700); margin-bottom:12px; font-weight:600;">Want a specialist to handle this instead?</p>
<a href="https://www.sortlist.com" target="_blank" class="btn-primary">Find an agency on Sortlist →</a>
</div>
<div class="builder-actions" style="border:none; padding-top:16px;">
<button class="btn-ghost" onclick="goToStep(2)">← Edit details</button>
<button class="btn-ghost" onclick="goToStep(1)">Start over</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Library -->
<section class="library-section" id="library">
<div class="container">
<div class="library-header">
<h2>Prompt Library</h2>
<p>Browse all prompts. Copy any one in a click.</p>
</div>
<div class="search-bar">
<span class="search-icon">🔍</span>
<input type="text" placeholder="Search prompts..." id="searchInput">
</div>
<div class="cat-pills" id="catPills"></div>
<div class="prompts-grid" id="promptsGrid"></div>
</div>
</section>
<!-- CTA -->
<section class="cta-section">
<div class="container">
<h2>AI gets you started. An agency gets you there<span class="dot">.</span></h2>
<p>Prompts give you the plan. A specialist agency executes it at scale. Find yours on Sortlist.</p>
<div class="cta-buttons">
<a href="https://www.sortlist.com" class="btn-primary">Find an Agency →</a>
<button class="btn-secondary" onclick="document.getElementById('builder').scrollIntoView({behavior:'smooth'})">Build another prompt</button>
</div>
<div class="cta-trust">
<span>✓ Free for clients</span>
<span>✓ 30,000+ agencies</span>
<span>✓ 150+ countries</span>
</div>
</div>
</section>
<!-- FAQ -->
<section class="faq-section">
<div class="container">
<div class="faq-header"><h2>Questions & answers<span class="dot">.</span></h2></div>
<div class="faq-card">
<div class="faq-item">
<button class="faq-question">Is this really free?<span class="faq-arrow">▼</span></button>
<div class="faq-answer"><div class="faq-answer-inner">Yes, 100% free, no signup, no email gate. Build as many prompts as you want. We built this because we believe better prompts lead to better marketing decisions - and when you need more than a prompt, Sortlist is here to connect you with the right agency.</div></div>
</div>
<div class="faq-item">
<button class="faq-question">Which AI tools do these prompts work with?<span class="faq-arrow">▼</span></button>
<div class="faq-answer"><div class="faq-answer-inner">All of them. Every prompt is designed to work with ChatGPT (GPT-4), Claude, Gemini, and any other large language model. The prompts use clear structure and instructions that any modern AI can follow.</div></div>
</div>
<div class="faq-item">
<button class="faq-question">How is the prompt builder different from the library?<span class="faq-arrow">▼</span></button>
<div class="faq-answer"><div class="faq-answer-inner">The builder creates a prompt customized with your specific details - your company, audience, goals. The library gives you ready-made templates you can copy and customize yourself. Both are useful, just different starting points.</div></div>
</div>
<div class="faq-item">
<button class="faq-question">Can AI replace a marketing agency?<span class="faq-arrow">▼</span></button>
<div class="faq-answer"><div class="faq-answer-inner">AI is great for first drafts, research, and brainstorming. But strategy, execution, creative direction, and experience - that's where agencies shine. Think of AI prompts as a starting point that helps you brief an agency better, or handle the small stuff yourself so the agency can focus on high-impact work.</div></div>
</div>
<div class="faq-item">
<button class="faq-question">Will you add more prompts?<span class="faq-arrow">▼</span></button>
<div class="faq-answer"><div class="faq-answer-inner">Yes. We add new prompts regularly based on what marketers actually need. If you have a suggestion, reach out to us through Sortlist.</div></div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div>
<div class="footer-brand">sortlist</div>
<span>The marketplace for agencies & clients.</span>
</div>
<div>
<a href="https://www.sortlist.com">Marketplace</a> ·
<a href="https://www.sortlist.com/pricing">Pricing</a> ·
<a href="https://www.sortlist.com/blog">Blog</a>
</div>
</div>
</footer>
<!-- Copied toast -->
<div class="copied-toast" id="copiedToast">Copied to clipboard</div>
<!-- Modal -->
<div class="modal-overlay" id="modalOverlay">
<div class="modal">
<div class="modal-header">
<h3 id="modalTitle">Prompt</h3>
<button class="modal-close" onclick="closeModal()">×</button>
</div>
<div class="modal-body">
<div id="modalForm" style="margin-bottom:20px;"></div>
<div class="modal-prompt" id="modalPrompt"></div>
<div class="modal-actions">
<button class="btn-primary" onclick="copyModal()">Copy prompt</button>
<a href="https://claude.ai" target="_blank" class="btn-secondary">Open Claude →</a>
<a href="https://www.sortlist.com" target="_blank" class="btn-success">Find an agency →</a>
</div>
</div>
</div>
</div>
<script>
// ═══════════════════════════════════
// BUILDER GOALS (template-based)
// ═══════════════════════════════════
const GOALS = [
{
id: "seo-audit", icon: "🔎", label: "SEO Audit", sub: "Analyze any website",
fields: [
{ key: "url", label: "Website URL", placeholder: "https://www.example.com", type: "text" },
{ key: "focus", label: "Main concern", type: "pills", multi: true, options: ["Low organic traffic","Bad mobile experience","Slow page speed","Poor rankings","Technical issues","Thin content","Lost rankings recently","New website"] },
{ key: "competitor", label: "Main competitor (optional)", placeholder: "https://www.competitor.com", type: "text" }
],
template: `#CONTEXT
You are performing a comprehensive SEO audit for {{url}}.
Main concerns: {{focus}}.
{{competitor ? 'Benchmark competitor: ' + competitor : ''}}
#ROLE
You are a senior SEO consultant with 15 years of experience who has audited 500+ websites. You charge $3,000 per audit. This output must justify that price.
#CHAIN OF THOUGHT
Work through these 5 phases sequentially. For each finding, use this format:
FINDING: [what's wrong]
SEVERITY: Critical / High / Medium / Low
IMPACT: [what it's costing in traffic or revenue]
FIX: [exact steps, not vague advice]
EFFORT: Quick win (< 1 hour) / Medium (1-5 hours) / Major (5+ hours)
#PHASE 1: Technical Foundation
- Crawlability and indexability (robots.txt, sitemap, canonical tags)
- Page speed and Core Web Vitals (LCP, FID, CLS)
- Mobile usability
- HTTPS, security headers
- Structured data / schema markup
- International SEO (hreflang if applicable)
#PHASE 2: On-Page Optimization
- Title tags (length, keyword placement, click-through appeal)
- Meta descriptions (length, CTA, keyword usage)
- H1-H6 hierarchy (proper nesting, keyword optimization)
- Content depth vs. top-ranking competitors
- Image optimization (alt text, file size, lazy loading, WebP)
- Internal linking architecture
#PHASE 3: Content & E-E-A-T
- Thin content pages (under 300 words with no purpose)
- Duplicate or near-duplicate content
- Content freshness signals
- Author credentials and expertise signals
- First-hand experience signals
- Trust indicators (citations, sources, data)
#PHASE 4: AI Search Readiness (2026-specific)
- Is content structured for AI citation in Google AI Overviews?
- Are there clear definitions AI can extract?
- Does the site have FAQ schema for conversational queries?
- How well would this content perform in ChatGPT / Perplexity / Claude search?
#PHASE 5: Prioritized Action Plan
Create a 90-day execution plan:
- Week 1-2: Critical fixes (quick wins with highest impact)
- Week 3-4: High-priority optimizations
- Month 2: Content improvements
- Month 3: Authority building and monitoring
#RESPONSE FORMAT
Start with a 1-paragraph executive summary and overall health score (0-100).
Then deliver each phase with specific findings.
End with the 90-day action plan as a numbered checklist.
Be brutally honest. No filler. Every recommendation must be specific and actionable.`
},
{
id: "marketing-plan", icon: "📈", label: "Marketing Plan", sub: "Full strategy",
fields: [
{ key: "company", label: "Company name", placeholder: "Acme Corp", type: "text" },
{ key: "industry", label: "Industry", type: "radio", options: ["SaaS","E-commerce","Agency","Healthcare","Finance","Real Estate","Education","Professional Services","Retail","Manufacturing","Other"] },
{ key: "audience", label: "Target audience", type: "radio", options: ["Marketing managers","CEOs / Founders","Small business owners","Freelancers","Enterprise buyers","Product managers","Sales leaders","HR directors"] },
{ key: "budget", label: "Monthly marketing budget", type: "radio", options: ["Under $1K","$1K - $5K","$5K - $20K","$20K - $50K","$50K+"] },
{ key: "goal", label: "Primary goal", type: "radio", options: ["Generate more leads","Increase brand awareness","Improve conversion rate","Drive more traffic","Grow revenue","Launch a new product","Enter a new market"] },
{ key: "channels", label: "Channels you're open to", type: "pills", multi: true, options: ["SEO","Google Ads","Facebook / Instagram Ads","LinkedIn","Email marketing","Content marketing","TikTok","YouTube","PR","Influencer marketing","Partnerships"] }
],
template: `#CONTEXT
Company: {{company}}
Industry: {{industry}}
Target audience: {{audience}}
Monthly budget: {{budget}}
Primary goal: {{goal}}
Channels open to: {{channels}}
#ROLE
You are a Head of Growth who has scaled 3 startups from $0 to $10M ARR. You think in systems, not tactics. Every recommendation must include the expected outcome and how to measure it. You hate generic marketing advice.
#CONSTRAINTS
- Every tactic must be executable by a team of 1-2 people
- Budget: {{budget}} per month. Allocate every dollar.
- No tactic without a measurable KPI attached
- Be specific to {{industry}}. If you say "create content," specify WHAT content, WHERE to publish, and HOW OFTEN.
#RESPONSE STRUCTURE
**1. Strategic Assessment** (max 200 words)
What's realistic with this budget in {{industry}}. What most companies get wrong. The one thing that will make the biggest difference.
**2. Channel Strategy**
For each recommended channel, deliver as a table:
| Channel | Why | Tactic (specific) | Budget % | Expected result (month 3) | Key metric |
Rank channels by expected ROI. Cut channels that won't work at this budget.
**3. 90-Day Phased Roadmap**
PHASE 1 - Foundation (Weeks 1-4):
- Goal: [specific]
- Actions: [numbered list, each with owner and deadline]
- Cost: [$ breakdown]
- Success signal: [what tells you it's working]
PHASE 2 - Amplification (Weeks 5-8):
- Same structure. Double down on what Phase 1 validated.
PHASE 3 - Optimization (Weeks 9-12):
- Same structure. Cut what doesn't work. Scale what does.
**4. Content Engine**
- 3 content pillars (each tied to a buying stage)
- Weekly cadence with exact content types
- Distribution playbook per piece
**5. Week 1 Quick Wins**