-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.html
More file actions
1550 lines (1357 loc) · 62.9 KB
/
custom.html
File metadata and controls
1550 lines (1357 loc) · 62.9 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>Custom Character Commission — NPCForge</title>
<meta name="description" content="Commission a custom AI NPC character built entirely to your server's lore. Single characters from $25, world packs from $65, full server systems from $150.">
<meta property="og:title" content="Custom NPC Commission — NPCForge">
<meta property="og:description" content="Your lore. Your characters. Built to spec. Custom SentiencePro personality packs from $25.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://npcforge.github.io/custom.html">
<link rel="canonical" href="https://npcforge.github.io/custom.html">
<style>
:root {
--gold: #D4A537;
--gold-light: #F2D06B;
--gold-dark: #B8860B;
--bg-primary: #0A0A0F;
--bg-secondary: #12121A;
--bg-card: #1A1A25;
--bg-card-hover: #222233;
--text-primary: #E8E8F0;
--text-secondary: #9999AA;
--text-muted: #666677;
--border: #2A2A3A;
--green: #4CAF50;
--red: #E74C3C;
--blue: #3498DB;
--urgent-red: #FF4444;
--urgent-orange: #FF6B35;
--purple: #9B59B6;
--purple-light: #B07CC6;
--teal: #1ABC9C;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
background: rgba(10,10,15,0.97);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0 2rem;
}
.nav-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
}
.nav-logo {
font-size: 1.25rem;
font-weight: 700;
color: var(--gold);
text-decoration: none;
}
.nav-logo span { color: var(--text-primary); }
.nav-links {
display: flex;
gap: 1.75rem;
list-style: none;
align-items: center;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.88rem;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
background: var(--gold);
color: #000;
padding: 0.5rem 1.25rem;
border-radius: 6px;
font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: #000; }
.nav-toggle {
display: none;
background: none;
border: none;
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
}
/* ── BREADCRUMB ── */
.breadcrumb {
max-width: 1100px;
margin: 0 auto;
padding: 5.5rem 2rem 0;
}
.breadcrumb a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.8rem;
transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-muted); margin: 0 0.5rem; font-size: 0.75rem; }
.breadcrumb .current { color: var(--text-secondary); font-size: 0.8rem; }
/* ── PAGE HERO ── */
.custom-hero {
max-width: 1100px;
margin: 0 auto;
padding: 3rem 2rem 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}
.hero-left .section-label {
display: inline-block;
color: var(--blue);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.hero-left h1 {
font-size: clamp(2rem, 4vw, 2.75rem);
font-weight: 800;
line-height: 1.15;
margin-bottom: 1rem;
}
.hero-left h1 .highlight { color: var(--gold); }
.hero-left .hero-sub {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.75;
margin-bottom: 1.75rem;
}
.hero-points {
list-style: none;
margin-bottom: 2rem;
}
.hero-points li {
font-size: 0.9rem;
color: var(--text-secondary);
padding: 0.4rem 0;
display: flex;
align-items: flex-start;
gap: 0.6rem;
border-bottom: 1px solid var(--border);
}
.hero-points li:last-child { border-bottom: none; }
.hero-points li::before {
content: '✓';
color: var(--gold);
font-weight: 700;
flex-shrink: 0;
}
/* ── TIER CARDS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
display: inline-block;
color: var(--gold);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.section-title {
font-size: clamp(1.5rem, 3vw, 2.2rem);
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}
.section-desc {
color: var(--text-secondary);
font-size: 1rem;
max-width: 620px;
margin-bottom: 2.5rem;
line-height: 1.7;
}
/* ── CUSTOM TIERS ── */
.custom-tiers { background: var(--bg-secondary); }
.tiers-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.tier-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 14px;
padding: 2rem;
display: flex;
flex-direction: column;
position: relative;
transition: border-color 0.2s, transform 0.2s;
}
.tier-card:hover {
border-color: rgba(212,165,55,0.3);
transform: translateY(-4px);
}
.tier-card.featured-tier {
border-color: rgba(212,165,55,0.4);
background: linear-gradient(160deg, var(--bg-card) 0%, rgba(212,165,55,0.05) 100%);
}
.tier-popular-badge {
position: absolute;
top: -12px; left: 50%;
transform: translateX(-50%);
background: var(--gold);
color: #000;
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 0.28rem 1rem;
border-radius: 50px;
white-space: nowrap;
}
.tier-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tier-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.tier-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.4; }
.tier-price-row {
padding: 1rem 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
margin-bottom: 1.25rem;
}
.tier-price {
font-size: 2rem;
font-weight: 800;
color: var(--gold);
line-height: 1;
}
.tier-price-note {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 0.2rem;
}
.tier-features {
list-style: none;
margin-bottom: 1.75rem;
flex: 1;
}
.tier-features li {
font-size: 0.82rem;
color: var(--text-secondary);
padding: 0.3rem 0;
display: flex;
align-items: flex-start;
gap: 0.5rem;
line-height: 1.4;
}
.tier-features li::before {
content: '✓';
color: var(--green);
font-weight: 700;
flex-shrink: 0;
}
.tier-delivery {
background: var(--bg-card-hover);
border-radius: 6px;
padding: 0.6rem 0.85rem;
font-size: 0.75rem;
color: var(--text-muted);
margin-bottom: 1.25rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.tier-btn {
display: block;
text-align: center;
padding: 0.8rem 1rem;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 700;
text-decoration: none;
transition: all 0.2s;
background: var(--gold);
color: #000;
border: none;
cursor: pointer;
}
.tier-btn:hover {
background: var(--gold-light);
transform: translateY(-1px);
}
/* ── PROCESS ── */
.process-section { background: var(--bg-primary); }
.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.25rem;
position: relative;
}
.process-grid::before {
content: '';
position: absolute;
top: 28px;
left: calc(12.5% + 14px);
right: calc(12.5% + 14px);
height: 2px;
background: linear-gradient(90deg, var(--gold), transparent);
opacity: 0.2;
}
.process-step {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.75rem 1.5rem;
text-align: center;
position: relative;
transition: border-color 0.2s;
}
.process-step:hover { border-color: rgba(212,165,55,0.3); }
.process-num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px; height: 36px;
border-radius: 50%;
background: rgba(212,165,55,0.1);
border: 2px solid rgba(212,165,55,0.3);
color: var(--gold);
font-size: 0.85rem;
font-weight: 800;
margin: 0 auto 1rem;
}
.process-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
/* ── FORM ── */
.form-section { background: var(--bg-secondary); }
.form-layout {
display: grid;
grid-template-columns: 1fr 1.6fr;
gap: 3rem;
align-items: start;
}
.form-sidebar {
position: sticky;
top: 5rem;
}
.form-sidebar-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.75rem;
margin-bottom: 1.25rem;
}
.form-sidebar-card h4 {
font-size: 0.95rem;
font-weight: 700;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.form-sidebar-card p {
font-size: 0.83rem;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 0.75rem;
}
.form-sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-list {
list-style: none;
}
.sidebar-list li {
font-size: 0.82rem;
color: var(--text-secondary);
padding: 0.28rem 0;
display: flex;
align-items: flex-start;
gap: 0.5rem;
}
.sidebar-list li::before {
content: '→';
color: var(--gold);
flex-shrink: 0;
}
/* ── COMMISSION FORM ── */
.commission-form-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 14px;
overflow: hidden;
}
.form-header {
padding: 1.5rem 2rem;
border-bottom: 1px solid var(--border);
background: rgba(42,42,58,0.3);
}
.form-header h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.form-header p { color: var(--text-muted); font-size: 0.8rem; }
.form-body { padding: 2rem; }
.form-section-title {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--gold);
margin: 1.5rem 0 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
display: block;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 0.35rem;
color: var(--text-secondary);
}
.form-group label .required {
color: var(--urgent-red);
margin-left: 0.2rem;
}
.form-group label .hint {
color: var(--text-muted);
font-weight: 400;
font-size: 0.72rem;
margin-left: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.72rem 0.9rem;
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text-primary);
font-size: 0.9rem;
font-family: inherit;
outline: none;
transition: border-color 0.2s;
appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--gold);
}
.form-group select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666677' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
padding-right: 2.5rem;
cursor: pointer;
}
.form-group select option {
background: var(--bg-card);
color: var(--text-primary);
}
.form-group textarea {
min-height: 90px;
resize: vertical;
}
.form-group textarea.tall { min-height: 130px; }
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.char-count {
text-align: right;
font-size: 0.7rem;
color: var(--text-muted);
margin-top: 0.25rem;
}
/* ── TONE SELECTOR ── */
.tone-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.5rem;
}
.tone-btn {
background: var(--bg-card-hover);
border: 1px solid var(--border);
border-radius: 8px;
padding: 0.6rem 0.5rem;
text-align: center;
cursor: pointer;
transition: all 0.2s;
color: var(--text-secondary);
font-size: 0.75rem;
font-weight: 600;
}
.tone-btn:hover { border-color: var(--gold); color: var(--gold); }
.tone-btn.selected { background: rgba(212,165,55,0.1); border-color: var(--gold); color: var(--gold); }
.tone-btn .tone-icon { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; }
/* ── PRICE ESTIMATOR ── */
.price-estimator {
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.25rem;
margin-bottom: 1.5rem;
}
.estimator-label {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.estimator-row {
display: flex;
justify-content: space-between;
font-size: 0.8rem;
padding: 0.25rem 0;
color: var(--text-secondary);
}
.estimator-total {
display: flex;
justify-content: space-between;
font-size: 1rem;
font-weight: 700;
padding: 0.75rem 0 0;
border-top: 1px solid var(--border);
margin-top: 0.5rem;
color: var(--gold);
}
/* ── SUBMIT ── */
.submit-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
width: 100%;
padding: 0.9rem 1.5rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 700;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.2s;
background: var(--gold);
color: #000;
}
.submit-btn:hover {
background: var(--gold-light);
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(212,165,55,0.2);
}
.submit-note {
text-align: center;
color: var(--text-muted);
font-size: 0.75rem;
margin-top: 0.75rem;
line-height: 1.6;
}
/* ── EXAMPLES ── */
.examples-section { background: var(--bg-primary); }
.examples-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.example-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.75rem;
transition: border-color 0.2s;
}
.example-card:hover { border-color: rgba(212,165,55,0.3); }
.example-avatar {
width: 44px; height: 44px;
border-radius: 10px;
background: rgba(212,165,55,0.1);
border: 1px solid rgba(212,165,55,0.2);
display: flex; align-items: center; justify-content: center;
font-size: 1.3rem;
margin-bottom: 1rem;
}
.example-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.example-type { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.example-quote {
font-style: italic;
font-size: 0.85rem;
color: var(--text-secondary);
line-height: 1.6;
padding-left: 0.85rem;
border-left: 2px solid rgba(212,165,55,0.3);
margin-bottom: 1rem;
}
.example-tag {
display: inline-block;
background: rgba(212,165,55,0.08);
border: 1px solid rgba(212,165,55,0.15);
color: var(--gold);
font-size: 0.68rem;
font-weight: 600;
padding: 0.2rem 0.6rem;
border-radius: 50px;
margin-right: 0.3rem;
margin-bottom: 0.3rem;
}
/* ── FAQ ── */
.faq-section { background: var(--bg-secondary); }
.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
}
.faq-item {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.5rem;
}
.faq-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
/* ── GUARANTEE ── */
.guarantee {
background: var(--bg-card);
border: 1px solid rgba(212,165,55,0.2);
border-radius: 14px;
padding: 2.5rem;
display: flex;
gap: 1.5rem;
align-items: flex-start;
margin-top: 3rem;
}
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.guarantee p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.5rem; }
.guarantee p:last-child { margin-bottom: 0; }
/* ── FOOTER ── */
footer {
padding: 4rem 2rem 3rem;
border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 2rem;
margin-bottom: 2.5rem;
}
.footer-brand .footer-logo {
font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem;
}
.footer-brand .footer-logo span { color: var(--text-primary); }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.footer-col h4 {
font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.75rem;
}
.footer-col a {
display: block; color: var(--text-muted); text-decoration: none;
font-size: 0.83rem; padding: 0.25rem 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
border-top: 1px solid var(--border);
padding-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }
/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
.tiers-grid { grid-template-columns: 1fr 1fr; }
.process-grid { grid-template-columns: 1fr 1fr; }
.examples-grid { grid-template-columns: 1fr 1fr; }
.form-layout { grid-template-columns: 1fr; }
.form-sidebar { position: static; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 750px) {
.custom-hero { grid-template-columns: 1fr; gap: 2.5rem; }
.tiers-grid { grid-template-columns: 1fr; }
.faq-grid { grid-template-columns: 1fr; }
.examples-grid { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
.tone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
.nav-links {
display: none; position: absolute; top: 64px; left: 0; right: 0;
background: rgba(10,10,15,0.98); flex-direction: column;
padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--border);
}
.nav-links.open { display: flex; }
.nav-toggle { display: block; }
.process-grid { grid-template-columns: 1fr; }
.guarantee { flex-direction: column; text-align: center; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
</style>
</head>
<body>
<!-- ── NAV ── -->
<nav>
<div class="nav-inner">
<a href="index.html" class="nav-logo">⚔️ NPC<span>Forge</span></a>
<button class="nav-toggle" onclick="document.querySelector('.nav-links').classList.toggle('open')" aria-label="Menu">☰</button>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="store.html">Characters</a></li>
<li><a href="license.html">Server License</a></li>
<li><a href="custom.html">Custom</a></li>
<li><a href="free.html">Free Pack</a></li>
<li><a href="store.html" class="nav-cta">Buy Now</a></li>
</ul>
</div>
</nav>
<!-- ── BREADCRUMB ── -->
<div class="breadcrumb">
<a href="index.html">Home</a>
<span class="sep">›</span>
<a href="store.html">Store</a>
<span class="sep">›</span>
<span class="current">Custom Commission</span>
</div>
<!-- ── HERO ── -->
<div class="custom-hero">
<div class="hero-left">
<div class="section-label">Custom Commission</div>
<h1>Your Lore.<br>Your Characters.<br><span class="highlight">Built to Spec.</span></h1>
<p class="hero-sub">
Pre-built characters fit most servers. But if your world has specific lore, factions, naming conventions, or a story that doesn't map to anything in the store — a custom character will always outperform a generic one. Built from scratch. Delivered within 72 hours.
</p>
<ul class="hero-points">
<li>Written entirely around your server's existing lore</li>
<li>Full 600+ word personality definition from scratch</li>
<li>25 custom memories tailored to your world</li>
<li>Delivered within 72 hours — rush available</li>
<li>Crypto payment — all major coins accepted</li>
<li>Revision included — we get it right</li>
<li>24hr personal support after delivery</li>
</ul>
<a href="#commission-form" style="
display:inline-flex;align-items:center;gap:0.5rem;
padding:0.9rem 2rem;background:var(--gold);color:#000;
border-radius:8px;font-size:0.95rem;font-weight:700;
text-decoration:none;transition:all 0.2s;">
🛠 Start a Commission
</a>
</div>
<div>
<!-- QUICK TIER SUMMARY -->
<div style="background:var(--bg-card);border:1px solid var(--border);border-radius:14px;overflow:hidden;">
<div style="padding:1.25rem 1.75rem;background:rgba(42,42,58,0.4);border-bottom:1px solid var(--border);">
<div style="font-size:0.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-muted);">Commission Tiers</div>
</div>
<div style="padding:1.5rem 1.75rem;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid var(--border);">
<div>
<div style="font-weight:700;margin-bottom:0.2rem;">⚔️ Single Character</div>
<div style="font-size:0.78rem;color:var(--text-muted);">1 character · 72hr delivery</div>
</div>
<div style="text-align:right;">
<div style="font-size:1.25rem;font-weight:800;color:var(--gold);">$25+</div>
</div>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid var(--border);">
<div>
<div style="font-weight:700;margin-bottom:0.2rem;">🏰 World Pack</div>
<div style="font-size:0.78rem;color:var(--text-muted);">3+ characters · Shared lore · 5 day delivery</div>
</div>
<div style="text-align:right;">
<div style="font-size:1.25rem;font-weight:800;color:var(--gold);">$65+</div>
</div>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid var(--border);">
<div>
<div style="font-weight:700;margin-bottom:0.2rem;">🌐 Full Server System</div>
<div style="font-size:0.78rem;color:var(--text-muted);">5+ characters · Full lore · API consult</div>
</div>
<div style="text-align:right;">
<div style="font-size:1.25rem;font-weight:800;color:var(--gold);">$150+</div>
</div>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:1rem 0;">
<div>
<div style="font-weight:700;margin-bottom:0.2rem;">⚡ Rush Delivery</div>
<div style="font-size:0.78rem;color:var(--text-muted);">Any tier · Delivered within 24hr</div>
</div>
<div style="text-align:right;">
<div style="font-size:1.25rem;font-weight:800;color:var(--urgent-orange);">+$15</div>
</div>
</div>
</div>
<div style="padding:1.25rem 1.75rem;background:rgba(212,165,55,0.04);border-top:1px solid var(--border);">
<div style="font-size:0.78rem;color:var(--text-muted);display:flex;align-items:center;gap:0.5rem;">
🛡️ Revision included · Crypto payment · 24hr support post-delivery
</div>
</div>
</div>
</div>
</div>
<!-- ── CUSTOM TIERS ── -->
<section class="section custom-tiers">
<div class="section-inner">
<div class="section-label">Commission Tiers</div>
<h2 class="section-title">What Each Tier Includes</h2>
<p class="section-desc">Every commission is built from scratch. No templates. No copy-paste. Your lore from the first word.</p>
<div class="tiers-grid">
<!-- SINGLE CHARACTER -->
<div class="tier-card featured-tier">
<div class="tier-popular-badge">Most Ordered</div>
<div class="tier-icon">⚔️</div>
<div class="tier-name">Single Character</div>
<div class="tier-tagline">One fully realized NPC built entirely to your server's lore and naming conventions.</div>
<div class="tier-price-row">
<div class="tier-price">$25+</div>
<div class="tier-price-note">Crypto only · Final price quoted after brief</div>
</div>
<ul class="tier-features">
<li>600+ word custom personality definition</li>
<li>25 custom memory entries</li>
<li>Tuned config for your server's tone</li>
<li>Voice, mannerisms, speech quirks</li>
<li>Knowledge boundaries mapped</li>
<li>Emotional triggers defined</li>
<li>Edge case responses pre-built</li>
<li>3-step install guide</li>
<li>1 revision included</li>
</ul>
<div class="tier-delivery">⏱ Delivered within 72 hours of brief confirmation</div>
<a href="#commission-form" class="tier-btn" onclick="preselectTier('single')">Commission Single Character →</a>
</div>
<!-- WORLD PACK -->
<div class="tier-card">
<div class="tier-icon">🏰</div>
<div class="tier-name">Custom World Pack</div>
<div class="tier-tagline">Three or more characters built around your world. Shared lore. Relationship maps. Cross-reference memories.</div>
<div class="tier-price-row">
<div class="tier-price">$65+</div>
<div class="tier-price-note">Crypto only · Final price quoted after brief</div>
</div>
<ul class="tier-features">
<li>3+ custom characters (full 600+ words each)</li>
<li>75+ custom memory entries total</li>
<li>Shared lore document for your world</li>
<li>NPC relationship map</li>
<li>Cross-reference memory system</li>
<li>Faction dynamics if applicable</li>
<li>Priority support + config review</li>
<li>1 revision per character included</li>
</ul>
<div class="tier-delivery">⏱ Delivered within 5 business days of brief confirmation</div>
<a href="#commission-form" class="tier-btn" onclick="preselectTier('world')">Commission World Pack →</a>
</div>
<!-- FULL SERVER SYSTEM -->
<div class="tier-card">
<div class="tier-icon">🌐</div>
<div class="tier-name">Full Server NPC System</div>
<div class="tier-tagline">Complete NPC personality infrastructure. Characters, factions, lore, API optimization, and ongoing consultation.</div>
<div class="tier-price-row">