-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
3070 lines (2713 loc) · 130 KB
/
index.html
File metadata and controls
3070 lines (2713 loc) · 130 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>Website Blueprint Builder</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap");
:root {
--bg: #f2f7fb;
--card: #ffffff;
--line: #d5deea;
--text: #1f2937;
--muted: #526075;
--accent: #0f766e;
--accent-2: #0e9f92;
--danger: #b42318;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "Avenir Next", "Segoe UI", sans-serif;
color: var(--text);
background: transparent;
}
.wrap {
max-width: 1040px;
margin: 28px auto;
padding: 0 18px;
}
.card {
background: var(--card);
border: 1px solid var(--line);
border-radius: 18px;
overflow: hidden;
box-shadow: 0 18px 42px rgba(2, 6, 23, 0.08);
}
.hero {
padding: 26px;
background: linear-gradient(135deg, #115e59 0%, #0e9f92 100%);
color: #ffffff;
}
.hero h1 {
margin: 0;
font-size: 1.5rem;
letter-spacing: 0.2px;
}
.hero p {
margin: 8px 0 0;
font-size: 0.95rem;
opacity: 0.96;
}
.progress-wrap {
padding: 16px 24px;
border-bottom: 1px solid var(--line);
background: #f8fbff;
}
.progress-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.9rem;
color: var(--muted);
margin-bottom: 8px;
gap: 12px;
}
.bar {
width: 100%;
height: 10px;
border-radius: 999px;
background: #e4ecf7;
overflow: hidden;
}
.bar > span {
display: block;
width: 0;
height: 100%;
background: linear-gradient(90deg, var(--accent), var(--accent-2));
transition: width 220ms ease;
}
form {
padding: 20px 24px 26px;
}
.step { display: none; }
.step.active { display: block; }
.step h2 {
margin: 0;
font-size: 1.16rem;
}
.sub {
margin: 6px 0 16px;
color: var(--muted);
font-size: 0.92rem;
}
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.grid.one { grid-template-columns: 1fr; }
.box {
border: 1px solid #dce5f1;
border-radius: 12px;
background: #fbfdff;
padding: 12px;
}
label {
display: block;
margin-bottom: 6px;
font-size: 0.88rem;
font-weight: 700;
}
.hint {
display: block;
margin-top: 4px;
color: var(--muted);
font-size: 0.8rem;
font-weight: 500;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
select,
textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #c9d5e4;
border-radius: 10px;
background: #ffffff;
color: var(--text);
font: inherit;
}
textarea {
min-height: 94px;
resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
outline: 2px solid #99e9df;
border-color: #37b6a6;
}
.options {
display: grid;
gap: 10px;
padding: 12px;
border: 1px solid #d3dfed;
background: #fbfdff;
border-radius: 12px;
}
.options.cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opt {
display: flex;
gap: 8px;
align-items: flex-start;
font-size: 0.91rem;
font-weight: 500;
}
.opt input { margin-top: 2px; }
.conditional-block {
margin-top: 12px;
padding: 12px;
border: 1px dashed #bed0e8;
border-radius: 12px;
background: #f9fbff;
display: none;
}
.error {
display: none;
margin-top: 10px;
color: var(--danger);
font-size: 0.86rem;
font-weight: 700;
}
.nav {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
button {
border: 0;
border-radius: 10px;
padding: 10px 16px;
font: inherit;
font-weight: 700;
cursor: pointer;
}
.btn-secondary {
background: #e8eff9;
color: #1f2937;
}
.btn-primary {
background: var(--accent);
color: #ffffff;
}
.btn-primary:hover { background: #0d5e58; }
#resultWrap {
display: none;
margin-top: 16px;
border-top: 1px solid var(--line);
padding-top: 14px;
}
#masterPrompt {
min-height: 360px;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
font-size: 0.84rem;
background: #f8fbff;
}
.muted {
color: var(--muted);
font-size: 0.84rem;
}
.toolbar {
margin-top: 10px;
display: flex;
justify-content: flex-end;
gap: 8px;
flex-wrap: wrap;
align-items: center;
}
.diag-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 10px;
}
.score-card {
border: 1px solid #d5deea;
border-radius: 10px;
background: #ffffff;
padding: 10px;
}
.score-card strong {
display: block;
font-size: 1.2rem;
margin-top: 2px;
}
.risk-list {
margin: 10px 0 0;
padding-left: 18px;
color: var(--muted);
font-size: 0.86rem;
}
.review-list {
margin-top: 10px;
display: grid;
gap: 8px;
}
.review-item {
border: 1px solid #dce5f1;
border-radius: 10px;
padding: 10px;
display: grid;
grid-template-columns: 1fr auto;
gap: 10px;
align-items: center;
background: #ffffff;
}
.review-item .meta {
color: var(--muted);
font-size: 0.84rem;
margin-top: 4px;
}
.intake-layout {
display: grid;
grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
gap: 16px;
align-items: start;
}
.intake-main {
min-width: 0;
}
.compiler-summary {
position: sticky;
top: 16px;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 12px;
background: rgba(14, 21, 49, 0.75);
padding: 12px;
display: grid;
gap: 8px;
}
.compiler-summary h3 {
margin: 0;
font-size: 1rem;
color: #ffffff;
}
.compiler-presets {
margin-top: 10px;
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.compiler-presets .btn-secondary {
font-size: 0.8rem;
padding: 8px 10px;
}
.summary-item span.pending {
color: rgba(237, 243, 255, 0.68);
font-style: italic;
}
.summary-item span.warn {
color: #fecaca;
}
.summary-item span.ok {
color: #86efac;
}
.summary-actions {
display: flex;
justify-content: flex-end;
margin-bottom: 4px;
}
.summary-actions .btn-secondary {
font-size: 0.76rem;
padding: 7px 10px;
}
.summary-toggle {
width: 100%;
text-align: left;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 10px;
padding: 8px 10px;
background: rgba(8, 14, 36, 0.75);
color: #ffffff;
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.summary-group {
display: grid;
gap: 8px;
}
.summary-group.collapsed {
display: none;
}
.required-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-top: 5px;
min-height: 18px;
}
.required-badge {
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 999px;
padding: 2px 8px;
font-size: 0.68rem;
font-weight: 800;
letter-spacing: 0.03em;
text-transform: uppercase;
color: #ffffff;
background: rgba(8, 14, 36, 0.7);
white-space: nowrap;
}
.required-badge.pending {
border-color: rgba(252, 165, 165, 0.65);
color: #fecaca;
}
.required-badge.ok {
border-color: rgba(134, 239, 172, 0.7);
color: #86efac;
}
/* Global white text across form + results */
#intakeForm,
#intakeForm * {
color: #ffffff;
}
#intakeForm input,
#intakeForm select,
#intakeForm textarea,
#resultWrap textarea,
#masterPrompt {
color: #ffffff !important;
-webkit-text-fill-color: #ffffff;
}
#intakeForm input::placeholder,
#intakeForm textarea::placeholder,
#masterPrompt::placeholder {
color: rgba(255, 255, 255, 0.72);
}
.btn-primary,
.btn-primary:hover,
.btn-secondary,
.btn-secondary:hover {
color: #ffffff;
}
.summary-item {
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: 10px;
padding: 8px;
display: grid;
gap: 4px;
background: rgba(8, 14, 36, 0.58);
}
.summary-item strong {
font-size: 0.78rem;
letter-spacing: 0.04em;
text-transform: uppercase;
color: rgba(219, 234, 254, 0.88);
}
.summary-item span {
font-size: 0.88rem;
color: #edf3ff;
white-space: pre-line;
}
.field-hint {
display: block;
margin-top: 5px;
min-height: 16px;
font-size: 0.76rem;
font-weight: 600;
}
.required-hint {
color: #fca5a5;
}
.input-required-missing {
border-color: #fca5a5 !important;
outline: 2px solid rgba(252, 165, 165, 0.35) !important;
}
.hero-row {
display: flex;
gap: 14px;
align-items: flex-end;
justify-content: space-between;
flex-wrap: wrap;
}
.mode-toggle {
min-width: 280px;
max-width: 420px;
margin-top: 14px;
}
.mode-toggle label {
margin-bottom: 4px;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
opacity: 0.85;
color: #ecf3ff;
}
.mode-toggle select {
width: 100%;
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(8, 14, 38, 0.58);
color: #ecf3ff;
}
body {
font-family: "Nunito Sans", "Segoe UI", sans-serif;
background: #070b1e;
}
.card {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 30px 68px rgba(2, 6, 23, 0.5);
backdrop-filter: blur(8px);
}
.hero {
background: linear-gradient(135deg, #143f7a 0%, #5b3ccf 52%, #15b9d3 100%);
}
.progress-wrap {
background: rgba(7, 12, 33, 0.62);
}
.bar {
background: rgba(255, 255, 255, 0.14);
}
.bar > span {
background: linear-gradient(90deg, #39e5ff, #6a6cff, #8f6bff);
}
.step h2,
label {
color: #edf3ff;
}
.sub,
.muted,
.progress-meta,
.hint,
.review-item .meta,
.risk-list {
color: rgba(234, 242, 255, 0.76);
}
.box,
.options,
.conditional-block,
.score-card,
.review-item {
border-color: rgba(255, 255, 255, 0.18);
background: rgba(14, 21, 49, 0.7);
}
input[type="text"],
input[type="url"],
input[type="date"],
select,
textarea {
background: rgba(8, 14, 36, 0.72);
border-color: rgba(255, 255, 255, 0.22);
color: #ecf3ff;
}
input:focus,
select:focus,
textarea:focus {
outline: 2px solid rgba(114, 200, 255, 0.45);
border-color: rgba(114, 200, 255, 0.85);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.14);
color: #edf3ff;
border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-primary {
background: linear-gradient(90deg, #39e5ff, #6a6cff, #8f6bff);
color: #ffffff;
}
.btn-primary:hover {
background: linear-gradient(90deg, #21d8f8, #595fff, #7f59f2);
}
#resultWrap {
border-top-color: rgba(255, 255, 255, 0.18);
}
#masterPrompt {
background: rgba(8, 14, 36, 0.78);
}
select option {
background: #0b122d;
color: #ffffff;
}
.submission-meta {
margin-top: 10px;
border: 1px solid rgba(114, 200, 255, 0.42);
border-radius: 10px;
background: linear-gradient(135deg, rgba(20, 34, 78, 0.88) 0%, rgba(30, 26, 86, 0.78) 50%, rgba(17, 64, 108, 0.78) 100%);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(2, 6, 23, 0.35);
padding: 12px;
display: grid;
gap: 8px;
}
.submission-status {
color: #ecf3ff;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.02em;
}
.share-link-row {
display: none;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.share-link-row a {
color: #7dd3fc;
text-decoration: underline;
word-break: break-all;
}
.share-link-row .btn-secondary {
background: linear-gradient(90deg, rgba(57, 229, 255, 0.22), rgba(106, 108, 255, 0.22), rgba(143, 107, 255, 0.22));
border-color: rgba(114, 200, 255, 0.52);
}
@media (max-width: 800px) {
.hero-row {
align-items: stretch;
}
.mode-toggle {
min-width: 100%;
}
.intake-layout {
grid-template-columns: 1fr;
}
.compiler-summary {
position: static;
}
.compiler-presets .btn-secondary {
width: 100%;
}
.grid,
.options.cols,
.diag-grid {
grid-template-columns: 1fr;
}
.wrap { margin: 16px auto; }
.hero h1 { font-size: 1.28rem; }
}
</style>
</head>
<body>
<div class="wrap">
<div class="card">
<div class="hero">
<div class="hero-row">
<div>
<h1>Website Blueprint Builder</h1>
</div>
<div class="mode-toggle">
<label for="promptMode">Where will you use this prompt?</label>
<select id="promptMode" aria-label="Prompt output mode">
<option value="chatgpt">ChatGPT (guided step-by-step output)</option>
<option value="codex">Codex (full build output)</option>
</select>
</div>
</div>
</div>
<div class="progress-wrap">
<div class="progress-meta">
<span id="stepLabel">Step 1 of 13</span>
<span id="stepTitle">Compiler Configuration</span>
</div>
<div class="bar"><span id="progressBar"></span></div>
<div class="toolbar">
<span class="muted" id="draftStatus" aria-live="polite"></span>
<button type="button" class="btn-secondary" id="resumeDraftBtn">Resume Draft</button>
<button type="button" class="btn-secondary" id="clearDraftBtn">Clear Draft</button>
<button type="button" class="btn-secondary" id="demoFillBtn">Demo Autofill</button>
</div>
</div>
<form id="intakeForm" novalidate>
<div class="intake-layout">
<aside class="compiler-summary" id="compilerSummary" aria-live="polite">
<h3>Scope Summary</h3>
<p class="hint">Live compiler output based on your current selections.</p>
<div class="summary-actions">
<button type="button" class="btn-secondary" id="copyCompilerConfigBtn">Copy Config JSON</button>
</div>
<button type="button" class="summary-toggle" data-summary-toggle="core" aria-expanded="true">Compiler Core</button>
<div class="summary-group" data-summary-group="core">
<div class="summary-item"><strong>Dynamic role</strong><span id="sumDynamicRole">Pending</span></div>
<div class="summary-item"><strong>Build mode</strong><span id="sumBuildMode">Pending</span></div>
<div class="summary-item"><strong>Scope constraints</strong><span id="sumScope">Pending</span></div>
<div class="summary-item"><strong>Integration constraints</strong><span id="sumIntegration">Pending</span></div>
</div>
<button type="button" class="summary-toggle" data-summary-toggle="strategy" aria-expanded="true">Strategy Signals</button>
<div class="summary-group" data-summary-group="strategy">
<div class="summary-item"><strong>Architectural intent</strong><span id="sumIntent">Pending</span></div>
<div class="summary-item"><strong>Conflict notice</strong><span id="sumConflicts">None</span></div>
</div>
</aside>
<div class="intake-main">
<section class="step active" data-step-id="compiler" data-title="Start Here">
<h2>Step 1 - Start Here (Required)</h2>
<p class="sub">Pick one option in each field below. This sets your build type and output format.</p>
<div class="box" style="margin-bottom:12px;">
<h3>Quick Setup</h3>
<span class="hint">Simple rule: choose the closest option. You can refine details in later steps.</span>
<div class="grid">
<div>
<label for="project_archetype">What type of website are you building?</label>
<select id="project_archetype" name="project_archetype">
<option value="">Select</option>
<option value="ecommerce">Online Store (ecommerce)</option>
<option value="saas">Software Product (saas)</option>
<option value="portfolio">Portfolio / Personal Site</option>
<option value="local_business">Local Business Site</option>
<option value="content_platform">Content / Blog Platform</option>
<option value="hybrid">Hybrid (mix of models)</option>
</select>
<span class="hint">Example: choose Local Business if your main goal is leads/bookings.</span>
<div class="required-row"><span class="required-badge pending" data-required-badge="project_archetype">Missing</span><span class="field-hint required-hint" data-required-field="project_archetype"></span></div>
</div>
<div>
<label for="delivery_mode">How should this be built?</label>
<select id="delivery_mode" name="delivery_mode">
<option value="">Select</option>
<option value="static_prototype">Static Prototype (no CMS)</option>
<option value="wordpress_theme">WordPress Theme</option>
<option value="react_app">React App</option>
<option value="headless_frontend">Headless Frontend</option>
<option value="architecture_only">Architecture Plan Only</option>
</select>
<span class="hint">Choose WordPress Theme if your final site will run in WordPress.</span>
<div class="required-row"><span class="required-badge pending" data-required-badge="delivery_mode">Missing</span><span class="field-hint required-hint" data-required-field="delivery_mode"></span></div>
</div>
<div>
<label for="output_engine">Which AI should generate the output?</label>
<select id="output_engine" name="output_engine">
<option value="">Select</option>
<option value="chatgpt">ChatGPT</option>
<option value="codex">Codex</option>
</select>
<span class="hint">This controls how the final prompt is formatted.</span>
<div class="required-row"><span class="required-badge pending" data-required-badge="output_engine">Missing</span><span class="field-hint required-hint" data-required-field="output_engine"></span></div>
</div>
<div>
<label for="scope_preference">How detailed should this build be?</label>
<select id="scope_preference" name="scope_preference">
<option value="">Select</option>
<option value="mvp">MVP (lean first version)</option>
<option value="standard">Standard (balanced scope)</option>
<option value="production_spec">Production Spec (full detail)</option>
</select>
<span class="hint">If unsure, choose Standard.</span>
<div class="required-row"><span class="required-badge pending" data-required-badge="scope_preference">Missing</span><span class="field-hint required-hint" data-required-field="scope_preference"></span></div>
</div>
<div>
<label for="integration_mode">How many integrations do you expect?</label>
<select id="integration_mode" name="integration_mode">
<option value="">Select</option>
<option value="basic">Basic (few integrations)</option>
<option value="moderate">Moderate (several systems)</option>
<option value="complex">Complex (many connected systems)</option>
</select>
<span class="hint">The tool always uses safe placeholders, never real keys.</span>
<div class="required-row"><span class="required-badge pending" data-required-badge="integration_mode">Missing</span><span class="field-hint required-hint" data-required-field="integration_mode"></span></div>
</div>
</div>
</div>
<div class="compiler-presets" aria-label="Compiler presets">
<button type="button" class="btn-secondary" data-compiler-preset="ecom_mvp">Preset: Ecommerce MVP</button>
<button type="button" class="btn-secondary" data-compiler-preset="saas_prod">Preset: SaaS Production</button>
<button type="button" class="btn-secondary" data-compiler-preset="portfolio_spec">Preset: Portfolio Spec</button>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="identity" data-title="About Your Business">
<h2>Step 2 - About Your Business</h2>
<p class="sub">What this asks: your business type. Why it matters: it controls which follow-up questions and recommendations you get.</p>
<div class="options cols">
<label class="opt"><input type="radio" name="user_type" value="local_business" />Local Business</label>
<label class="opt"><input type="radio" name="user_type" value="ecommerce" />E-commerce Brand</label>
<label class="opt"><input type="radio" name="user_type" value="freelancer" />Freelancer / Consultant</label>
<label class="opt"><input type="radio" name="user_type" value="blogger" />Blogger</label>
<label class="opt"><input type="radio" name="user_type" value="influencer" />Influencer / Creator</label>
<label class="opt"><input type="radio" name="user_type" value="saas" />SaaS / App</label>
<label class="opt"><input type="radio" name="user_type" value="nonprofit" />Nonprofit</label>
<label class="opt"><input type="radio" name="user_type" value="personal_brand" />Personal Brand</label>
<label class="opt"><input type="radio" name="user_type" value="portfolio" />Portfolio / Artist</label>
<label class="opt"><input type="radio" name="user_type" value="community" />Community / Membership</label>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="goal" data-title="Main Goal">
<h2>Step 3 - Main Goal</h2>
<p class="sub">What this asks: your top outcome. Why it matters: your goal sets page priorities, CTA strategy, and growth direction.</p>
<div class="options cols">
<label class="opt"><input type="radio" name="primary_goal" value="revenue" />Revenue</label>
<label class="opt"><input type="radio" name="primary_goal" value="lead_generation" />Lead Generation</label>
<label class="opt"><input type="radio" name="primary_goal" value="authority" />Authority</label>
<label class="opt"><input type="radio" name="primary_goal" value="audience_growth" />Audience Growth</label>
<label class="opt"><input type="radio" name="primary_goal" value="portfolio_visibility" />Portfolio Visibility</label>
<label class="opt"><input type="radio" name="primary_goal" value="community" />Community</label>
<label class="opt"><input type="radio" name="primary_goal" value="fundraising" />Fundraising</label>
<label class="opt"><input type="radio" name="primary_goal" value="product_launch" />Product Launch</label>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="monetization" data-title="How You Make Money">
<h2>Step 4 - How You Make Money</h2>
<p class="sub">What this asks: your revenue sources. Why it matters: it determines offer pages, checkout flow, and conversion strategy.</p>
<div class="options cols">
<label class="opt"><input type="checkbox" name="revenue_model" value="services" />Services</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="physical_products" />Physical products</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="digital_products" />Digital products</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="courses" />Courses</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="affiliate_income" />Affiliate income</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="ads" />Ads</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="brand_partnerships" />Brand partnerships</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="subscription" />Subscription</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="saas" />SaaS</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="donations" />Donations</label>
<label class="opt"><input type="checkbox" name="revenue_model" value="not_monetizing_yet" />Not monetizing yet</label>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="audience" data-title="Target Audience">
<h2>Step 5 - Target Audience</h2>
<p class="sub">What this asks: who you serve and what they need. Why it matters: better targeting leads to clearer messaging and stronger conversion.</p>
<div class="grid">
<div class="box" style="grid-column:1/-1;">
<label for="audience_sentence">Describe your ideal audience in one sentence</label>
<textarea id="audience_sentence" name="audience_sentence"></textarea>
</div>
<div><label for="age_range">Age range</label><input id="age_range" name="age_range" type="text" /></div>
<div><label for="audience_geo">Geographic focus</label><input id="audience_geo" name="audience_geo" type="text" /></div>
<div><label for="income_range">Income range</label><input id="income_range" name="income_range" type="text" /></div>
<div>
<label for="skill_level">Skill level</label>
<select id="skill_level" name="skill_level">
<option value="">Select</option>
<option value="beginner">Beginner</option>
<option value="intermediate">Intermediate</option>
<option value="advanced">Advanced</option>
</select>
</div>
<div class="box" style="grid-column:1/-1;">
<label for="pain_points">Top 3 pain points</label>
<textarea id="pain_points" name="pain_points"></textarea>
</div>
<div class="box" style="grid-column:1/-1;">
<label for="desired_outcomes">Top 3 desired outcomes</label>
<textarea id="desired_outcomes" name="desired_outcomes"></textarea>
</div>
<div class="box" style="grid-column:1/-1;">
<label for="why_choose_you">Why would they choose you over others?</label>
<textarea id="why_choose_you" name="why_choose_you"></textarea>
</div>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="content" data-title="Content Plan">
<h2>Step 6 - Content Plan</h2>
<p class="sub">What this asks: how you plan to publish content. Why it matters: this shapes SEO structure, publishing workflow, and lead capture paths.</p>
<div class="grid">
<div>
<label for="primary_content_format">Primary content format</label>
<select id="primary_content_format" name="primary_content_format">
<option value="">Select</option>
<option value="blog">Blog</option>
<option value="video">Video</option>
<option value="podcast">Podcast</option>
<option value="newsletter">Newsletter</option>
<option value="mixed">Mixed</option>
</select>
</div>
<div><label for="posting_frequency">Posting frequency</label><input id="posting_frequency" name="posting_frequency" type="text" placeholder="e.g. 2x weekly" /></div>
</div>
<div class="options cols" style="margin-top:12px;">
<label class="opt"><input type="checkbox" name="content_features" value="pillar_cluster_seo" />Pillar + cluster SEO structure</label>
<label class="opt"><input type="checkbox" name="content_features" value="evergreen_library" />Evergreen resource library</label>
<label class="opt"><input type="checkbox" name="content_features" value="category_archive" />Category-based archive</label>
<label class="opt"><input type="checkbox" name="content_features" value="gated_premium" />Gated premium content</label>
<label class="opt"><input type="checkbox" name="content_features" value="lead_magnets" />Downloadable lead magnets</label>
</div>
<div class="conditional-block" data-user-types="blogger">
<h3>Blogger-Specific</h3>
<div class="grid">
<div><label for="blogger_traffic_goal">Target monthly traffic goal</label><input id="blogger_traffic_goal" name="blogger_traffic_goal" type="text" /></div>
<div><label for="blogger_seo_strategy">SEO keyword strategy needed?</label><select id="blogger_seo_strategy" name="blogger_seo_strategy"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
</div>
</div>
<div class="conditional-block" data-user-types="influencer">
<h3>Influencer-Specific</h3>
<div class="options cols">
<label class="opt"><input type="checkbox" name="influencer_features" value="media_kit_page" />Media kit page</label>
<label class="opt"><input type="checkbox" name="influencer_features" value="brand_collab_intake" />Brand collaboration intake form</label>
<label class="opt"><input type="checkbox" name="influencer_features" value="social_link_hub" />Social link hub</label>
<label class="opt"><input type="checkbox" name="influencer_features" value="affiliate_tracking_pages" />Affiliate tracking pages</label>
</div>
</div>
<div class="conditional-block" data-user-types="saas">
<h3>SaaS Content Layer</h3>
<div class="options cols">
<label class="opt"><input type="checkbox" name="saas_content_features" value="knowledge_base" />Knowledge base</label>
<label class="opt"><input type="checkbox" name="saas_content_features" value="documentation_portal" />Documentation portal</label>
<label class="opt"><input type="checkbox" name="saas_content_features" value="feature_comparison_pages" />Feature comparison pages</label>
<label class="opt"><input type="checkbox" name="saas_content_features" value="roadmap_page" />Roadmap page</label>
</div>
</div>
<p class="error" data-error></p>
</section>
<section class="step" data-step-id="offer" data-title="Offer Setup">
<h2>Step 7 - Offer Setup</h2>
<p class="sub">What this asks: how your services/products are packaged. Why it matters: offer clarity directly impacts trust and conversion.</p>
<div class="conditional-block" data-user-types="freelancer local_business">
<h3>Freelancer / Local Business Offer Structure</h3>
<div class="grid">
<div style="grid-column:1/-1;"><label for="services_list">List services</label><textarea id="services_list" name="services_list"></textarea></div>
<div><label for="services_separate_pages">Services require separate pages?</label><select id="services_separate_pages" name="services_separate_pages"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="pricing_displayed">Pricing displayed?</label><select id="pricing_displayed" name="pricing_displayed"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="service_packages">Offer packages?</label><select id="service_packages" name="service_packages"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="qualification_before_booking">Qualification before booking?</label><select id="qualification_before_booking" name="qualification_before_booking"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="want_case_studies">Want case studies?</label><select id="want_case_studies" name="want_case_studies"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
</div>
</div>
<div class="conditional-block" data-user-types="ecommerce">
<h3>E-commerce Offer Structure</h3>
<div class="grid">
<div><label for="product_count">Estimated product count</label><input id="product_count" name="product_count" type="text" /></div>
<div><label for="product_categories">Categories needed</label><input id="product_categories" name="product_categories" type="text" /></div>
<div><label for="subscription_products">Subscription products?</label><select id="subscription_products" name="subscription_products"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="inventory_tracking">Inventory tracking?</label><select id="inventory_tracking" name="inventory_tracking"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="upsell_cross_sell_system">Upsell / cross-sell?</label><select id="upsell_cross_sell_system" name="upsell_cross_sell_system"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="customer_account_area">Customer account area?</label><select id="customer_account_area" name="customer_account_area"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
<div><label for="product_reviews">Reviews?</label><select id="product_reviews" name="product_reviews"><option value="">Select</option><option>Yes</option><option>No</option></select></div>
</div>
</div>