-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb_Selector_Extractor.html
More file actions
1259 lines (1131 loc) · 41.9 KB
/
Web_Selector_Extractor.html
File metadata and controls
1259 lines (1131 loc) · 41.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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Selector Extractor - QA Engineer Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Sora:wght@300;400;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0a0e17;
--bg-alt: #0b0f1a;
--bg-card: #111827;
--bg-card-hover: #1a2332;
--border: #1e293b;
--border-bright: #334155;
--text: #e2e8f0;
--text-dim: #94a3b8;
--text-muted: #64748b;
--green: #22c55e;
--green-dim: rgba(34,197,94,.12);
--green-glow: rgba(34,197,94,.25);
--blue: #3b82f6;
--blue-dim: rgba(59,130,246,.1);
--emerald: #10b981;
--emerald-dim: rgba(16,185,129,.1);
--amber: #f59e0b;
--amber-dim: rgba(245,158,11,.1);
--purple: #8b5cf6;
--purple-dim: rgba(139,92,246,.1);
--cyan: #06b6d4;
--cyan-dim: rgba(6,182,212,.1);
--font-display: 'Outfit', 'Sora', sans-serif;
--font-body: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-weight: 400;
line-height: 1.7;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed; inset: 0;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
}
/* Scroll animations */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }
.reveal-delay-7 { transition-delay: .7s; }
/* Layout */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 48px);
}
section { padding: 100px 0; position: relative; }
.section-divider {
height: 1px;
background: linear-gradient(90deg, transparent, var(--border-bright) 20%, var(--border-bright) 80%, transparent);
margin: 0 auto;
max-width: 1200px;
}
.section-label {
font-family: var(--font-mono);
font-size: 13px;
color: var(--green);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 16px;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(32px, 4vw, 48px);
font-weight: 700;
line-height: 1.2;
letter-spacing: -1px;
margin-bottom: 20px;
}
.section-desc {
font-size: 17px;
color: var(--text-dim);
max-width: 640px;
line-height: 1.8;
}
/* ===== HERO ===== */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 0;
}
.hero::before {
content: '';
position: absolute;
top: -50%; right: -30%;
width: 900px; height: 900px;
background: radial-gradient(circle, rgba(34,197,94,.07) 0%, transparent 70%);
animation: hero-glow 8s ease-in-out infinite alternate;
}
.hero::after {
content: '';
position: absolute;
bottom: -20%; left: -20%;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(59,130,246,.04) 0%, transparent 70%);
animation: hero-glow 10s ease-in-out infinite alternate-reverse;
}
@keyframes hero-glow {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(30px, -20px) scale(1.1); }
}
.hero-grid {
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(30,41,59,.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(30,41,59,.3) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
font-family: var(--font-mono);
font-size: 14px;
color: var(--green);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 20px;
opacity: 0;
animation: fade-up .8s .3s forwards;
display: flex;
align-items: center;
gap: 10px;
}
.hero-eyebrow svg { width: 20px; height: 20px; }
.hero-title {
font-family: var(--font-display);
font-size: clamp(48px, 7vw, 88px);
font-weight: 800;
line-height: 1.05;
letter-spacing: -2px;
margin-bottom: 24px;
opacity: 0;
animation: fade-up .8s .5s forwards;
}
.hero-title .accent {
background: linear-gradient(135deg, var(--green) 0%, #4ade80 50%, var(--emerald) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: clamp(18px, 2.5vw, 22px);
color: var(--text-dim);
max-width: 600px;
line-height: 1.6;
margin-bottom: 16px;
opacity: 0;
animation: fade-up .8s .7s forwards;
}
.hero-version {
font-family: var(--font-mono);
font-size: 14px;
color: var(--text-muted);
margin-bottom: 36px;
opacity: 0;
animation: fade-up .8s .9s forwards;
display: flex;
align-items: center;
gap: 8px;
}
.hero-version .badge {
background: var(--green-dim);
color: var(--green);
padding: 3px 10px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
border: 1px solid rgba(34,197,94,.2);
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
opacity: 0;
animation: fade-up .8s 1.1s forwards;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border-radius: 12px;
font-family: var(--font-body);
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: all .3s ease;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--green);
color: #000;
}
.btn-primary:hover {
background: #16a34a;
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(34,197,94,.3);
}
.btn-ghost {
background: transparent;
color: var(--text);
border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
border-color: var(--green);
color: var(--green);
transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }
@keyframes fade-up {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
/* Hero extension preview */
.hero-preview {
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
width: 340px;
opacity: 0;
animation: fade-up .8s 1.3s forwards;
z-index: 2;
}
.preview-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 24px;
position: relative;
}
.preview-card::before {
content: '';
position: absolute;
inset: -1px;
border-radius: 16px;
padding: 1px;
background: linear-gradient(135deg, rgba(34,197,94,.3), transparent 50%);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
-webkit-mask-composite: xor;
pointer-events: none;
}
.preview-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
}
.preview-icon {
width: 32px;
height: 32px;
background: var(--green-dim);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.preview-icon svg { width: 18px; height: 18px; color: var(--green); }
.preview-header-text {
font-family: var(--font-display);
font-weight: 600;
font-size: 14px;
}
.preview-selectors {
display: flex;
flex-direction: column;
gap: 8px;
}
.preview-selector-item {
background: var(--bg-alt);
border: 1px solid var(--border);
border-radius: 8px;
padding: 10px 12px;
display: flex;
align-items: center;
justify-content: space-between;
font-family: var(--font-mono);
font-size: 12px;
}
.preview-selector-type {
color: var(--green);
font-weight: 500;
font-size: 11px;
text-transform: uppercase;
}
.preview-selector-value {
color: var(--text-dim);
font-size: 11px;
max-width: 180px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.preview-badge {
font-size: 10px;
padding: 2px 6px;
border-radius: 4px;
font-weight: 500;
}
.badge-unique {
background: var(--green-dim);
color: var(--green);
border: 1px solid rgba(34,197,94,.2);
}
.badge-count {
background: var(--blue-dim);
color: var(--blue);
border: 1px solid rgba(59,130,246,.2);
}
/* ===== STATS BAR ===== */
.stats-bar {
background: var(--bg-alt);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 40px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
}
.stat-item {
text-align: center;
position: relative;
}
.stat-item:not(:last-child)::after {
content: '';
position: absolute;
right: -16px;
top: 10%;
height: 80%;
width: 1px;
background: var(--border);
}
.stat-number {
font-family: var(--font-display);
font-size: 42px;
font-weight: 800;
color: var(--green);
line-height: 1;
margin-bottom: 8px;
}
.stat-label {
font-size: 14px;
color: var(--text-dim);
font-weight: 500;
}
/* ===== WHY SECTION ===== */
.why-section {
background: var(--bg-alt);
}
.why-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.why-text p {
font-size: 16px;
color: var(--text-dim);
line-height: 1.9;
margin-bottom: 20px;
}
.why-text p strong {
color: var(--text);
font-weight: 600;
}
.why-visual {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px;
position: relative;
}
.why-visual::before {
content: '';
position: absolute;
inset: -1px;
border-radius: 16px;
padding: 1px;
background: linear-gradient(135deg, rgba(34,197,94,.2), transparent 60%);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
-webkit-mask-composite: xor;
pointer-events: none;
}
.why-comparison {
display: flex;
flex-direction: column;
gap: 20px;
}
.why-before, .why-after {
padding: 20px;
border-radius: 12px;
}
.why-before {
background: rgba(239,68,68,.05);
border: 1px solid rgba(239,68,68,.15);
}
.why-after {
background: var(--green-dim);
border: 1px solid rgba(34,197,94,.2);
}
.why-label {
font-family: var(--font-mono);
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 12px;
}
.why-before .why-label { color: #ef4444; }
.why-after .why-label { color: var(--green); }
.why-step {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--text-dim);
padding: 4px 0;
}
.why-step svg { width: 16px; height: 16px; flex-shrink: 0; }
.why-before .why-step svg { color: #ef4444; }
.why-after .why-step svg { color: var(--green); }
/* ===== FEATURES ===== */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 24px;
margin-top: 48px;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 32px;
transition: all .4s cubic-bezier(.16,1,.3,1);
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--green), transparent);
opacity: 0;
transition: opacity .4s ease;
}
.feature-card:hover {
border-color: rgba(34,197,94,.3);
transform: translateY(-4px);
box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon-green { background: var(--green-dim); color: var(--green); }
.feature-icon-blue { background: var(--blue-dim); color: var(--blue); }
.feature-icon-purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon-amber { background: var(--amber-dim); color: var(--amber); }
.feature-icon-emerald { background: var(--emerald-dim); color: var(--emerald); }
.feature-icon-cyan { background: var(--cyan-dim); color: var(--cyan); }
.feature-title {
font-family: var(--font-display);
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
letter-spacing: -0.3px;
}
.feature-desc {
font-size: 15px;
color: var(--text-dim);
line-height: 1.7;
}
.feature-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 16px;
}
.feature-tag {
font-family: var(--font-mono);
font-size: 11px;
padding: 3px 8px;
border-radius: 6px;
background: rgba(255,255,255,.04);
color: var(--text-muted);
border: 1px solid var(--border);
}
/* ===== ARCHITECTURE ===== */
.arch-section { background: var(--bg-alt); }
.arch-flow {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
margin-top: 48px;
flex-wrap: nowrap;
padding: 40px 0;
}
.arch-node {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 14px;
padding: 14px 12px;
text-align: center;
min-width: 0;
flex-shrink: 1;
min-width: 140px;
transition: all .3s ease;
position: relative;
}
.arch-node:hover {
border-color: rgba(34,197,94,.3);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.arch-node-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
background: var(--green-dim);
}
.arch-node-icon svg { width: 20px; height: 20px; color: var(--green); }
.arch-node-title {
font-family: var(--font-mono);
font-size: 13px;
font-weight: 500;
color: var(--text);
margin-bottom: 4px;
}
.arch-node-desc {
font-size: 12px;
color: var(--text-muted);
}
.arch-arrow {
display: flex;
align-items: center;
padding: 0 8px;
color: var(--green);
flex-shrink: 0;
}
.arch-arrow svg { width: 24px; height: 24px; }
/* Arch detail cards */
.arch-details {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}
.arch-detail-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
}
.arch-detail-title {
font-family: var(--font-mono);
font-size: 14px;
font-weight: 500;
color: var(--green);
margin-bottom: 12px;
}
.arch-detail-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 6px;
}
.arch-detail-list li {
font-size: 13px;
color: var(--text-dim);
display: flex;
align-items: center;
gap: 8px;
}
.arch-detail-list li::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--green);
flex-shrink: 0;
}
/* ===== TECH STACK ===== */
.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 40px;
justify-content: center;
}
.tech-tag {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 14px 24px;
font-family: var(--font-mono);
font-size: 14px;
font-weight: 500;
color: var(--text);
display: flex;
align-items: center;
gap: 10px;
transition: all .3s ease;
}
.tech-tag:hover {
border-color: rgba(34,197,94,.3);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.tech-tag svg { width: 20px; height: 20px; color: var(--green); }
/* ===== FOOTER ===== */
.footer {
border-top: 1px solid var(--border);
padding: 48px 0;
text-align: center;
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.footer-name {
font-family: var(--font-display);
font-size: 18px;
font-weight: 600;
}
.footer-links {
display: flex;
gap: 24px;
align-items: center;
}
.footer-link {
font-size: 14px;
color: var(--text-muted);
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
transition: color .3s ease;
}
.footer-link:hover { color: var(--green); }
.footer-link svg { width: 16px; height: 16px; }
.footer-license {
font-size: 13px;
color: var(--text-muted);
margin-top: 4px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.hero-preview { display: none; }
.why-content { grid-template-columns: 1fr; gap: 40px; }
.arch-details { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
section { padding: 60px 0; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-item:not(:last-child)::after { display: none; }
.features-grid { grid-template-columns: 1fr; }
.arch-flow { flex-direction: column; gap: 12px; }
.arch-arrow { transform: rotate(90deg); }
.arch-details { grid-template-columns: 1fr; }
.tech-tags { gap: 8px; }
.tech-tag { padding: 10px 16px; font-size: 13px; }
}
@media (max-width: 480px) {
.stats-grid { grid-template-columns: 1fr 1fr; }
.hero-actions { flex-direction: column; }
.btn { justify-content: center; }
}
</style>
</head>
<body>
<!-- ===== HERO ===== -->
<section class="hero">
<div class="hero-grid"></div>
<div class="container">
<div class="hero-content" style="display:flex; gap:48px; align-items:center;">
<div style="flex:1;">
<div class="hero-eyebrow">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
Chrome Extension
</div>
<h1 class="hero-title">
<span class="accent">Selector</span><br>Extractor
</h1>
<p class="hero-subtitle">QA 자동화용 웹 엘리먼트 셀렉터 추출 크롬 확장 프로그램</p>
<div class="hero-version">
<span class="badge">v1.1.0.2</span>
<span>Manifest V3 기반</span>
</div>
<div class="hero-actions">
<a href="https://github.com/sym804/web_selector_extractor" class="btn btn-primary" target="_blank">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub
</a>
<a href="#features" class="btn btn-ghost">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>
기능 둘러보기
</a>
</div>
</div>
<!-- Selector Preview -->
<div style="width:360px; flex-shrink:0; background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:18px; box-shadow: 0 12px 40px rgba(0,0,0,.3);">
<div style="display:flex; align-items:center; gap:8px; margin-bottom:12px; padding-bottom:10px; border-bottom:1px solid var(--border);">
<div style="width:24px;height:24px;border-radius:6px;background:rgba(34,197,94,.12);display:flex;align-items:center;justify-content:center;">
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="#22c55e" stroke-width="2"><path d="M12 20h9"/><path d="M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z"/></svg>
</div>
<div>
<div style="font-size:12px;font-weight:700;color:var(--text);">Selector Extractor</div>
<div style="font-size:9px;color:var(--text-muted);">추출된 셀렉터 4개</div>
</div>
</div>
<div style="display:flex;flex-direction:column;gap:5px;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:6px 9px;background:var(--bg);border-radius:6px;border:1px solid var(--border);">
<div><div style="font-size:8px;color:#22c55e;font-weight:600;">ID</div><div style="font-size:10px;color:var(--text-dim);font-family:'JetBrains Mono',monospace;">#login-button</div></div>
<span style="font-size:8px;padding:2px 6px;border-radius:99px;background:rgba(34,197,94,.15);color:#22c55e;font-weight:600;">UNIQUE</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:6px 9px;background:var(--bg);border-radius:6px;border:1px solid var(--border);">
<div><div style="font-size:8px;color:#22c55e;font-weight:600;">data-testid</div><div style="font-size:10px;color:var(--text-dim);font-family:'JetBrains Mono',monospace;">[data-testid="submit"]</div></div>
<span style="font-size:8px;padding:2px 6px;border-radius:99px;background:rgba(34,197,94,.15);color:#22c55e;font-weight:600;">UNIQUE</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:6px 9px;background:var(--bg);border-radius:6px;border:1px solid var(--border);">
<div><div style="font-size:8px;color:#3b82f6;font-weight:600;">CSS</div><div style="font-size:10px;color:var(--text-dim);font-family:'JetBrains Mono',monospace;">.btn.btn-primary</div></div>
<span style="font-size:8px;padding:2px 6px;border-radius:99px;background:rgba(245,158,11,.15);color:#f59e0b;font-weight:600;">3 matches</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:6px 9px;background:var(--bg);border-radius:6px;border:1px solid var(--border);">
<div><div style="font-size:8px;color:#3b82f6;font-weight:600;">XPath</div><div style="font-size:10px;color:var(--text-dim);font-family:'JetBrains Mono',monospace;">//button[@type='submit']</div></div>
<span style="font-size:8px;padding:2px 6px;border-radius:99px;background:rgba(245,158,11,.15);color:#f59e0b;font-weight:600;">2 matches</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== STATS BAR ===== -->
<div class="stats-bar">
<div class="container">
<div class="stats-grid">
<div class="stat-item reveal">
<div class="stat-number">7</div>
<div class="stat-label">셀렉터 타입</div>
</div>
<div class="stat-item reveal reveal-delay-1">
<div class="stat-number">6</div>
<div class="stat-label">Playwright 액션</div>
</div>
<div class="stat-item reveal reveal-delay-2">
<div class="stat-number" style="font-size:32px;">V3</div>
<div class="stat-label">Manifest Version</div>
</div>
<div class="stat-item reveal reveal-delay-3">
<div class="stat-number" style="font-size:28px;">JSON/CSV</div>
<div class="stat-label">Export 포맷</div>
</div>
</div>
</div>
</div>
<!-- ===== WHY ===== -->
<section class="why-section">
<div class="container">
<div class="why-content">
<div class="why-text reveal">
<div class="section-label">Why this tool?</div>
<h2 class="section-title">반복적인 셀렉터 탐색,<br>자동화할 수 있습니다</h2>
<p>
QA 엔지니어가 <strong>테스트 자동화 스크립트를 작성</strong>할 때 매번 DevTools를 열고 Elements 탭에서 적절한 셀렉터를 수동으로 찾는 과정은 비효율적입니다.
</p>
<p>
ID가 있는지 확인하고, data-testid가 있는지 살피고, 유니크한 CSS 셀렉터를 조합하고 - 이 작업을 <strong>엘리먼트 하나마다 반복</strong>해야 합니다.
</p>
<p>
Selector Extractor는 <strong>클릭 한 번</strong>으로 7가지 타입의 셀렉터를 자동 추출하고, 유니크 셀렉터를 우선 정렬하며, Playwright 코드까지 생성합니다.
</p>
</div>
<div class="why-visual reveal reveal-delay-2">
<div class="why-comparison">
<div class="why-before">
<div class="why-label">Before: 기존 방식</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
F12로 DevTools 열기
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
Elements 탭에서 요소 탐색
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
속성 하나씩 확인 (ID, class, data-*)
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
유니크한지 Console에서 수동 검증
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>
Playwright 코드 직접 작성
</div>
</div>
<div class="why-after">
<div class="why-label">After: Selector Extractor</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 6 9 17l-5-5"/></svg>
요소 클릭 한 번
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 6 9 17l-5-5"/></svg>
7가지 셀렉터 자동 추출 + 유니크 검증
</div>
<div class="why-step">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 6 9 17l-5-5"/></svg>
Playwright 코드 원클릭 복사
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- ===== FEATURES ===== -->
<section id="features">
<div class="container">
<div class="reveal" style="text-align:center; max-width:640px; margin:0 auto;">
<div class="section-label" style="text-align:center;">Core Features</div>
<h2 class="section-title" style="text-align:center;">QA 엔지니어를 위한<br>핵심 기능 7가지</h2>
</div>
<div class="features-grid">
<!-- 1. Smart Selector -->
<div class="feature-card reveal reveal-delay-1">
<div class="feature-icon feature-icon-green">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"/><path d="m12 12 4 10 1.7-4.3L22 16Z"/></svg>
</div>
<h3 class="feature-title">스마트 셀렉터 추출</h3>
<p class="feature-desc">ID > data-testid > 유니크 클래스 > CSS > XPath > ARIA Role > Text 7가지 타입을 자동 추출하고, 유니크 셀렉터를 우선 정렬합니다.</p>
<div class="feature-tags">
<span class="feature-tag">querySelectorAll</span>