-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2269 lines (2132 loc) · 129 KB
/
index.html
File metadata and controls
2269 lines (2132 loc) · 129 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" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<!-- Deferred Google Analytics – loads only after interaction -->
<script>
(function() {
// Change this to false if you want to test without loading GA
const enableGA = true;
const MEASUREMENT_ID = 'G-RZQR2WFK9T';
function loadGA() {
// Prevent double-loading
if (window.gtag) return;
const script = document.createElement('script');
script.async = true;
script.src = `https://www.googletagmanager.com/gtag/js?id=${MEASUREMENT_ID}`;
document.head.appendChild(script);
script.onload = function() {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', MEASUREMENT_ID);
};
}
// Trigger on first interaction (scroll, click, touch, key)
let fired = false;
function fireOnce() {
if (fired) return;
fired = true;
loadGA();
cleanup();
}
const events = ['scroll', 'pointerdown', 'keydown', 'touchstart'];
events.forEach(ev => window.addEventListener(ev, fireOnce, { once: true, passive: true }));
// Fallback: load after ~4–9 seconds of idle anyway (good compromise)
setTimeout(fireOnce, 4500);
function cleanup() {
events.forEach(ev => window.removeEventListener(ev, fireOnce));
}
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Optimized SEO Title & Description -->
<title>Traffic Torch: Free Instant SEO, GEO, AEO & UX Toolkit</title>
<meta name="description" content="SEO audit & UX health tools. Free 360° on-page analysis, competitive keyword gaps, GEO, AEO & AIO fixes, bounce rate predictor and mobile optimized reports.">
<!-- Robots & Canonical -->
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://traffictorch.net/" />
<!-- Theme Colors -->
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#1f2937" media="(prefers-color-scheme: dark)">
<!-- Referrer Policy (security + privacy best practice) -->
<meta name="referrer" content="strict-origin-when-cross-origin">
<!-- security headers -->
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<!-- hreflang -->
<link rel="alternate" hreflang="en" href="https://traffictorch.net/">
<link rel="alternate" hreflang="x-default" href="https://traffictorch.net/">
<!-- Open Graph Tags -->
<meta property="og:title" content="Traffic Torch: Free Instant SEO Audit & AI UX Toolkit 2026" />
<meta property="og:description" content="SEO, GEO, AEO & AIO search audit tools & UX health checker. Get 360° on-page analysis, competitive keyword gaps, AI fixes, bounce rate predictor & mobile optimization reports." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://traffictorch.net/" />
<meta property="og:image" content="https://traffictorch.net/images/traffic-torch-toolkit.webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Traffic Torch" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Traffic Torch: Free Instant SEO Audit & AI UX Toolkit 2026" />
<meta name="twitter:description" content="SEO, GEO, AEO & AIO search audit tools & UX health checker. Get 360° on-page analysis, competitive keyword gaps, AI fixes, bounce rate predictor & mobile optimization reports." />
<meta name="twitter:image" content="https://traffictorch.net/images/traffic-torch-toolkit.webp" />
<meta name="twitter:site" content="@Guitaralize" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"name": "Traffic Torch",
"url": "https://traffictorch.net/",
"description": "Free instant SEO, GEO, AEO & UX health analysis suite. Get 0–100 scores, deep-dive audits, competitive gap insights, priority fixes, and predictive improvement forecasts across on-page SEO, keywords, AI search, content authenticity, quit risk/bounce predictor, local SEO checker, and more. Mobile-friendly, PWA-ready, with day-night modes.",
"publisher": {
"@type": "Organization",
"name": "Traffic Torch"
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://traffictorch.net/"
}
},
{
"@type": "WebPage",
"@id": "https://traffictorch.net/",
"url": "https://traffictorch.net/",
"name": "Traffic Torch: Free Instant SEO Audit & AI UX Toolkit 2026",
"description": "Home of Traffic Torch's suite of free SEO, GEO & AIO search and UX health checks, including keyword optimization, competitive analysis, AI search readiness, content detection, quit risk reduction, local SEO audits, and more. Get actionable insights, fixes, and forecasts to boost rankings and engagement.",
"image": [
{
"@type": "ImageObject",
"url": "https://traffictorch.net/images/traffic-torch-toolkit.webp",
"contentUrl": "https://traffictorch.net/images/traffic-torch-toolkit.webp",
"width": 1200,
"height": 675,
"caption": "Traffic Torch Toolkit Overview: Instant 360° SEO & UX health analysis suite dashboard, scores, audits, and GEO & AEO search insights"
},
{
"@type": "ImageObject",
"url": "https://traffictorch.net/images/tool-banners/seo-ux-tool-infographic-1200w.webp",
"contentUrl": "https://traffictorch.net/images/tool-banners/seo-ux-tool-infographic-1200w.webp",
"width": 1200,
"height": 268,
"caption": "Traffic Torch SEO & UX Tool overview: Instant on-page UX health check covering accessibility, mobile usability, Core Web Vitals, visual hierarchy, and fixes"
},
{
"@type": "ImageObject",
"url": "https://traffictorch.net/seo-ux-tool/images/seo-ux-optimizations-infographic-800w.webp",
"contentUrl": "https://traffictorch.net/seo-ux-tool/images/seo-ux-optimizations-infographic-800w.webp",
"width": 800,
"height": 1200,
"caption": "SEO & UX Optimizations Infographic: Core areas Traffic Torch audits & optimizes – On-Page SEO, Mobile & PWA, Performance, Accessibility"
},
{
"@type": "ImageObject",
"url": "https://traffictorch.net/seo-ux-tool/images/seo-ux-audit-infographic-800w.webp",
"contentUrl": "https://traffictorch.net/seo-ux-tool/images/seo-ux-audit-infographic-800w.webp",
"width": 800,
"height": 1200,
"caption": "SEO & UX Audit Infographic: Core areas Traffic Torch checks for better rankings and user experience – Content Quality, UX Design, Security, Indexability"
}
],
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": [
"#faq",
"p.text-xl.md\\:text-2xl.font-semibold.text-gray-800.dark\\:text-gray-200.mb-4",
"p.text-lg.md\\:text-xl.text-gray-700.dark\\:text-gray-300.max-w-3xl.mx-auto",
".max-w-4xl.mx-auto.my-20 details div.mt-6",
"section.max-w-4xl.mx-auto.mt-12.mb-12 p.text-2xl.md\\:text-3xl.font-bold.text-center.mb-10.leading-tight"
]
}
},
{
"@type": "SoftwareApplication",
"name": "Traffic Torch: SEO & UX Analysis Suite",
"applicationCategory": "BusinessApplication, UtilitiesApplication, SEO Tool",
"operatingSystem": "Web",
"softwareVersion": "1.2",
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
},
"description": "Free collection of powerful instant SEO and UX tools: on-page keyword optimization, competitive gap analysis, AI search readiness, content detector & humanizer, quit risk/bounce predictor, local SEO checker, and more. Delivers 360° health scores, AI fixes, and ranking forecasts. Mobile-friendly and PWA-ready.",
"url": "https://traffictorch.net/",
"featureList": [
"Instant 0–100 SEO & UX Health Scores",
"Deep-dive Audit Modules",
"Competitive Keyword & Content Gap Analysis",
"Prioritized Fixes",
"Predictive Ranking & Engagement Forecasts",
"Mobile-Friendly & PWA-Ready Interface"
]
},
{
"@type": "Organization",
"name": "Traffic Torch",
"url": "https://traffictorch.net/",
"logo": "https://traffictorch.net/logo-512.webp",
"description": "Creators of free instant SEO, GEO, AEO search and UX analysis tools that help websites achieve better rankings, user engagement, and AI search visibility.",
"sameAs": [
"https://www.linkedin.com/in/ylia-callan-8b889976/"
],
"founder": {
"@type": "Person",
"name": "Ylia Callan"
}
},
{
"@type": "Person",
"name": "Ylia Callan",
"url": "https://yliacallan.github.io/",
"sameAs": [
"https://www.linkedin.com/in/ylia-callan-8b889976/",
"https://x.com/guitaralize",
"https://traffictorch.net/"
],
"image": "https://traffictorch.net/images/ylia-callan-320w.webp",
"jobTitle": "Founder & Builder",
"description": "Musician, Author, Web Designer, and Creator of Privacy-First AI SEO/UX Tools like Traffic Torch",
"worksFor": {
"@type": "Organization",
"name": "Traffic Torch",
"url": "https://traffictorch.net/"
}
},
{
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://traffictorch.net/"
}
]
},
{
"@type": "FAQPage",
"@id": "https://traffictorch.net/#faq",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://traffictorch.net/"
},
"mainEntity": [
{
"@type": "Question",
"name": "How does on-page SEO impact search engine traffic?",
"acceptedAnswer": {
"@type": "Answer",
"text": "On-page SEO optimizes title tags, meta descriptions, headings, content relevance, internal links, and structured data to align with user intent and E-E-A-T signals. It boosts rankings in traditional SERPs, featured snippets, and AI overviews by improving semantic relevance and CTR, often increasing qualified organic traffic by 20-40% through better visibility and engagement."
}
},
{
"@type": "Question",
"name": "How does mobile readiness and PWA affect SEO rankings?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Mobile readiness, including responsive design and fast loading times, is crucial for Google's mobile-first indexing, where the mobile version of your site is primarily used for ranking. PWA features enhance perceived speed and engagement. These improve Core Web Vitals and UX signals, reducing bounce rates and prioritizing mobile traffic (over 60%), leading to stronger rankings and conversions."
}
},
{
"@type": "Question",
"name": "What is the SEO impact of Core Web Vitals?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Core Web Vitals (LCP under 2.5s for loading, INP under 200ms for interactivity, CLS under 0.1 for stability) are key page experience signals. Passing them acts as a ranking tiebreaker, lowers abandonment, and improves engagement metrics for 10-25% potential traffic gains."
}
},
{
"@type": "Question",
"name": "Does web accessibility improve SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes—WCAG 2.2 compliance (alt text, contrast, semantic HTML, keyboard nav) boosts crawlability, inclusivity, and UX. It aligns with AI understanding and avoids penalties from poor engagement, enhancing rankings indirectly."
}
},
{
"@type": "Question",
"name": "How does content quality affect search rankings?",
"acceptedAnswer": {
"@type": "Answer",
"text": "High-quality, original, intent-focused content with strong E-E-A-T ranks higher in AI summaries and results. It earns backlinks, reduces pogo-sticking, and appears in more AI responses, driving 25-50% more traffic than low-quality pages."
}
},
{
"@type": "Question",
"name": "How important is UX design for SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "UX (intuitive nav, fast interactions, low bounce, high dwell time) is a strong indirect signal. Poor UX hurts AI/mobile performance; excellent UX improves metrics and conversions significantly."
}
},
{
"@type": "Question",
"name": "Does website security (HTTPS) impact SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "HTTPS remains a core ranking signal for trust and security. It prevents warnings, reduces abandonment, and supports secure features, contributing to 10-20% traffic gains via user confidence."
}
},
{
"@type": "Question",
"name": "Why is indexability important for SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Indexability (proper robots.txt, sitemaps, no noindex/orphan issues) maximizes crawl budget and indexed pages. Optimizations prevent visibility loss, increasing traffic potential by 20-30% from all site content."
}
}
]
}
]
}
</script>
<!-- PWA and Icons -->
<meta name="color-scheme" content="dark light">
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="/logo-180.webp">
<link rel="apple-touch-icon" sizes="192x192" href="/logo-192.webp">
<link rel="apple-touch-icon" sizes="512x512" href="/logo-512.webp">
<meta name="apple-mobile-web-app-title" content="Torch">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="icon" type="image/webp" sizes="192x192" href="/logo-192.webp">
<link rel="icon" type="image/webp" sizes="512x512" href="/logo-512.webp">
<!-- Main Styles -->
<link rel="dns-prefetch" href="https://static.cloudflareinsights.com">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!-- Preload critical CSS -->
<link rel="preload" as="style" href="/style-v1.0.css" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" as="style" href="/seo-ux-tool/style-v1.0.css" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/style-v1.0.css">
<link rel="stylesheet" href="/seo-ux-tool/style-v1.0.css">
</noscript>
<link rel="preload" as="style" href="/tailwind-local-v1.0.css" onload="this.rel='stylesheet'">
<!-- Tailwind output – comes last so utilities can override -->
<link rel="stylesheet" href="/tailwind-local-v1.0.css">
<link rel="stylesheet" media="print" href="/seo-ux-tool/print-v1.0.css">
<script>
// Apply dark class to <html> immediately (fixes Tailwind dark: variants)
(function() {
const saved = localStorage.getItem('theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (saved === 'dark' || (!saved && prefersDark)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
})();
</script>
</head>
<body class="min-h-screen bg-gray-50 dark:bg-gray-950 text-gray-900 dark:text-gray-100 flex flex-col">
<!-- Main Layout Container - Desktop flex with sidebar -->
<div class="flex flex-1 min-h-screen">
<!-- Desktop-only Sticky Collapsible Sidebar (hidden on mobile) -->
<aside id="desktopSidebar" class="hidden md:flex w-64 bg-white/5 dark:bg-black/40 backdrop-blur-xl border-r border-white/10 dark:border-white/5 transition-all duration-300 ease-in-out overflow-y-auto sticky top-0 h-screen flex flex-col self-start">
<!-- Sidebar Header with Logo -->
<div class="flex items-center justify-center p-6 border-b border-white/10 dark:border-white/5">
<a href="/" class="flex items-center gap-4">
<img src="/logo-160w.webp" srcset="/logo-160w.webp 160w, /logo-320w.webp 320w" sizes="70px" alt="Traffic Torch – SEO • UX • AI Analysis Tools" class="w-10 rounded-xl flex-shrink-0" width="40" height="40" loading="eager">
<span id="sidebarTitle" class="text-[1.25rem] font-black bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent hidden">
Traffic Torch
</span>
</a>
</div>
<!-- Menu Items -->
<div id="desktop-menu-placeholder" class="menu-fade-in opacity-0 transition-opacity duration-500 ease-in"></div>
<!-- Collapse/Expand Button - Always visible -->
<div class="p-4 border-t border-white/10 dark:border-white/5">
<button id="sidebarCollapse" class="w-full flex items-center justify-center py-3 text-2xl text-gray-500 dark:text-white/70 hover:text-orange-400 hover:bg-white/10 dark:hover:bg-white/10 rounded-lg transition">
←
</button>
</div>
</aside>
<!-- Main Content Area (full width on mobile, shifted on desktop) -->
<div class="flex-1 flex flex-col">
<!-- Header (unchanged logic, but adjusted for desktop sidebar) -->
<header class="sticky top-0 z-50 bg-white/5 dark:bg-black/40 backdrop-blur-xl border-b border-white/10 dark:border-white/5">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<!-- Logo hidden on desktop since in sidebar -->
<a href="/" class="flex items-center gap-4 md:hidden">
<img src="/logo-100w.webp" srcset="/logo-100w.webp 100w, /logo-320w.webp 320w" sizes="70px" alt="Traffic Torch SEO Analysis Tools Logo" class="w-10 rounded-xl flex-shrink-0" width="40" height="40" loading="eager">
<p class="text-[1.25rem] font-black bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent">
Traffic Torch
</p>
</a>
<!-- Empty spacer on mobile to balance -->
<div class="w-10 md:hidden"></div>
<button id="menuToggle" class="md:hidden text-3xl text-gray-500 relative left-0 -top-1">☰</button>
<!-- New: Desktop Sidebar Toggle Hamburger (hidden on mobile, right side) -->
<button id="desktopMenuToggle" class="hidden md:block text-3xl text-gray-500 dark:text-white/90 hover:text-orange-400 transition mr-4">
☰
</button>
<!-- Theme Toggle -->
<button id="themeToggle" class="py-1 px-2 bg-white/10 rounded-full hover:bg-white/20 transition text-xl">
🌙
</button>
</div>
<!-- Mobile Menu Dropdown (unchanged) -->
<div id="mobileMenu" class="hidden md:hidden bg-gray-900/95 backdrop-blur-xl border-t border-white/10">
<button id="close-mobile-menu" class="absolute top-4 right-4 text-gray-800 dark:text-gray-200 text-3xl focus:outline-none" aria-label="Close menu">
×
</button>
<div id="mobile-menu-placeholder"></div>
</div>
</header>
<!-- SEO UX AI TOOLS -->
<main class="container mx-auto px-6 py-2 max-w-5xl">
<div class="text-center mb-12 md:mb-16">
<h1 class="text-2xl sm:text-2xl font-black bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent mb-2 leading-tight">
Traffic Torch SEO - GEO - AEO - UX Audit Tools
</h1>
<p class="text-xl md:text-1xl font-semibold max-w-3xl mx-auto text-gray-800 dark:text-gray-200 mb-2">
Instant free website health checks with fix suggestions, plugin solutions & best-practice education to boost search rankings and user experience.
</p>
</div>
<h2 id="seo-ux-tool" class="text-2xl md:text-2xl font-black text-center mt-2 mb-2 bg-gradient-to-r from-purple-600 to-cyan-600 bg-clip-text text-transparent">
SEO & UX Health Analysis Tool
</h2>
<!-- Traffic Torch - URL & Code Analysis Section -->
<div class="max-w-3xl mx-auto space-y-4 px-4 py-2">
<!-- URL Analysis Form -->
<div>
<form id="url-form" class="mb-2">
<div class="flex flex-col md:flex-row gap-4">
<input
type="text"
id="url-input"
name="url"
placeholder="example.com/your-page"
class="flex-1 px-6 py-4 rounded-2xl border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-200 placeholder-gray-400 dark:placeholder-gray-500 focus:outline-none focus:ring-4 focus:ring-orange-500 focus:border-transparent transition-all text-lg shadow-sm"
aria-label="Enter website URL to analyze"
aria-describedby="url-help"
required
autocomplete="url"
inputmode="url"
spellcheck="false"
data-lpignore="true"
/>
<button
type="submit"
class="px-10 py-4 bg-gradient-to-r from-orange-500 to-pink-600 hover:from-orange-600 hover:to-pink-700 text-white font-semibold rounded-2xl transition-all shadow-lg hover:shadow-xl flex items-center justify-center gap-2 whitespace-nowrap md:min-w-[180px]"
>
Analyze URL
<span class="text-xl">⚖️</span>
</button>
</div>
</form>
</div>
<!-- Code Analysis Section - Ready for VS Code Extension auto-fill -->
<div>
<div class="text-center mb-4">
<h2 class="text-2xl font-bold text-orange-500">Or use Code Analysis</h2>
<!-- Centered description -->
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 text-center max-w-md mx-auto">
Paste the full HTML of the page.
</p>
</div>
<textarea
id="code-input"
name="htmlcode"
rows="2"
placeholder="<!DOCTYPE html> <html lang="en"> <head> <title>Page Title</title> </head> <body> <!-- Your HTML code here --> </body> </html>"
class="w-full px-6 py-5 rounded-2xl border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-200 placeholder-gray-400 dark:placeholder-gray-500 focus:outline-none focus:ring-4 focus:ring-orange-500 focus:border-transparent transition-all text-base font-mono resize-y min-h-[120px] shadow-sm"
aria-label="HTML code to analyze"
aria-describedby="code-help"
autocomplete="off"
spellcheck="false"
data-vscode-ignore="true"
></textarea>
<div class="flex justify-center mt-6 gap-4">
<button
type="button"
id="analyze-code-btn"
class="px-10 py-4 bg-gradient-to-r from-orange-500 to-pink-600 hover:from-orange-600 hover:to-pink-700 text-white font-semibold rounded-2xl transition-all shadow-lg hover:shadow-xl flex items-center justify-center gap-2"
>
Analyze Code
<span class="text-xl">⚖️</span>
</button>
</div>
</div>
</div>
<div id="upgradeModal" class="hidden fixed top-0 left-0 right-0 z-50 bg-black bg-opacity-50 flex justify-center pt-20 md:pt-32">
<div class="bg-white dark:bg-gray-900 rounded-lg p-6 max-w-md w-full text-center text-gray-800 dark:text-gray-200 shadow-xl">
<h2 class="text-xl font-bold mb-4">Daily Limit Reached</h2>
<p class="mb-6">You've used all your audits today. Upgrade to Pro USD $48 per year for 25 daily SEO, UX & GEO analysis runs. Secure Stripe Checkout</p>
<a href="/pro/"
class="inline-block bg-orange-600 text-white px-8 py-3 rounded-lg font-medium hover:bg-green-600 transition">
Upgrade to Pro
</a>
<button onclick="document.getElementById('upgradeModal').classList.add('hidden')"
class="mt-6 block mx-auto text-gray-600 dark:text-gray-400 underline hover:text-gray-800 dark:hover:text-gray-200">
Close
</button>
</div>
</div>
<div id="progress-container" class="text-center my-8 hidden">
<div class="spinner mx-auto mb-4"></div>
<p id="progress-text" class="text-xl text-orange-500 font-medium">Initializing analysis...</p>
</div>
<div id="results-wrapper" class="hidden">
<div id="radar-container" class="hidden md:block my-24">
<h2 id="radar-title" class="text-5xl font-black text-center mb-12 bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent hidden">
360° Health Radar
</h2>
<div class="flex justify-center">
<canvas id="health-radar" class="max-w-full h-[600px]"></canvas>
</div>
</div>
<div id="overall-container" class="my-16 md:my-24">
<h2 class="text-4xl md:text-5xl font-black text-center mb-10 md:mb-14 bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent">
Overall SEO & UX Health Score
</h2>
<div class="flex justify-center">
<div id="overall-score" class="score-card max-w-md w-full md:max-w-lg">
<div class="score-circle large mb-10" data-score="0">
<svg viewBox="0 0 240 240">
<circle class="bg" cx="120" cy="120" r="108"/>
<circle class="progress" cx="120" cy="120" r="108"/>
<text x="120" y="132" class="number">0</text>
</svg>
</div>
<div id="page-title-display" class="text-xl md:text-2xl font-semibold text-center text-gray-400 dark:text-gray-200 mb-4 px-6 line-clamp-2">
Loading title...
</div>
<div id="overall-grade" class="text-2xl md:text-3xl font-bold text-center flex items-center justify-center gap-3">
<span class="grade-emoji text-3xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="text-2xl md:text-3xl font-bold mt-8 text-gray-600 dark:text-gray-300 text-center">
Overall Score
</div>
</div>
</div>
</div>
<div id="results" class="grid md:grid-cols-2 lg:grid-cols-4 gap-2">
<section id="seo-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">On-Page SEO</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="seo">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Evaluates core on-page elements like title, meta description, headings, schema, and alt text that search engines use to understand your page.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h3 class="text-xl font-bold mb-4 text-indigo-300">About this module</h3>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="seo-issues" class="space-y-4"></ul></div>
</section>
<section id="mobile-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Mobile & PWA</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="mobile">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Checks mobile-friendliness, viewport, manifest, icons, and service worker for app-like experience.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="mobile-issues" class="space-y-4"></ul></div>
</section>
<section id="perf-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Performance</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="perf">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Measures page speed, weight, requests, fonts, and render-blocking resources for fast loading.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="perf-issues" class="space-y-4"></ul></div>
</section>
<section id="access-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Accessibility</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="access">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Ensures usability for everyone including screen readers and keyboard users.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="access-issues" class="space-y-4"></ul></div>
</section>
<section id="content-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Content Quality</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="content">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Assesses depth, readability, structure, and scannability of your content.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="content-issues" class="space-y-4"></ul></div>
</section>
<section id="ux-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">UX Design</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="ux">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Reviews clarity of calls-to-action, navigation, and overall user flow.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="ux-issues" class="space-y-4"></ul></div>
</section>
<section id="security-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Security</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="security">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Verifies HTTPS usage and absence of mixed/insecure content.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="security-issues" class="space-y-4"></ul></div>
</section>
<section id="indexability-score" class="score-card p-2 md:p-2 text-center">
<div class="score-circle" data-score="0">
<svg viewBox="0 0 120 120">
<circle class="bg" cx="60" cy="60" r="54"/>
<circle class="progress" cx="60" cy="60" r="54"/>
<text x="60" y="72" class="number">0</text>
</svg>
</div>
<div class="label text-xl font-bold mt-4">Indexability</div>
<div class="module-grade mt-2 text-base md:text-lg font-semibold flex items-center justify-center gap-2 opacity-0 transition-opacity duration-500" data-module="indexability">
<span class="grade-emoji text-xl"></span>
<span class="grade-text">Evaluating...</span>
</div>
<div class="short-desc mt-4 text-gray-400 dark:text-gray-300 text-sm md:text-base leading-relaxed px-4">
Checks if the page can be discovered and indexed by search engines.
</div>
<button class="more-details mt-6 px-2 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-full font-bold text-white transition">More Details</button>
<div class="module-info hidden mt-6 text-left p-2 bg-white/10 dark:bg-black/10 backdrop-blur rounded-2xl border border-white/20">
<h4 class="text-xl font-bold mb-4 text-indigo-300">About this module</h4>
<div class="what text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-cyan-300">What is it?</strong><br>
</div>
<div class="how text-gray-400 dark:text-gray-200 mb-6">
<strong class="text-blue-300">How to improve overall:</strong><br>
</div>
<div class="why text-gray-400 dark:text-gray-200">
<strong class="text-purple-300">Why it matters:</strong><br>
</div>
</div>
<div class="checklist mt-6 px-4 space-y-1 text-left text-gray-800 dark:text-gray-200 text-sm"></div>
<button class="expand mt-6 px-2 py-3 bg-orange-500 rounded-full font-bold hover:bg-orange-600 transition">Show Fixes</button>
<div class="details hidden mt-6 text-left"><ul id="indexability-issues" class="space-y-4"></ul></div>
</section>
</div>
<!-- Priority Fixes & Ranking Gains -->
<div id="priority-gains-section" class="mt-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto space-y-16">
<h2 class="text-4xl sm:text-5xl font-extrabold text-center bg-gradient-to-r from-orange-500 to-pink-600 bg-clip-text text-transparent">
Top Priority Fixes
</h2>
<div id="priority-cards-container" class="space-y-8"></div>
<div id="gains-container" class="mt-12"></div>
</div>
<!-- Plugin Solutions -->
<div id="plugin-solutions-section" class="hidden"></div>
<!-- Mobile UX Previewer -->
<div id="mobile-preview" class="max-w-5xl mx-auto my-24">
<h2 class="text-5xl font-black text-center mb-12 bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-transparent">
Mobile UX Preview
</h2>
<div class="flex justify-center gap-4 mb-8 flex-wrap">
<button id="view-toggle" class="px-6 py-3 text-gray-500 bg-white/20 backdrop-blur rounded-full font-bold hover:bg-white/30 transition">Switch to Desktop</button>
<button id="device-toggle" class="px-6 py-3 text-gray-500 bg-white/20 backdrop-blur rounded-full font-bold hover:bg-white/30 transition">Android Frame</button>
</div>
<div class="flex justify-center">
<div id="phone-frame" class="iphone-frame portrait relative w-full max-w-sm mx-auto">
<iframe id="preview-iframe" src="" sandbox="allow-scripts allow-popups" class="w-full h-full rounded-[40px]"></iframe>
<div id="highlight-overlays" class="absolute inset-0 pointer-events-none"></div>
</div>
</div>
<p class="text-center mt-8 text-xl text-gray-500 opacity-80">
Interactive preview — scroll and tap inside. Note: Some sites block iframe previews.
</p>
</div>
<!-- Shave Save PDF and Feedback Button -->
<div class="text-center my-16 px-4">
<div class="flex flex-col sm:flex-row justify-center gap-6 mb-8">
<!-- Share Report - Green - first -->
<button id="share-report-btn"
class="px-12 py-5 bg-gradient-to-r from-green-500 to-emerald-600 text-white text-2xl font-bold rounded-2xl shadow-lg hover:opacity-90 w-full sm:w-auto">
Share Report ↗️
</button>
<!-- Save Report - Orange - second -->
<button onclick="const hiddenEls = [...document.querySelectorAll('.hidden')]; hiddenEls.forEach(el => el.classList.remove('hidden')); window.print(); setTimeout(() => hiddenEls.forEach(el => el.classList.add('hidden')), 800);"
class="px-12 py-5 bg-gradient-to-r from-orange-500 to-pink-600 text-white text-2xl font-bold rounded-2xl shadow-lg hover:opacity-90 w-full sm:w-auto">
Save Report 📥
</button>
<!-- Submit Feedback - Blue - third -->
<button id="feedback-btn"
class="px-12 py-5 bg-gradient-to-r from-blue-500 to-indigo-600 text-white text-2xl font-bold rounded-2xl shadow-lg hover:opacity-90 w-full sm:w-auto">
Submit Feedback 💬
</button>
</div>
<!-- Share message - placed directly below buttons, always visible when triggered -->
<div id="share-message" class="hidden mt-6 p-4 rounded-2xl text-center font-medium max-w-xl mx-auto"></div>
<!-- Share Report Form (still hidden/expandable) -->
<div id="share-form-container" class="hidden max-w-2xl mx-auto mt-8">
<form id="share-form" class="space-y-6 bg-white dark:bg-gray-800 p-8 rounded-3xl shadow-xl border border-orange-500/30">
<div>
<label for="share-name" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Your Name</label>
<input id="share-name" type="text" required placeholder="Your name" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-2xl px-6 py-4 focus:outline-none focus:border-orange-500">
</div>
<div>
<label for="share-sender-email" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Your Email (for replies)</label>
<input id="share-sender-email" type="email" required placeholder="your@email.com" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-2xl px-6 py-4 focus:outline-none focus:border-orange-500">
</div>
<div>
<label for="share-email" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Recipient Email</label>
<input id="share-email" type="email" required class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-2xl px-6 py-4 focus:outline-none focus:border-orange-500">
</div>
<div>
<label for="share-title" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Email Title</label>
<input id="share-title" type="text" required placeholder="Traffic Torch SEO UX Report" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-2xl px-6 py-4 focus:outline-none focus:border-orange-500">
</div>
<div>
<label for="share-body" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Message</label>
<textarea id="share-body" required rows="5" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-3xl px-6 py-4 focus:outline-none focus:border-orange-500"></textarea>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-orange-500 to-pink-600 hover:from-orange-600 hover:to-pink-700 text-white font-bold py-4 rounded-2xl transition shadow-lg">Send Report →</button>
</form>
</div>
<!-- Feedback Form (unchanged) -->
<div id="feedback-form-container" class="hidden max-w-2xl mx-auto mt-8">
<div class="bg-white dark:bg-gray-800 p-8 rounded-3xl shadow-xl border border-blue-500/30">
<p class="text-lg font-medium mb-6 text-gray-800 dark:text-gray-200">
Feedback for SEO UX Tool on <strong>the analyzed page</strong>
</p>
<form id="feedback-form" class="space-y-6">
<div>
<label for="feedback-rating" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Rating (optional)</label>
<div class="flex gap-3 text-3xl justify-center sm:justify-start">
<button type="button" data-rating="1" class="hover:scale-125 transition">😞</button>
<button type="button" data-rating="2" class="hover:scale-125 transition">🙁</button>
<button type="button" data-rating="3" class="hover:scale-125 transition">😐</button>
<button type="button" data-rating="4" class="hover:scale-125 transition">🙂</button>
<button type="button" data-rating="5" class="hover:scale-125 transition">😍</button>
</div>
<input type="hidden" id="feedback-rating" name="rating">
</div>
<div>
<label class="flex items-center gap-2 justify-center sm:justify-start">
<input type="checkbox" id="reply-requested" class="w-5 h-5">
<span class="text-sm font-medium text-gray-800 dark:text-gray-200">Request reply</span>
</label>
</div>
<div id="email-group" class="hidden">
<label for="feedback-email" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Your Email</label>
<input id="feedback-email" type="email" name="email" placeholder="your@email.com" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-2xl px-6 py-4 focus:outline-none focus:border-blue-500">
</div>
<div>
<label for="feedback-text" class="block text-sm font-medium mb-2 text-gray-800 dark:text-gray-200">Your Feedback</label>
<textarea id="feedback-text" name="message" required rows="5" maxlength="1000" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-3xl px-6 py-4 focus:outline-none focus:border-blue-500"></textarea>
<p class="text-xs text-gray-500 dark:text-gray-400 mt-1 text-center sm:text-left">
<span id="char-count">0</span>/1000 characters
</p>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-blue-500 to-indigo-600 hover:from-blue-600 hover:to-indigo-700 text-white font-bold py-4 rounded-2xl transition shadow-lg">Send Feedback</button>
</form>
<div id="feedback-message" class="hidden mt-6 p-4 rounded-2xl text-center font-medium"></div>
</div>
</div>
</div>
<!-- Copy Badge Code -->
<div id="score-badge" class="hidden my-16 text-center">
<a href="https://traffictorch.net/" target="_blank" style="display: inline-block; position: relative; font-family: system-ui, -apple-system, sans-serif; font-weight: bold; font-size: 13px; color: #969696; text-decoration: none;">
Traffic Torch Optimized ⚖️
<span style="position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 8px; padding: 8px 16px; background: #1f2937; color: white; font-size: 14px; border-radius: 8px; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; white-space: nowrap; z-index: 10;">
UX, SEO & AI Optimization
</span>
</a>
</div>
<div class="flex justify-center my-16">
<button id="copy-badge" class="hidden px-12 py-4 bg-gradient-to-r from-orange-500 to-pink-600 hover:from-orange-600 hover:to-pink-700 text-white font-bold rounded-xl transition-all shadow-lg hover:shadow-xl text-xl">
Copy Badge Code ⚖️
</button>
</div>
</div>
<div class="center-btn-container mt-4 mb-4">
<button
class="copy-link-btn"
onclick="navigator.clipboard?.writeText(this.dataset.text) || (function(b){let i=document.createElement('input');i.value=b.dataset.text;document.body.appendChild(i);i.select();document.execCommand('copy');i.remove();})(this); this.textContent='Copied ✓';setTimeout(()=>this.textContent='Copy Link? 🔗',1600);"
data-text="https://traffictorch.net/"
>
Copy Link? 🔗
</button>
</div>
<!-- How Traffic Torch Works Accordion -->
<div class="max-w-4xl mx-auto my-20">
<details>
<summary class="px-3 py-4 text-1xl text-center font-black bg-gradient-to-r from-purple-500 to-pink-600 text-white rounded-2xl cursor-pointer flex justify-center items-center gap-4 shadow-xl hover:shadow-2xl transition-all duration-300">
How Traffic Torch Works?
<span class="text-3xl transition-transform duration-300 [details[open]>&]:rotate-180">↓</span>
</summary>
<div class="mt-6 px-2 py-10 bg-white dark:bg-gray-800 rounded-3xl shadow-inner space-y-10 text-gray-700 dark:text-gray-300">
<section class="text-left space-y-6">
<h3 class="text-3xl font-bold text-indigo-600 dark:text-indigo-400">Complete SEO & UX Toolkit with Instant Online Analysis</h3>
<p class="text-lg leading-relaxed">
Every Traffic Torch tool runs entirely in your browser. We use a secure CORS proxy to fetch page HTML without exposing data.
</p>
<p class="text-lg leading-relaxed">
Nothing is stored, logged, or transmitted. Your privacy is guaranteed. Results appear in seconds, optimized for mobile and desktop.
</p>
</section>
<section class="space-y-8">
<h3 class="text-2xl font-bold text-indigo-600 dark:text-indigo-400">Our Growing Suite of Tools</h3>
<div class="grid md:grid-cols-2 gap-8 text-base">
<div class="space-y-4">
<h4 class="font-bold text-lg">Local SEO 📍</h4>
<p>Full on-page SEO audit for your target location. Checks title, meta, headings, content, images, schema and more.</p>
</div>
<div class="space-y-4">
<h4 class="font-bold text-lg">Keyword Competition 🆚</h4>