-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.html
More file actions
1088 lines (1041 loc) · 75.9 KB
/
sources.html
File metadata and controls
1088 lines (1041 loc) · 75.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sources & Citations | Nevada Governor 2026</title>
<meta name="description"
content="Complete source documentation for all claims on NV Gov 2026. Primary sources, news reports, and research materials.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nvgov2026.org/sources.html">
<meta property="og:title" content="Sources & Citations | Nevada Governor 2026">
<meta property="og:description"
content="Complete source documentation for all claims on NV Gov 2026. Primary sources, news reports, and research materials.">
<meta property="og:image" content="https://nvgov2026.org/og-image.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://nvgov2026.org/sources.html">
<meta property="twitter:title" content="Sources & Citations | Nevada Governor 2026">
<meta property="twitter:description"
content="Complete source documentation for all claims on NV Gov 2026. Primary sources, news reports, and research materials.">
<meta property="twitter:image" content="https://nvgov2026.org/og-image.png">
<link rel="canonical" href="https://nvgov2026.org/sources.html">
<link rel="stylesheet" href="/src/styles/main.css">
</head>
<body class="bg-white">
<!-- Navigation -->
<nav class="sticky top-0 z-50 bg-white/95 backdrop-blur-sm border-b border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<a href="/" class="flex items-center gap-2">
<span class="text-2xl">🏜️</span>
<span class="font-serif font-bold text-nevada-navy">Nevada Governor Elections 2026</span>
</a>
<div class="hidden md:flex items-center gap-8">
<a href="/" class="nav-link">Candidates</a>
<a href="/compare/" class="nav-link">Compare</a>
<a href="/compare/gop-primary.html" class="nav-link">GOP Primary</a>
<a href="/compare/primary.html" class="nav-link">Dem Primary</a>
<a href="/about.html" class="nav-link">About</a>
</div>
</div>
</div>
</nav>
<!-- Header -->
<header class="bg-nevada-navy text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h1 class="text-4xl font-bold mb-4">Sources & Documentation</h1>
<p class="text-xl text-gray-300 max-w-3xl">
Every factual claim on this site is sourced. This page provides complete citations and access to primary
research materials.
</p>
</div>
</header>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<!-- Primary Research Materials -->
<section class="mb-16">
<h2 class="section-header text-nevada-navy">Primary Research Dossiers</h2>
<div class="mt-8 bg-nevada-sand rounded-2xl p-8">
<p class="text-gray-700 mb-6">
This site's analysis is derived from comprehensive forensic dossiers compiled from public records,
court filings, campaign finance reports, and news coverage. The full dossiers are available below
with all original citations.
</p>
<div class="grid md:grid-cols-3 gap-6 mb-6">
<a href="/profiles/Forensic_Dossier-Joseph_Michael_Lombardo.pdf" target="_blank"
class="bg-white rounded-xl p-6 border-t-4 border-lombardo hover:shadow-lg transition-shadow">
<div class="flex items-center gap-3 mb-4">
<span class="text-3xl">📄</span>
<div>
<h3 class="font-bold text-gray-900">Lombardo Dossier</h3>
<p class="text-sm text-gray-500">PDF • 54 citations</p>
</div>
</div>
<p class="text-sm text-gray-600">Complete forensic profile with governance analysis, financial forensics,
and full source documentation.</p>
</a>
<a href="/profiles/Forensic_Dossier-Aaron_D_Ford.pdf" target="_blank"
class="bg-white rounded-xl p-6 border-t-4 border-ford hover:shadow-lg transition-shadow">
<div class="flex items-center gap-3 mb-4">
<span class="text-3xl">📄</span>
<div>
<h3 class="font-bold text-gray-900">Ford Dossier</h3>
<p class="text-sm text-gray-500">PDF • 50 citations</p>
</div>
</div>
<p class="text-sm text-gray-600">Complete forensic profile covering legislative record, AG tenure, donor
networks, and controversies.</p>
</a>
<a href="/profiles/Forensic_Dossier-Alexis_Hill.pdf" target="_blank"
class="bg-white rounded-xl p-6 border-t-4 border-hill hover:shadow-lg transition-shadow">
<div class="flex items-center gap-3 mb-4">
<span class="text-3xl">📄</span>
<div>
<h3 class="font-bold text-gray-900">Hill Dossier</h3>
<p class="text-sm text-gray-500">PDF • 34 citations</p>
</div>
</div>
<p class="text-sm text-gray-600">Complete forensic profile analyzing county record, developer relationships,
and tax proposals.</p>
</a>
</div>
<div class="grid md:grid-cols-2 gap-6">
<a href="/profiles/Forensic_Dossier—Irina_Hansen.pdf" target="_blank"
class="bg-white rounded-xl p-6 hover:shadow-lg transition-shadow"
style="border-top: 4px solid var(--color-hansen);">
<div class="flex items-center gap-3 mb-4">
<span class="text-3xl">📄</span>
<div>
<h3 class="font-bold text-gray-900">Hansen Dossier</h3>
<p class="text-sm text-gray-500">PDF • 15 citations</p>
</div>
</div>
<p class="text-sm text-gray-600">GOP primary challenger profile examining mayoral campaign, judicial reform
platform, and electoral viability.</p>
</a>
<a href="/profiles/Forensic_Dossier—Matthew_Winterhawk.pdf" target="_blank"
class="bg-white rounded-xl p-6 hover:shadow-lg transition-shadow"
style="border-top: 4px solid var(--color-winterhawk);">
<div class="flex items-center gap-3 mb-4">
<span class="text-3xl">📄</span>
<div>
<h3 class="font-bold text-gray-900">Winterhawk Dossier</h3>
<p class="text-sm text-gray-500">PDF • 18 citations</p>
</div>
</div>
<p class="text-sm text-gray-600">GOP primary challenger profile analyzing "Live N Learn" persona, SmartSlaps
Foundation, and policy contradictions.</p>
</a>
</div>
</div>
</section>
<!-- Citation Guide -->
<section class="mb-16">
<h2 class="section-header text-nevada-navy">How We Cite</h2>
<div class="mt-8 prose max-w-none text-gray-700">
<p>
Throughout this site, you'll see superscript numbers like this<span class="cite"><a href="#"
class="cite-ref">[1]</a></span>
indicating cited claims. Hover over any citation to see the source, or click to jump to the full reference.
</p>
<div class="mt-6 grid md:grid-cols-2 gap-6">
<div class="bg-gray-50 rounded-xl p-6">
<h3 class="font-bold text-gray-900 mb-3">Source Categories</h3>
<ul class="space-y-2 text-sm">
<li><span class="evidence-strong">Primary</span> — Official records, court documents, campaign filings
</li>
<li><span class="evidence-mixed">News</span> — Reporting from established outlets</li>
<li><span class="evidence-weak">Partisan</span> — Campaign materials, party communications (labeled)</li>
</ul>
</div>
<div class="bg-gray-50 rounded-xl p-6">
<h3 class="font-bold text-gray-900 mb-3">Our Standards</h3>
<ul class="space-y-2 text-sm text-gray-600">
<li>• All factual claims must have at least one citation</li>
<li>• Primary sources preferred over secondary reporting</li>
<li>• Partisan sources are identified when used</li>
<li>• Broken links are archived via Wayback Machine</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Immigration Sources -->
<section class="mb-16" id="immigration-sources">
<h2 class="section-header text-nevada-navy">Immigration Research</h2>
<div class="mt-8 bg-white rounded-2xl shadow-sm p-6">
<p class="text-gray-700 mb-4">
Immigration coverage comes from two new research documents compiled for this release: a systems analysis
of enforcement dynamics and a candidate-by-candidate comparative briefing.
</p>
<ol class="source-list space-y-3">
<li class="source-item" id="IMM1">Immigration enforcement in Nevada: A systems analysis for voters —
<a href="/sources/REPORT—On Immigration in NV.md" target="_blank">REPORT—On Immigration in NV</a></li>
<li class="source-item" id="IMM2">Nevada 2026 gubernatorial candidates diverge sharply on immigration —
<a href="/sources/ANALYSIS—Candidate positions on Immigration.md" target="_blank">ANALYSIS—Candidate positions on
Immigration</a></li>
</ol>
</div>
</section>
<!-- Lombardo Sources -->
<section class="mb-16" id="lombardo-sources">
<h2 class="section-header text-nevada-navy">Joe Lombardo Sources</h2>
<div class="mt-8 bg-lombardo-light/30 rounded-xl p-6">
<ol class="source-list space-y-3">
<li class="source-item" id="L1">2025 Lombardo Veto Tracker: Governor breaks own record after rejecting 87
bills — <a
href="https://thenevadaindependent.com/article/2025-lombardo-veto-tracker-bipartisan-ballot-drop-box-bill-rejected"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L2">Lombardo sets new record after vetoing 87 bills. Why, and how could it affect
2026? — <a
href="https://knpr.org/show/knprs-state-of-nevada/2025-06-24/lombardo-sets-new-record-after-vetoing-87-bills-why-and-how-could-it-affect-2026"
target="_blank">Nevada Public Radio</a></li>
<li class="source-item" id="L3">Hotel mogul, UFO believer spending in Nevada governor's race — <a
href="https://apnews.com/article/2022-midterm-elections-covid-health-las-vegas-campaigns-eda1d6e9d1d0b9870ed82586566cb822"
target="_blank">AP News</a></li>
<li class="source-item" id="L4">After Vetoing Legislation to Lower Housing Costs, Lombardo Appoints Corporate
Housing Lobbyist as Chief of Staff — <a
href="https://nvdems.com/new-after-vetoing-legislation-to-lower-housing-costs-lombardo-appoints-corporate-housing-lobbyist-as-chief-of-staff/"
target="_blank">Nevada State Democratic Party</a></li>
<li class="source-item" id="L5">Housing Headaches: Why Governor Lombardo Vetoed SB335 — <a
href="https://nevadapolicy.org/housing-headaches-why-governor-lombardo-vetoed-sb335/"
target="_blank">Nevada Policy Research Institute</a></li>
<li class="source-item" id="L6">Learning from Past Mistakes: Nevada's Track Record with Stadium Subsidies — <a
href="https://nevadapolicy.org/learning-from-past-mistakes-nevadas-track-record-with-stadium-subsidies/"
target="_blank">Nevada Policy Research Institute</a></li>
<li class="source-item" id="L7">Tesla gets $330M tax deal for Nevada expansion, truck plant — <a
href="https://apnews.com/article/tesla-elon-musk-nevada-lithium-a807b3d2895f46c7a3e141be8c1ba672"
target="_blank">AP News</a></li>
<li class="source-item" id="L8">Las Vegas Metro Police Spend $19M on Legal Claims & Attorney Fees — <a
href="https://www.openthebooks.com/nbc3-las-vegas-metro-police-spend-19m-on-legal-claims--attorney-fees/"
target="_blank">OpenTheBooks.com via NBC3</a></li>
<li class="source-item" id="L10">Nevada governor signs sweeping crime bill as state looks to boost tourism —
<a href="https://apnews.com/article/nevada-governor-lombardo-las-vegas-strip-crime-7db720f30a3479e5684104ed74f47d6b"
target="_blank">AP News</a>
</li>
<li class="source-item" id="L11">Pro-Lombardo 'dark money' nonprofit started as governor's inaugural committee
— <a
href="https://thenevadaindependent.com/article/pro-lombardo-dark-money-nonprofit-started-as-governors-inaugural-committee"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L13">Joe Lombardo — <a href="https://en.wikipedia.org/wiki/Joe_Lombardo"
target="_blank">Wikipedia</a></li>
<li class="source-item" id="L22">Nevada Republican governor approves abortion protections in cross-party move
— <a
href="https://apnews.com/article/nevada-abortion-republican-governor-joe-lombardo-83032873a48a8916b7d030191d095bc4"
target="_blank">AP News</a></li>
<li class="source-item" id="L23">Gov. Joe Lombardo vetoes "shield law" protecting doctors who provide
gender-affirming care — <a href="https://m.youtube.com/shorts/8IKD7-Gyg7w" target="_blank">YouTube News</a>
</li>
<li class="source-item" id="L24">Nevada governor vetoes bill banning price fixing of food, housing and
medicine — <a
href="https://www.kunr.org/nevada-state-government/2025-06-17/nevada-governor-vetoes-bill-banning-price-fixing-of-food-housing-and-medicine"
target="_blank">KUNR Public Radio</a></li>
<li class="source-item" id="L25">Lombardo, ethics commission settle long-running dispute over use of sheriff's
badge, office — <a
href="https://thenevadaindependent.com/article/lombardo-ethics-commission-settle-long-running-dispute-over-use-of-sheriffs-badge-office"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L26">Déjà Veto: Governor Lombardo Kills All Gun Safety Bills—Again — <a
href="https://www.everytown.org/press/deja-veto-governor-lombardo-kills-all-gun-safety-bills-again/"
target="_blank">Everytown for Gun Safety</a></li>
<li class="source-item" id="L27">Lombardo used work email to communicate strategy with top consultants,
records show — <a
href="https://thenevadaindependent.com/article/lombardo-used-work-email-to-communicate-strategy-with-top-consultants-records-show"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L30">Tenant advocates fear the worst after Nevada eviction protections expire and
are vetoed — <a
href="https://thenevadaindependent.com/article/tenant-advocates-fear-the-worst-after-nevada-eviction-protections-expire-and-are-vetoed"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L31">Bipartisan Nevada Bill to Curb Corporate Home Buying Fails — for Now — <a
href="https://www.governing.com/urban/bipartisan-nevada-bill-to-curb-corporate-home-buying-fails-for-now"
target="_blank">Governing Magazine</a></li>
<li class="source-item" id="L32">Las Vegas hotel mogul Robert Bigelow spends nearly $50 million to support
Lombardo, other Republicans — <a
href="https://thenevadaindependent.com/article/las-vegas-hotel-mogul-robert-bigelow-spends-nearly-50-million-to-support-lombardo-other-republicans"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L35">Critics say this court program targeted the homeless. Here's why Strip
casinos want it back — <a
href="https://www.reviewjournal.com/crime/critics-say-this-court-program-targeted-the-homeless-heres-why-strip-casinos-want-it-back-3530051/"
target="_blank">Las Vegas Review-Journal</a></li>
<li class="source-item" id="L39">Follow the Money: Major businesses, developers behind Lombardo's $10M
fundraising effort — <a
href="https://thenevadaindependent.com/article/follow-the-money-major-businesses-developers-behind-lombardos-10m-fundraising-effort"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="L54">Under Joe Lombardo, Nevada's Unemployment Rate Remains Highest of Any State
In The Nation — <a
href="https://nvdems.com/new-report-under-joe-lombardo-nevadas-unemployment-rate-remains-highest-of-any-state-in-the-nation-for-11th-consecutive-month/"
target="_blank">Nevada State Democratic Party</a></li>
</ol>
<p class="mt-6 text-sm text-gray-500">
<a href="/profiles/Forensic_Dossier-Joseph_Michael_Lombardo.pdf" target="_blank"
class="text-lombardo hover:underline">View complete dossier with all 54 citations →</a>
</p>
</div>
</section>
<!-- Ford Sources -->
<section class="mb-16" id="ford-sources">
<h2 class="section-header text-nevada-navy">Aaron Ford Sources</h2>
<div class="mt-8 bg-ford-light/30 rounded-xl p-6">
<ol class="source-list space-y-3">
<li class="source-item" id="F1">Poll: Lombardo, Ford in dead heat in potential faceoff for Nevada governor —
<a href="https://thenevadaindependent.com/article/poll-lombardo-ford-in-dead-heat-in-potential-faceoff-for-nevada-governor"
target="_blank">The Nevada Independent</a>
</li>
<li class="source-item" id="F3">AG Aaron Ford — <a href="https://ag.nv.gov/About/AG_Aaron_Ford/"
target="_blank">Nevada Attorney General (Official)</a></li>
<li class="source-item" id="F5">Aaron Ford (Nevada politician) — <a
href="https://en.wikipedia.org/wiki/Aaron_Ford_(Nevada_politician)" target="_blank">Wikipedia</a></li>
<li class="source-item" id="F7">State of Nevada Announces $285 Million Settlement with Walgreens for Nevada
Opioid Crisis — <a
href="https://www.egletlaw.com/state-of-nevada-announces-285-million-settlement-with-walgreens-for-nevada-opioid-crisis/"
target="_blank">Eglet Law</a></li>
<li class="source-item" id="F8">Follow the Money: Tracking committee chair donations — <a
href="https://thenevadaindependent.com/article/follow-money-tracking-committee-chair-donations"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="F14">Changes in Nevada Criminal Law: How AB 236 Impacts Criminal Cases in Las
Vegas — <a
href="https://www.lasvegascriminalattorneyblog.com/changes-in-nevada-criminal-law-how-ab-236-impacts-criminal-cases-in-las-vegas/"
target="_blank">Las Vegas Criminal Attorney Blog</a></li>
<li class="source-item" id="F15">A crime bill survived Lombardo's repeal effort. Has it cut the prison
population as promised? — <a
href="https://thenevadaindependent.com/article/a-crime-bill-survived-lombardos-repeal-effort-has-it-cut-the-prison-population-as-promised"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="F16">Soft on Crime, Corrupt Politician Aaron Ford Enters Nevada Gubernatorial Race
— <a href="https://www.rga.org/soft-crime-corrupt-politician-aaron-ford-enters-nevada-gubernatorial-race/"
target="_blank">Republican Governors Association</a></li>
<li class="source-item" id="F20">Indy Fact Check: Republican AGs open fire on potential candidate Ford, mostly
miss mark — <a
href="https://thenevadaindependent.com/article/indy-fact-check-republican-ags-incorrectly-claim-aaron-ford-voted-for-sanctuary-state-bill-sponsored-bill-allowing-felons-to-run-for-office"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="F22">Attorney General Aaron Ford Releases Response to Governor Lombardo's
Misleading Statement on Model Immigration Policies — <a
href="https://ag.nv.gov/News/PR/2025/Attorney_General_Aaron_Ford_Releases_Response_to_Governor_Lombardo%E2%80%99s_Misleading_Statement_on_Model_Immigration_Policies/"
target="_blank">Nevada AG (Official)</a></li>
<li class="source-item" id="F23">Aaron Ford (Nevada) — <a href="https://ballotpedia.org/Aaron_Ford_(Nevada)"
target="_blank">Ballotpedia</a></li>
<li class="source-item" id="F29">Attorney General Ford Sues Trump Administration to Stop Dismantling of
Department of Education — <a
href="https://ag.nv.gov/News/PR/2025/Attorney_General_Ford_Sues_Trump_Administration_to_Stop_Dismantling_of_Department_of_Education_and_Protect_Nevada_Students/"
target="_blank">Nevada AG (Official)</a></li>
<li class="source-item" id="F34">Attorney General Ford Joins DOJ, Bipartisan Coalition of Attorneys General in
Antitrust Lawsuit Against Live Nation — <a
href="https://ag.nv.gov/News/PR/2024/Attorney_General_Ford_Joins_DOJ,_Bipartisan_Coalition_of_Attorneys_General_in_Antitrust_Lawsuit_Against_Live_Nation/"
target="_blank">Nevada AG (Official)</a></li>
<li class="source-item" id="F35">Attorney general blasts governor's veto of bill to rein in price fixing — <a
href="https://nvdems.com/nevada-current-attorney-general-blasts-governors-veto-of-bill-to-rein-in-price-fixing/"
target="_blank">Nevada Current via NV Dems</a></li>
<li class="source-item" id="F36">Campaign Contributions 2024 — <a
href="https://www.atra.org/wp-content/uploads/2024/02/Campaign-Contributions-2024-%E2%80%93-NV-1-1.pdf"
target="_blank">American Tort Reform Association (PDF)</a></li>
<li class="source-item" id="F41">AG Ford, Speaker Yeager are top Nevada recipients of trips paid for by
outside groups — <a
href="https://thenevadaindependent.com/article/ag-ford-speaker-yeager-are-top-nevada-recipients-of-trips-paid-for-by-outside-groups"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="F42">Ford Breaks First-Month Fundraising Record — <a
href="https://www.fordfornevada.com/news/ford-breaks-first-month-fundraising-record-raises-more-than-any-non-incumbent-democrat"
target="_blank">Ford for Nevada (Campaign)</a></li>
<li class="source-item" id="F45">Democratic attorney general candidate Aaron Ford acknowledges multiple
arrests as college student — <a
href="https://thenevadaindependent.com/article/democratic-attorney-general-candidate-aaron-ford-acknowledges-multiple-arrests-as-college-student-in-1990s"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="F47">Police bodycam footage of AG Ford, child to remain confidential, Supreme
Court rules — <a
href="https://thenevadaindependent.com/article/police-bodycam-footage-of-ag-ford-child-to-remain-confidential-supreme-court-rules"
target="_blank">The Nevada Independent</a></li>
</ol>
<p class="mt-6 text-sm text-gray-500">
<a href="/profiles/Forensic_Dossier-Aaron_D_Ford.pdf" target="_blank" class="text-ford hover:underline">View
complete dossier with all 50 citations →</a>
</p>
</div>
</section>
<!-- Hill Sources -->
<section class="mb-16" id="hill-sources">
<h2 class="section-header text-nevada-navy">Alexis Hill Sources</h2>
<div class="mt-8 bg-hill-light/30 rounded-xl p-6">
<ol class="source-list space-y-3">
<li class="source-item" id="H1">As Washoe, others adopt anti-camping laws, advocates and homeless fear fallout
— <a
href="https://thenevadaindependent.com/article/as-washoe-others-adopt-anti-camping-laws-advocates-and-homeless-fear-fallout"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="H2">Two Washoe County Commissioners' Refusal to Vote to Certify the Election Sows
Distrust — <a
href="https://allvotingislocal.org/avl-action/two-washoe-county-commissioners-refusal-to-vote-to-certify-the-election-sows-distrust-in-our-elections/"
target="_blank">All Voting is Local</a></li>
<li class="source-item" id="H4">Alexis Hill (Nevada politician) — <a
href="https://en.wikipedia.org/wiki/Alexis_Hill_(Nevada_politician)" target="_blank">Wikipedia</a></li>
<li class="source-item" id="H5">Washoe County Commissioner Alexis Hill plans to run for governor — <a
href="https://thenevadaindependent.com/article/washoe-county-commissioner-alexis-hill-plans-to-run-for-governor"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="H6">2024 Contributions & Expenses Report #1 — <a
href="https://www.nvsos.gov/SOSCandidateServices/AnonymousAccess/ViewCCEReport.aspx?syn=eNpnjbRtgHMhTBx0C2ttAw%253d%253d"
target="_blank">Nevada Secretary of State (Official)</a></li>
<li class="source-item" id="H7">Development Code Amendment Case Number WDCA23-0002 — <a
href="https://www.washoecounty.gov/csd/planning_and_development/board_commission/planning_commission/2023/Files/WDCA23-0002_EnvisionWashoe_sr.pdf"
target="_blank">Washoe County Planning Commission (Official)</a></li>
<li class="source-item" id="H8">Legislation Details: Riverbend Trailhead Project — <a
href="https://washoe-nv.legistar.com/ViewReport.ashx?M=R&N=Master&GID=601&ID=7093175"
target="_blank">Washoe County Legistar (Official)</a></li>
<li class="source-item" id="H9">Group of paid, organized citizens seeks to cause chaos at meetings, strike
fear into elected officials — <a href="http://www.nevadanewsmakers.com/RayHagar/article.asp?ID=456"
target="_blank">Nevada Newsmakers</a></li>
<li class="source-item" id="H11">Chair Alexis Hill — <a
href="https://www.washoecounty.gov/bcc/profile/1-hill_alexis.php" target="_blank">Washoe County
(Official)</a></li>
<li class="source-item" id="H12">Alexis Hill — <a href="https://ballotpedia.org/Alexis_Hill"
target="_blank">Ballotpedia</a></li>
<li class="source-item" id="H17">Democrat Alexis Hill jumps into Nevada governor race, unveils revenue-raising
tax plan — <a
href="https://thenevadaindependent.com/article/democrat-alexis-hill-jumps-into-nevada-governor-race-unveils-revenue-raising-tax-plan"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="H19">Library Board votes to keep LGBTQ+ books in place — <a
href="https://www.kunr.org/local-stories/2024-04-18/library-board-votes-to-keep-lgbtq-books"
target="_blank">KUNR Public Radio</a></li>
<li class="source-item" id="H21">Divisions over the Camping Ban in Washoe County — <a
href="https://www.youtube.com/watch?v=9_FcB6hTGck" target="_blank">YouTube</a></li>
<li class="source-item" id="H27">Nevada Supreme Court denies appeal of conservative activist seeking to oust
county election official — <a
href="https://apnews.com/article/election-fraud-nevada-beadles-supreme-court-6900f9b56ff4f7f83510e18d7fc58b26"
target="_blank">AP News</a></li>
<li class="source-item" id="H31">"No Subsidies for Billionaires is Her 'Hill' to Die On" — <a
href="https://www.youtube.com/watch?v=syjq__Slyls" target="_blank">YouTube</a></li>
<li class="source-item" id="H33">Politicians are reporting more harassment. Just ask candidates in Washoe
County races — <a
href="https://thenevadaindependent.com/article/politicians-are-reporting-more-harassment-just-ask-candidates-in-washoe-county-races"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="H34">Incumbents overwhelmingly retain positions across Northern Nevada races — <a
href="https://thenevadaindependent.com/article/incumbents-overwhelmingly-retain-positions-across-northern-nevada-races"
target="_blank">The Nevada Independent</a></li>
</ol>
<p class="mt-6 text-sm text-gray-500">
<a href="/profiles/Forensic_Dossier-Alexis_Hill.pdf" target="_blank" class="text-hill hover:underline">View
complete dossier with all 34 citations →</a>
</p>
</div>
</section>
<!-- Hansen Sources -->
<section class="mb-16" id="hansen-sources">
<h2 class="section-header text-nevada-navy">Irina Hansen Sources</h2>
<div class="mt-8 rounded-xl p-6" style="background-color: var(--color-hansen-light); opacity: 0.8;">
<ol class="source-list space-y-3">
<li class="source-item" id="IH1">2024 Las Vegas mayoral election — <a
href="https://en.wikipedia.org/wiki/2024_Las_Vegas_mayoral_election" target="_blank">Wikipedia</a></li>
<li class="source-item" id="IH2">2026 Nevada gubernatorial election — <a
href="https://en.wikipedia.org/wiki/2026_Nevada_gubernatorial_election" target="_blank">Wikipedia</a></li>
<li class="source-item" id="IH3">Ira Hansen (State Senator - Different Person) — <a
href="https://en.wikipedia.org/wiki/Ira_Hansen" target="_blank">Wikipedia</a></li>
<li class="source-item" id="IH4">Nevada's Judicial Crisis Campaign Page — <a
href="https://irinahansenforgovernor.com/nevadas-judicial-crisis" target="_blank">Irina Hansen
Campaign</a></li>
<li class="source-item" id="IH5">Irina Hansen v. Donovan Hansen Court Opinion — <a
href="https://caselaw.findlaw.com/court/crt-app-nev/115660250.html" target="_blank">FindLaw</a></li>
<li class="source-item" id="IH6">Romanian woman running for mayor in Las Vegas — <a
href="https://www.romania-insider.com/romanian-woman-running-mayor-las-vegas-2023" target="_blank">Romania
Insider</a></li>
<li class="source-item" id="IH7">Thirteen candidates running in Las Vegas mayoral primary — <a
href="https://news.ballotpedia.org/2024/05/24/thirteen-candidates-running-in-june-11-nonpartisan-primary-for-mayor-of-las-vegas-nevada/"
target="_blank">Ballotpedia News</a></li>
<li class="source-item" id="IH8">Mayoral election in Las Vegas, Nevada (2024) Results — <a
href="https://ballotpedia.org/Mayoral_election_in_Las_Vegas,_Nevada_(2024)"
target="_blank">Ballotpedia</a></li>
<li class="source-item" id="IH9">Follow the Money: Gaming returns to top of Nevada legislator donors — <a
href="https://thenevadaindependent.com/article/follow-the-money-gaming-returns-to-top-of-nevada-legislator-donors"
target="_blank">The Nevada Independent</a></li>
<li class="source-item" id="IH10">Irina Hansen Ballotpedia Profile — <a
href="https://ballotpedia.org/Irina_Hansen" target="_blank">Ballotpedia</a></li>
</ol>
<p class="mt-6 text-sm text-gray-500">
<a href="/profiles/Forensic_Dossier—Irina_Hansen.pdf" target="_blank" class="hover:underline"
style="color: var(--color-hansen);">View complete dossier with all 15 citations →</a>
</p>
</div>
</section>
<!-- Winterhawk Sources -->
<section class="mb-16" id="winterhawk-sources">
<h2 class="section-header text-nevada-navy">Matthew Winterhawk Sources</h2>
<div class="mt-8 rounded-xl p-6" style="background-color: var(--color-winterhawk-light); opacity: 0.9;">
<ol class="source-list space-y-3">
<li class="source-item" id="MW1">Matthew Winterhawk Ballotpedia Profile — <a
href="https://ballotpedia.org/Matthew_Winterhawk" target="_blank">Ballotpedia</a></li>
<li class="source-item" id="MW2">SmartSlaps Foundation IRS Registration — <a
href="https://www.irs.gov/pub/irs-soi/eo_nv.csv" target="_blank">IRS EO Data</a></li>
<li class="source-item" id="MW3">Property Records: 7812 Restless Pines St — <a
href="https://www.zillow.com/homedetails/7812-Restless-Pines-St-Las-Vegas-NV-89131/52150409_zpid/"
target="_blank">Zillow</a></li>
<li class="source-item" id="MW4">"R&B Rhythm & Blunts" Album by Live N Learn — <a
href="https://music.apple.com/gb/album/r-b-rhythm-blunts/1794016255" target="_blank">Apple Music</a></li>
<li class="source-item" id="MW5">"It's Just Weed (Mary Jane)" Single — <a
href="https://music.apple.com/us/song/its-just-weed-mary-jane-thank-you-rick-james/1794016257"
target="_blank">Apple Music</a></li>
<li class="source-item" id="MW6">"Industry Hoes" Single by Live N Learn — <a
href="https://music.apple.com/us/album/industry-hoes-single/1786580286" target="_blank">Apple Music</a>
</li>
<li class="source-item" id="MW7">"SMOKE" Single by Live N Learn — <a
href="https://music.apple.com/us/song/smoke/1786602135" target="_blank">Apple Music</a></li>
<li class="source-item" id="MW8">SmartSlaps Foundation Nevada GiveButter Page — <a
href="https://givebutter.com/smartslapsNV" target="_blank">GiveButter</a></li>
<li class="source-item" id="MW9">SmartSlaps Official Website — <a href="https://www.smartslaps.org/"
target="_blank">SmartSlaps.org</a></li>
<li class="source-item" id="MW10">2026 Nevada gubernatorial election — <a
href="https://en.wikipedia.org/wiki/2026_Nevada_gubernatorial_election" target="_blank">Wikipedia</a></li>
<li class="source-item" id="MW11">NLSARA Land Sovereignty Proposal — <a href="https://w4nevada.com/nlsara"
target="_blank">W4Nevada Campaign</a></li>
<li class="source-item" id="MW12">Legislative Testimony: Senate Finance/Assembly Ways and Means — <a
href="https://www.leg.state.nv.us/Session/83rd2025/Minutes/Senate/FIN/Final/413.pdf"
target="_blank">Nevada Legislature (PDF)</a></li>
<li class="source-item" id="MW13">"True Freedom" Book Listing — <a
href="https://bookshop.org/p/books/true-freedom-everything-they-don-t-want-you-to-know-matthew-winterhawk/0a24d6c05c4cd708"
target="_blank">Bookshop.org</a></li>
</ol>
<p class="mt-6 text-sm text-gray-500">
<a href="/profiles/Forensic_Dossier—Matthew_Winterhawk.pdf" target="_blank" class="hover:underline"
style="color: var(--color-winterhawk);">View complete dossier with all 18 citations →</a>
</p>
</div>
</section>
<!-- Environment & Energy Sources -->
<section class="mb-16" id="environment-sources">
<h2 class="section-header text-nevada-navy">Environment & Energy Sources</h2>
<div class="mt-8 bg-green-50 rounded-xl p-6">
<p class="text-gray-700 mb-6">
Sources for the <a href="/compare/issues/environment.html" class="text-green-700 hover:underline font-medium">Water, Energy & Environment</a> voter guide and candidate profiles.
Full analysis available: <a href="/sources/ANALYSES—Environment_Energy.md" class="text-green-700 hover:underline">Environmental & Energy Voter Guide (Markdown)</a>
</p>
<ol class="source-list space-y-3">
<li class="source-item" id="ENV1">
<strong>AB 220 (2023):</strong> SNWA Water Conservation Bill — Backed by Sierra Club, Great Basin Water Network.
<a href="https://www.leg.state.nv.us/App/NELIS/REL/82nd2023/Bill/9726/Overview" target="_blank" class="text-green-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="ENV2">
<strong>U.S. Climate Alliance Withdrawal (July 2023):</strong> Nevada Conservation League statement — <em>"We are outraged by Governor Lombardo's nonsensical withdrawal."</em>
<a href="https://www.nevadaconservationleague.org/" target="_blank" class="text-green-700 hover:underline">Nevada Conservation League</a>
</li>
<li class="source-item" id="ENV3">
<strong>Governor's Office of Energy Director:</strong> Dwayne McClinton (Southwest Gas lobbyist) appointment.
<a href="https://energy.nv.gov/" target="_blank" class="text-green-700 hover:underline">Governor's Office of Energy</a>
</li>
<li class="source-item" id="ENV4">
<strong>September 2025 Lithium Summit:</strong> Lombardo describes lithium as helping Nevada become "recession-proof."
<a href="https://thenevadaindependent.com" target="_blank" class="text-green-700 hover:underline">The Nevada Independent</a>
</li>
<li class="source-item" id="ENV5">
<strong>SB 169 Veto (2023):</strong> Heat mitigation planning vetoed. Veto message claims "no data definitively supporting the proposition that development is causing rising temperatures."
<a href="https://gov.nv.gov/" target="_blank" class="text-green-700 hover:underline">Governor's Office (Veto Message)</a>
</li>
<li class="source-item" id="ENV6">
<strong>Nevada Conservation League Voting Records:</strong> Ford 100% score (2017), 96% lifetime score. Named "Senator of the Year" 2013.
<a href="https://www.nevadaconservationleague.org/scorecard" target="_blank" class="text-green-700 hover:underline">NCL Scorecard</a>
</li>
<li class="source-item" id="ENV7">
<strong>NV Energy Rate Challenge (2025):</strong> Bureau of Consumer Protection calls daily demand charge "unlawful." Filed judicial review petition in Clark County District Court.
<a href="https://ag.nv.gov/" target="_blank" class="text-green-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="ENV8">
<strong>Yucca Mountain Opposition:</strong> AG Ford filed motions to permanently kill NRC licensing — "Nevadans have long been clear that Yucca Mountain is an untenable and intolerable site."
<a href="https://ag.nv.gov/" target="_blank" class="text-green-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="ENV9">
<strong>Washoe County Climate Action Plan:</strong> Hill authored county's first Community Climate Action Plan. Net Zero 2050 goal. $100K IRA grant for Gerlach.
<a href="https://www.washoecounty.gov/" target="_blank" class="text-green-700 hover:underline">Washoe County</a>
</li>
<li class="source-item" id="ENV10">
<strong>TRPA Governing Board:</strong> Hill's Lake Tahoe development votes. Sierra Club Tahoe Area Group criticism. Housing amendments (August 2025).
<a href="https://www.trpa.gov/" target="_blank" class="text-green-700 hover:underline">TRPA</a>
</li>
</ol>
<h3 class="font-bold text-gray-900 mt-8 mb-4">Additional Environmental Resources</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="/compare/issues/context/energy.html" class="text-green-700 hover:underline">Nevada's Energy System: Deep Dive</a> — NV Energy monopoly, PUCN regulation, reform options</li>
<li>• <a href="https://www.snwa.com/" target="_blank" class="text-green-700 hover:underline">Southern Nevada Water Authority (SNWA)</a> — Colorado River allocations, conservation data</li>
<li>• <a href="https://puc.nv.gov/" target="_blank" class="text-green-700 hover:underline">Public Utilities Commission of Nevada</a> — Rate cases, energy regulation</li>
<li>• <a href="https://www.sierraclub.org/toiyabe" target="_blank" class="text-green-700 hover:underline">Sierra Club Toiyabe Chapter</a> — Environmental advocacy, endorsements</li>
<li>• <a href="https://www.lithiumamericas.com/thacker-pass/" target="_blank" class="text-green-700 hover:underline">Thacker Pass Project</a> — Lithium Americas mine information</li>
</ul>
</div>
</section>
<!-- Healthcare Sources -->
<section class="mb-16" id="healthcare-sources">
<h2 class="section-header text-nevada-navy">Healthcare Sources</h2>
<div class="mt-8 bg-blue-50 rounded-xl p-6">
<p class="text-gray-700 mb-6">
Sources for the <a href="/compare/issues/healthcare.html" class="text-blue-700 hover:underline font-medium">Healthcare</a> voter guide and candidate profiles.
Full analysis available: <a href="/sources/ANALYSIS—On healthcare.md" class="text-blue-700 hover:underline">Healthcare Policy Analysis (Markdown)</a>
</p>
<ol class="source-list space-y-3">
<li class="source-item" id="HC1">
<strong>Lombardo Medicaid Letter (Feb 2025):</strong> Warning to Congress that rollback could cost Nevada $590M–$3.15B over biennium. Defended expansion against federal cuts.
<a href="https://gov.nv.gov/" target="_blank" class="text-blue-700 hover:underline">Governor's Office</a>
</li>
<li class="source-item" id="HC2">
<strong>Nevada Healthcare Access Act (SB495):</strong> Creates $25M annual Workforce Access Fund targeting rural areas. $200M federal Rural Health Transformation Program application.
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-blue-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="HC3">
<strong>Safe Streets and Neighborhoods Act (SB457):</strong> Mandatory minimums for fentanyl trafficking. Requires correctional facilities to work with DHHS on treatment.
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-blue-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="HC4">
<strong>Opioid Fund Diversion Criticism:</strong> Ryan Hampton and addiction recovery advocates charge $10M in settlement dollars diverted to TANF, foster care, youth facility upgrades.
<a href="https://thenevadaindependent.com/" target="_blank" class="text-blue-700 hover:underline">The Nevada Independent</a>
</li>
<li class="source-item" id="HC5">
<strong>AG Ford Opioid Settlements:</strong> $1.2B+ aggregate recovery including Walgreens ($285M), McKesson/Cardinal/ABC ($231.7M), Teva ($193M), CVS ($151M), Purdue/Sackler ($58M), J&J ($53.5M).
<a href="https://ag.nv.gov/" target="_blank" class="text-blue-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="HC6">
<strong>Medicaid Coalition Lawsuit (July 2025):</strong> Ford joined 22-state coalition challenging Trump administration Planned Parenthood defunding through Medicaid.
<a href="https://ag.nv.gov/" target="_blank" class="text-blue-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="HC7">
<strong>SB 35 Fentanyl Bill (2023):</strong> Lowered fentanyl trafficking threshold from 100g to 4-28g. Created mandatory minimums. Removed fentanyl from Good Samaritan law protections.
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-blue-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="HC8">
<strong>Washoe Behavioral Health Center:</strong> Hill's $23M, 70-bed facility acquisition (former West Hills). Half dedicated to youth services. Expected opening late 2027.
<a href="https://www.washoecounty.gov/" target="_blank" class="text-blue-700 hover:underline">Washoe County</a>
</li>
</ol>
<h3 class="font-bold text-gray-900 mt-8 mb-4">Additional Healthcare Resources</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="https://dhhs.nv.gov/" target="_blank" class="text-blue-700 hover:underline">Nevada DHHS</a> — Department of Health and Human Services, Medicaid data</li>
<li>• <a href="https://988lifeline.org/" target="_blank" class="text-blue-700 hover:underline">988 Suicide & Crisis Lifeline</a> — Mental health crisis services</li>
<li>• <a href="https://www.fundforaresilientnevada.org/" target="_blank" class="text-blue-700 hover:underline">Fund for a Resilient Nevada</a> — Opioid settlement fund allocation ($462.2M)</li>
<li>• <a href="https://www.ruralhealthinfo.org/states/nevada" target="_blank" class="text-blue-700 hover:underline">Rural Health Information Hub: Nevada</a> — Rural healthcare shortage data</li>
</ul>
</div>
</section>
<!-- Cost of Living Sources -->
<section class="mb-16" id="cost-of-living-sources">
<h2 class="section-header text-nevada-navy">Cost of Living Sources</h2>
<div class="mt-8 bg-amber-50 rounded-xl p-6">
<p class="text-gray-700 mb-6">
Sources for the <a href="/compare/issues/cost-of-living.html" class="text-amber-700 hover:underline font-medium">Cost of Living</a> voter guide covering utilities, childcare, and minimum wage.
Full analysis available: <a href="/sources/ANALYSIS—On Cost of Living.md" class="text-amber-700 hover:underline">Cost of Living Policy Analysis (Markdown)</a>
</p>
<ol class="source-list space-y-3">
<li class="source-item" id="COL1">
<strong>NV Energy Utility Bills 2023-2024:</strong> Customers experienced "the highest bills in the last decade" in 2023. Nearly 32,000 Nevadans had power disconnected for nonpayment in 2024.
<a href="https://thenevadaindependent.com" target="_blank" class="text-amber-700 hover:underline">The Nevada Independent</a>
</li>
<li class="source-item" id="COL2">
<strong>Childcare Affordability:</strong> Nevada ranks 4th least affordable state for childcare per WalletHub. Single mothers in Clark County spend average of 42% of income on care.
<a href="https://wallethub.com" target="_blank" class="text-amber-700 hover:underline">WalletHub</a>
</li>
<li class="source-item" id="COL3">
<strong>Living Wage Calculator:</strong> MIT estimates $24.10/hour necessary for single adult in Las Vegas to remain above poverty. Nevada minimum wage: $12.00/hour.
<a href="https://livingwage.mit.edu/" target="_blank" class="text-amber-700 hover:underline">MIT Living Wage Calculator</a>
</li>
<li class="source-item" id="COL4">
<strong>AB452 (2025):</strong> Lombardo signed utility customer refund bill. Nevada Conservation League: shifts "responsibility for skyrocketing fuel costs away from hardworking Nevadans."
<a href="https://www.nevadaconservationleague.org/" target="_blank" class="text-amber-700 hover:underline">Nevada Conservation League</a>
</li>
<li class="source-item" id="COL5">
<strong>AB185 Veto (2025):</strong> Lombardo vetoed bill to prohibit HOAs from banning licensed home-based childcare. Veto message: would "erode the integrity of HOA governance."
<a href="https://gov.nv.gov/" target="_blank" class="text-amber-700 hover:underline">Governor's Office</a>
</li>
<li class="source-item" id="COL6">
<strong>NV Energy Demand Charge Challenge (October 2025):</strong> AG Ford's Bureau of Consumer Protection called NV Energy's mandatory demand charge "unlawful." Filed judicial review petition.
<a href="https://ag.nv.gov/" target="_blank" class="text-amber-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="COL7">
<strong>Nevada Blueprint (2017):</strong> Ford as Senate Majority Leader championed Democratic legislative agenda including affordable childcare and employer tax credits for childcare.
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-amber-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="COL8">
<strong>SB 106 (2017):</strong> Ford was lead sponsor of minimum wage increase bill. After Governor Sandoval opposition, pursued constitutional amendment approach leading to Ballot Question 2 (2022).
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-amber-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="COL9">
<strong>Hill Childcare Platform:</strong> Campaign website explicitly states Nevada has "the most expensive childcare in the nation" and supports universal pre-K.
<a href="https://www.alexishill.com/" target="_blank" class="text-amber-700 hover:underline">Alexis Hill Campaign</a>
</li>
<li class="source-item" id="COL10">
<strong>Hill Labor Platform:</strong> Opposes Nevada's right-to-work law ("Right to Freeload"). Emphasizes "livable wages" and union support.
<a href="https://www.alexishill.com/" target="_blank" class="text-amber-700 hover:underline">Alexis Hill Campaign</a>
</li>
</ol>
<h3 class="font-bold text-gray-900 mt-8 mb-4">Additional Cost of Living Resources</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="https://puc.nv.gov/" target="_blank" class="text-amber-700 hover:underline">Public Utilities Commission of Nevada</a> — Rate cases, utility regulation</li>
<li>• <a href="https://dwss.nv.gov/" target="_blank" class="text-amber-700 hover:underline">Nevada Division of Welfare and Supportive Services</a> — Childcare subsidy program data</li>
<li>• <a href="https://labor.nv.gov/" target="_blank" class="text-amber-700 hover:underline">Nevada Department of Business and Industry</a> — Minimum wage regulations</li>
<li>• <a href="/compare/issues/context/energy.html" class="text-amber-700 hover:underline">Nevada's Energy System: Deep Dive</a> — NV Energy monopoly, PUCN regulation</li>
</ul>
</div>
</section>
<!-- Gun Control & Safety Sources -->
<section class="mb-16" id="gun-control-sources">
<h2 class="section-header text-nevada-navy">Gun Control & Safety Sources</h2>
<div class="mt-8 bg-red-50 rounded-xl p-6">
<p class="text-gray-700 mb-6">
Sources for the <a href="/compare/issues/guns.html" class="text-red-700 hover:underline font-medium">Gun Control & Safety</a> voter guide.
Full analysis available: <a href="/sources/REPORT_Nevada_Gun_Control_Safety_Systems_Analysis.md" class="text-red-700 hover:underline">Nevada Gun Control & Safety Systems Analysis (Markdown)</a>
</p>
<ol class="source-list space-y-3">
<li class="source-item" id="GUN1">
<strong>Universal Background Checks (SB 143, 2019):</strong> NRS 202.2544-202.2549. All firearm transfers including private sales, effective January 2, 2020.
<a href="https://www.leg.state.nv.us/NRS/NRS-202.html#NRS202Sec2544" target="_blank" class="text-red-700 hover:underline">Nevada Revised Statutes</a>
</li>
<li class="source-item" id="GUN2">
<strong>Red Flag Law (AB 291, 2019):</strong> NRS 33.500-33.670. Extreme Risk Protection Orders allowing temporary firearm removal from at-risk individuals.
<a href="https://www.leg.state.nv.us/NRS/NRS-033.html#NRS033Sec500" target="_blank" class="text-red-700 hover:underline">Nevada Revised Statutes</a>
</li>
<li class="source-item" id="GUN3">
<strong>Ghost Gun Ban (AB 286, 2021):</strong> NRS 202.350. Prohibits unserialized firearms, upheld by Nevada Supreme Court April 2024 (Sisolak v. Polymer80).
<a href="https://www.leg.state.nv.us/App/NELIS/REL/81st2021/Bill/7714/Overview" target="_blank" class="text-red-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="GUN4">
<strong>AG Ford Red Flag Training:</strong> Attorney General's office ERPO implementation and law enforcement training programs.
<a href="https://ag.nv.gov/" target="_blank" class="text-red-700 hover:underline">Nevada AG Office</a>
</li>
<li class="source-item" id="GUN5">
<strong>Everytown 2025 Polling:</strong> 77% of Nevada voters, 69% of Republicans, 69% of CCW permit holders, and 68% of gun owners support raising semi-automatic purchase age to 21.
<a href="https://www.everytown.org/" target="_blank" class="text-red-700 hover:underline">Everytown for Gun Safety</a>
</li>
<li class="source-item" id="GUN6">
<strong>Giffords Law Center State Rankings:</strong> Nevada rated B- (ranked #19 nationally), up from F grade pre-2017.
<a href="https://giffords.org/lawcenter/resources/scorecard/" target="_blank" class="text-red-700 hover:underline">Giffords Law Center</a>
</li>
<li class="source-item" id="GUN7">
<strong>CDC WONDER Mortality Data (2023):</strong> 616 gun deaths in Nevada, 18.4 per 100,000 (34% above national average), 68% suicides.
<a href="https://wonder.cdc.gov/" target="_blank" class="text-red-700 hover:underline">CDC WONDER</a>
</li>
<li class="source-item" id="GUN8">
<strong>Route 91 Harvest Festival (October 1, 2017):</strong> Deadliest mass shooting in modern U.S. history. 60 killed, 850+ injured.
<a href="https://en.wikipedia.org/wiki/2017_Las_Vegas_shooting" target="_blank" class="text-red-700 hover:underline">Wikipedia</a>
</li>
<li class="source-item" id="GUN9">
<strong>Lombardo Gun Vetoes (2023-2025):</strong> Six gun safety bills vetoed: SB 171, AB 354, AB 355 (2023); AB 105, AB 245, SB 89 (2025).
<a href="https://www.leg.state.nv.us/" target="_blank" class="text-red-700 hover:underline">Nevada Legislature</a>
</li>
<li class="source-item" id="GUN10">
<strong>Nevada Independent/OHPI Poll (July 2022):</strong> 83% support universal background checks, 70% support prohibiting guns at polling places. 924 registered voters, +/- 3.2% margin.
<a href="https://thenevadaindependent.com/" target="_blank" class="text-red-700 hover:underline">The Nevada Independent</a>
</li>
</ol>
<h3 class="font-bold text-gray-900 mt-8 mb-4">Additional Gun Policy Resources</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="https://www.leg.state.nv.us/NRS/NRS-202.html" target="_blank" class="text-red-700 hover:underline">Nevada Revised Statutes Chapter 202</a> — Crimes against public health and safety (firearms)</li>
<li>• <a href="https://www.everytown.org/states/nevada/" target="_blank" class="text-red-700 hover:underline">Everytown: Nevada</a> — State gun violence data and policy tracking</li>
<li>• <a href="https://giffords.org/lawcenter/gun-laws/states/nevada/" target="_blank" class="text-red-700 hover:underline">Giffords: Nevada Gun Laws</a> — Comprehensive state law analysis</li>
<li>• <a href="https://www.rand.org/research/gun-policy.html" target="_blank" class="text-red-700 hover:underline">RAND Gun Policy Research</a> — Evidence-based policy reviews</li>
</ul>
</div>
</section>
<!-- General Sources -->
<section class="mb-16" id="general-sources">
<h2 class="section-header text-nevada-navy">General Nevada Sources</h2>
<div class="mt-8 bg-gray-50 rounded-xl p-6">
<h3 class="font-bold text-gray-900 mb-4">Primary Source Databases</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="https://www.leg.state.nv.us/" target="_blank" class="text-nevada-navy hover:underline">Nevada
Legislature</a> — Bill texts, vote records, committee hearings</li>
<li>• <a href="https://www.nvsos.gov/sos/elections/voters/campaign-finance-reporting" target="_blank"
class="text-nevada-navy hover:underline">Nevada Secretary of State</a> — Campaign finance filings,
contribution records</li>
<li>• <a href="https://ag.nv.gov/" target="_blank" class="text-nevada-navy hover:underline">Nevada Attorney
General</a> — Press releases, litigation documents</li>
<li>• <a href="https://gov.nv.gov/" target="_blank" class="text-nevada-navy hover:underline">Nevada Governor's
Office</a> — Executive orders, veto messages, official statements</li>
<li>• <a href="https://www.washoecounty.gov/bcc/" target="_blank"
class="text-nevada-navy hover:underline">Washoe County Commission</a> — Meeting minutes, agendas, vote
records</li>
</ul>
<h3 class="font-bold text-gray-900 mt-8 mb-4">News Organizations Referenced</h3>
<ul class="space-y-3 text-sm text-gray-700">
<li>• <a href="https://thenevadaindependent.com/" target="_blank" class="text-nevada-navy hover:underline">The
Nevada Independent</a> — Primary Nevada political coverage</li>
<li>• <a href="https://www.reviewjournal.com/" target="_blank" class="text-nevada-navy hover:underline">Las
Vegas Review-Journal</a> — Southern Nevada news</li>
<li>• <a href="https://www.kunr.org/" target="_blank" class="text-nevada-navy hover:underline">KUNR Public
Radio</a> — Northern Nevada and statewide coverage</li>
<li>• <a href="https://apnews.com/" target="_blank" class="text-nevada-navy hover:underline">Associated
Press</a> — Wire service reporting</li>
<li>• <a href="https://ballotpedia.org/" target="_blank"
class="text-nevada-navy hover:underline">Ballotpedia</a> — Election and candidate data</li>
</ul>
</div>
</section>
<!-- Corrections Log -->
<section class="mb-16" id="corrections-log">
<h2 class="section-header text-nevada-navy">Corrections & Modifications Log</h2>
<div class="mt-8 bg-nevada-sand rounded-xl p-6">
<p class="text-gray-700 mb-6">
We are committed to accuracy and transparency. All material changes to site content are logged below with dates.
If you find an error or a broken source link, please let us know.
</p>
<!-- December 28, 2025 Update -->
<div class="bg-white rounded-xl overflow-hidden border border-gray-200 mb-6">
<div class="bg-gray-100 px-6 py-4 border-b border-gray-200">
<div class="flex items-center gap-3">
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-semibold rounded-full">December 28, 2025</span>
<span class="text-sm text-gray-600 font-medium">New Content: Energy Policy Deep Dive</span>
</div>
</div>
<div class="p-6">
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">What Changed</h4>
<ul class="text-sm text-gray-700 space-y-1">
<li>• Added comprehensive Energy Policy context page (<a href="/compare/issues/context/energy.html" class="text-nevada-navy hover:underline">context/energy.html</a>)</li>
<li>• Renamed "Water & Environment" to "Water, Energy & Environment" across site</li>
<li>• Moved Water, Energy & Environment from "Coming Soon" to "Available Deep Dives"</li>
<li>• Added Energy Deep Dive section to environment.html with link to context page</li>
<li>• Updated homepage, issues index, and environment page meta tags</li>
<li>• Configured build to copy /sources folder to /dist for PDF access</li>
</ul>
</div>
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">Energy Page Content</h4>
<p class="text-sm text-gray-700">
New context page covers NV Energy's regulated monopoly (~90% of state load), PUCN regulatory structure,
9-10% authorized returns, 50% renewable mandate by 2030, $2B+ Greenlink transmission project,
~70% fuel cost spikes, and structural reform options. All statistics verified against source report.
</p>
</div>
<div class="overflow-x-auto">
<table class="w-full text-sm">
<thead class="bg-gray-50">
<tr>
<th class="text-left px-3 py-2 font-semibold text-gray-700">File</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Action</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Changes</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-100">
<tr>
<td class="px-3 py-2 text-gray-700">context/energy.html</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-green-100 text-green-800 text-xs rounded">New</span></td>
<td class="px-3 py-2 text-gray-600">Comprehensive energy policy analysis with charts</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">environment.html</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-blue-100 text-blue-800 text-xs rounded">Updated</span></td>
<td class="px-3 py-2 text-gray-600">Added Energy section, renamed to include Energy</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">issues/index.html</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-blue-100 text-blue-800 text-xs rounded">Updated</span></td>
<td class="px-3 py-2 text-gray-600">Moved to Available Deep Dives section</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">index.html</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-blue-100 text-blue-800 text-xs rounded">Updated</span></td>
<td class="px-3 py-2 text-gray-600">Updated issue card title and description</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">vite.config.js</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-blue-100 text-blue-800 text-xs rounded">Updated</span></td>
<td class="px-3 py-2 text-gray-600">Added context pages to build inputs</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">package.json</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-blue-100 text-blue-800 text-xs rounded">Updated</span></td>
<td class="px-3 py-2 text-gray-600">Build script copies sources to dist</td>
</tr>
</tbody>
</table>
</div>
<p class="text-xs text-gray-500 mt-4">
Source document: <a href="/sources/REPORT—Systemic Analysis of Nevada's Energy System_ NV Energy, Regulation & Reforms.pdf" class="text-nevada-navy hover:underline">Systemic Analysis of Nevada's Energy System (PDF)</a>
</p>
</div>
</div>
<!-- December 28, 2025 Update - Education -->
<div class="bg-white rounded-xl overflow-hidden border border-gray-200 mb-6">
<div class="bg-gray-100 px-6 py-4 border-b border-gray-200">
<div class="flex items-center gap-3">
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-semibold rounded-full">December 28, 2025</span>
<span class="text-sm text-gray-600 font-medium">Education Data Update & Context Report</span>
</div>
</div>
<div class="p-6">
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">What Changed</h4>
<ul class="text-sm text-gray-700 space-y-1">
<li>• Added comprehensive "State of Education in Nevada 2025" context report (<a href="/compare/issues/context/education.html" class="text-nevada-navy hover:underline">context/education.html</a>)</li>
<li>• Updated teacher vacancy stat from "~3,000" to "320 (2025)" reflecting dramatic improvement</li>
<li>• Updated per-pupil funding figures: Nevada $9,500→$13,000; recommended $14,000→$17,000; NY $26,000→$30,000</li>
<li>• Changed primary metric from "#49 per-pupil funding rank" to "#50 K-12 achievement ranking"</li>
<li>• Revised Teacher Crisis section to acknowledge 15-20% salary increases and vacancy reduction</li>
<li>• Added cross-links between compare page, context report, and source PDF</li>
</ul>
</div>
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">Why It Changed</h4>
<p class="text-sm text-gray-700">
Integrated new comprehensive education research report with updated 2025 data from Nevada Department
of Education, NAEP/NCES, and other state sources. Teacher vacancy numbers dramatically improved
due to recent salary increases, requiring updates to reflect current conditions rather than outdated crisis framing.
</p>
</div>
<div class="overflow-x-auto">
<table class="w-full text-sm">
<thead class="bg-gray-50">
<tr>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Metric</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Previous</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Updated</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Source</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-100">
<tr>
<td class="px-3 py-2 text-gray-700">CCSD Teacher Vacancies</td>
<td class="px-3 py-2 text-gray-600">~3,000</td>
<td class="px-3 py-2 text-gray-600">320 (2025)</td>
<td class="px-3 py-2 text-gray-600">NV Dept of Education</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">Nevada Per-Pupil Spending</td>
<td class="px-3 py-2 text-gray-600">~$9,500</td>
<td class="px-3 py-2 text-gray-600">~$13,000</td>
<td class="px-3 py-2 text-gray-600">NCES, Education Week</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">Recommended/Adequate Funding</td>
<td class="px-3 py-2 text-gray-600">~$14,000 (nat'l avg)</td>
<td class="px-3 py-2 text-gray-600">~$17,000 (adequacy)</td>
<td class="px-3 py-2 text-gray-600">Education Week</td>
</tr>
<tr>
<td class="px-3 py-2 text-gray-700">Primary Ranking Metric</td>
<td class="px-3 py-2 text-gray-600">#49 funding rank</td>
<td class="px-3 py-2 text-gray-600">#50 achievement rank</td>
<td class="px-3 py-2 text-gray-600">Education Week Quality Counts</td>
</tr>
</tbody>
</table>
</div>
<p class="text-xs text-gray-500 mt-4">
Source report: <a href="/sources/state_of_education_in_nevada_2025.pdf" class="text-nevada-navy hover:underline">State of Education in Nevada 2025 (PDF)</a>
</p>
</div>
</div>
<!-- December 27, 2025 Update -->
<div class="bg-white rounded-xl overflow-hidden border border-gray-200">
<div class="bg-gray-100 px-6 py-4 border-b border-gray-200">
<div class="flex items-center gap-3">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-semibold rounded-full">December 27, 2025</span>
<span class="text-sm text-gray-600 font-medium">Fact-Check Pass: Landing Page</span>
</div>
</div>
<div class="p-6">
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">What Changed</h4>
<ul class="text-sm text-gray-700 space-y-1">
<li>• Fixed poll date from "November 2024" to "November 2025" on landing page</li>
<li>• Corrected Lombardo's Sheriff tenure from "2015-2022" to "2014-2022"</li>
<li>• Removed ungrounded Ford "$165M legal fees" claim; replaced with sourced SB 485 contradiction</li>
<li>• Clarified Ford opioid claim as "aggregate" settlements; added Nevada AG primary source</li>
<li>• Updated poll tooltip reference to match correct Emerson College poll</li>
<li>• Updated "Data current as of" date to 2025-12-27</li>
</ul>
</div>
<div class="mb-4">
<h4 class="font-semibold text-gray-900 mb-2">Why It Changed</h4>
<p class="text-sm text-gray-700">
Rigorous fact-checking pass against forensic profile source documents identified a transcription
error in the poll date (the Emerson College poll was conducted November 16-18, 2025, not 2024)
and an incorrect start year for Sheriff Lombardo's tenure (elected 2014, not 2015).
</p>
</div>
<div class="overflow-x-auto">
<table class="w-full text-sm">
<thead class="bg-gray-50">
<tr>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Claim</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Action</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Reason</th>
<th class="text-left px-3 py-2 font-semibold text-gray-700">Source</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-100">
<tr>
<td class="px-3 py-2 text-gray-700">Emerson Poll date</td>
<td class="px-3 py-2"><span class="px-2 py-0.5 bg-yellow-100 text-yellow-800 text-xs rounded">Corrected</span></td>
<td class="px-3 py-2 text-gray-600">Transcription error</td>
<td class="px-3 py-2 text-gray-600">Emerson College, Nov 21, 2025</td>
</tr>
<tr>