-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-key.html
More file actions
1705 lines (1635 loc) · 98 KB
/
get-key.html
File metadata and controls
1705 lines (1635 loc) · 98 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>Get Key — Your step-by-step guide to owning your website.</title>
<meta name="description" content="A plain-English guide to setting up GitQi from scratch. No technical knowledge needed — every step explains the what and the why.">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin=""><link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lacquer:wght@400&display=swap"><style>
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
--color-primary: #1a1b3a;
--color-secondary: #d946ef;
--color-accent: #ff8c3c;
--color-accent-2: #2dd4bf;
--color-accent-3: #fde047;
--color-accent-4: #f472b6;
--color-bg: #fdfbf5;
--color-bg-alt: #f3ede0;
--color-text: #1a1b3a;
--color-text-muted: #5a5d7a;
--color-border: rgba(26, 27, 58, 0.09);
--font-heading: 'Fraunces', 'Playfair Display', Georgia, serif;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.75rem;
--space-lg: 3.5rem;
--space-xl: 6rem;
--container-width: 1200px;
--radius: 18px;
--shadow: 0 24px 60px -24px rgba(26, 27, 58, 0.28);
--font-funky: 'Lacquer', system-ui, sans-serif;
--color-accent-5: #42468e;
}
body {
font-family: var(--font-body);
color: var(--color-text);
background: var(--color-bg);
line-height: 1.6;
font-size: 17px;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 600;
line-height: 1.12;
letter-spacing: -0.02em;
margin: 0 0 var(--space-sm);
color: var(--color-primary);
font-variation-settings: 'opsz' 32;
}
h1 { font-size: clamp(2.6rem, 5.5vw + 1rem, 5.25rem); font-weight: 500; letter-spacing: -0.035em; font-variation-settings: 'opsz' 144; }
h2 { font-size: clamp(2rem, 2.8vw + 0.9rem, 3.15rem); font-variation-settings: 'opsz' 72; }
h3 { font-size: clamp(1.25rem, 0.6vw + 1.1rem, 1.55rem); }
p { margin: 0 0 var(--space-sm); }
a { color: var(--color-accent-4); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0 0 var(--space-sm); padding-left: 1.15rem; }
li { margin-bottom: 0.3rem; }
code { font-family: 'SF Mono', Menlo, Consolas, monospace; background: rgba(217,70,239,0.1); color: #a020c0; padding: 0.15em 0.4em; border-radius: 6px; font-size: 0.92em; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--space-md); }
.btn { margin-bottom:0.8em; display: inline-flex; align-items: center; gap: 0.55em; padding: 0.95em 1.55em; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; cursor: pointer; border: 2px solid transparent; transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease; text-decoration: none; line-height: 1; }
.btn-primary { background: var(--color-accent); color: var(--color-primary); box-shadow: 0 14px 34px -14px rgba(255, 140, 60, 0.75); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(255, 140, 60, 0.8); }
.btn-dark { background: var(--color-primary); color: var(--color-bg); }
.btn-dark:hover { background: var(--color-secondary); color: white; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: currentColor; }
.btn-ghost:hover { background: var(--color-primary); color: var(--color-bg); }
.btn-ghost.on-dark { color: var(--color-bg); }
.btn-ghost.on-dark:hover { background: var(--color-bg); color: var(--color-primary); }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
/* Navigation */
.site-nav { position: sticky; top: 0; z-index: 1000; background: rgba(253,251,245,0.94); border-bottom: 1px solid var(--color-border); }
.nav-inner { max-width: var(--container-width); margin: 0 auto; padding: 0.85rem var(--space-md); display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); position: relative; }
.nav-brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; color: var(--color-primary); text-decoration: none; }
.nav-logo { width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; color: var(--color-bg); font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 50%, var(--color-accent-2) 100%); box-shadow: 0 10px 24px -10px rgba(217,70,239,0.5); }
.nav-logo img { width: 70%; height: 70%; filter: brightness(0) invert(1); }
.nav-menu { display: flex; gap: 0.2rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu a { font-weight: 500; font-size: 0.96rem; padding: 0.55rem 0.9rem; border-radius: 999px; color: var(--color-text); transition: background 0.2s ease, color 0.2s ease; display: inline-block; }
.nav-menu a:hover { background: var(--color-bg-alt); color: var(--color-secondary); }
.nav-menu a.active { background: var(--color-primary); color: var(--color-bg); }
.nav-menu a.active:hover { background: var(--color-primary); color: var(--color-accent-3); }
.nav-toggle { display: none; background: transparent; border: 0; width: 46px; height: 46px; cursor: pointer; position: relative; padding: 0; border-radius: 10px; }
.nav-toggle:hover { background: var(--color-bg-alt); }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--color-primary); transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease; border-radius: 2px; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-nav.is-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
@media (max-width: 920px) {
.nav-toggle { display: block; }
.nav-menu {
position: fixed;
top: 72px; left: 0; right: 0;
max-height: calc(100vh - 72px);
overflow-y: auto;
background: var(--color-bg);
flex-direction: column;
align-items: stretch;
padding: var(--space-sm) var(--space-md);
gap: 0.15rem;
border-bottom: 1px solid var(--color-border);
box-shadow: 0 18px 40px -18px rgba(26,27,58,0.25);
transform: translateY(-12px);
opacity: 0;
pointer-events: none;
transition: transform 0.24s ease, opacity 0.24s ease;
z-index: 9000;
}
.site-nav.is-open .nav-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-menu a { padding: 0.95rem 1rem; font-size: 1.05rem; border-radius: 12px; }
}
/* Hero */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero--home {
background:
radial-gradient(ellipse at 88% 12%, rgba(217,70,239,0.45), transparent 52%),
radial-gradient(ellipse at 10% 90%, rgba(45,212,191,0.4), transparent 55%),
radial-gradient(ellipse at 70% 85%, rgba(255,140,60,0.28), transparent 50%),
linear-gradient(135deg, #14152e, #1a1b3a 55%, #251a4c);
color: var(--color-bg);
padding: calc(var(--space-xl) * 1.05) 0 calc(var(--space-xl) * 1.05);
}
.hero--page {
background:
radial-gradient(ellipse at 85% 30%, rgba(255,140,60,0.32), transparent 52%),
radial-gradient(ellipse at 15% 80%, rgba(45,212,191,0.32), transparent 55%),
radial-gradient(ellipse at 50% 0%, rgba(217,70,239,0.22), transparent 60%),
linear-gradient(135deg, #14152e, #1a1b3a 60%, #2a1b45);
color: var(--color-bg);
padding: calc(var(--space-lg) * 1.35) 0 calc(var(--space-lg) * 1.35);
}
.hero h1, .hero h2, .hero h3 { color: var(--color-bg); }
.hero-inner { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.95rem; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2); font-size: 0.78rem; color: var(--color-accent-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: var(--space-sm); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent-3); box-shadow: 0 0 12px var(--color-accent-3); }
.hero-subtitle { font-size: clamp(1.05rem, 0.8vw + 0.9rem, 1.3rem); line-height: 1.55; color: rgba(253,251,245,0.8); max-width: 560px; margin-top: var(--space-sm); }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: calc(var(--space-md) + 0.25rem); }
.accent-word { color: var(--color-accent); font-style: italic; font-weight: 500; }
.accent-word.teal { color: var(--color-accent-2); }
.accent-word.yellow { color: var(--color-accent-3); }
.accent-word.pink { color: var(--color-accent-4); }
.accent-word.magenta { color: var(--color-secondary); }
.hero-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-lg); align-items: center; }
@media (max-width: 920px) { .hero-split { grid-template-columns: 1fr; gap: var(--space-lg); } }
.hero-media { position: relative; isolation: isolate; }
.hero-media-frame { position: relative; aspect-ratio: 4/5; border-radius: calc(var(--radius) * 1.4); overflow: hidden; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55); }
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker { position: absolute; border-radius: 16px; padding: 0.7rem 1rem; font-size: 0.85rem; font-weight: 600; box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35); display: inline-flex; align-items: center; gap: 0.5rem; z-index: 2; font-family: var(--font-body); }
.hero-sticker-1 { top: -1.2rem; left: -1.2rem; background: var(--color-accent-3); color: var(--color-primary); transform: rotate(-5deg); }
.hero-sticker-2 { bottom: 2.5rem; right: -1.3rem; background: var(--color-secondary); color: white; transform: rotate(4deg); }
.hero-sticker-3 { top: 45%; left: -1.6rem; background: var(--color-accent-2); color: var(--color-primary); transform: rotate(-3deg); }
.hero-media--small { max-width: 340px; width: 100%; margin-left: auto; }
.hero-media--small .hero-media-frame { aspect-ratio: 1/1; border-radius: calc(var(--radius) * 1.2); box-shadow: 0 28px 56px -18px rgba(0,0,0,0.5); }
@media (max-width: 920px) { .hero-media--small { margin: 0 auto; } }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; }
/* Stats row */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat-num { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--color-accent-3); font-weight: 500; letter-spacing: -0.02em; }
.stat-label { font-size: 0.88rem; color: rgba(253,251,245,0.7); letter-spacing: 0.04em; }
/* Sections */
section[data-zone] { scroll-margin-top: 90px; }
.section { padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-primary); color: var(--color-bg); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-bg); }
.section--teal { background: linear-gradient(150deg, #dbf6f1 0%, #fff4eb 100%); }
.section--cream { background: var(--color-bg-alt); }
.section--pink { background: linear-gradient(145deg, #fbe6f6 0%, #fff3ea 100%); }
.section--dark code { color: var(--color-accent-2); }
.section--dark .step code { color: #a020c0; }
.section-eyebrow { display: inline-block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--color-secondary); margin-bottom: var(--space-xs); }
.section--dark .section-eyebrow { color: var(--color-accent-3); }
.section--teal .section-eyebrow { color: #0b8e87; }
.section--pink .section-eyebrow { color: #a020c0; }
.section-head { max-width: 760px; margin-bottom: var(--space-lg); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: clamp(1.05rem, 0.7vw + 0.95rem, 1.2rem); color: var(--color-text-muted); line-height: 1.55; }
.section--dark .section-lead { color: rgba(253,251,245,0.78); }
/* About layout */
.about-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-lg); align-items: center; }
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; gap: var(--space-md); } }
.about-image { position: relative; isolation: isolate; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; position: relative; z-index: 1; }
.about-image::before { content: ""; position: absolute; top: -1.2rem; right: -1.2rem; width: 55%; height: 55%; background: var(--color-accent-3); border-radius: var(--radius); z-index: 0; transform: rotate(5deg); }
.about-image::after { content: ""; position: absolute; bottom: -1.2rem; left: -1.2rem; width: 45%; height: 45%; background: var(--color-accent-2); border-radius: var(--radius); z-index: 0; transform: rotate(-6deg); }
/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.card { background: var(--color-bg); border-radius: var(--radius); padding: calc(var(--space-md) - 0.15rem); border: 1px solid var(--color-border); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: var(--space-sm); color: white; font-size: 1.5rem; background: var(--color-primary); }
.card-icon.accent { background: linear-gradient(135deg, var(--color-accent), var(--color-secondary)); }
.card-icon.teal { background: linear-gradient(135deg, var(--color-accent-2), #0b8e87); }
.card-icon.pink { background: linear-gradient(135deg, var(--color-secondary), var(--color-accent-4)); }
.card-icon.yellow { background: linear-gradient(135deg, var(--color-accent-3), var(--color-accent)); color: var(--color-primary); }
.card-icon.orange { background: linear-gradient(135deg, var(--color-accent), #e0521a); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-top: 0; margin-bottom: 0.4rem; }
.card p { color: var(--color-text-muted); margin: 0; }
/* Path card (two-paths section) */
.path-card { background: var(--color-bg); border-radius: calc(var(--radius) * 1.2); padding: calc(var(--space-md) + 0.4rem); border: 1px solid var(--color-border); position: relative; overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease; display: flex; flex-direction: column; }
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.path-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.path-card.get-key::before { background: linear-gradient(90deg, var(--color-accent), var(--color-accent-3)); }
.path-card.git-qi::before { background: linear-gradient(90deg, var(--color-accent-2), var(--color-secondary)); }
.path-mark { width: 68px; height: 68px; border-radius: 20px; display: grid; place-items: center; font-size: 2rem; margin-bottom: var(--space-sm); }
.path-card.get-key .path-mark { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-3)); color: var(--color-primary); }
.path-card.git-qi .path-mark { background: linear-gradient(135deg, var(--color-accent-2), var(--color-secondary)); color: var(--color-bg); font-family: var(--font-heading); font-weight: 600; }
.path-label { display: inline-block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--color-secondary); margin-bottom: var(--space-xs); }
.path-card.get-key .path-label { color: #c05a1a; }
.path-card.git-qi .path-label { color: #0b8e87; }
.path-card h3 { font-size: clamp(1.4rem, 1.2vw + 0.9rem, 1.85rem); margin-top: 0; }
.path-card p { color: var(--color-text-muted); flex-grow: 1; }
.path-card .btn { margin-top: var(--space-sm); align-self: flex-start; }
/* Testimonial */
.testimonial { background: var(--color-bg); border-radius: var(--radius); padding: calc(var(--space-md) + 0.2rem); box-shadow: var(--shadow); position: relative; border-top: 6px solid var(--color-accent); }
.testimonial.v2 { border-top-color: var(--color-accent-2); }
.testimonial.v3 { border-top-color: var(--color-secondary); }
.testimonial .quote-mark { font-family: var(--font-heading); font-size: 3rem; line-height: 0.3; position: absolute; top: 1.6rem; right: 1.5rem; color: var(--color-accent); opacity: 0.35; font-style: italic; }
.testimonial.v2 .quote-mark { color: var(--color-accent-2); }
.testimonial.v3 .quote-mark { color: var(--color-secondary); }
.testimonial blockquote { margin: 0 0 var(--space-sm); font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.45; color: var(--color-primary); font-weight: 500; font-style: italic; }
.testimonial cite { font-style: normal; font-size: 0.92rem; color: var(--color-text-muted); display: block; margin-top: var(--space-xs); }
.testimonial cite strong { color: var(--color-primary); display: block; font-weight: 600; font-style: normal; }
/* Feature showcase */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; margin-bottom: calc(var(--space-xl) * 0.9); }
.feature-row:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; margin-bottom: var(--space-xl); } .feature-row .feature-media { order: -1; } }
.feature-media { position: relative; isolation: isolate; }
.feature-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow); position: relative; z-index: 1; }
.feature-media::before { content:""; position: absolute; border-radius: var(--radius); z-index: 0; }
.feature-media.frame-orange::before { inset: -0.9rem auto auto -0.9rem; width: 55%; height: 60%; background: var(--color-accent); transform: rotate(-3deg); }/*top-left*/
.feature-media.frame-orange-alt::before { inset: -0.9rem -0.9rem auto auto; width: 55%; height: 60%; background: var(--color-accent); transform: rotate(3deg); }/*top-right*/
.feature-media.frame-teal::before { inset: auto -0.9rem -0.9rem auto; width: 55%; height: 60%; background: var(--color-accent-2); transform: rotate(5deg); }/*bottom-right*/
.feature-media.frame-teal-alt::before { inset: auto auto -0.9rem -0.9rem; width: 55%; height: 60%; background: var(--color-accent-2); transform: rotate(-5deg); }/*bottom-left*/
.feature-media.frame-pink::before { inset: -0.9rem -0.9rem auto auto; width: 48%; height: 55%; background: var(--color-accent-4); transform: rotate(4deg); }/*top-right*/
.feature-media.frame-pink-alt::before { inset: -0.9rem auto auto -0.9rem; width: 48%; height: 55%; background: var(--color-accent-4); transform: rotate(-4deg); }/*top-left*/
.feature-media.frame-yellow::before { inset: auto auto -0.9rem -0.9rem; width: 55%; height: 55%; background: var(--color-accent-3); transform: rotate(-4deg); }/*bottom-left*/
.feature-media.frame-yellow-alt::before { inset: auto -0.9rem -0.9rem auto; width: 55%; height: 55%; background: var(--color-accent-3); transform: rotate(4deg); }/*bottom-right*/
.feature-media.frame-magenta::before { inset: -0.9rem auto auto -0.9rem; width: 55%; height: 55%; background: var(--color-secondary); transform: rotate(-4deg); }/*top-left*/
.feature-media.frame-magenta-alt::before { inset: -0.9rem -0.9rem auto auto; width: 55%; height: 55%; background: var(--color-secondary); transform: rotate(4deg); }/*top-right*/
.feature-chip { display: inline-block; padding: 0.38rem 0.82rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; margin-bottom: var(--space-sm); }
.chip-orange { background: rgba(255,140,60,0.16); color: #c05a1a; }
.chip-teal { background: rgba(45,212,191,0.2); color: #0b8e87; }
.chip-pink { background: rgba(217,70,239,0.15); color: #a020c0; }
.chip-yellow { background: rgba(253,224,71,0.3); color: #8a6d00; }
.chip-magenta { background: rgba(244,114,182,0.2); color: #b33076; }
.feature-text h3 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); }
.feature-text ul { padding-left: 1.1rem; color: var(--color-text-muted); }
.feature-text ul li::marker { color: var(--color-secondary); }
/* Steps */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
.step { display: grid; grid-template-columns: 76px 1fr; gap: var(--space-md); align-items: start; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius); padding: calc(var(--space-md) - 0.1rem); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.step-num { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-heading); font-size: 1.65rem; color: white; background: var(--color-primary); font-weight: 600; font-variation-settings: 'opsz' 144; }
.steps .step:nth-child(1) .step-num { background: var(--color-accent); color: var(--color-primary); }
.steps .step:nth-child(2) .step-num { background: var(--color-secondary); }
.steps .step:nth-child(3) .step-num { background: var(--color-accent-2); color: var(--color-primary); }
.steps .step:nth-child(4) .step-num { background: var(--color-accent-3); color: var(--color-primary); }
.steps .step:nth-child(5) .step-num { background: var(--color-accent-4); }
.steps .step:nth-child(6) .step-num { background: var(--color-accent-5); }
.steps .step:nth-child(7) .step-num { background: var(--color-primary); color: var(--color-accent-3); }
.step h3 { margin: 0 0 0.3rem; }
.step p { margin: 0; color: var(--color-text-muted); }
.section--dark .step h1, .section--dark .step h2, .section--dark .step h3 { color: var(--color-accent-5); }
@media (max-width: 520px) { .step { grid-template-columns: 56px 1fr; gap: var(--space-sm); } .step-num { width: 52px; height: 52px; font-size: 1.35rem; border-radius: 14px; } }
/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-secondary) 55%, #7a2fc4 100%); color: white; padding: calc(var(--space-lg) + 0.5rem) var(--space-md); border-radius: calc(var(--radius) * 1.6); text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.cta-banner::before, .cta-banner::after { content: ""; position: absolute; border-radius: 50%; z-index: -1; filter: blur(30px); opacity: 0.6; }
.cta-banner::before { top: -50px; left: -40px; width: 220px; height: 220px; background: var(--color-accent-3); }
.cta-banner::after { bottom: -60px; right: -50px; width: 260px; height: 260px; background: var(--color-accent-2); }
.cta-banner .section-eyebrow { color: rgba(255,255,255,0.9); }
.cta-banner h2 { color: white; max-width: 680px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto var(--space-md); font-size: 1.08rem; }
.cta-banner code { color: var(--color-accent-2); }
.cta-banner .btn-dark { background: var(--color-accent-5); }
.cta-banner .btn-dark:hover { background: var(--color-primary); }
/* Code block */
.code-block { background: #0e0f23; color: #e2e4ff; border-radius: var(--radius); padding: var(--space-md); font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 0.92rem; line-height: 1.65; overflow-x: auto; position: relative; border: 1px solid rgba(255,255,255,0.08); }
.code-block::before { content: ""; position: absolute; top: 16px; left: 18px; width: 11px; height: 11px; border-radius: 50%; background: #ff6058; box-shadow: 18px 0 0 #ffc02e, 36px 0 0 #29cd42; }
.code-block pre { margin: 28px 0 0; white-space: pre; font-family: inherit; color: inherit; }
.code-block .k { color: #c379f5; }
.code-block .s { color: #7ff5c3; }
.code-block .c { color: #7c819e; font-style: italic; }
.code-block .p { color: #ffa96b; }
/* Inline note */
.inline-note { display: flex; gap: 0.85rem; padding: 1rem 1.15rem; background: rgba(45,212,191,0.12); border-left: 4px solid var(--color-accent-2); border-radius: 10px; color: var(--color-text); font-size: 0.95rem; margin-top: var(--space-sm); }
.inline-note.warn { background: rgba(255,140,60,0.12); border-left-color: var(--color-accent); }
.inline-note.lock { background: rgba(26,27,58,0.06); border-left-color: var(--color-primary); }
.inline-note.win { background: rgba(253,224,71,0.22); border-left-color: var(--color-accent-3); }
.inline-note .inline-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.2; }
/* Donate cards */
.donate-card { background: var(--color-bg); border-radius: var(--radius); padding: calc(var(--space-md) + 0.3rem); border: 1px solid var(--color-border); position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.donate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.donate-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.donate-card.v1::before { background: linear-gradient(90deg, var(--color-accent), var(--color-secondary)); }
.donate-card.v2::before { background: linear-gradient(90deg, var(--color-accent-2), #0b8e87); }
.donate-card.v3::before { background: linear-gradient(90deg, var(--color-accent-3), var(--color-accent)); }
.donate-card h3 { margin-top: 0; font-size: 1.45rem; }
.donate-card .emoji { font-size: 2rem; margin-bottom: var(--space-sm); display: block; }
/* Footer */
.site-footer { background: var(--color-primary); color: var(--color-bg); padding: calc(var(--space-lg) + 0.5rem) 0 var(--space-md); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--color-accent), var(--color-secondary) 35%, var(--color-accent-4) 65%, var(--color-accent-2)); }
.site-footer a { color: inherit; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-md); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: var(--space-xs); color: var(--color-bg); text-decoration: none; }
.footer-brand .nav-logo { width: 38px; height: 38px; font-size: 1.2rem; }
.footer-tagline { color: rgba(253,251,245,0.68); max-width: 340px; margin: 0 0 var(--space-sm); font-size: 0.97rem; }
.footer-heading { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--color-accent-3); margin: 0 0 var(--space-sm); font-weight: 700; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a { color: rgba(253,251,245,0.78); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--color-accent-3); }
.footer-bottom { padding-top: var(--space-md); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); color: rgba(253,251,245,0.55); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; display: inline-grid; place-items: center; background: rgba(255,255,255,0.08); transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; color: var(--color-bg); }
.footer-socials a:hover { background: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
/* Utility */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.center { text-align: center; }
.max-prose { max-width: 760px; }
/* Name play */
.name-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
@media (max-width: 860px) { .name-grid { grid-template-columns: 1fr 1fr; } }
.name-tile { background: var(--color-bg); border-radius: var(--radius); padding: var(--space-md); border 1px solid var(--color-border); }
.name-tile .lead { font-family: var(--font-heading); font-size: 2.3rem; color: var(--color-accent); display: block; margin-bottom: 0.3rem; font-weight: 500; font-style: italic; }
.name-tile:nth-child(2) .lead { color: var(--color-accent-2); }
.name-tile:nth-child(3) .lead { color: var(--color-secondary); }
.name-tile:nth-child(4) .lead { color: var(--color-accent-4); }
.name-tile p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }
/* Flourish */
.flourish { position: absolute; pointer-events: none; opacity: 0.55; z-index: 0; }
/* Guide step (large, detailed numbered steps used on the Get Key guide) */
.guide-step { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: calc(var(--radius) * 1.15); padding: calc(var(--space-md) + 0.3rem); margin-bottom: var(--space-md); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.guide-step:hover { box-shadow: var(--shadow); }
.guide-step:last-child { margin-bottom: 0; }
.guide-step-head { display: grid; grid-template-columns: 80px 1fr; gap: var(--space-md); align-items: start; margin-bottom: var(--space-sm); }
.guide-step-num { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; font-family: var(--font-heading); font-size: 2rem; color: var(--color-accent-3); background: var(--color-primary); font-weight: 600; font-variation-settings: 'opsz' 144; line-height: 1; }
/*.guide-step:nth-of-type(1) .guide-step-num { background: var(--color-accent); color: var(--color-primary); }
.guide-step:nth-of-type(2) .guide-step-num { background: var(--color-secondary); }
.guide-step:nth-of-type(3) .guide-step-num { background: var(--color-accent-4); }
.guide-step:nth-of-type(4) .guide-step-num { background: var(--color-accent-3); color: var(--color-primary); }
.guide-step:nth-of-type(5) .guide-step-num { background: var(--color-accent-2); color: var(--color-primary); }
.guide-step:nth-of-type(6) .guide-step-num { background: var(--color-accent-5); }
.guide-step:nth-of-type(7) .guide-step-num { background: var(--color-primary); color: var(--color-accent-3); }*/
.guide-step-head h2 { margin: 0.15rem 0 0.4rem; font-size: clamp(1.45rem, 1.6vw + 0.9rem, 2.05rem); }
.guide-step-head .section-eyebrow { margin-bottom: 0.2rem; }
.guide-step-head p { color: var(--color-text-muted); margin: 0; }
.guide-step h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin: var(--space-md) 0 var(--space-xs); color: var(--color-secondary); display: inline-flex; align-items: center; gap: 0.45rem; }
.guide-step h4::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; display: inline-block; }
.guide-step h4.why { color: var(--color-accent); }
.guide-step h4.how { color: #0b8e87; }
.guide-step h4.done { color: var(--color-accent-5); }
.guide-step ol, .guide-step ul { color: var(--color-text-muted); padding-left: 1.3rem; margin: 0 0 var(--space-sm); }
.guide-step ol li, .guide-step ul li { margin-bottom: 0.45rem; }
.guide-step ol li::marker, .guide-step ul li::marker { color: var(--color-secondary); font-weight: 600; }
.guide-step > p { color: var(--color-text-muted); }
.guide-step > p strong { color: var(--color-primary); }
@media (max-width: 520px) { .guide-step-head { grid-template-columns: 56px 1fr; gap: var(--space-sm); } .guide-step-num { width: 54px; height: 54px; font-size: 1.45rem; border-radius: 14px; } .guide-step-head h2 { font-size: 1.35rem; } }
/* Progress strip — pill row previewing a sequence of steps (used in hero on dark bg) */
.progress-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: calc(var(--space-md) + 0.25rem); }
.progress-dot { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.9rem 0.4rem 0.4rem; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); color: rgba(253,251,245,0.88); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.01em; line-height: 1.2; }
.progress-dot .n { width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--color-accent-3); color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; flex-shrink: 0; font-variation-settings: 'opsz' 9; }
/*.progress-dot:nth-child(1) .n { background: var(--color-accent); color: var(--color-primary); }
.progress-dot:nth-child(2) .n { background: var(--color-secondary); color: white; }
.progress-dot:nth-child(3) .n { background: var(--color-accent-4); color: white; }
.progress-dot:nth-child(4) .n { background: var(--color-accent-3); color: var(--color-primary); }
.progress-dot:nth-child(5) .n { background: var(--color-accent-2); color: var(--color-primary); }
.progress-dot:nth-child(6) .n { background: var(--color-accent-5); color: white; }
.progress-dot:nth-child(7) .n { background: var(--color-bg); color: var(--color-primary); }*/
/* Progress strip on light backgrounds (fallback if used outside hero) */
.section .progress-strip .progress-dot { background: rgba(26,27,58,0.04); border-color: var(--color-border); color: var(--color-text-muted); }
/* Tech flow — horizontal pipeline with arrow connectors (e.g. "The publish pipeline") */
.tech-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); margin-top: var(--space-md); }
.tech-flow .node { position: relative; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: calc(var(--radius) * 0.9); padding: calc(var(--space-sm) + 0.3rem) var(--space-sm) var(--space-sm); display: flex; flex-direction: column; gap: 0.4rem; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.tech-flow .node:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tech-flow .node::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-top-left-radius: inherit; border-top-right-radius: inherit; }
.tech-flow .node:nth-of-type(1)::before { background: var(--color-accent); }
.tech-flow .node:nth-of-type(2)::before { background: var(--color-secondary); }
.tech-flow .node:nth-of-type(3)::before { background: var(--color-accent-2); }
.tech-flow .node:nth-of-type(4)::before { background: var(--color-accent-3); }
.tech-flow .node:nth-of-type(5)::before { background: var(--color-accent-4); }
.tech-flow .node strong { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-primary); letter-spacing: -0.01em; line-height: 1.25; }
.tech-flow .node span { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.5; }
@media (max-width: 760px) {
.tech-flow { grid-template-columns: 1fr; gap: calc(var(--space-sm) + 0.6rem); }
}
/* Tech flow on dark sections */
.section--dark .tech-flow .node { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--dark .tech-flow .node strong { color: var(--color-bg); }
.section--dark .tech-flow .node span { color: rgba(253,251,245,0.72); }
.section--dark .tech-flow .node:not(:last-child)::after { color: var(--color-accent-3); }
</style>
<link rel="icon" type="image/png" href="./assets/favicon.png">
<link rel="apple-touch-icon" href="./assets/favicon.png">
<meta name="keywords" content="get key, getting started, setup, github pages, gitqi guide">
<style id="__gitqi-section-before-you-start-styles">
/* No additional CSS required for this section. All necessary styles are provided in the global CSS. */
</style>
<style id="__gitqi-section-how-it-works-styles">
/* Custom coloring for the guide step numbers */
.guide-step .guide-step-num.num-1 {
background: var(--color-accent);
color: var(--color-primary);
}
.guide-step .guide-step-num.num-2 {
background: var(--color-secondary);
color: var(--color-bg);
}
/* Adjust margin for the first h4 inside a guide-step to ensure consistent spacing */
.guide-step .guide-step-head + h4 {
margin-top: var(--space-sm);
}
</style>
<style id="__gitqi-section-build-publish-2-styles">
/* No additional CSS needed for this section as existing classes and variables are used. */
</style>
</head>
<body style="">
<nav class="site-nav" style="">
<div class="nav-inner">
<a href="./index.html" class="nav-brand">
<span class="nav-logo" aria-hidden="true"><img src="assets/qi-icon.svg" alt=""></span>
<span>GitQi</span>
</a>
<button class="nav-toggle" aria-label="Toggle menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
<ul class="nav-menu">
<li style="position: relative;"><a href="./index.html">Home</a></li>
<li style="position: relative;"><a href="javascript:void(0)" data-gqe="Om90bGlhbQ==">About</a></li>
<li style="position: relative;"><a href="./get-key.html" class="active">Get Key</a></li>
<li style="position: relative;"><a href="./git-qi.html">Git Qi</a></li>
<li style="position: relative;"><a href="./features.html">Features</a></li>
<li style="position: relative;"><a href="./donate.html">Donate</a></li>
</ul>
</div>
<script>
(function () {
const nav = document.currentScript.closest("nav");
nav.addEventListener("click", function (e) {
const btn = e.target.closest(".nav-toggle");
if (btn) {
const open = nav.classList.toggle("is-open");
btn.setAttribute("aria-expanded", open ? "true" : "false");
} else if (e.target.closest(".nav-menu a")) {
nav.classList.remove("is-open");
const t = nav.querySelector(".nav-toggle");
if (t) t.setAttribute("aria-expanded", "false");
}
});
})();
</script>
</nav>
<section class="hero hero--page" data-zone="hero" data-zone-label="Hero" id="hero" style="">
<div class="container hero-inner">
<div class="hero-split">
<div>
<span class="hero-badge" data-editable=""><span class="dot"></span>The Get Key path</span>
<h1 data-editable="">
From
<em><span style="color: var(--color-accent-4)">zero</span></em>
to a <span class="accent-word">live</span>. <br>Step by step.
</h1>
<p class="hero-subtitle" data-editable="">
No technical background needed. Each step tells you what you're
doing and why — so you understand it, not just copy it. Estimated
time: about 30 minutes the first time.
</p>
<div class="progress-strip" aria-hidden="true">
<span class="progress-dot"><span class="n">1</span> One-time setup</span>
<span class="progress-dot"><span class="n">2</span> Build initial site with AI</span>
<span class="progress-dot"><span class="n">3</span> Edit & update the content</span>
<span class="progress-dot"><span class="n">4</span> Publish the site</span>
</div>
</div>
<div class="hero-media hero-media--small">
<div class="hero-media-frame">
<img src="./assets/vibrant-psychedelic-american-buffalo-drawing_1342679-12494.jpg" data-editable-image="" alt="A colorful illustration representing the GitQi project" style="cursor: pointer">
</div>
</div>
</div>
</div>
</section>
<section class="section" data-zone="before-you-start" data-zone-label="Before You Start" id="before-you-start" style="">
<div class="container">
<div class="section-head center">
<h2 data-editable="">
Build your
<span style="color: var(--color-secondary)">first website</span>.
</h2>
<p class="section-lead" data-editable="">
On this page, you will get setup with the following...
</p>
</div>
<div class="grid-3">
<div class="card">
<div class="card-icon yellow" data-editable="">✨</div>
<h3 data-editable="">A Live Website</h3>
<p data-editable="">
Your website will be live at
<code><user>.github.io/<site></code>, with the ability
to customize your domain later.
</p>
</div>
<div class="card">
<div class="card-icon teal" data-editable="">💻</div>
<h3 data-editable="">Local Editing</h3>
<p data-editable="">
Your website lives on your computer,
<strong><span style="color: var(--color-secondary)">edit</span><span style="color: var(--color-secondary)"> by clicking</span></strong> in your browser, or
<strong><span style="color: var(--color-secondary)">create content with AI</span></strong>.
</p>
</div>
<div class="card">
<div class="card-icon pink" data-editable="">🚀</div>
<h3 data-editable="">One-Click Publishing</h3>
<p data-editable="">
Click
<strong><span style="color: var(--color-secondary)">Publish</span></strong>
to push the changes from your computer to the live site.
</p>
</div>
</div>
</div>
</section>
<section class="section section--alt" data-zone="what-you-need" data-zone-label="What You'll Need" id="what-you-need" style="">
<div class="container">
<div class="section-head center">
<span class="section-eyebrow" data-editable="">What you'll need</span>
<h2 data-editable="">
A short list of
<font color="#ff8c3c"><span style="font-weight: 500"><i>what you need</i></span></font>.
</h2>
<p class="section-lead" data-editable="">
All the pieces you need before you start. Everything is free,
nothing requires a credit card, and each account is set up in the
steps below.
</p>
</div>
<div class="grid-2">
<div class="card">
<div class="card-icon orange" data-editable="">🌐</div>
<h3 data-editable="">A Chromium-based browser</h3>
<p data-editable="">
Chrome, Edge, Brave, Arc — any Chromium browser works, as we
depend on the File System Access API. <br>Edits are
made to local files through an editor in the browser.
</p>
</div>
<div class="card">
<div class="card-icon teal" data-editable="">💾</div>
<h3 data-editable="">A free GitHub account</h3>
<p data-editable="">
Where your site's files live and from which GitHub Pages serves
your website, for free, forever.
<span style="font-style: italic; color: var(--color-accent-4)">Setup below</span><em>.</em><br>Li<em>
<code><username>.github.io/<site></code>
(can customize)</em>
</p>
</div>
<div class="card">
<div class="card-icon yellow" data-editable="">✨</div>
<h3 data-editable="">A free Gemini account</h3>
<p data-editable="">
Google AI Studio provides the free API key GitQi uses to generate
new sections and pages for your site.
<em><span style="color: var(--color-accent-4)">Setup below</span>.</em>
</p>
</div>
<div class="card">
<div class="card-icon pink" data-editable="">🤖</div>
<h3 data-editable="">A free Claude.ai account</h3>
<p data-editable="">
Where you run the bootstrap prompt that generates the first
version of your website's HTML.
<em><span style="color: var(--color-accent-4)">Setup below.</span></em>
</p>
</div>
</div>
</div>
</section>
<section class="section" data-zone="how-it-works" data-zone-label="How It Works" id="how-it-works">
<div class="container">
<div class="section-head center">
<span class="section-eyebrow" data-editable="">How it works</span>
<h2 data-editable="">
From
<span class="accent-word teal"><span style="color: var(--color-accent-5)"><span style="color: var(--color-text-muted)"><span style="color: var(--color-text)"><span style="color: var(--color-accent-4)">zero</span></span></span></span></span>
to
<span class="accent-word"><span style="color: var(--color-accent-2)">live</span></span>.
</h2>
</div>
<div>
<div class="guide-step">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-4" aria-hidden="true">
1
</div>
<div>
<h2 data-editable="">
Setup
<span style="color: var(--color-secondary)">accounts</span>
and get
<span style="color: var(--color-accent-2)"><span style="color: var(--color-accent)">keys</span></span>
</h2>
<p data-editable="">
One-time setup for all required tools and security.
</p>
</div>
</div>
<h4 data-editable="" class="how">
Setup the required tools and create a
<code>secrets.js</code> file
</h4>
<p data-editable="">
One-time setup — create the accounts, generate the keys, save them
into a single local file that never leaves your computer.
</p>
</div>
<div class="guide-step">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-2" aria-hidden="true">
2
</div>
<div>
<h2 data-editable="">
<span style="color: var(--color-accent)">Build</span>,
<span style="color: var(--color-accent-2)">edit</span>
and
<span style="color: var(--color-accent-4)">publish</span>
your site
</h2>
<p data-editable="">
Create and manage your website with AI, then publish with a
click.
</p>
</div>
</div>
<h4 data-editable="" class="how">
Iterate and Publish with AI-Powered creation and in-line editing
</h4>
<p data-editable="">
Leverage AI to generate your initial site structure from a prompt,
then refine and expand its content directly in your browser with
intuitive editing. Add new sections with AI prompts and publish
your polished HTML to GitHub with a single click for instant
deploys.
</p>
</div>
</div>
</div>
</section>
<section class="section section--alt" data-zone="setup-tools" data-zone-label="Setup the Tools" id="setup-tools" style="">
<div class="container">
<div class="section-head">
<span class="section-eyebrow" data-editable="">Setup the required tools</span>
<h2 data-editable="">
Make your
<span class="accent-word magenta">accounts</span> and gather your
<span class="accent-word yellow"><span style="color: var(--color-accent)">keys</span></span>.
</h2>
<p class="section-lead" data-editable="">
Four short setup tasks. Do each once, keep the credentials safe, and
you're done with setup forever. The final sub-step collects
everything into a single
<code>secrets.js</code> file used in the next section.
</p>
</div>
<div class="guide-step" data-zone="setup-github" data-zone-label="Setup · GitHub Repo & Token" id="setup-github" style="position: relative">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-4" aria-hidden="true">
1
</div>
<div>
<span class="section-eyebrow" data-editable="">Setup · GitHub</span>
<h2 data-editable="">
Setup a GitHub
<span class="accent-word teal">repo</span> and get a
<span class="accent-word pink">token</span>.
</h2>
<p data-editable="">
<strong>What you're doing:</strong> making a home on GitHub for
your site's files to live, then giving GitQi narrow permission
to push files into that one repository.
</p>
</div>
</div>
<h4 class="why" data-editable="">Why it matters</h4>
<p data-editable="">
GitHub is where your site will live. GitQi publishes by pushing your
HTML file to a GitHub repository, and GitHub then serves it as a
live website through
<em>GitHub Pages</em> — for free, forever, with no subscription. To
push on your behalf, GitQi needs a <em>Personal Access Token</em> —
scoped only to this one site repository, with no access to anything
else on your account.
</p>
<h4 class="how" data-editable="">How to do it</h4>
<p data-editable="">
<strong>Create the repository:</strong>
</p>
<ol>
<li data-editable="">
Go to
<a href="https://github.com" target="_blank" rel="noopener noreferrer">github.com</a>
and create a free account if you don't have one.
</li>
<li data-editable="">
In the top-right, click the <code>+</code> icon →
<strong>New repository</strong>.
</li>
<li data-editable="">
Name it something simple and lowercase with hyphens, like
<code>my-pro-site</code>.
</li>
<li data-editable="">
Set it to <strong>Public</strong> (required for free GitHub
Pages).
</li>
<li data-editable="">
Leave every other option at its default. You do
<em>not</em> need to add a README, a <code>.gitignore</code>, or a
license — GitQi will populate the repository for you.
</li>
<li data-editable="">
Click <strong>Create repository</strong>. You'll land on a page
that says something like "Quick setup — if you've done this kind
of thing before". The repository exists but is empty. That's
exactly what we want.
</li>
</ol>
<p data-editable="">
<strong>Create the access token:</strong>
</p>
<ol start="7">
<li data-editable="">
Click your profile photo (top-right) →
<strong>Settings</strong>.
</li>
<li data-editable="">
Scroll to the bottom of the left sidebar →
<strong>Developer settings</strong>.
</li>
<li data-editable="">
Click <strong>Personal access tokens</strong> →
<strong>Fine-grained tokens</strong>.
</li>
<li data-editable="">Click <strong>Generate new token</strong>.</li>
<li data-editable="">
Give it a name like
<code>gitqi-my-pro-site</code> so future-you remembers what it's
for.
</li>
<li data-editable="">
Set expiration to <em>Never expire</em>, or expire in 1 year (in
which case you'll repeat this step once a year).
</li>
<li data-editable="">
Under <strong>Repository access</strong>, choose
<em>Only select repositories</em> and pick the repository you just
created.
</li>
<li data-editable="">
Under
<strong>Permissions → Repository permissions</strong>, find
<strong>Contents</strong> and add it, then set it to
<em>Read and write</em>.
</li>
<li data-editable="">
Click <strong>Generate token</strong> and
<strong>copy the token immediately</strong> — GitHub only shows it
once. It starts with <code>ghp_</code>.
</li>
</ol>
<h4 class="done" data-editable="">Done when</h4>
<p data-editable="">
You have an empty repository created and a token string starting
with <code>ghp_</code> copied somewhere safe (a notes app is fine —
you'll move it into <code>secrets.js</code> shortly).
</p>
<div class="inline-note lock">
<span class="inline-icon">🔒</span>
<span data-editable="">Your repository is public, which means anyone can see your site's
HTML — that's normal and expected for GitHub Pages. Your
credentials (API keys, tokens) will never be in the repository.
The token itself is scoped to this one repo, cannot access
anything else on your account, and you can revoke it with one
click if it's ever exposed.</span>
</div>
</div>
<div class="guide-step" data-zone="setup-gemini" data-zone-label="Setup · Gemini" id="setup-gemini" style="position: relative">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-4" aria-hidden="true">
2
</div>
<div>
<span class="section-eyebrow" data-editable="">Setup · Gemini</span>
<h2 data-editable="">
Setup Gemini and get an
<span class="accent-word yellow"><span style="color: var(--color-accent)">API key</span></span>.
</h2>
<p data-editable="">
<strong>What you're doing:</strong> grabbing a free key from
Google AI Studio so GitQi can generate new sections and pages
for your site.
</p>
</div>
</div>
<h4 class="why" data-editable="">Why it matters</h4>
<p data-editable="">
GitQi uses AI to help you add new content — describe a section and
it appears, styled to match your site. Google AI Studio provides a
free API key with a generous usage limit — no billing, no credit
card, no payment details required. It's the easiest free AI key on
the internet.
</p>
<h4 class="how" data-editable="">How to do it</h4>
<ol>
<li data-editable="">
Go to
<a href="https://aistudio.google.com" target="_blank" rel="noopener noreferrer">aistudio.google.com</a>
and sign in with your Google account (Gmail works fine).
</li>
<li data-editable="">Accept the terms of service if prompted.</li>
<li data-editable="">
Click <strong>Get API key</strong> in the left sidebar (or go
directly to
<a href="https://aistudio.google.com/api-keys" target="_blank" rel="noopener noreferrer">aistudio.google.com/api-keys</a>).
</li>
<li data-editable="">
Click <strong>Create API key</strong>. If AI Studio asks you to
pick a Google Cloud project, let it create a new one for you — you
don't need to configure it.
</li>
<li data-editable="">
Copy the key that appears. It starts with
<code>AIza</code>.
</li>
</ol>
<h4 class="done" data-editable="">Done when</h4>
<p data-editable="">
You have a key string starting with
<code>AIza</code> copied somewhere safe.
</p>
<div class="inline-note lock">
<span class="inline-icon">🔒</span>
<span data-editable="">Google will <strong>never</strong> ask you for a payment method
to create this key. If you see a prompt about "enabling billing",
you're in the wrong place — step back to AI Studio (not Google
Cloud Console) and try again.</span>
</div>
</div>
<div class="guide-step" data-zone="setup-claude" data-zone-label="Setup · Claude.ai" id="setup-claude" style="position: relative">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-4" aria-hidden="true">
3
</div>
<div>
<span class="section-eyebrow" data-editable="">Setup · Claude.ai</span>
<h2 data-editable="">
Setup Claude.ai for the
<span class="accent-word magenta">bootstrap prompt</span>.
</h2>
<p data-editable="">
<strong>What you're doing:</strong> creating a free Claude.ai
account — the AI you'll use to build the first version of your
website from the GitQi bootstrap prompt.
</p>
</div>
</div>
<h4 class="why" data-editable="">Why it matters</h4>
<p data-editable="">
GitQi doesn't use templates. Instead, it uses your ideas plus an AI
to generate an HTML file (or multiple) that matches your business,
your tone, and your visual taste — from the ground up. Claude.ai's
free tier is well-suited to running the GitQi bootstrap prompt and
producing a complete starter page. You describe it; Claude builds
it. Everything it produces, you can edit word-by-word on the page
later.
</p>
<h4 class="how" data-editable="">How to do it</h4>
<ol>
<li data-editable="">
Go to
<a href="https://claude.ai" target="_blank" rel="noopener noreferrer">claude.ai</a>.
</li>
<li data-editable="">
Click <strong>Sign up</strong> and register with your email (or
continue with Google).
</li>
<li data-editable="">
Verify your email if prompted, accept the terms of service, and
complete the brief onboarding.
</li>
<li data-editable="">
That's it — you're logged in and ready to paste prompts. No API
key, no billing, nothing to copy.
</li>
</ol>
<h4 class="done" data-editable="">Done when</h4>
<p data-editable="">
You're signed in at
<a href="https://claude.ai" target="_blank" rel="noopener noreferrer">claude.ai</a>
and can see the chat interface. You'll come back here in the
<strong>Building & Editing</strong> section to paste the GitQi
bootstrap prompt.
</p>
<div class="inline-note">
<span class="inline-icon">💡</span>
<span data-editable="">You'll use Claude.ai once to generate your starter HTML, then
occasionally afterwards if you want to bootstrap a whole new page
from scratch. Day-to-day editing and new-section generation
happens inside GitQi itself, using your Gemini key.</span>
</div>
</div>
<div class="guide-step" data-zone="setup-secrets" data-zone-label="Setup · secrets.js" id="setup-secrets" style="position: relative">
<div class="guide-step-head">
<div class="guide-step-num guide-accent-4" aria-hidden="true">
4
</div>
<div>
<span class="section-eyebrow" data-editable="">Setup · secrets.js</span>
<h2 data-editable="">
Create your
<span class="accent-word"><span style="color: var(--color-secondary)">secrets.js</span></span>
file.
</h2>
<p data-editable="">