-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcross_sector_report.html
More file actions
325 lines (290 loc) · 20.2 KB
/
Copy pathcross_sector_report.html
File metadata and controls
325 lines (290 loc) · 20.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cross-Sector DNS Comparison — MonitorWorkspace</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 { 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; padding: 0; }
.hero-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 24px; }
.hero-title { text-align: left; }
.hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; line-height: 1.25; }
.hero .subtitle { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.hero-bullets { border-left: 4px solid var(--accent); padding-left: 20px; }
.hero-bullets ul { list-style: disc; padding-left: 16px; margin: 0; }
.hero-bullets li { margin-bottom: 10px; color: var(--text); font-size: 14px; line-height: 1.5; }
.hero-bullets li strong { color: var(--accent); }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 24px; } }
.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; columns: 2; gap: 24px; }
.callout li { margin-bottom: 6px; color: var(--text); font-size: 14px; break-inside: avoid; }
.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">Hub</a><a href="public_sector_report.html">Public Sector</a><a href="cross_sector_report.html" class="active">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">
<div class="hero-inner">
<div class="hero-title">
<h1>Large Enterprises Lead on Email Authentication — Government & Small Business Trail</h1>
<p class="subtitle">SAM-native cross-sector DNS and email security comparison across 406,680 domains classified by entity type, business size, and NAICS sector</p>
</div>
<div class="hero-bullets">
<ul>
<li><strong>Large enterprises dominate at 75.3% DMARC</strong> — nearly 30 percentage points ahead of government (52.2%) and small business (44.9%)</li>
<li><strong>Education sector at 60.7% DMARC</strong> reflects higher-ed institutions driving adoption; K-12 districts lag far behind</li>
<li><strong>23,526 government entities</strong> identified in SAM.gov not yet in MonitorWorkspace dataset — 21,132 are high-priority local/state entities</li>
<li><strong>406,680 unique domains</strong> classified using SAM.gov entity_type, business_size, and NAICS fields</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="section">
<h2>Sector Security Comparison <span class="badge">SAM-Native Classification</span></h2>
<p style="font-size:12px;color:var(--text-muted);margin-bottom:12px;">SPF, DMARC, and MX adoption rates across 6 sectors derived from SAM.gov entity_type + business_size. Ordered by DMARC adoption.</p>
<div class="chart-wrap-lg"><canvas id="chart-sectors"></canvas></div>
<div style="margin-top:16px;">
<table>
<thead><tr><th>Sector</th><th class="num">Domains</th><th class="num">MX %</th><th class="num">SPF %</th><th class="num">DMARC %</th><th class="num">Proxy %</th></tr></thead>
<tbody id="table-sectors"></tbody>
</table>
</div>
</div>
<div class="section">
<h2>Proxy (Email Gateway) Adoption by Sector</h2>
<p style="font-size:12px;color:var(--text-muted);margin-bottom:12px;">Domains using a dedicated email security gateway (Proofpoint, Mimecast, Barracuda, etc.) as their MX. Higher = more security investment.</p>
<div class="chart-wrap"><canvas id="chart-proxy-sector"></canvas></div>
</div>
<div class="section">
<h2>Government Entity Coverage Gap</h2>
<div class="grid-2">
<div>
<table>
<thead><tr><th>Metric</th><th class="num">Count</th></tr></thead>
<tbody>
<tr><td>SAM.gov government entities total</td><td class="num">70,762</td></tr>
<tr><td>Federal (out of scope)</td><td class="num">1,350</td></tr>
<tr><td>No domain registered</td><td class="num">33,548</td></tr>
<tr><td>Already in dataset</td><td class="num">12,338</td></tr>
<tr style="font-weight:600;color:var(--accent);"><td>Gap candidates (not yet covered)</td><td class="num">23,526</td></tr>
<tr><td> HIGH priority (Local + State gov)</td><td class="num">21,132</td></tr>
</tbody>
</table>
</div>
<div>
<table>
<thead><tr><th>Gap by Government Type</th><th class="num">Entities</th></tr></thead>
<tbody>
<tr><td>Government (Local)</td><td class="num">18,590</td></tr> <tr><td>Government (State)</td><td class="num">2,542</td></tr> <tr><td>Government (Other)</td><td class="num">2,171</td></tr> <tr><td>Government (Tribal)</td><td class="num">223</td></tr>
</tbody>
</table>
<p style="font-size:11px;color:var(--text-muted);margin-top:8px;">These are SAM-registered government entities with valid domains not yet in MonitorWorkspace's 35,855-domain public-sector dataset. Candidates for future dataset augmentation.</p>
</div>
</div>
</div>
<div class="section">
<h2>Email Provider Market Share</h2>
<p style="font-size:12px;color:var(--text-muted);margin-bottom:12px;">Top email providers by MX record — small businesses vs MonitorWorkspace public entities.</p>
<div class="grid-2">
<div><h3>Small Business</h3><div class="chart-wrap-sm"><canvas id="chart-ep-10ksb"></canvas></div></div>
<div><h3>Public Entities</h3><div class="chart-wrap-sm"><canvas id="chart-ep-public"></canvas></div></div>
</div>
</div>
<div class="section">
<h2>Proxy Uplift: Small Business vs Public Entities</h2>
<div class="grid-2">
<div><div class="chart-wrap"><canvas id="chart-proxy-cross"></canvas></div></div>
<div>
<table>
<thead><tr><th>Dataset</th><th class="num">Proxied SPF</th><th class="num">Proxied DMARC</th><th class="num">Non-Proxied SPF</th><th class="num">Non-Proxied DMARC</th></tr></thead>
<tbody>
<tr><td>Small Business</td><td class="num">99.4%</td><td class="num">61.1%</td><td class="num">85.1%</td><td class="num">54.6%</td></tr>
<tr><td>Public Entities</td><td class="num">97.3%</td><td class="num">75.7%</td><td class="num">89.2%</td><td class="num">53.0%</td></tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="cta-box">
<p style="font-size:15px;font-weight:600;color:var(--text);margin-bottom:6px;">How does your organization score?</p>
<p>Enter your domain at MonitorWorkspace to get a free personalized email security scorecard — benchmarked against your peers.</p>
<div style="display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:12px;">
<a class="btn" href="https://www.monitorworkspace.com/scorecard" target="_blank">Get Your Free Scorecard</a>
<a class="btn" style="background:var(--surface2);color:var(--text);" href="index.html">Back to Research Hub</a>
<a class="btn" style="background:var(--surface2);color:var(--text);" href="education_onepager.html">K-12 One-Pager →</a>
<a class="btn" style="background:var(--surface2);color:var(--text);" href="cross_sector_onepager.html">Cross-Sector One-Pager →</a>
</div>
</div>
<footer>MonitorWorkspace · A Lokentra product · <a href="https://www.monitorworkspace.com">monitorworkspace.com</a> · 406,680 domains · SAM-native segmentation · 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;
const SECTORS = [{"label":"Large Enterprise","key":"large_enterprise","total":26334,"mx":95.0,"spf":93.4,"dmarc":75.3,"proxy":29.7},{"label":"Education","key":"education","total":4199,"mx":91.5,"spf":83.2,"dmarc":60.7,"proxy":11.1},{"label":"Nonprofit","key":"nonprofit","total":84272,"mx":91.3,"spf":80.1,"dmarc":54.9,"proxy":11.4},{"label":"Government","key":"government","total":32710,"mx":86.9,"spf":81.2,"dmarc":52.2,"proxy":17.1},{"label":"Other Business","key":"other_business","total":29576,"mx":90.8,"spf":80.6,"dmarc":47.1,"proxy":13.6},{"label":"Small Business","key":"small_business","total":244137,"mx":90.9,"spf":82.2,"dmarc":44.9,"proxy":12.5}];
const OVL = {"generated_at":"2026-03-13T16:13:32.667987+00:00","total_unique_domains":406680,"source_coverage":{"uicc":35855,"sam":375124,"10ksb":10935},"overlaps":{"uicc_sam":13210,"uicc_10ksb":36,"sam_10ksb":2020,"all_three":32},"exclusive":{"uicc_only":22641,"sam_only":359926,"10ksb_only":8911},"sectors":{"small_business":244138,"nonprofit":84272,"government":32711,"other_business":29576,"large_enterprise":26334,"education":4199,"unknown":2},"dns_status":{"resolved":44814,"pending":361866}};
const EP_10KSB = [{"provider":"Google Workspace","count":4342,"share":48.8},{"provider":"Microsoft 365","count":2786,"share":31.3},{"provider":"Proofpoint","count":562,"share":6.3},{"provider":"AppRiver/Zix","count":115,"share":1.3},{"provider":"Barracuda","count":105,"share":1.2},{"provider":"Zoho","count":67,"share":0.8},{"provider":"IONOS","count":59,"share":0.7},{"provider":"Yahoo","count":55,"share":0.6}];
const EP_PUBLIC = [{"name":"Google Workspace","count":9988},{"name":"Microsoft 365","count":9202},{"name":"Other/Self-hosted","count":3607},{"name":"Barracuda","count":1368},{"name":"Proofpoint","count":1091},{"name":"GoDaddy","count":717},{"name":"Government","count":463},{"name":"Mimecast","count":456}];
// Sector comparison grouped bar
new Chart(document.getElementById('chart-sectors').getContext('2d'), {
type: 'bar',
data: {
labels: SECTORS.map(s => s.label),
datasets: [
{ label: 'MX %', data: SECTORS.map(s => s.mx), backgroundColor: '#38bdf8' },
{ label: 'SPF %', data: SECTORS.map(s => s.spf), backgroundColor: '#4ade80' },
{ label: 'DMARC %', data: SECTORS.map(s => s.dmarc), backgroundColor: '#fbbf24' },
]
},
options: {
responsive: true, maintainAspectRatio: false,
plugins: { legend: { labels: { color: '#94a3b8' } } },
scales: {
x: { ticks: { color: '#94a3b8' }, grid: { color: '#334155' } },
y: { beginAtZero: true, max: 100, ticks: { color: '#94a3b8', callback: v => v + '%' }, grid: { color: '#334155' } }
}
}
});
let sHtml = '';
SECTORS.forEach(s => {
const dc = s.dmarc >= 65 ? 'sec-good' : s.dmarc >= 45 ? 'sec-warn' : 'sec-bad';
sHtml += `<tr><td>${s.label}</td><td class="num">${fmt(s.total)}</td><td class="num">${s.mx}%</td><td class="num">${s.spf}%</td><td class="num"><span class="sec-badge ${dc}">${s.dmarc}%</span></td><td class="num">${s.proxy}%</td></tr>`;
});
document.getElementById('table-sectors').innerHTML = sHtml;
// Proxy adoption by sector horizontal bar
new Chart(document.getElementById('chart-proxy-sector').getContext('2d'), {
type: 'bar',
data: {
labels: SECTORS.map(s => s.label),
datasets: [{ label: 'Gateway Adoption %', data: SECTORS.map(s => s.proxy),
backgroundColor: SECTORS.map(s => s.proxy >= 20 ? '#4ade80' : s.proxy >= 12 ? '#fbbf24' : '#f87171') }]
},
options: {
indexAxis: 'y',
responsive: true, maintainAspectRatio: false,
plugins: { legend: { display: false } },
scales: {
x: { beginAtZero: true, max: 35, ticks: { color: '#94a3b8', callback: v => v + '%' }, grid: { color: '#334155' } },
y: { ticks: { color: '#94a3b8' }, grid: { color: '#334155' } }
}
}
});
// Provider doughnuts
new Chart(document.getElementById('chart-ep-10ksb').getContext('2d'), {
type: 'doughnut',
data: { labels: EP_10KSB.map(e => e.provider), datasets: [{ data: EP_10KSB.map(e => e.count), backgroundColor: COLORS.slice(0,8), borderWidth: 0 }] },
options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { position: 'bottom', labels: { color: '#94a3b8', font: { size: 10 }, boxWidth: 12 } } } }
});
new Chart(document.getElementById('chart-ep-public').getContext('2d'), {
type: 'doughnut',
data: { labels: EP_PUBLIC.map(e => e.name), datasets: [{ data: EP_PUBLIC.map(e => e.count), backgroundColor: COLORS.slice(0,8), borderWidth: 0 }] },
options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { position: 'bottom', labels: { color: '#94a3b8', font: { size: 10 }, boxWidth: 12 } } } }
});
// Cross-sector proxy comparison
new Chart(document.getElementById('chart-proxy-cross').getContext('2d'), {
type: 'bar',
data: {
labels: ['SB Proxied', 'SB Non-Proxied', 'Public Proxied', 'Public Non-Proxied'],
datasets: [
{ label: 'SPF %', data: [99.4, 85.1, 97.3, 89.2], backgroundColor: '#4ade80' },
{ label: 'DMARC %', data: [61.1, 54.6, 75.7, 53.0], backgroundColor: '#fbbf24' },
]
},
options: {
responsive: true, maintainAspectRatio: false,
plugins: { legend: { labels: { color: '#94a3b8' } } },
scales: {
x: { ticks: { color: '#94a3b8', font: { size: 11 } }, grid: { color: '#334155' } },
y: { beginAtZero: true, max: 100, ticks: { color: '#94a3b8', callback: v => v + '%' }, grid: { color: '#334155' } }
}
}
});
</script>
</body>
</html>