-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
233 lines (209 loc) · 14.9 KB
/
Copy pathindex.html
File metadata and controls
233 lines (209 loc) · 14.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MonitorWorkspace — U.S. Email Security Intelligence Hub</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.7/dist/chart.umd.min.js"></script>
<style>
:root {
--bg: #0f172a; --surface: #1e293b; --surface2: #334155; --border: #475569;
--text: #e2e8f0; --text-muted: #94a3b8; --accent: #38bdf8;
--green: #4ade80; --yellow: #fbbf24; --red: #f87171;
--purple: #a78bfa; --pink: #f472b6; --orange: #fb923c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1400px; margin: 0 auto; padding: 24px; }
/* Navigation */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(15,23,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 24px; }
.site-nav .nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 0; overflow-x: auto; }
.site-nav a { display: block; padding: 14px 18px; color: var(--text-muted); font-size: 13px; font-weight: 500; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.site-nav a:hover { color: var(--text); text-decoration: none; }
.site-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }
/* Hero */
.hero { padding: 80px 24px 60px; text-align: center; background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(167,139,250,0.06) 50%, rgba(244,114,182,0.04) 100%); border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.hero h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
.hero .subtitle { color: var(--text-muted); font-size: 16px; max-width: 700px; margin: 0 auto 28px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .big { font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.hero-stat .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
/* KPI row */
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.kpi { background: var(--surface); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid var(--border); }
.kpi .value { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1.2; }
.kpi .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.kpi.green .value { color: var(--green); }
.kpi.yellow .value { color: var(--yellow); }
.kpi.red .value { color: var(--red); }
.kpi.purple .value { color: var(--purple); }
.kpi.orange .value { color: var(--orange); }
/* Section */
.section { background: var(--surface); border-radius: 12px; border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.section h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.section h2 .badge { font-size: 11px; background: var(--surface2); padding: 2px 8px; border-radius: 10px; color: var(--text-muted); font-weight: 400; }
.section h3 { font-size: 14px; margin-bottom: 8px; color: var(--text-muted); }
/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--text-muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
tr:hover { background: var(--surface2); }
.bar-cell { width: 120px; }
.bar-bg { background: var(--surface2); border-radius: 4px; height: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.bar-green { background: var(--green); } .bar-yellow { background: var(--yellow); }
.bar-red { background: var(--red); } .bar-accent { background: var(--accent); }
/* Charts */
.chart-wrap { position: relative; height: 300px; }
.chart-wrap-sm { position: relative; height: 260px; }
.chart-wrap-lg { position: relative; height: 400px; }
/* State heatmap */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 4px; }
.state-cell { text-align: center; padding: 6px 2px; border-radius: 6px; font-size: 11px; font-weight: 600; cursor: default; }
.state-cell .pct { font-size: 10px; font-weight: 400; opacity: 0.8; }
/* Badges */
.sec-badge { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.sec-good { background: rgba(74,222,128,0.15); color: var(--green); }
.sec-warn { background: rgba(251,191,36,0.15); color: var(--yellow); }
.sec-bad { background: rgba(248,113,113,0.15); color: var(--red); }
.uplift { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; background: rgba(74,222,128,0.15); color: var(--green); }
/* Callout */
.callout { border-left: 4px solid var(--accent); background: rgba(56,189,248,0.06); padding: 16px 20px; margin-bottom: 24px; border-radius: 0 8px 8px 0; }
.callout ul { margin: 0; padding-left: 18px; }
.callout li { margin-bottom: 6px; color: var(--text); font-size: 14px; }
.callout li strong { color: var(--accent); }
/* CTA box */
.cta-box { text-align: center; border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 24px; background: var(--surface); }
.cta-box p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.cta-box .btn { display: inline-block; padding: 10px 24px; background: var(--accent); color: var(--bg); border-radius: 8px; font-weight: 600; font-size: 14px; }
.cta-box .btn:hover { opacity: 0.9; text-decoration: none; }
/* Pull quote */
.pull-quote { border-left: 4px solid var(--purple); padding: 20px 24px; margin: 24px 0; font-size: 18px; font-style: italic; color: var(--text); line-height: 1.5; }
.pull-quote cite { display: block; font-size: 12px; font-style: normal; color: var(--text-muted); margin-top: 8px; }
/* Report cards (index page) */
.report-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: transform 0.2s, border-color 0.2s; display: block; }
.report-card:hover { transform: translateY(-4px); border-color: var(--accent); text-decoration: none; }
.report-card .card-stat { font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.report-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.report-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
footer { text-align: center; padding: 32px 0; color: var(--text-muted); font-size: 12px; }
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X92N2FBZEW"></script>
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag("js",new Date());gtag("config","G-X92N2FBZEW");</script>
</head>
<body>
<nav class="site-nav"><div class="nav-inner"><a href="https://www.monitorworkspace.com" target="_blank" style="font-weight:700;color:var(--accent);">MonitorWorkspace</a><a href="index.html" class="active">Hub</a><a href="public_sector_report.html">Public Sector</a><a href="cross_sector_report.html">Cross-Sector</a><a href="state_rankings_report.html">State Rankings</a><a href="provider_security_report.html">Provider Security</a><a href="education_report.html">Education & K-12</a><a href="education_data_brief.html">Data Brief</a><a href="education_onepager.html">K-12 One-Pager</a><a href="texas_dir_onepager.html">Texas DIR</a></div></nav>
<div class="hero">
<h1>U.S. Domain & Email Security Intelligence</h1>
<p class="subtitle">Comprehensive analysis of email authentication, provider infrastructure, and security posture across public, private, and nonprofit sectors</p>
<div class="hero-stats">
<div class="hero-stat"><div class="big">406,680</div><div class="label">Domains Analyzed</div></div>
<div class="hero-stat"><div class="big">69,892</div><div class="label">Public Entities</div></div>
<div class="hero-stat"><div class="big">51</div><div class="label">Jurisdictions</div></div>
</div>
</div>
<div class="container">
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-bottom:32px;">
<a class="report-card" href="public_sector_report.html">
<div class="card-stat">47.2%</div>
<h3>Public Sector Email Security</h3>
<p>Only 47.2% of government domains have DMARC. Analysis of 69,892 entities across 8 entity types.</p>
</a>
<a class="report-card" href="cross_sector_report.html">
<div class="card-stat">406,680</div>
<h3>Cross-Sector DNS Comparison</h3>
<p>Large enterprises lead at 75.3% DMARC. SAM-native 6-segment analysis: Large Enterprise, Education, Nonprofit, Government, Small Business — 406,680 domains.</p>
</a>
<a class="report-card" href="state_rankings_report.html">
<div class="card-stat">51</div>
<h3>51-Jurisdiction Rankings</h3>
<p>DMARC adoption ranges widely across U.S. states. See who leads and who lags.</p>
</a>
<a class="report-card" href="provider_security_report.html">
<div class="card-stat">+22.7pp</div>
<h3>Provider & Gateway Intelligence</h3>
<p>Email infrastructure choice predicts security posture. Proxy services deliver +22.7pp DMARC uplift.</p>
</a>
<a class="report-card" href="education_report.html">
<div class="card-stat">8.2%</div>
<h3>Education & K-12 Security</h3>
<p>K-12 districts have the lowest email gateway adoption of any entity type. 18,476 districts across 51 states.</p>
</a>
<a class="report-card" href="education_onepager.html">
<div class="card-stat">K-12</div>
<h3>K-12 One-Pager</h3>
<p>Print-ready executive summary of K-12 email security findings. Designed for briefings, boards, and policy audiences.</p>
</a>
</div>
<div style="margin-bottom:12px;"><h2 style="font-size:14px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:16px;">Executive One-Pagers — Print-Ready Briefings</h2></div>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:32px;">
<a class="report-card" href="public_sector_onepager.html">
<div class="card-stat" style="font-size:20px;">Gov</div>
<h3>Public Sector One-Pager</h3>
<p>69,892 entities, entity-type gateway adoption, proxy uplift analysis. One-page briefing for policy and security leaders.</p>
</a>
<a class="report-card" href="cross_sector_onepager.html">
<div class="card-stat" style="font-size:20px;">6-Sector</div>
<h3>Cross-Sector One-Pager</h3>
<p>406,680 domains across 6 SAM-native segments. Large enterprise to small business comparison. Print-ready executive summary.</p>
</a>
<a class="report-card" href="state_rankings_onepager.html">
<div class="card-stat" style="font-size:20px;">51 States</div>
<h3>State Rankings One-Pager</h3>
<p>Top and bottom 10 state DMARC rankings. DC leads at 66.3%, ND trails at 22.8%. Designed for legislative briefings.</p>
</a>
<a class="report-card" href="provider_security_onepager.html">
<div class="card-stat" style="font-size:20px;">+22.7pp</div>
<h3>Provider Intelligence One-Pager</h3>
<p>Gateway DMARC rates by vendor. Cisco IronPort leads at 89.6%. Proxy uplift ROI analysis for procurement decisions.</p>
</a>
<a class="report-card" href="texas_dir_onepager.html">
<div class="card-stat" style="font-size:20px;color:#bf5700;">Texas</div>
<h3>Texas DIR Briefing</h3>
<p>6,365 TX public entities analyzed. K-12 ranks #3 nationally at 67.2% DMARC. Tailored for DIR security team briefings.</p>
</a>
</div>
<div style="background:linear-gradient(135deg,rgba(56,189,248,0.10) 0%,rgba(167,139,250,0.08) 100%);border:1px solid var(--accent);border-radius:12px;padding:28px;text-align:center;margin-bottom:32px;">
<div style="font-size:22px;font-weight:700;margin-bottom:8px;">Is your organization secure?</div>
<p style="color:var(--text-muted);max-width:600px;margin:0 auto 16px;">
We have email security scores for 69,892 public entities and 244,000+ businesses. Get your free scorecard — see how you compare to your peers and where the gaps are.
</p>
<a class="btn" href="https://www.monitorworkspace.com/scorecard" target="_blank" style="font-size:15px;padding:12px 32px;">Get Your Free Scorecard →</a>
</div>
<div class="kpi-row">
<div class="kpi"><div class="value">406,680</div><div class="label">Total Domains</div></div>
<div class="kpi green"><div class="value">85.1%</div><div class="label">SPF Adoption</div></div>
<div class="kpi yellow"><div class="value">51.0%</div><div class="label">DMARC Adoption</div></div>
<div class="kpi orange"><div class="value">14.2%</div><div class="label">Proxy Rate</div></div>
<div class="kpi purple"><div class="value">30.1%</div><div class="label">Google Workspace</div></div>
<div class="kpi"><div class="value">37.1%</div><div class="label">Microsoft 365</div></div>
</div>
<div class="section">
<h2>Methodology</h2>
<p style="color:var(--text-muted);font-size:14px;line-height:1.7;">
This research combines three primary data sources: a <strong>MonitorWorkspace public entity database</strong> (35,855 domains),
<strong>SAM.gov Entity Registration</strong> (375,124 domains from federal contractor/grantee registrations),
and a supplemental <strong>Small Business</strong> dataset (10,935 domains).
Domains are classified into 6 segments using SAM.gov's native <code>entity_type</code>, <code>business_size</code>, and NAICS fields:
Large Enterprise, Education, Nonprofit, Government, Other Business, and Small Business.
After deduplication, 406,680 unique domains were analyzed via DNS resolution, MX record lookup,
SPF/DMARC record parsing, and email provider classification. All data collected March 2026.
</p>
</div>
<footer>MonitorWorkspace · A Lokentra product · <a href="https://www.monitorworkspace.com">monitorworkspace.com</a> · 406,680 domains across 51 jurisdictions · March 2026</footer>
</div>
<script>
const COLORS = ['#38bdf8','#4ade80','#fbbf24','#f87171','#a78bfa','#fb923c','#f472b6','#2dd4bf','#818cf8','#e879f9','#34d399','#fcd34d','#f97316','#60a5fa','#c084fc','#67e8f9','#d946ef','#a3e635'];
const fmt = n => typeof n === 'number' ? n.toLocaleString() : n;
</script>
</body>
</html>