/* ==========================================================================
   247 Private Security — production stylesheet
   Adapted from prototype styles.css with full responsive breakpoints.
   Palette: #080808 black · #C41B1B red · silver gradient · #fff
   ========================================================================== */

:root {
	--bg: #080808;
	--bg-2: #0e0e0e;
	--bg-3: #141414;
	--line: rgba(192, 192, 192, 0.14);
	--line-strong: rgba(192, 192, 192, 0.28);
	--text: #f4f4f4;
	--text-dim: #a8a8a8;
	--text-faint: #6a6a6a;
	--accent: #C41B1B;
	--accent-deep: #8a0f0f;
	--silver-1: #6a6a6a;
	--silver-2: #c8c8c8;
	--silver-3: #f4f4f4;
	--silver-4: #8a8a8a;
	--font-display: "Bebas Neue", Impact, sans-serif;
	--font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	--headline-size: 148px;
	--grain-opacity: 0.08;
	--maxw: 1380px;
	--pad-x: 64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Skip link — accessibility */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--accent);
	color: #fff;
	padding: 12px 20px;
	font-weight: 600;
	z-index: 99999;
}
.skip-link:focus { left: 0; }

/* Page-level grain (toggled via Customizer) */
body::after {
	content: "";
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	opacity: var(--grain-opacity);
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --------------------------- Brand stripe --------------------------- */
.brand-stripe { display: flex; flex-direction: column; width: 100%; }
.brand-stripe__silver-top, .brand-stripe__silver-bottom {
	height: 3px;
	background: linear-gradient(90deg, #2c2c2c 0%, #6a6a6a 8%, #f0f0f0 50%, #6a6a6a 92%, #2c2c2c 100%);
}
.brand-stripe__red {
	height: 14px;
	background: linear-gradient(180deg, #d72121 0%, #C41B1B 50%, #8a0f0f 100%);
	position: relative;
}
.brand-stripe__red::before, .brand-stripe__red::after {
	content: ""; position: absolute; left: 0; right: 0; height: 1px;
	background: rgba(0, 0, 0, 0.5);
}
.brand-stripe__red::before { top: 0; }
.brand-stripe__red::after { bottom: 0; }
.brand-stripe--thin .brand-stripe__red { height: 6px; }
.brand-stripe--thin .brand-stripe__silver-top, .brand-stripe--thin .brand-stripe__silver-bottom { height: 2px; }

/* --------------------------- Silver text --------------------------- */
.silver-text {
	background: linear-gradient(180deg,
		var(--silver-3) 0%, var(--silver-2) 25%, var(--silver-4) 50%,
		var(--silver-3) 60%, var(--silver-2) 80%, var(--silver-1) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* --------------------------- Buttons --------------------------- */
.btn {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 14px 22px;
	font-family: var(--font-display);
	letter-spacing: 0.12em;
	font-size: 15px;
	font-weight: 400;
	border: 1px solid transparent;
	cursor: pointer;
	position: relative;
	transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
	white-space: nowrap;
	clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn--lg { padding: 18px 26px; font-size: 16px; }
.btn--red { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--red:hover { transform: translateY(-1px); background: #d62121; }
.btn--ghost { background: transparent; color: var(--silver-2); border-color: var(--line-strong); }
.btn--ghost:hover { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn--black { background: #000; color: #fff; border-color: #000; }
.btn--black:hover { background: #1a1a1a; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.08); }

/* --------------------------- Navbar --------------------------- */
.nav {
	position: sticky; top: 0; z-index: 50;
	background: #0a0a0a;
	color: #f4f4f4;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--font-body);
}

/* Utility strip */
.nav__util {
	background: #050505;
	color: #9a9a9a;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 12px;
}
.nav__util-inner {
	max-width: var(--maxw); margin: 0 auto;
	padding: 10px var(--pad-x);
	display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.nav__util-left, .nav__util-right { display: flex; align-items: center; gap: 14px; flex-wrap: nowrap; white-space: nowrap; }
.nav__util-sep { color: #3a3a3a; }
.nav__util-link { color: #c4c4c4; transition: color 0.15s; }
.nav__util-link:hover { color: #fff; }

/* Main bar */
.nav__main { background: #0a0a0a; }
.nav__main-inner {
	max-width: var(--maxw); margin: 0 auto;
	padding: 0 var(--pad-x);
	height: 108px;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 40px;
}

.nav__brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.nav__brand-logo { width: 64px; height: 64px; object-fit: contain; }
.nav__brand-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name { font-family: var(--font-body); font-size: 22px; font-weight: 600; color: #fff; }
.nav__brand-tag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #8a8a8a; margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; justify-content: center; }
.nav__link {
	display: inline-flex; align-items: center;
	padding: 12px 16px;
	font-size: 14.5px; font-weight: 500;
	color: #d4d4d4;
	position: relative;
	transition: color 0.15s;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
	content: ""; position: absolute;
	left: 16px; right: 16px; bottom: 8px;
	height: 2px; background: var(--accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.2s ease;
}
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.nav__link--active { color: #fff; }

.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone {
	display: flex; flex-direction: column; line-height: 1.1;
	text-align: right; color: #fff;
	padding-right: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__phone-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #8a8a8a; }
.nav__phone-num { font-size: 17px; font-weight: 600; color: #fff; margin-top: 4px; }
.nav__cta {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 13px 22px;
	background: var(--accent); color: #fff;
	font-size: 14px; font-weight: 600;
	border: 1px solid var(--accent);
	white-space: nowrap;
	transition: background 0.15s, border-color 0.15s;
}
.nav__cta:hover { background: #a91515; border-color: #a91515; }

/* Hamburger toggle (mobile) */
.nav__toggle {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 1px solid var(--line-strong);
	cursor: pointer;
	flex-direction: column; justify-content: center; align-items: center; gap: 5px;
	padding: 0;
}
.nav__toggle span {
	display: block;
	width: 22px; height: 2px;
	background: #fff;
	transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 5, 0.98);
	z-index: 49;
	overflow-y: auto;
	padding: 120px 24px 40px;
}
.nav__mobile[aria-hidden="false"] { display: block; }
.nav__mobile-inner { max-width: 600px; margin: 0 auto; }
.nav__mobile-list {
	list-style: none; margin: 0 0 32px; padding: 0;
	display: flex; flex-direction: column; gap: 4px;
}
.nav__mobile-list a {
	display: block;
	padding: 18px 4px;
	font-family: var(--font-display);
	font-size: 32px;
	letter-spacing: 0.04em;
	color: #fff;
	border-bottom: 1px solid var(--line);
}
.nav__mobile-actions { display: flex; flex-direction: column; gap: 12px; }

/* --------------------------- Hero --------------------------- */
.hero {
	position: relative;
	background: radial-gradient(900px 700px at 78% 50%, rgba(196, 27, 27, 0.18) 0%, rgba(196, 27, 27, 0) 60%), var(--bg);
	overflow: hidden;
}

.hero__video-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.hero__video--yt {
	width: 177.78vw; height: 100vh;
	min-width: 100%; min-height: 56.25vw;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%) scale(1.35);
	pointer-events: none;
}
.hero__video-fallback {
	position: absolute; inset: 0;
	background:
		radial-gradient(800px 600px at 70% 40%, rgba(196, 27, 27, 0.35) 0%, transparent 60%),
		radial-gradient(600px 500px at 25% 70%, rgba(40, 40, 40, 0.55) 0%, transparent 60%),
		linear-gradient(135deg, #0c0c0c 0%, #050505 60%, #0a0a0a 100%);
}
.hero__video-fallback-anim {
	position: absolute; inset: -10%;
	background-image:
		radial-gradient(2px 2px at 12% 18%, rgba(255, 255, 255, 0.18), transparent 50%),
		radial-gradient(1.5px 1.5px at 32% 64%, rgba(196, 27, 27, 0.55), transparent 50%),
		radial-gradient(1.5px 1.5px at 58% 28%, rgba(255, 255, 255, 0.14), transparent 50%),
		radial-gradient(2px 2px at 76% 80%, rgba(255, 255, 255, 0.18), transparent 50%),
		radial-gradient(1.5px 1.5px at 88% 42%, rgba(196, 27, 27, 0.45), transparent 50%);
	animation: heroDrift 28s linear infinite alternate;
}
@keyframes heroDrift {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(-3%, -2%, 0) scale(1.05); }
}
.hero__video-vignette {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}
.hero__video-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 35%, rgba(8, 8, 8, 0.45) 60%, rgba(8, 8, 8, 0.6) 100%),
		linear-gradient(180deg, rgba(8, 8, 8, 0.6) 0%, transparent 25%, transparent 75%, rgba(8, 8, 8, 0.85) 100%);
}
.hero--video .hero__grid-bg { opacity: 0.18; }
.hero__grid-bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
	opacity: 0.5;
}
.hero__inner {
	position: relative; z-index: 2;
	max-width: var(--maxw); margin: 0 auto;
	padding: 80px var(--pad-x) 100px;
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	gap: 56px;
	align-items: center;
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px;
	border: 1px solid var(--line-strong);
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.22em;
	color: var(--silver-2);
	margin-bottom: 28px;
}
.hero__title {
	font-family: var(--font-display);
	font-size: var(--headline-size);
	line-height: 0.86;
	margin: 0 0 28px;
	font-weight: 400;
	color: #fff;
	display: flex; flex-direction: column;
}
.hero__title-line { display: block; }
.hero__title-period { color: var(--accent); }
.hero__title-sub {
	font-size: calc(var(--headline-size) * 0.18);
	letter-spacing: 0.06em;
	color: var(--silver-2);
	margin-top: 18px;
}
.hero__lede {
	max-width: 540px;
	font-size: 17px; line-height: 1.55;
	color: var(--text-dim);
	margin: 0 0 36px;
}
.hero__cta-row { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero__credentials { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cred { display: flex; flex-direction: column; line-height: 1.1; }
.cred__num { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--accent); }
.cred__val { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.08em; color: var(--silver-2); margin-top: 4px; }
.cred__sep { width: 1px; height: 26px; background: var(--line-strong); }

.hero__right { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.hero__shield-glow {
	position: absolute; inset: -10%;
	background: radial-gradient(circle at center, rgba(196, 27, 27, 0.55) 0%, rgba(196, 27, 27, 0.18) 30%, rgba(196, 27, 27, 0) 65%);
	filter: blur(20px);
	z-index: 0;
}
.hero__shield-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; }
.ring { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; }
.ring--1 { width: 78%; height: 78%; }
.ring--2 { width: 92%; height: 92%; border-style: dashed; opacity: 0.6; }
.ring--3 {
	width: 60%; height: 60%;
	border-color: rgba(196, 27, 27, 0.4);
	border-style: dashed;
	animation: spin 60s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero__shield {
	position: relative; z-index: 2;
	width: 70%;
	filter: drop-shadow(0 30px 60px rgba(196, 27, 27, 0.45)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}
.hero__shield-readout { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); z-index: 3; }
.readout {
	display: flex; align-items: center; gap: 12px;
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid var(--line-strong);
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.18em;
	color: var(--silver-2);
}
.readout__dot {
	width: 8px; height: 8px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--accent);
	animation: pulse 1.6s ease-in-out infinite;
}
.readout__sep { color: var(--text-faint); }
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
.hero__corner {
	position: absolute; width: 28px; height: 28px;
	border-color: var(--accent); border-style: solid; border-width: 0;
	z-index: 3;
}
.hero__corner--tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.hero__corner--tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.hero__corner--bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.hero__corner--br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.psig-hero-frame .hero__shield-glow,
.psig-hero-frame .hero__shield-rings { display: none; }
.psig-hero-frame .hero__shield { width: 60%; filter: none; }

/* --------------------------- Ticker --------------------------- */
.ticker {
	background: var(--accent);
	border-top: 1px solid rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
	content: ""; position: absolute;
	top: 0; bottom: 0; width: 80px;
	z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--accent), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--accent), transparent); }
.ticker__track {
	display: flex; align-items: center; gap: 56px;
	padding: 18px 0; white-space: nowrap;
	animation: tickerScroll 50s linear infinite;
}
.ticker__item {
	display: inline-flex; align-items: center; gap: 18px;
	font-family: var(--font-display);
	font-size: 22px; letter-spacing: 0.16em;
	color: #fff;
}
.ticker__star { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
@keyframes tickerScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}

/* --------------------------- Section head --------------------------- */
.section-head { margin-bottom: 56px; }
.section-head__eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.22em;
	color: var(--silver-2);
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.section-head__row {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 56px; align-items: end;
}
.section-head__title {
	font-family: var(--font-display);
	font-size: 84px; line-height: 0.92;
	margin: 0; color: #fff; font-weight: 400;
}
.section-head__lede {
	margin: 0; color: var(--text-dim);
	font-size: 16px; max-width: 520px;
	justify-self: end;
}
.section-head__action { justify-self: end; }

/* --------------------------- Services --------------------------- */
.services { max-width: var(--maxw); margin: 0 auto; padding: 120px var(--pad-x) 80px; }
.services__grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 1px; background: var(--line);
	border: 1px solid var(--line);
}
.svc-card {
	position: relative;
	background: var(--bg-2);
	padding: 36px 32px 32px;
	display: flex; flex-direction: column;
	min-height: 360px;
	transition: background 0.18s;
}
.svc-card:hover { background: #161616; }
.svc-card__top-accent {
	position: absolute; top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 30%, transparent 30%, transparent 100%);
}
.svc-card--featured { background: linear-gradient(180deg, #1a0808 0%, #0e0e0e 100%); }
.svc-card--featured .svc-card__top-accent { background: var(--accent); }
.svc-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.svc-card__num { font-family: var(--font-display); font-size: 40px; color: var(--silver-2); line-height: 1; }
.svc-card__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); }
.svc-card__title { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; color: #fff; margin: 0 0 14px; font-weight: 400; line-height: 1.05; }
.svc-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--text-dim); margin: 0 0 20px; }
.svc-card__bullets {
	list-style: none; margin: 0 0 28px; padding: 0 0 20px;
	border-bottom: 1px dashed var(--line);
	display: flex; flex-direction: column; gap: 8px;
}
.svc-card__bullets li { display: flex; align-items: baseline; gap: 10px; font-size: 13px; color: var(--silver-2); letter-spacing: 0.04em; }
.svc-card__bullet-mark { color: var(--accent); }
.svc-card__more {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-display);
	font-size: 14px; letter-spacing: 0.18em;
	color: #fff; padding-top: 4px;
	align-self: flex-start;
}
.svc-card__more:hover { color: var(--accent); }

/* --------------------------- Stats --------------------------- */
.stats {
	display: grid; grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.stats__item {
	padding: 44px 40px;
	display: flex; flex-direction: column; gap: 10px;
	border-right: 1px solid var(--line);
	position: relative;
}
.stats__item:last-child { border-right: 0; }
.stats__item::before {
	content: ""; position: absolute;
	top: 0; left: 0;
	width: 28px; height: 2px;
	background: var(--accent);
}
.stats__index { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-faint); }
.stats__main { display: flex; align-items: baseline; gap: 10px; }
.stats__value { font-family: var(--font-display); font-size: 88px; line-height: 0.9; color: #fff; }
.stats__unit { font-family: var(--font-display); font-size: 22px; color: var(--accent); letter-spacing: 0.12em; }
.stats__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--silver-2); text-transform: uppercase; }

/* --------------------------- Coverage --------------------------- */
.coverage {
	background: var(--bg);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 96px var(--pad-x) 96px;
	max-width: var(--maxw); margin: 0 auto;
}
.coverage__header { margin-bottom: 56px; }
.coverage__header-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: end; margin-top: 18px; }
.coverage__title { font-family: var(--font-display); font-size: 84px; line-height: 0.92; color: #fff; margin: 0; font-weight: 400; }
.coverage__lede { font-size: 15px; line-height: 1.6; color: var(--text-dim); margin: 0; max-width: 480px; }
.coverage__map-full { position: relative; margin-bottom: 32px; }
.coverage__below { display: flex; flex-direction: column; gap: 28px; }
.coverage__stats-row {
	display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr;
	gap: 24px;
	border-top: 1px solid var(--line);
	padding-top: 28px;
}
.coverage__stat { border-left: 2px solid var(--accent); padding: 4px 0 4px 18px; }
.coverage__stat-num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: #fff; }
.coverage__stat-num span { font-size: 22px; margin-left: 6px; color: var(--silver-2); letter-spacing: 0.06em; }
.coverage__stat-unit { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--text-dim); margin-top: 8px; }
.coverage__tiers-row {
	display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: start;
	border: 1px solid var(--line-strong);
	background: rgba(0, 0, 0, 0.4);
	padding: 22px 24px;
}
.coverage__tiers-head {
	font-family: var(--font-mono);
	font-size: 11px; letter-spacing: 0.28em;
	color: var(--accent);
	padding: 6px 0;
	border-right: 1px solid var(--line);
	height: 100%;
	display: flex; align-items: center;
}
.coverage__tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coverage__tier { border-left: 2px solid var(--accent); padding-left: 14px; }
.coverage__tier-t { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: #fff; margin-bottom: 2px; }
.coverage__tier-d { font-size: 12.5px; color: var(--text-dim); line-height: 1.5; }
.coverage__seal {
	border: 1px solid var(--line-strong); background: rgba(0, 0, 0, 0.5);
	padding: 14px 16px;
	display: flex; flex-direction: column; gap: 6px;
}
.coverage__seal-row { display: flex; justify-content: space-between; gap: 16px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; }
.coverage__seal-row > :first-child { color: var(--accent); }
.coverage__seal-row > :last-child { color: var(--silver-2); text-transform: uppercase; }

/* The map itself */
.map {
	position: relative;
	aspect-ratio: 1000 / 520;
	background: #050608;
	border: 1px solid var(--line-strong);
	overflow: hidden;
}
.map__svg { display: block; width: 100%; height: 100%; }
.map__bracket {
	position: absolute; width: 18px; height: 18px;
	border: 1px solid var(--accent);
	pointer-events: none; z-index: 2;
}
.map__bracket--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.map__bracket--tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.map__bracket--bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.map__bracket--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.map__coord { position: absolute; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; color: rgba(192, 192, 192, 0.55); z-index: 2; background: rgba(5, 6, 8, 0.7); padding: 3px 6px; }
.map__coord--tl { top: 12px; left: 36px; }
.map__coord--tr { top: 12px; right: 36px; }
.map__coord--bl { bottom: 12px; left: 36px; }
.map__coord--br { bottom: 12px; right: 36px; }
.map__readout {
	position: absolute; top: 36px; right: 36px;
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px;
	background: rgba(5, 6, 8, 0.85);
	border: 1px solid var(--accent);
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.2em;
	color: #fff; z-index: 2;
}
.map__readout-dot {
	width: 7px; height: 7px;
	background: var(--accent); border-radius: 50%;
	animation: mapPulse 2s ease-in-out infinite;
}
.map__readout-sep { color: var(--accent); }
.map__readout-val { color: var(--silver-2); }
.map__legend {
	position: absolute; bottom: 36px; right: 36px;
	background: rgba(5, 6, 8, 0.85);
	border: 1px solid var(--line-strong);
	padding: 12px 14px;
	display: flex; flex-direction: column; gap: 8px;
	font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em;
	color: var(--silver-2); z-index: 2;
}
.map__legend-row { display: flex; align-items: center; gap: 10px; }
.map__legend-swatch { width: 14px; height: 14px; display: inline-block; flex-shrink: 0; }
.map__legend-swatch--hq { background: var(--accent); border: 1px solid #fff; }
.map__legend-swatch--zone { border: 1px solid var(--accent); background: rgba(196, 27, 27, 0.25); border-radius: 50%; }
.map__legend-swatch--radius { border: 1px dashed var(--accent); background: transparent; border-radius: 50%; }
.map__pulse { transform-origin: center; transform-box: fill-box; animation: mapMarkerPulse 2.4s ease-out infinite; }
@keyframes mapPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(196, 27, 27, 0.7); }
	50% { box-shadow: 0 0 0 8px rgba(196, 27, 27, 0); }
}
@keyframes mapMarkerPulse {
	0% { transform: scale(1); opacity: 0.9; }
	100% { transform: scale(2.4); opacity: 0; }
}

/* --------------------------- Sectors --------------------------- */
.sectors { max-width: var(--maxw); margin: 0 auto; padding: 120px var(--pad-x) 80px; }
.sectors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector { display: flex; flex-direction: column; }
.sector__media {
	position: relative;
	aspect-ratio: 3 / 4;
	background: var(--bg-2);
	border: 1px solid var(--line);
	overflow: hidden;
	margin-bottom: 18px;
}
.sector__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sector__placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background-image: repeating-linear-gradient(45deg, #131313 0 12px, #0c0c0c 12px 24px);
}
.sector__placeholder-label {
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.18em;
	color: var(--text-faint);
	padding: 6px 10px;
	border: 1px dashed var(--line-strong);
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
}
.sector__media-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
}
.sector__code {
	position: absolute; top: 12px; left: 12px;
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.2em;
	color: #fff; background: var(--accent);
	padding: 4px 8px; z-index: 2;
}
.sector__corner {
	position: absolute;
	width: 16px; height: 16px;
	border-color: var(--silver-2); border-style: solid; border-width: 0;
	z-index: 2;
}
.sector__corner--tl { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.sector__corner--br { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }
.sector__title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: #fff; margin: 0 0 4px; font-weight: 400; line-height: 1.1; }
.sector__note { margin: 0; font-size: 13px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.08em; }

/* --------------------------- CTA Band --------------------------- */
.ctaband {
	position: relative;
	background: linear-gradient(135deg, var(--accent) 0%, #a91515 100%);
	overflow: hidden;
}
.ctaband__noise {
	position: absolute; inset: 0;
	opacity: 0.18;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/><feColorMatrix type='matrix' values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0   0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	mix-blend-mode: overlay;
}
.ctaband::before {
	content: ""; position: absolute; inset: 0;
	background-image: repeating-linear-gradient(-45deg, transparent 0 30px, rgba(0, 0, 0, 0.08) 30px 31px);
}
.ctaband__inner {
	position: relative;
	max-width: var(--maxw); margin: 0 auto;
	padding: 80px var(--pad-x);
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 64px; align-items: center;
}
.ctaband__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; }
.ctaband__title { font-family: var(--font-display); font-size: 92px; line-height: 0.9; color: #fff; margin: 0; font-weight: 400; }
.ctaband__lede { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.92); margin: 0 0 28px; max-width: 520px; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------- Testimonials --------------------------- */
.testi { background: #060707; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 96px 0 0; position: relative; overflow: hidden; }
.testi__head { max-width: var(--maxw); margin: 0 auto 48px; padding: 0 var(--pad-x); }
.testi__head-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: end; margin-top: 18px; }
.testi__title { font-family: var(--font-display); font-size: 84px; line-height: 0.92; color: #fff; margin: 0; font-weight: 400; }
.testi__lede { font-size: 15px; line-height: 1.6; color: var(--text-dim); margin: 0; max-width: 440px; }
.testi__grid {
	position: relative;
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 24px; height: 600px;
	padding: 0 var(--pad-x) 96px;
	overflow: hidden;
}
.testi__col { position: relative; height: 100%; overflow: hidden; }
.testi__track {
	display: flex; flex-direction: column; gap: 20px;
	animation: testiUp 60s linear infinite;
	will-change: transform;
}
.testi__col--1 .testi__track { animation-duration: 70s; }
.testi__col--2 .testi__track { animation-duration: 90s; animation-delay: -20s; }
.testi__col--3 .testi__track { animation-duration: 80s; animation-delay: -45s; }
.testi__col:hover .testi__track { animation-play-state: paused; }
@keyframes testiUp {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
}
.testi__fade { position: absolute; left: 0; right: 0; height: 120px; pointer-events: none; z-index: 2; }
.testi__fade--top { top: 0; background: linear-gradient(180deg, #060707 0%, rgba(6, 7, 7, 0) 100%); }
.testi__fade--bot { bottom: 96px; background: linear-gradient(0deg, #060707 0%, rgba(6, 7, 7, 0) 100%); }
.quote { background: #0c0d0e; border: 1px solid var(--line); padding: 24px 22px 22px; position: relative; flex-shrink: 0; }
.quote::before { content: ""; position: absolute; top: 0; left: 0; width: 32px; height: 2px; background: var(--accent); }
.quote__mark { font-family: var(--font-display); font-size: 56px; color: var(--accent); line-height: 0.6; display: block; margin-bottom: 6px; opacity: 0.7; }
.quote__body { font-size: 14.5px; line-height: 1.55; color: #e8e8ea; margin: 0 0 18px; }
.quote__meta { border-top: 1px dashed var(--line); padding-top: 12px; display: flex; flex-direction: column; gap: 2px; }
.quote__who { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.06em; color: #fff; }
.quote__where { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--silver-2); text-transform: uppercase; }
.quote__since { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.22em; color: var(--accent); margin-top: 4px; }

/* --------------------------- Credentials --------------------------- */
.creds { background: var(--bg); border-top: 1px solid var(--line); padding: 72px var(--pad-x); }
.creds__inner { max-width: var(--maxw); margin: 0 auto; }
.creds__head { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-bottom: 40px; }
.creds__rule { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.4) 50%, transparent 100%); }
.creds__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.4em; color: var(--silver-2); }
.creds__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.crd {
	position: relative;
	background:
		radial-gradient(circle at 30% 20%, rgba(196, 27, 27, 0.06) 0%, transparent 60%),
		linear-gradient(160deg, #0d0e10 0%, #060708 100%);
	border: 1px solid var(--line-strong);
	padding: 22px 16px 18px;
	text-align: center;
	aspect-ratio: 1 / 1;
	display: flex; flex-direction: column; justify-content: center;
}
.crd__inner { display: flex; flex-direction: column; gap: 6px; }
.crd__top { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.28em; color: var(--silver-2); }
.crd__mid { font-family: var(--font-display); font-size: 44px; line-height: 0.95; letter-spacing: 0.04em; color: #fff; margin: 6px 0 4px; }
.crd--ins .crd__mid, .crd--firearm .crd__mid { color: var(--accent); }
.crd__sub { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.18em; color: var(--text-dim); text-transform: uppercase; line-height: 1.4; min-height: 24px; }
.crd__code { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; color: var(--accent); margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--line); }
.crd__corner { position: absolute; width: 8px; height: 8px; border: 1px solid var(--accent); pointer-events: none; }
.crd__corner--tl { top: 6px; left: 6px; border-right: none; border-bottom: none; }
.crd__corner--tr { top: 6px; right: 6px; border-left: none; border-bottom: none; }
.crd__corner--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; }
.crd__corner--br { bottom: 6px; right: 6px; border-left: none; border-top: none; }

.creds__pay { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 24px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.creds__pay-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; color: var(--text-faint); }
.creds__pay-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.paylogo {
	display: inline-flex; align-items: center;
	height: 32px; padding: 0 14px;
	border: 1px solid var(--line);
	background: rgba(20, 20, 22, 0.6);
	font-family: var(--font-mono);
	font-size: 10.5px; letter-spacing: 0.18em;
	color: var(--silver-2); font-weight: 600;
}
.paylogo--visa { font-family: ui-serif, Georgia, serif; font-style: italic; font-weight: 800; font-size: 18px; color: #1A1F71; background: #f5f5f7; border-color: #f5f5f7; }
.paylogo--amex { background: #006FCF; color: #fff; border-color: #006FCF; font-size: 9.5px; font-weight: 700; }
.paylogo--mc { position: relative; padding: 0 14px 0 38px; background: #0a0a0a; border-color: #0a0a0a; color: #fff; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 11px; text-transform: lowercase; font-weight: 600; }
.paylogo__mc { position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; transform: translateY(-50%); }
.paylogo__mc--a { left: 8px; background: #EB001B; }
.paylogo__mc--b { left: 18px; background: #F79E1B; mix-blend-mode: screen; }
.paylogo--disc { background: #ff6f1c; color: #0b0b0b; border-color: #ff6f1c; font-size: 10px; font-weight: 700; }
.paylogo--ach, .paylogo--check { font-size: 10px; letter-spacing: 0.22em; }

/* --------------------------- Footer --------------------------- */
.footer { background: #050505; }
.footer__inner {
	max-width: var(--maxw); margin: 0 auto;
	padding: 72px var(--pad-x) 56px;
	display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 56px;
}
.footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.footer__logo { width: 72px; height: 72px; object-fit: contain; }
.footer__name { display: block; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer__addr { margin: 0 0 10px; font-family: var(--font-mono); font-size: 12px; color: var(--silver-2); line-height: 1.55; letter-spacing: 0.08em; }
.footer__lic { margin: 0; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col-h { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 8px; }
.footer__col a { font-size: 14px; color: var(--silver-2); transition: color 0.15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
	border-top: 1px solid var(--line);
	padding: 22px var(--pad-x);
	max-width: var(--maxw); margin: 0 auto;
	display: flex; justify-content: space-between; gap: 24px;
	flex-wrap: wrap;
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.18em;
	color: var(--text-faint);
}
.footer__bottom-mid { color: var(--silver-2); }

/* --------------------------- Forms --------------------------- */
.psig-form {
	max-width: 720px; margin: 0 auto;
	display: flex; flex-direction: column; gap: 18px;
}
.psig-form-row { display: flex; flex-direction: column; gap: 6px; }
.psig-form-row label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--silver-2); }
.psig-form-row input, .psig-form-row textarea, .psig-form-row select {
	width: 100%;
	padding: 14px 16px;
	background: var(--bg-2);
	border: 1px solid var(--line-strong);
	color: #fff;
	font-family: var(--font-body); font-size: 15px;
	transition: border-color 0.15s;
}
.psig-form-row input:focus, .psig-form-row textarea:focus, .psig-form-row select:focus {
	outline: 0; border-color: var(--accent);
}
.psig-form-row textarea { min-height: 140px; resize: vertical; }
.psig-form-honey { position: absolute; left: -9999px; }
.psig-form-msg { padding: 14px 18px; border-left: 3px solid var(--accent); background: rgba(196, 27, 27, 0.08); font-size: 14px; }
.psig-form-msg--ok { border-color: #0b9b6f; background: rgba(11, 155, 111, 0.08); }

/* --------------------------- Breadcrumbs --------------------------- */
.psig-crumbs ol { list-style: none; margin: 0; padding: 18px 0; display: flex; gap: 8px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--text-faint); }
.psig-crumbs li:not(:last-child)::after { content: "·"; color: var(--accent); margin-left: 8px; }
.psig-crumbs a { color: var(--silver-2); }
.psig-crumbs a:hover { color: #fff; }

/* --------------------------- Generic page wrapper --------------------------- */
.page-wrap { max-width: var(--maxw); margin: 0 auto; padding: 80px var(--pad-x); }
.page-wrap h1 { font-family: var(--font-display); font-size: 64px; line-height: 0.92; margin: 0 0 32px; color: #fff; font-weight: 400; }
.page-wrap h2 { font-family: var(--font-display); font-size: 36px; margin: 32px 0 12px; color: #fff; font-weight: 400; }
.page-wrap p, .page-wrap li { color: var(--text-dim); }
.page-wrap a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* --------------------------- Captcha --------------------------- */
.psig-captcha {
	gap: 8px;
}
.psig-captcha__row {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(0, 1fr);
	gap: 8px;
	align-items: stretch;
}
.psig-captcha__image {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0e0e0e;
	border: 1px solid var(--line-strong);
	min-height: 56px;
	overflow: hidden;
	position: relative;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--text-faint);
}
.psig-captcha__image.is-loading::after {
	content: "";
	position: absolute; inset: 0;
	background: repeating-linear-gradient(45deg, rgba(196, 27, 27, 0.04) 0 8px, transparent 8px 16px);
	animation: psigCapShift 1s linear infinite;
}
@keyframes psigCapShift { from { background-position: 0 0; } to { background-position: 16px 0; } }
.psig-captcha__img { display: block; max-width: 100%; height: auto; }
.psig-captcha__math {
	font-family: var(--font-display);
	font-size: 22px;
	letter-spacing: 0.06em;
	color: #fff;
	padding: 0 12px;
}
.psig-captcha__refresh {
	width: 44px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--line-strong);
	color: var(--silver-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.psig-captcha__refresh:hover, .psig-captcha__refresh:focus-visible {
	color: #fff;
	border-color: var(--accent);
	background: rgba(196, 27, 27, 0.1);
	outline: none;
}
.psig-captcha__refresh svg { display: block; }
.psig-captcha input[data-captcha-input] {
	font-family: var(--font-mono);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 16px;
}
@media (max-width: 600px) {
	.psig-captcha__row {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}
	.psig-captcha__image { grid-column: 1 / 2; grid-row: 1; }
	.psig-captcha__refresh { grid-column: 2 / 3; grid-row: 1; }
	.psig-captcha input[data-captcha-input] { grid-column: 1 / 3; grid-row: 2; }
}

/* --------------------------- Mega menu --------------------------- */

/* The wrapper that owns both the trigger anchor and the floating panel.
   Position: relative — actual positioning of the panel is fixed-to-nav. */
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__item--mega .nav__link::after { content: ""; display: inline-block; margin-left: 6px; width: 0; height: 0;
	border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor;
	opacity: 0.5; transition: transform 0.18s ease, opacity 0.18s ease; }
.nav__item--mega.is-open .nav__link::after,
.nav__item--mega:hover .nav__link::after { transform: rotate(180deg); opacity: 1; }

/* Floating panel — fixed position so it spans the full nav width. */
.mega {
	position: fixed;
	left: 50%;
	top: 0; /* JS sets this on open to align with the bottom of the nav bar */
	transform: translate(-50%, -8px);
	max-width: min(1280px, calc(100vw - 32px));
	background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
	border: 1px solid var(--line-strong);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(196, 27, 27, 0.18);
	padding: 28px 28px 24px;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.nav__item--mega.is-open .mega,
.nav__item--mega:focus-within .mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.mega__bracket {
	position: absolute; width: 16px; height: 16px;
	border: 1px solid var(--accent); pointer-events: none;
}
.mega__bracket--tl { top: 8px;    left: 8px;    border-right: 0; border-bottom: 0; }
.mega__bracket--tr { top: 8px;    right: 8px;   border-left: 0;  border-bottom: 0; }
.mega__bracket--bl { bottom: 8px; left: 8px;    border-right: 0; border-top: 0;    }
.mega__bracket--br { bottom: 8px; right: 8px;   border-left: 0;  border-top: 0;    }

.mega__inner {
	display: grid;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}
.mega__inner--cols-1 { grid-template-columns: 1fr; }
.mega__inner--cols-2 { grid-template-columns: repeat(2, 1fr); }
.mega__inner--cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega__inner--cols-4 { grid-template-columns: repeat(4, 1fr); }

.mega__col { display: flex; flex-direction: column; min-width: 0; }
.mega__col-img {
	width: 100%;
	max-width: 340px;       /* cap so a 1-column or wide panel doesn't stretch the photo */
	height: auto;
	aspect-ratio: 16 / 10;
	background: #141414 center/cover no-repeat;
	border: 1px solid var(--line);
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.18s ease, transform 0.18s ease;
}
.mega__col-img::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	pointer-events: none;
}
.mega__col:hover .mega__col-img { border-color: var(--accent); }

.mega__col-img--placeholder {
	background-image: repeating-linear-gradient(45deg, #131313 0 12px, #0c0c0c 12px 24px);
	display: flex; align-items: center; justify-content: center;
}
.mega__col-img-label {
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
	color: var(--text-faint);
	padding: 6px 10px;
	border: 1px dashed var(--line-strong);
	background: rgba(0, 0, 0, 0.5);
}

.mega__col-h {
	font-family: var(--font-display);
	font-size: 18px;
	letter-spacing: 0.16em;
	color: #fff;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--accent);
	position: relative;
}
.mega__col-h::after {
	content: "";
	position: absolute; left: 0; right: 60%; bottom: -1px;
	height: 1px; background: rgba(255, 255, 255, 0.4);
}
a.mega__col-h:hover { color: var(--accent); }

.mega__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mega__list a {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	color: var(--silver-2);
	letter-spacing: 0.02em;
	transition: color 0.15s ease, padding-left 0.15s ease;
	border-left: 2px solid transparent;
	padding-left: 0;
}
.mega__list a:hover,
.mega__list a:focus-visible {
	color: #fff;
	padding-left: 8px;
	border-left-color: var(--accent);
	outline: none;
}

/* Plain dropdown (when a top-level item has children but no mega flag) */
.nav__dropdown {
	position: absolute; top: 100%; left: 0;
	min-width: 220px;
	margin: 0; padding: 8px 0;
	list-style: none;
	background: #0c0c0c;
	border: 1px solid var(--line-strong);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
	z-index: 60;
}
.nav__item--dropdown.is-open .nav__dropdown,
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
	opacity: 1; visibility: visible; transform: translateY(0);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.nav__dropdown a {
	display: block;
	padding: 8px 16px;
	font-size: 14px;
	color: var(--silver-2);
}
.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
	background: #161616; color: #fff; outline: none;
}

/* On phones the mega panel is replaced by the existing slide-out drawer.
   Hide both desktop dropdown layers under 861px — drawer takes over. */
@media (max-width: 860px) {
	.mega, .nav__dropdown { display: none !important; }
	.nav__item--mega .nav__link::after { display: none; }
}

/* --------------------------- Mobile drawer accordion --------------------------- */
.nav__mobile-has-sub > details { padding: 0; }
.nav__mobile-has-sub summary {
	list-style: none;
	cursor: pointer;
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 0;
	font-family: var(--font-display);
	font-size: 22px;
	letter-spacing: 0.06em;
	color: #fff;
	border-bottom: 1px solid var(--line);
}
.nav__mobile-has-sub summary::-webkit-details-marker,
.nav__mobile-has-sub summary::marker { display: none; }
.nav__mobile-chevron {
	width: 10px; height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.nav__mobile-has-sub details[open] .nav__mobile-chevron { transform: rotate(-135deg); }
.nav__mobile-sub { padding: 12px 0 18px; }
.nav__mobile-sub-overview {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--accent);
	padding: 6px 0;
}
.nav__mobile-group-h {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--silver-2);
	margin: 14px 0 6px;
	padding-bottom: 6px;
	border-bottom: 1px dashed var(--line);
	text-transform: uppercase;
}
.nav__mobile-group-h--link { color: var(--accent); }
.nav__mobile-group {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column;
}
.nav__mobile-group a {
	display: block;
	padding: 10px 0;
	font-size: 15px;
	color: var(--silver-2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav__mobile-group a:hover, .nav__mobile-group a:focus-visible { color: #fff; }

/* --------------------------- Contact page --------------------------- */
.contact {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 80px var(--pad-x) 96px;
}
.contact .section-head__row {
	grid-template-columns: 1.1fr 1fr;
	align-items: start;
	gap: 48px;
}
.contact .section-head__lede {
	justify-self: start;
	max-width: 540px;
	color: var(--text-dim);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}
.contact .section-head__lede p { margin: 0; }
.contact .section-head__title { font-size: clamp(56px, 8vw, 96px); }
@media (max-width: 900px) {
	.contact .section-head__row { grid-template-columns: 1fr; gap: 24px; }
}
.contact__grid {
	display: grid;
	grid-template-columns: 1.6fr 0.9fr;
	gap: 56px;
	align-items: start;
	margin-top: 32px;
}
.contact__form-wrap {
	background: linear-gradient(180deg, #0c0d0f 0%, #08090b 100%);
	border: 1px solid var(--line-strong);
	padding: 44px 44px 40px;
	position: relative;
}
.contact__form-wrap::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 28%, transparent 28%);
}
.contact__form-head { margin-bottom: 28px; }
.contact__form-eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.28em;
	color: var(--accent);
	margin-bottom: 8px;
}
.contact__form-title {
	font-family: var(--font-display);
	font-size: 40px;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0;
	font-weight: 400;
	line-height: 1;
}

/* Override the form's column layout — bigger inputs, two-up phone+email row */
.contact .psig-form { display: flex; flex-direction: column; gap: 20px; max-width: none; }
.contact .psig-form-row { display: flex; flex-direction: column; gap: 8px; }
.contact .psig-form-row label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.24em;
	color: var(--silver-2);
}
.contact .psig-form-row input,
.contact .psig-form-row textarea {
	width: 100%;
	padding: 14px 16px;
	font: inherit;
	font-size: 15px;
	font-family: var(--font-body);
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--line-strong);
	border-radius: 0;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.contact .psig-form-row input::placeholder,
.contact .psig-form-row textarea::placeholder { color: var(--text-faint); }
.contact .psig-form-row input:focus,
.contact .psig-form-row textarea:focus {
	border-color: var(--accent);
	background: rgba(0, 0, 0, 0.6);
	outline: none;
}
.contact .psig-form-row textarea { resize: vertical; min-height: 140px; }

.psig-form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact__form-footer {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	margin-top: 8px; flex-wrap: wrap;
}
.contact__form-fineprint {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.18em;
	color: var(--text-dim);
}

/* Sidebar */
.contact__sidebar { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact__row { display: flex; flex-direction: column; gap: 6px; }
.contact__row-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.24em;
	color: var(--accent);
}
.contact__row-val {
	font-family: var(--font-display);
	font-size: 24px;
	letter-spacing: 0.04em;
	color: #fff;
	transition: color 0.12s;
}
.contact__row-val:hover { color: var(--accent); }
.contact__row-val--lg { font-size: 38px; line-height: 1; }
.contact__row-val--sm { font-size: 18px; }
.contact__addr {
	font-family: var(--font-mono);
	font-style: normal;
	font-size: 13px;
	color: var(--silver-2);
	line-height: 1.6;
	letter-spacing: 0.06em;
}
.contact__lic {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--accent);
	margin-top: 6px;
}
.contact__seal {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid var(--line-strong);
	background: rgba(0, 0, 0, 0.5);
	font-family: var(--font-mono);
	font-size: 9.5px;
	letter-spacing: 0.2em;
	color: var(--silver-2);
	margin-top: 10px;
}
.contact__seal-dot {
	width: 7px; height: 7px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--accent);
	animation: pulse 1.6s ease-in-out infinite;
	flex-shrink: 0;
}
.contact__seal-sep { color: var(--accent); }

/* Map */
.contact__map {
	position: relative;
	margin-top: 64px;
	aspect-ratio: 16 / 7;
	border: 1px solid var(--line-strong);
	background: #0a0a0a;
	overflow: hidden;
}
.contact__map iframe {
	width: 100%;
	height: 100%;
}
.contact__map-bracket {
	position: absolute; width: 18px; height: 18px;
	border: 1px solid var(--accent);
	pointer-events: none;
	z-index: 2;
}
.contact__map-bracket--tl { top: 12px;    left: 12px;    border-right: 0; border-bottom: 0; }
.contact__map-bracket--tr { top: 12px;    right: 12px;   border-left: 0;  border-bottom: 0; }
.contact__map-bracket--bl { bottom: 12px; left: 12px;    border-right: 0; border-top: 0;    }
.contact__map-bracket--br { bottom: 12px; right: 12px;   border-left: 0;  border-top: 0;    }
.contact__map-readout {
	position: absolute;
	top: 36px;
	left: 36px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: rgba(5, 6, 8, 0.92);
	border: 1px solid var(--accent);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: #fff;
	z-index: 2;
}
.contact__map-readout-dot {
	width: 7px; height: 7px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--accent);
	animation: pulse 1.6s ease-in-out infinite;
}
.contact__map-readout-sep { color: var(--accent); }

@media (max-width: 1100px) {
	.contact__grid { grid-template-columns: 1fr; gap: 40px; }
	.contact__form-wrap { padding: 32px 28px 28px; }
	.contact__form-title { font-size: 32px; }
	.contact__row-val--lg { font-size: 32px; }
	.contact__map { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
	.psig-form-row-2 { grid-template-columns: 1fr; }
	.contact { padding: 56px var(--pad-x) 64px; }
	.contact__form-wrap { padding: 24px 20px 20px; }
	.contact__map-readout { top: 16px; left: 16px; font-size: 9px; padding: 6px 10px; }
}

/* --------------------------- Coverage zone list (mobile map fallback) --------------------------- */
.coverage__zone-list {
	display: none;
	list-style: none; margin: 0; padding: 16px;
	border: 1px solid var(--line-strong);
	background: rgba(0, 0, 0, 0.4);
	flex-direction: column; gap: 4px;
	font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
	color: var(--silver-2);
}
.coverage__zone-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.coverage__zone-list li + li { border-top: 1px dashed var(--line); }
.coverage__zone-list-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.coverage__zone-list-hq { color: #fff; font-weight: 600; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong); margin-bottom: 4px; }
.coverage__zone-list-hq .coverage__zone-list-dot { width: 8px; height: 8px; box-shadow: 0 0 0 2px rgba(196, 27, 27, 0.4); }
.coverage__zone-list-code { color: var(--accent); font-size: 10px; letter-spacing: 0.2em; min-width: 38px; }

/* --------------------------- Focus visibility (a11y) --------------------------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 1px;
}
.btn:focus-visible { outline-offset: 4px; }
.nav__link:focus-visible { outline-offset: -4px; }
.psig-form-row input:focus-visible, .psig-form-row textarea:focus-visible, .psig-form-row select:focus-visible {
	outline-offset: 0; outline-color: var(--accent);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1280px) {
	:root { --pad-x: 40px; --maxw: 100%; --headline-size: 128px; }
	.section-head__title, .coverage__title, .testi__title { font-size: 72px; }
	.ctaband__title { font-size: 76px; }
	.stats__value { font-size: 72px; }
}

@media (max-width: 1100px) {
	:root { --pad-x: 32px; --headline-size: 100px; }
	.nav__main-inner { grid-template-columns: auto 1fr auto auto; gap: 24px; height: 88px; }
	.nav__brand-tag { display: none; }
	.nav__brand-name { font-size: 18px; }
	.nav__brand-logo { width: 52px; height: 52px; }
	.nav__phone { padding-right: 16px; border-right: 0; }

	.hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px var(--pad-x) 80px; }
	.hero__right { max-width: 480px; margin: 0 auto; }
	.hero__lede { max-width: 100%; }

	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stats__item:nth-child(2) { border-right: 0; }
	.stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--line); }

	.coverage__header-row { grid-template-columns: 1fr; gap: 24px; }
	.coverage__stats-row { grid-template-columns: 1fr 1fr; }
	.coverage__tiers-row { grid-template-columns: 1fr; }
	.coverage__tiers-head { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 12px; }

	.sectors__grid { grid-template-columns: repeat(2, 1fr); }

	.creds__grid { grid-template-columns: repeat(3, 1fr); }
	.testi__title { font-size: 56px; }
	.testi__head-row { grid-template-columns: 1fr; gap: 20px; }
	.testi__grid { grid-template-columns: 1fr 1fr; }
	.testi__col--3 { display: none; }

	.ctaband__inner { grid-template-columns: 1fr; gap: 32px; padding: 64px var(--pad-x); }

	.footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
	.footer__brand { grid-column: span 2; }
}

@media (max-width: 860px) {
	:root { --headline-size: 76px; --pad-x: 24px; }

	/* Nav: collapse links into hamburger */
	.nav__util-inner { font-size: 11px; padding: 8px var(--pad-x); }
	.nav__util-left span:nth-child(n+3), .nav__util-left .nav__util-sep:nth-of-type(n+2) { display: none; }
	.nav__main-inner { grid-template-columns: auto 1fr auto; gap: 12px; height: 72px; }
	.nav__links { display: none; }
	.nav__phone { display: none; }
	.nav__cta { display: none; }
	.nav__toggle { display: flex; justify-self: end; }

	/* Cap hero shield height so it doesn't push CTAs below the fold */
	.hero__right { max-width: 320px; max-height: 320px; }
	.hero__shield { width: 65%; }

	.section-head__row { grid-template-columns: 1fr; gap: 20px; }
	.section-head__lede { justify-self: start; max-width: 100%; }
	.section-head__title { font-size: 56px; }
	.section-head__action { justify-self: start; }

	.coverage { padding: 64px var(--pad-x); }
	.coverage__title { font-size: 56px; }
	.coverage__stats-row { grid-template-columns: 1fr; }
	.coverage__tiers-grid { grid-template-columns: 1fr; }
	.coverage__stat-num { font-size: 44px; }
	.map { aspect-ratio: 1000 / 700; }
	.map__readout, .map__legend { font-size: 8.5px; padding: 6px 10px; gap: 6px; right: 16px; }
	.map__readout { top: 16px; }
	.map__legend { bottom: 16px; }

	.sectors { padding: 64px var(--pad-x); }

	.testi { padding: 64px 0 0; }
	.testi__head { padding: 0 var(--pad-x); }
	.testi__title { font-size: 44px; }
	.testi__grid { grid-template-columns: 1fr; height: 520px; padding: 0 var(--pad-x) 64px; }
	.testi__col--2 { display: none; }
	.testi__fade--bot { bottom: 64px; }

	.creds { padding: 56px var(--pad-x); }
	.creds__head { grid-template-columns: 1fr; gap: 12px; text-align: center; }
	.creds__grid { grid-template-columns: repeat(2, 1fr); }
	.crd__mid { font-size: 36px; }

	.ctaband__title { font-size: 56px; }
	.ctaband__lede { font-size: 16px; }

	.footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 56px var(--pad-x) 32px; }
	.footer__brand { grid-column: span 1; }
	.footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px var(--pad-x); }

	.services { padding: 64px var(--pad-x); }
	.services__grid { grid-template-columns: 1fr; }
	.svc-card { min-height: auto; }

	.stats { grid-template-columns: 1fr 1fr; }
	.stats__item { padding: 28px 20px; }
	.stats__value { font-size: 56px; }
}

@media (max-width: 700px) {
	/* SVG map labels become unreadable below this width — show a tidy zone list instead. */
	.map { display: none; }
	.coverage__zone-list { display: flex; }
}

@media (max-width: 520px) {
	:root { --headline-size: 60px; --pad-x: 18px; }
	.hero__title-sub { font-size: 18px; }
	.section-head__title, .coverage__title { font-size: 44px; }
	.testi__title { font-size: 36px; }
	.ctaband__title { font-size: 44px; }
	.stats { grid-template-columns: 1fr; }
	.stats__item { border-right: 0; border-bottom: 1px solid var(--line); }
	.stats__item:last-child { border-bottom: 0; }
	.creds__grid { grid-template-columns: 1fr 1fr; }
	.btn { font-size: 13px; padding: 12px 16px; }
	.btn--lg { font-size: 14px; padding: 14px 18px; }
	.hero__credentials { gap: 12px; }
	.cred__sep { display: none; }
	.cred__val { font-size: 13px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.ring--3, .ticker__track, .testi__track, .map__pulse, .readout__dot, .map__readout-dot, .hero__video-fallback-anim {
		animation: none !important;
	}
	*, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ACF missing warning */
.psig247-acf-missing::before {
	content: "Theme requires Advanced Custom Fields plugin";
	display: block;
	background: #ffae00;
	color: #000;
	padding: 12px;
	text-align: center;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
}
