/*
 * SafetyGatePro storefront presentation
 *
 * This file is intentionally scoped to the exact SafetyGatePro body classes
 * and .sgp-site document. It must not affect the other MAS portfolio sites.
 */

body.sgp-brand-surface,
.sgp-site {
	--sgp-navy: #082b4c;
	--sgp-navy-dark: #031d35;
	--sgp-navy-soft: #123f65;
	--sgp-gold: #f2b600;
	--sgp-gold-bright: #ffc400;
	--sgp-ink: #0c1825;
	--sgp-steel: #586574;
	--sgp-muted: #687481;
	--sgp-canvas: #f5f7f8;
	--sgp-paper: #fff;
	--sgp-line: #d9e0e6;
	--sgp-success: #17643a;
	--sgp-error: #a32727;
	--sgp-focus: #1677d2;
	--sgp-container: 1320px;
	--sgp-gutter: clamp(1.25rem, 4.25vw, 4.5rem);
	--sgp-section: clamp(4.5rem, 7vw, 7.25rem);
	--sgp-display: "Arial Narrow", "Roboto Condensed", "Barlow Condensed", Impact, sans-serif;
	--sgp-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--sgp-shadow-sm: 0 10px 28px rgb(8 43 76 / 9%);
	--sgp-shadow-md: 0 18px 44px rgb(3 29 53 / 14%);
	color: var(--sgp-ink);
	font-family: var(--sgp-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.sgp-storefront-document {
	margin: 0;
	background: var(--sgp-paper);
}

.sgp-site,
.sgp-site *,
.sgp-site *::before,
.sgp-site *::after {
	box-sizing: border-box;
}

.sgp-site {
	min-width: 0;
	overflow: clip;
	background: var(--sgp-paper);
}

.sgp-site :where(img, picture, svg) {
	display: block;
	max-width: 100%;
}

.sgp-site :where(button, input, select, textarea) {
	font: inherit;
}

.sgp-site :where(a) {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .2em;
}

.sgp-site :where(a, button, input, select, textarea, summary):focus-visible,
body.sgp-native-commerce :where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--sgp-focus);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #fff;
}

.sgp-site :where(h1, h2, h3, p, ul, ol, figure) {
	margin-top: 0;
}

.sgp-site :where(h1, h2, h3) {
	color: var(--sgp-navy-dark);
}

.sgp-container {
	width: min(calc(100% - (var(--sgp-gutter) * 2)), var(--sgp-container));
	margin-inline: auto;
}

.sgp-icon {
	width: 2rem;
	height: 2rem;
	flex: 0 0 auto;
}

.sgp-skip-link,
.sgp-skip-link:link,
.sgp-skip-link:visited {
	position: fixed;
	z-index: 100000;
	top: .75rem;
	left: .75rem;
	transform: translateY(-180%);
	padding: .8rem 1rem;
	background: #fff;
	color: #111;
	font-weight: 800;
	box-shadow: var(--sgp-shadow-md);
}

.sgp-skip-link:focus {
	transform: translateY(0);
}

/* Utility and primary navigation */
.sgp-utility-bar {
	background: var(--sgp-navy-dark);
	color: #fff;
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.sgp-utility-row {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 3.5vw, 3rem);
	min-height: 2rem;
}

.sgp-utility-row > :last-child {
	margin-left: auto;
}

.sgp-utility-row span,
.sgp-utility-row a {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
}

.sgp-utility-row .sgp-icon {
	width: 1rem;
	height: 1rem;
	color: var(--sgp-gold);
}

.sgp-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgb(255 255 255 / 96%);
	border-bottom: 1px solid var(--sgp-line);
	box-shadow: 0 6px 18px rgb(3 29 53 / 5%);
	backdrop-filter: blur(14px);
}

.sgp-header-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(13rem, 19rem) minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1.25rem, 2.5vw, 2.75rem);
	min-height: 5.25rem;
}

.sgp-logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	text-decoration: none;
}

.sgp-logo img {
	width: auto;
	max-width: 18rem;
	height: 3.55rem;
	object-fit: contain;
	object-position: left center;
}

.sgp-nav {
	justify-self: center;
}

.sgp-nav-list {
	display: flex;
	align-items: center;
	gap: clamp(.9rem, 1.55vw, 1.6rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.sgp-nav-list a {
	position: relative;
	display: block;
	padding-block: 1rem;
	font-size: .75rem;
	font-weight: 850;
	letter-spacing: .035em;
	text-decoration: none;
	text-transform: uppercase;
}

.sgp-nav-list a::after {
	position: absolute;
	right: 0;
	bottom: .55rem;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--sgp-gold);
	content: "";
	transition: transform 180ms ease;
}

.sgp-nav-list a:hover::after,
.sgp-nav-list a[aria-current="page"]::after {
	transform: scaleX(1);
}

.sgp-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	min-width: 3rem;
	min-height: 3rem;
	padding: .65rem;
	border: 1px solid var(--sgp-line);
	border-radius: .25rem;
	background: #fff;
	color: var(--sgp-navy);
	font-size: .75rem;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
}

.sgp-nav-toggle i,
.sgp-nav-toggle i::before,
.sgp-nav-toggle i::after {
	display: block;
	width: 1.4rem;
	height: 2px;
	background: currentColor;
}

.sgp-nav-toggle i {
	position: relative;
	transition: background 160ms ease;
}

.sgp-nav-toggle i::before,
.sgp-nav-toggle i::after {
	position: absolute;
	left: 0;
	content: "";
	transition: transform 160ms ease, top 160ms ease;
}

.sgp-nav-toggle i::before { top: -.42rem; }
.sgp-nav-toggle i::after { top: .42rem; }

.sgp-nav-toggle[aria-expanded="true"] i { background: transparent; }
.sgp-nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.sgp-nav-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.sgp-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: .7rem;
}

.sgp-tool-link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	min-height: 2.75rem;
	font-size: .72rem;
	font-weight: 800;
	text-decoration: none;
}

.sgp-tool-link .sgp-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.sgp-header-cta,
.sgp-button,
.sgp-site .maspc-button,
body.sgp-native-commerce .button,
body.sgp-native-commerce button.button,
body.sgp-native-commerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	min-height: 3rem;
	padding: .72rem 1.15rem;
	border: 2px solid transparent;
	border-radius: .25rem;
	background: var(--sgp-gold);
	color: var(--sgp-navy-dark);
	font-family: var(--sgp-body);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .055em;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.sgp-header-cta:hover,
.sgp-button-primary:hover,
.sgp-site .maspc-button:hover,
body.sgp-native-commerce .button:hover,
body.sgp-native-commerce button.button:hover,
body.sgp-native-commerce input.button:hover {
	transform: translateY(-2px);
	background: var(--sgp-gold-bright);
	color: var(--sgp-navy-dark);
	box-shadow: 0 10px 24px rgb(3 29 53 / 18%);
}

.sgp-button-ghost {
	border-color: rgb(255 255 255 / 80%);
	background: rgb(8 43 76 / 38%);
	color: #fff;
}

.sgp-button-ghost:hover {
	background: #fff;
	color: var(--sgp-navy-dark);
}

.sgp-button-outline {
	border-color: var(--sgp-navy);
	background: transparent;
	color: var(--sgp-navy);
}

.sgp-button-outline:hover {
	background: var(--sgp-navy);
	color: #fff;
}

/* Homepage hero */
.sgp-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: clamp(35rem, 47vw, 43rem);
	overflow: hidden;
	background: var(--sgp-navy-dark);
	color: #fff;
}

.sgp-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgb(3 29 53 / 97%) 0%, rgb(3 29 53 / 92%) 30%, rgb(3 29 53 / 66%) 47%, rgb(3 29 53 / 16%) 72%, transparent 100%);
	content: "";
}

.sgp-hero-media,
.sgp-hero-media > picture,
.sgp-hero-media > img,
.sgp-hero-media .sgp-custom-hero,
.sgp-hero-media .sgp-custom-hero-image {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.sgp-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sgp-hero-inner {
	display: flex;
	align-items: center;
	min-height: inherit;
	padding-block: clamp(4rem, 7vw, 7rem);
}

.sgp-hero-copy {
	width: min(42rem, 54%);
}

.sgp-eyebrow,
.sgp-section-heading > p,
.sgp-application-copy > p:first-child,
.sgp-industry-band .sgp-container > p,
.sgp-quote-copy > p:first-child,
.sgp-product-body > p,
.sgp-inner-hero .sgp-container > p {
	margin: 0 0 1rem;
	color: var(--sgp-gold);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.sgp-hero h1 {
	max-width: 14ch;
	margin: 0;
	color: #fff;
	font-family: var(--sgp-display);
	font-size: clamp(3.7rem, 6.2vw, 6.5rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: .88;
	text-transform: uppercase;
	text-wrap: balance;
}

.sgp-hero h1::first-line {
	color: #fff;
}

.sgp-hero-copy > p:not(.sgp-eyebrow) {
	max-width: 41rem;
	margin: 1.5rem 0 0;
	color: rgb(255 255 255 / 90%);
	font-size: clamp(1rem, 1.35vw, 1.22rem);
	line-height: 1.58;
}

.sgp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	margin-top: 2rem;
}

.sgp-actions .sgp-button {
	min-width: 12.75rem;
}

.sgp-hero-proofs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	max-width: 43rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.sgp-hero-proofs li {
	display: flex;
	align-items: center;
	gap: .7rem;
	min-height: 3.6rem;
	padding-right: 1rem;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .025em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sgp-hero-proofs li + li {
	padding-left: 1rem;
	border-left: 1px solid rgb(255 255 255 / 34%);
}

.sgp-hero-proofs .sgp-icon {
	width: 2.25rem;
	height: 2.25rem;
	color: var(--sgp-gold);
}

.sgp-image-note {
	position: absolute;
	right: max(var(--sgp-gutter), calc((100vw - var(--sgp-container)) / 2));
	bottom: .75rem;
	margin: 0;
	padding: .25rem .45rem;
	background: rgb(3 29 53 / 78%);
	color: rgb(255 255 255 / 82%);
	font-size: .62rem;
	line-height: 1.35;
}

/* Shared sections and headings */
.sgp-section {
	padding-block: var(--sgp-section);
}

.sgp-section-heading {
	display: grid;
	grid-template-columns: minmax(10rem, .34fr) minmax(0, 1fr) minmax(15rem, .54fr);
	gap: 1rem clamp(1.5rem, 4vw, 3.75rem);
	align-items: start;
	margin-bottom: clamp(2.25rem, 4vw, 4rem);
}

.sgp-section-heading > p {
	padding-top: .5rem;
	color: var(--sgp-navy);
}

.sgp-section-heading h2,
.sgp-application-copy h2,
.sgp-industry-band h2,
.sgp-quote-copy h2,
.sgp-inner-hero h1,
.sgp-cta-band h2 {
	margin: 0;
	font-family: var(--sgp-display);
	font-size: clamp(2.7rem, 4.4vw, 4.8rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .94;
	text-transform: uppercase;
	text-wrap: balance;
}

.sgp-section-heading > span {
	padding-top: .35rem;
	color: var(--sgp-muted);
	font-size: .98rem;
	line-height: 1.7;
}

.sgp-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
}

.sgp-heading-row > div {
	max-width: 58rem;
}

.sgp-heading-row h2 {
	margin: 0;
	font-family: var(--sgp-display);
	font-size: clamp(2.6rem, 4.2vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .95;
	text-transform: uppercase;
	text-wrap: balance;
}

.sgp-heading-row > a {
	flex: 0 0 auto;
	padding-bottom: .25rem;
	color: var(--sgp-navy);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.sgp-heading-row > a:hover {
	color: #735600;
}

/* Category rail */
.sgp-category-section {
	background: var(--sgp-paper);
}

.sgp-carousel-shell {
	position: relative;
}

.sgp-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: .75rem;
}

.sgp-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 17.5rem;
	padding: .7rem .7rem 1rem;
	overflow: hidden;
	border: 1px solid var(--sgp-line);
	border-radius: .4rem;
	background: #fff;
	box-shadow: 0 8px 22px rgb(8 43 76 / 5%);
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sgp-category-card:hover {
	transform: translateY(-4px);
	border-color: var(--sgp-gold);
	box-shadow: var(--sgp-shadow-md);
}

.sgp-category-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 10rem;
	margin-bottom: .9rem;
	overflow: hidden;
	background: linear-gradient(145deg, #fafbfc, #eef2f4);
	color: var(--sgp-navy);
}

.sgp-category-visual::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4.3rem;
	height: 4.3rem;
	transform: translate(-50%, -50%) rotate(-12deg);
	border: 1rem solid var(--sgp-gold);
	border-radius: 1rem;
	opacity: .2;
	content: "";
}

.sgp-category-visual .sgp-icon {
	position: relative;
	z-index: 1;
	width: 5.5rem;
	height: 5.5rem;
	stroke-width: 1.45;
}

.sgp-category-card strong {
	color: var(--sgp-navy-dark);
	font-size: .94rem;
	line-height: 1.25;
}

.sgp-category-card small {
	display: block;
	margin-top: .35rem;
	padding-right: 1rem;
	color: var(--sgp-muted);
	font-size: .72rem;
	line-height: 1.4;
}

.sgp-category-card i {
	position: absolute;
	right: .8rem;
	bottom: .85rem;
	color: var(--sgp-navy);
	font-style: normal;
	font-weight: 900;
}

.sgp-carousel-next {
	display: none;
}

/* Proof band */
.sgp-proof-band {
	background: linear-gradient(115deg, var(--sgp-navy-dark), var(--sgp-navy));
	color: #fff;
}

.sgp-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sgp-proof-grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 1rem;
	align-content: center;
	min-height: 10rem;
	padding: 2rem clamp(1.5rem, 3vw, 3.25rem);
}

.sgp-proof-grid > div + div {
	border-left: 1px solid rgb(255 255 255 / 24%);
}

.sgp-proof-grid .sgp-icon {
	grid-row: 1 / span 2;
	width: 3rem;
	height: 3rem;
	color: var(--sgp-gold);
}

.sgp-proof-grid strong {
	font-size: .9rem;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.sgp-proof-grid span {
	margin-top: .25rem;
	color: rgb(255 255 255 / 78%);
	font-size: .78rem;
	line-height: 1.45;
}

/* Products */
.sgp-featured-section {
	background: var(--sgp-canvas);
}

.sgp-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .9rem;
}

.sgp-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--sgp-line);
	border-radius: .4rem;
	background: #fff;
	box-shadow: var(--sgp-shadow-sm);
}

.sgp-product-image {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / .8;
	overflow: hidden;
	background: #f7f8f9;
}

.sgp-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: .75rem;
	transition: transform 220ms ease;
}

.sgp-product-card:hover .sgp-product-image img {
	transform: scale(1.025);
}

.sgp-product-placeholder {
	background: linear-gradient(145deg, #fafbfc, #e8edf0);
	color: var(--sgp-navy);
}

.sgp-product-placeholder .sgp-icon {
	width: 5.75rem;
	height: 5.75rem;
	stroke-width: 1.35;
}

.sgp-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem;
}

.sgp-product-body > p {
	margin-bottom: .5rem;
	color: #765900;
	font-size: .62rem;
	letter-spacing: .09em;
}

.sgp-product-body h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.25;
}

.sgp-product-body h3 a {
	text-decoration: none;
}

.sgp-product-body > span {
	display: block;
	margin-top: .55rem;
	color: var(--sgp-muted);
	font-size: .78rem;
	line-height: 1.5;
}

.sgp-product-price {
	margin-top: .7rem;
	color: var(--sgp-navy-dark);
	font-size: 1rem;
	font-weight: 850;
}

.sgp-product-price del {
	color: var(--sgp-muted);
	font-size: .8em;
}

.sgp-product-status {
	margin-top: .7rem;
	padding: .45rem .6rem;
	border-left: 3px solid var(--sgp-gold);
	background: #fff8df;
	color: #614900;
	font-size: .72rem;
	font-weight: 750;
	line-height: 1.45;
}

.sgp-product-link {
	margin-top: auto;
	padding-top: 1.1rem;
	color: var(--sgp-navy);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.sgp-catalog-note {
	max-width: 78rem;
	margin: 1.5rem auto 0;
	color: var(--sgp-muted);
	font-size: .72rem;
	line-height: 1.6;
	text-align: center;
}

/* Application, industries, reasons and quote */
.sgp-application-section {
	background: #fff;
}

.sgp-application-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(22rem, .92fr);
	gap: clamp(2rem, 5vw, 5.25rem);
	align-items: center;
}

.sgp-application-media {
	position: relative;
	overflow: hidden;
	border-radius: .45rem;
	background: var(--sgp-canvas);
	box-shadow: var(--sgp-shadow-md);
}

.sgp-application-media img {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
}

.sgp-application-media span {
	position: absolute;
	bottom: .75rem;
	left: .75rem;
	padding: .45rem .65rem;
	background: rgb(3 29 53 / 88%);
	color: #fff;
	font-size: .64rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sgp-application-copy > p:first-child {
	color: #765900;
}

.sgp-application-copy > p:not(:first-child) {
	max-width: 42rem;
	margin: 1.4rem 0 0;
	color: var(--sgp-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.sgp-application-copy .sgp-button {
	margin-top: 1.8rem;
}

.sgp-industry-band {
	padding-block: clamp(3.75rem, 6vw, 6rem);
	background: var(--sgp-navy-dark);
	color: #fff;
}

.sgp-industry-band h2 {
	max-width: 56rem;
	color: #fff;
}

.sgp-industry-band ul {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: .6rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.sgp-industry-band li {
	display: grid;
	place-items: center;
	min-height: 5.75rem;
	padding: 1rem;
	border: 1px solid rgb(255 255 255 / 22%);
	color: rgb(255 255 255 / 88%);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .035em;
	text-align: center;
	text-transform: uppercase;
}

.sgp-industry-band a {
	display: inline-block;
	margin-top: 1.5rem;
	color: var(--sgp-gold);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.sgp-why-section {
	background: var(--sgp-paper);
}

.sgp-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--sgp-line);
}

.sgp-why-grid article {
	min-width: 0;
	padding: clamp(1.5rem, 3vw, 2.6rem);
}

.sgp-why-grid article + article {
	border-left: 1px solid var(--sgp-line);
}

.sgp-why-grid .sgp-icon {
	width: 2.8rem;
	height: 2.8rem;
	color: var(--sgp-gold);
}

.sgp-why-grid h3 {
	margin: 1.3rem 0 .7rem;
	font-size: 1.05rem;
	line-height: 1.25;
}

.sgp-why-grid p {
	margin: 0;
	color: var(--sgp-muted);
	font-size: .88rem;
	line-height: 1.65;
}

.sgp-quote-section,
.sgp-inner-form-section {
	background: linear-gradient(125deg, var(--sgp-navy-dark), var(--sgp-navy));
	color: #fff;
}

.sgp-quote-grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(32rem, 1.2fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.sgp-quote-copy {
	position: sticky;
	top: 8rem;
}

.sgp-quote-copy h2 {
	color: #fff;
}

.sgp-quote-copy > p:not(:first-child),
.sgp-quote-copy li {
	color: rgb(255 255 255 / 78%);
	line-height: 1.65;
}

.sgp-quote-copy ul {
	margin: 1.6rem 0 0;
	padding-left: 1.2rem;
}

.sgp-quote-copy li + li {
	margin-top: .65rem;
}

.sgp-form-panel {
	padding: clamp(1.5rem, 3.5vw, 3.25rem);
	border-radius: .65rem;
	background: #fff;
	color: var(--sgp-ink);
	box-shadow: 0 24px 64px rgb(0 0 0 / 22%);
}

.sgp-form-panel > h2,
.sgp-form-panel > h3 {
	margin: 0 0 1.5rem;
	font-family: var(--sgp-display);
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1;
	text-transform: uppercase;
}

.sgp-form-panel .maspc-lead-form {
	margin: 0;
}

.sgp-form-panel .maspc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.sgp-form-panel .maspc-structured-fields {
	margin: 1.5rem 0;
	padding: 1.25rem;
	border: 1px solid var(--sgp-line);
	border-radius: .4rem;
}

.sgp-form-panel .maspc-structured-fields legend {
	padding-inline: .4rem;
	color: var(--sgp-navy);
	font-weight: 850;
}

.sgp-form-panel .maspc-structured-intro {
	margin: 0 0 1rem;
	color: var(--sgp-muted);
	font-size: .8rem;
	line-height: 1.55;
}

.sgp-form-panel .maspc-form-grid p,
.sgp-form-panel .maspc-lead-form > p {
	margin: 0;
}

.sgp-form-panel label {
	display: block;
	margin-bottom: .35rem;
	color: var(--sgp-ink);
	font-size: .8rem;
	font-weight: 750;
}

.sgp-form-panel :where(input:not([type="hidden"]):not([type="checkbox"]), select, textarea) {
	display: block;
	width: 100%;
	min-height: 3rem;
	padding: .72rem .8rem;
	border: 1px solid #bdc7ce;
	border-radius: .3rem;
	background: #fff;
	color: var(--sgp-ink);
}

.sgp-form-panel textarea {
	min-height: 9rem;
	margin-top: .2rem;
	resize: vertical;
}

.sgp-form-panel :where(input, select, textarea):focus {
	border-color: var(--sgp-focus);
	outline: none;
	box-shadow: 0 0 0 3px rgb(22 119 210 / 18%);
}

.sgp-form-panel .maspc-structured-grid small {
	display: block;
	margin-top: .3rem;
	color: var(--sgp-muted);
	font-size: .68rem;
	line-height: 1.45;
}

.sgp-form-panel .maspc-consent {
	margin-top: 1.25rem !important;
}

.sgp-form-panel .maspc-consent label {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	font-weight: 500;
	line-height: 1.55;
}

.sgp-form-panel .maspc-consent input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: .18rem;
	accent-color: var(--sgp-navy);
	flex: 0 0 auto;
}

.sgp-form-panel .maspc-button {
	width: 100%;
	margin-top: 1.25rem;
}

.sgp-form-panel .maspc-form-note {
	margin-top: .9rem !important;
	color: var(--sgp-muted);
	font-size: .67rem;
	line-height: 1.5;
	text-align: center;
}

.sgp-form-panel .maspc-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.sgp-form-panel .maspc-form-status {
	margin-bottom: 1.25rem;
	padding: 1rem;
	border-left: 4px solid currentColor;
	background: var(--sgp-canvas);
	font-size: .85rem;
}

.sgp-form-panel .maspc-form-status.is-success { color: var(--sgp-success); }
.sgp-form-panel .maspc-form-status.is-error { color: var(--sgp-error); }

/* Inner pages */
.sgp-inner-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 8vw, 8rem);
	background: linear-gradient(112deg, var(--sgp-navy-dark) 0 67%, var(--sgp-gold) 67%);
	color: #fff;
}

.sgp-inner-hero::after {
	position: absolute;
	top: -8rem;
	right: 6vw;
	width: 20rem;
	height: 20rem;
	border: 3.8rem solid rgb(255 255 255 / 16%);
	border-radius: 4rem;
	transform: rotate(-14deg);
	content: "";
}

.sgp-inner-hero .sgp-container {
	position: relative;
	z-index: 1;
}

.sgp-inner-hero h1 {
	max-width: 56rem;
	color: #fff;
}

.sgp-inner-hero span {
	display: block;
	max-width: 50rem;
	margin-top: 1.4rem;
	color: rgb(255 255 255 / 82%);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.65;
}

.sgp-family-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.sgp-family-grid article {
	display: grid;
	grid-template-columns: 6rem 1fr;
	gap: 1.5rem;
	align-items: start;
	min-height: 15rem;
	padding: clamp(1.5rem, 2.5vw, 2.4rem);
	border: 1px solid var(--sgp-line);
	background: #fff;
	box-shadow: var(--sgp-shadow-sm);
}

.sgp-family-icon {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background: var(--sgp-canvas);
	color: var(--sgp-navy);
}

.sgp-family-icon .sgp-icon {
	width: 4rem;
	height: 4rem;
}

.sgp-family-grid h3 {
	margin: 0 0 .65rem;
	font-size: 1.2rem;
	line-height: 1.25;
}

.sgp-family-grid p {
	margin-bottom: .8rem;
	color: var(--sgp-muted);
	font-size: .9rem;
}

.sgp-family-grid strong {
	display: block;
	color: #6c5200;
	font-size: .75rem;
	line-height: 1.5;
}

.sgp-centered-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .85rem;
	margin-top: 2.5rem;
}

.sgp-solution-grid,
.sgp-step-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--sgp-line);
}

.sgp-solution-grid article,
.sgp-step-grid article {
	display: flex;
	min-height: 20rem;
	flex-direction: column;
	padding: 1.6rem;
}

.sgp-solution-grid article:not(:nth-child(4n + 1)),
.sgp-step-grid article + article {
	border-left: 1px solid var(--sgp-line);
}

.sgp-solution-grid article:nth-child(n + 5) {
	border-top: 1px solid var(--sgp-line);
}

.sgp-solution-grid b,
.sgp-step-grid b {
	color: var(--sgp-gold);
	font-family: var(--sgp-display);
	font-size: 3.75rem;
	font-weight: 900;
	line-height: 1;
}

.sgp-solution-grid h3,
.sgp-step-grid h3 {
	margin: auto 0 .75rem;
	font-family: var(--sgp-display);
	font-size: 1.75rem;
	font-weight: 900;
	letter-spacing: -.02em;
	line-height: 1;
	text-transform: uppercase;
}

.sgp-solution-grid p,
.sgp-step-grid p {
	margin: 0;
	color: var(--sgp-muted);
	font-size: .85rem;
	line-height: 1.6;
}

.sgp-cta-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 1rem;
	align-items: end;
	margin-top: clamp(3rem, 6vw, 6rem);
	padding: clamp(2rem, 4vw, 4rem);
	background: var(--sgp-navy-dark);
	color: #fff;
}

.sgp-cta-band > div {
	max-width: 47rem;
}

.sgp-cta-band p {
	margin: 0 0 .7rem;
	color: var(--sgp-gold);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sgp-cta-band h2 {
	color: #fff;
	font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}

.sgp-industries-layout,
.sgp-about-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(24rem, 1.1fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.sgp-industries-layout .sgp-section-heading,
.sgp-about-grid .sgp-section-heading {
	display: block;
	margin-bottom: 2rem;
}

.sgp-industries-layout ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sgp-industries-layout li {
	display: flex;
	align-items: center;
	gap: .8rem;
	min-height: 4.5rem;
	padding: 1rem;
	border: 1px solid var(--sgp-line);
	font-size: .88rem;
	font-weight: 700;
}

.sgp-industries-layout li .sgp-icon {
	width: 1.4rem;
	height: 1.4rem;
	color: var(--sgp-gold);
}

.sgp-resource-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.sgp-resource-grid article {
	padding: 1.5rem;
	border-top: .35rem solid var(--sgp-gold);
	background: var(--sgp-canvas);
}

.sgp-resource-grid h3 {
	margin-bottom: .65rem;
	font-size: 1.05rem;
	line-height: 1.3;
}

.sgp-resource-grid p,
.sgp-about-grid > div > p {
	color: var(--sgp-muted);
	line-height: 1.7;
}

.sgp-about-grid aside {
	padding: clamp(1.75rem, 4vw, 3.5rem);
	background: var(--sgp-navy-dark);
	color: #fff;
}

.sgp-about-grid aside > strong {
	color: var(--sgp-gold);
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.sgp-about-grid aside ol {
	margin: 1.75rem 0;
	padding: 0;
	list-style: none;
	counter-reset: paths;
}

.sgp-about-grid aside li {
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	gap: .8rem;
	counter-increment: paths;
}

.sgp-about-grid aside li::before {
	content: "0" counter(paths);
	color: var(--sgp-gold);
	font-family: var(--sgp-display);
	font-size: 1.5rem;
	font-weight: 900;
}

.sgp-about-grid aside li + li {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgb(255 255 255 / 22%);
}

.sgp-about-grid aside b,
.sgp-about-grid aside span {
	display: block;
}

.sgp-about-grid aside span {
	margin-top: .25rem;
	color: rgb(255 255 255 / 72%);
	font-size: .85rem;
	line-height: 1.55;
}

.sgp-about-grid aside a {
	color: var(--sgp-gold);
	font-size: .75rem;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.sgp-prose {
	max-width: 54rem;
}

.sgp-prose h2 {
	margin: 2.5rem 0 .8rem;
	font-family: var(--sgp-display);
	font-size: clamp(2rem, 3.6vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1;
	text-transform: uppercase;
}

.sgp-prose p {
	color: var(--sgp-muted);
	line-height: 1.75;
}

.sgp-callout {
	margin-bottom: 3rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-left: .4rem solid var(--sgp-gold);
	background: var(--sgp-canvas);
}

.sgp-callout p {
	margin: .6rem 0 0;
}

.sgp-compliance {
	padding-block: 2rem;
	background: #edf1f3;
	border-block: 1px solid var(--sgp-line);
}

.sgp-compliance .sgp-container {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	align-items: start;
	max-width: 70rem;
}

.sgp-compliance .sgp-icon {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--sgp-navy);
}

.sgp-compliance h2 {
	margin: 0 0 .4rem;
	font-size: 1rem;
}

.sgp-compliance p {
	margin: 0;
	color: var(--sgp-muted);
	font-size: .78rem;
	line-height: 1.6;
}

/* Footer */
.sgp-footer {
	background: var(--sgp-navy-dark);
	color: #fff;
}

.sgp-footer-grid {
	display: grid;
	grid-template-columns: minmax(19rem, 1.5fr) repeat(3, minmax(8rem, .65fr));
	gap: clamp(2rem, 5vw, 5rem);
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.sgp-footer-brand img {
	width: auto;
	max-width: 18rem;
	height: 4.4rem;
	padding: .6rem .8rem;
	border-radius: .25rem;
	background: #fff;
	object-fit: contain;
	object-position: left center;
}

.sgp-footer-brand p {
	max-width: 27rem;
	margin: 1.25rem 0;
	color: rgb(255 255 255 / 72%);
	font-size: .88rem;
	line-height: 1.65;
}

.sgp-footer-brand > a {
	color: var(--sgp-gold);
	font-size: .72rem;
	font-weight: 800;
}

.sgp-footer h2 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.sgp-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sgp-footer li + li {
	margin-top: .55rem;
}

.sgp-footer li a {
	color: rgb(255 255 255 / 74%);
	font-size: .82rem;
	text-decoration: none;
}

.sgp-footer li a:hover {
	color: var(--sgp-gold);
	text-decoration: underline;
}

.sgp-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.2rem;
	border-top: 1px solid rgb(255 255 255 / 18%);
	color: rgb(255 255 255 / 58%);
	font-size: .68rem;
}

.sgp-footer-bottom p {
	margin: 0;
}

.sgp-mobile-actions {
	display: none;
}

/* Native WooCommerce layer — exact site only. */
body.sgp-native-commerce {
	background: var(--sgp-canvas);
}

body.sgp-native-commerce > .wp-site-blocks > header.wp-block-template-part,
body.sgp-native-commerce > .wp-site-blocks > footer.wp-block-template-part {
	display: none !important;
}

body.sgp-native-commerce .sgp-native-brand-header,
body.sgp-native-commerce .sgp-native-brand-footer {
	position: relative;
	z-index: 20;
}

body.sgp-native-commerce > .wp-site-blocks {
	padding: 0;
	background: var(--sgp-canvas);
}

body.sgp-native-commerce > .wp-site-blocks > main {
	width: min(calc(100% - (var(--sgp-gutter) * 2)), var(--sgp-container));
	max-width: none;
	margin-inline: auto;
	padding-block: clamp(2rem, 4vw, 4rem);
}

body.sgp-native-commerce .sgp-native-shop-intro {
	display: grid;
	grid-template-columns: minmax(12rem, .55fr) minmax(0, 1.35fr) auto;
	gap: 1rem 2rem;
	align-items: center;
	width: min(calc(100% - (var(--sgp-gutter) * 2)), var(--sgp-container));
	margin: clamp(1.5rem, 3vw, 3rem) auto;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--sgp-navy-dark);
	color: #fff;
}

body.sgp-native-commerce .sgp-native-shop-intro p {
	margin: 0;
	color: var(--sgp-gold);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

body.sgp-native-commerce .sgp-native-shop-intro strong {
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	line-height: 1.4;
}

body.sgp-native-commerce .sgp-native-shop-intro a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	min-height: 3rem;
	padding: .7rem 1rem;
	background: var(--sgp-gold);
	color: var(--sgp-navy-dark);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
}

body.sgp-native-commerce .woocommerce-products-header__title,
body.sgp-native-commerce .page-title,
body.sgp-native-commerce div.product .product_title,
body.sgp-native-commerce .woocommerce-order-details__title,
body.sgp-native-commerce .woocommerce-column__title {
	color: var(--sgp-navy-dark);
	font-family: var(--sgp-display);
	font-size: clamp(2.4rem, 4.5vw, 4.75rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .95;
	text-transform: uppercase;
}

body.sgp-native-commerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

body.sgp-native-commerce ul.products::before,
body.sgp-native-commerce ul.products::after {
	display: none;
}

body.sgp-native-commerce ul.products li.product,
body.sgp-native-commerce ul.products[class*="columns-"] li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 1rem;
	border: 1px solid var(--sgp-line);
	border-radius: .4rem;
	background: #fff;
	box-shadow: var(--sgp-shadow-sm);
}

body.sgp-native-commerce ul.products li.product a img {
	aspect-ratio: 1;
	object-fit: contain;
	background: #f8f9fa;
}

body.sgp-native-commerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--sgp-navy-dark);
	font-size: 1rem;
	line-height: 1.3;
}

body.sgp-native-commerce .price {
	color: var(--sgp-navy) !important;
	font-weight: 850;
}

body.sgp-native-commerce .onsale {
	min-width: 3.2rem;
	min-height: 3.2rem;
	padding: .8rem .35rem;
	border-radius: 50%;
	background: var(--sgp-gold);
	color: var(--sgp-navy-dark);
	font-size: .7rem;
	line-height: 1.5;
}

body.sgp-native-commerce div.product {
	padding: clamp(1.25rem, 3vw, 2.5rem);
	background: #fff;
	box-shadow: var(--sgp-shadow-sm);
}

body.sgp-native-commerce div.product div.images img {
	background: #f7f8f9;
	object-fit: contain;
}

body.sgp-native-commerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

body.sgp-native-commerce div.product .woocommerce-tabs ul.tabs li {
	border-radius: 0;
	background: var(--sgp-canvas);
}

body.sgp-native-commerce :where(.woocommerce-message, .woocommerce-info, .woocommerce-error) {
	padding: 1rem 1rem 1rem 3.25rem;
	border-top-color: var(--sgp-gold);
	background: #fff;
	color: var(--sgp-ink);
}

body.sgp-native-commerce .woocommerce-message::before,
body.sgp-native-commerce .woocommerce-info::before {
	color: var(--sgp-navy);
}

body.sgp-native-commerce :where(input.input-text, select, textarea) {
	min-height: 3rem;
	padding: .65rem .75rem;
	border: 1px solid #bdc7ce;
	border-radius: .25rem;
	background: #fff;
	color: var(--sgp-ink);
}

body.sgp-native-commerce textarea {
	min-height: 8rem;
}

body.sgp-native-commerce :where(table.shop_table, .woocommerce-checkout-review-order, .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content) {
	border-color: var(--sgp-line);
	border-radius: .35rem;
	background: #fff;
}

body.sgp-native-commerce table.shop_table th,
body.sgp-native-commerce table.shop_table td {
	padding: .9rem;
	border-color: var(--sgp-line);
}

body.sgp-native-commerce .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.sgp-native-commerce .woocommerce-MyAccount-navigation a {
	display: block;
	padding: .75rem 1rem;
	border-bottom: 1px solid var(--sgp-line);
	color: var(--sgp-navy);
	font-weight: 750;
	text-decoration: none;
}

/* Responsive interpolation between the supplied desktop and mobile designs. */
@media (min-width: 1280px) {
	.sgp-product-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	body.sgp-native-commerce ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1200px) {
	.sgp-header-row {
		grid-template-columns: minmax(13rem, 1fr) auto auto;
		gap: .8rem;
	}

	.sgp-logo { grid-column: 1; }
	.sgp-header-tools { grid-column: 2; grid-row: 1; }
	.sgp-nav { grid-column: 3; grid-row: 1; justify-self: end; }
	.sgp-nav-toggle { display: inline-flex; }

	.sgp-nav-list {
		position: absolute;
		top: calc(100% + .7rem);
		right: 0;
		display: grid;
		width: min(23rem, calc(100vw - 2rem));
		padding: .6rem;
		border: 1px solid var(--sgp-line);
		background: #fff;
		box-shadow: var(--sgp-shadow-md);
	}

	.sgp-nav-list[hidden] { display: none; }

	.sgp-nav-list a {
		padding: .85rem;
	}

	.sgp-nav-list a::after {
		display: none;
	}

	.sgp-nav-list a:hover,
	.sgp-nav-list a[aria-current="page"] {
		background: var(--sgp-canvas);
		color: var(--sgp-navy);
	}

	.sgp-utility-row > span:nth-child(2) { display: none; }

	.sgp-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sgp-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sgp-industry-band ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sgp-resource-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.sgp-hero-copy {
		width: min(40rem, 68%);
	}

	.sgp-section-heading {
		grid-template-columns: minmax(9rem, .35fr) minmax(0, 1fr);
	}

	.sgp-section-heading > span {
		grid-column: 2;
	}

	.sgp-application-grid,
	.sgp-industries-layout,
	.sgp-about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.sgp-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sgp-why-grid article:nth-child(3) {
		border-left: 0;
	}

	.sgp-why-grid article:nth-child(n + 3) {
		border-top: 1px solid var(--sgp-line);
	}

	.sgp-quote-grid {
		grid-template-columns: minmax(0, .75fr) minmax(28rem, 1.25fr);
		gap: 2.5rem;
	}

	.sgp-solution-grid,
	.sgp-step-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sgp-solution-grid article:nth-child(odd),
	.sgp-step-grid article:nth-child(odd) {
		border-left: 0;
	}

	.sgp-solution-grid article:nth-child(even),
	.sgp-step-grid article:nth-child(even) {
		border-left: 1px solid var(--sgp-line);
	}

	.sgp-solution-grid article:nth-child(n + 3),
	.sgp-step-grid article:nth-child(n + 3) {
		border-top: 1px solid var(--sgp-line);
	}

	.sgp-cta-band {
		grid-template-columns: 1fr auto;
	}

	.sgp-cta-band > div {
		grid-column: 1 / -1;
	}

	.sgp-footer-grid {
		grid-template-columns: minmax(18rem, 1.5fr) repeat(3, minmax(7rem, .7fr));
		gap: 2rem;
	}
}

@media (max-width: 782px) {
	body.admin-bar .sgp-header { top: 46px; }
}

@media (min-width: 783px) {
	body.admin-bar .sgp-header { top: 32px; }
}

@media (max-width: 767px) {
	body.sgp-storefront-document {
		padding-bottom: 4.2rem;
	}

	.sgp-site {
		--sgp-gutter: 1rem;
		--sgp-section: clamp(3.25rem, 13vw, 5rem);
	}

	.sgp-utility-bar {
		display: none;
	}

	.sgp-header {
		background: var(--sgp-navy-dark);
		border-bottom-color: rgb(255 255 255 / 14%);
		box-shadow: none;
	}

	.sgp-header-row {
		grid-template-columns: minmax(0, 1fr) auto auto;
		min-height: 4.75rem;
	}

	.sgp-logo {
		padding: .35rem .5rem;
		border-radius: .25rem;
		background: #fff;
	}

	.sgp-logo img {
		max-width: min(15.5rem, 58vw);
		height: 2.65rem;
	}

	.sgp-header-tools {
		gap: .2rem;
	}

	.sgp-tool-link {
		justify-content: center;
		width: 2.8rem;
		min-height: 2.8rem;
		color: #fff;
	}

	.sgp-tool-link:not(.sgp-cart-link),
	.sgp-tool-link span,
	.sgp-header-cta {
		display: none;
	}

	.sgp-nav-toggle {
		border-color: rgb(255 255 255 / 28%);
		background: transparent;
		color: #fff;
	}

	.sgp-nav-toggle-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.sgp-nav-list {
		top: calc(100% + .25rem);
		right: 0;
	}

	.sgp-hero {
		min-height: clamp(40rem, 172vw, 48rem);
	}

	.sgp-hero::after {
		background: linear-gradient(180deg, rgb(3 29 53 / 96%) 0%, rgb(3 29 53 / 83%) 31%, rgb(3 29 53 / 20%) 60%, rgb(3 29 53 / 62%) 100%);
	}

	.sgp-hero-media img {
		object-position: center bottom;
	}

	.sgp-hero-inner {
		align-items: flex-start;
		padding-block: clamp(3rem, 11vw, 4.5rem) 6.75rem;
	}

	.sgp-hero-copy {
		width: 100%;
	}

	.sgp-hero h1 {
		max-width: 100%;
		font-size: clamp(2.85rem, 13.5vw, 4.6rem);
		line-height: .9;
	}

	.sgp-hero-copy > p:not(.sgp-eyebrow) {
		max-width: 31rem;
		font-size: 1rem;
	}

	.sgp-actions {
		position: absolute;
		right: var(--sgp-gutter);
		bottom: 5rem;
		left: var(--sgp-gutter);
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: .65rem;
	}

	.sgp-actions .sgp-button {
		min-width: 0;
		padding-inline: .65rem;
		font-size: .68rem;
		white-space: nowrap;
	}

	.sgp-hero-proofs {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		max-width: none;
		margin: 0;
		padding-inline: var(--sgp-gutter);
		background: rgb(3 29 53 / 90%);
	}

	.sgp-hero-proofs li {
		justify-content: center;
		min-height: 4rem;
		padding: .55rem .4rem;
		font-size: .58rem;
		text-align: center;
	}

	.sgp-hero-proofs li + li {
		padding-left: .4rem;
	}

	.sgp-hero-proofs .sgp-icon {
		width: 1.65rem;
		height: 1.65rem;
	}

	.sgp-image-note {
		right: .35rem;
		bottom: 9.35rem;
		max-width: 14rem;
		font-size: .52rem;
		text-align: right;
	}

	.sgp-heading-row {
		align-items: start;
	}

	.sgp-heading-row h2 {
		font-size: clamp(2.2rem, 10.5vw, 3.5rem);
	}

	.sgp-heading-row > a {
		padding-top: .25rem;
		font-size: .68rem;
	}

	.sgp-category-grid {
		display: flex;
		gap: .75rem;
		width: auto;
		margin-inline: calc(var(--sgp-gutter) * -1);
		padding: .2rem var(--sgp-gutter) 1rem;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-padding-inline: var(--sgp-gutter);
		scroll-snap-type: inline mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.sgp-category-grid::-webkit-scrollbar {
		display: none;
	}

	.sgp-category-card {
		flex: 0 0 min(16rem, 74vw);
		min-height: 15.5rem;
		scroll-snap-align: start;
	}

	.sgp-category-visual {
		min-height: 8.5rem;
	}

	.sgp-carousel-next {
		position: absolute;
		right: -.45rem;
		top: 50%;
		display: grid;
		place-items: center;
		width: 2.8rem;
		height: 2.8rem;
		transform: translateY(-50%);
		border: 1px solid var(--sgp-line);
		border-radius: 50%;
		background: #fff;
		color: var(--sgp-navy);
		box-shadow: var(--sgp-shadow-sm);
		font-weight: 900;
		cursor: pointer;
	}

	.sgp-carousel-next:disabled {
		opacity: 0;
		pointer-events: none;
	}

	.sgp-proof-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sgp-proof-grid > div {
		display: flex;
		min-width: 0;
		min-height: 10.5rem;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: .35rem;
		padding: 1.15rem .45rem;
		text-align: center;
	}

	.sgp-proof-grid .sgp-icon {
		width: 2.4rem;
		height: 2.4rem;
	}

	.sgp-proof-grid strong {
		font-size: .68rem;
	}

	.sgp-proof-grid span {
		font-size: .65rem;
	}

	.sgp-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sgp-product-body {
		padding: .85rem;
	}

	.sgp-product-body h3 {
		font-size: .9rem;
	}

	.sgp-application-grid,
	.sgp-industries-layout,
	.sgp-about-grid,
	.sgp-quote-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-application-copy {
		order: -1;
	}

	.sgp-industry-band ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sgp-why-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-why-grid article + article,
	.sgp-why-grid article:nth-child(3) {
		border-top: 1px solid var(--sgp-line);
		border-left: 0;
	}

	.sgp-quote-copy {
		position: static;
	}

	.sgp-form-panel .maspc-form-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-inner-hero {
		background: linear-gradient(112deg, var(--sgp-navy-dark) 0 84%, var(--sgp-gold) 84%);
	}

	.sgp-section-heading {
		display: block;
	}

	.sgp-section-heading > span {
		display: block;
		margin-top: 1rem;
	}

	.sgp-family-grid,
	.sgp-solution-grid,
	.sgp-step-grid,
	.sgp-resource-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-family-grid article {
		grid-template-columns: 4.5rem 1fr;
		min-height: 0;
		padding: 1.25rem;
	}

	.sgp-family-icon .sgp-icon {
		width: 3rem;
		height: 3rem;
	}

	.sgp-solution-grid article,
	.sgp-step-grid article {
		min-height: 15rem;
		border-left: 0 !important;
	}

	.sgp-solution-grid article + article,
	.sgp-step-grid article + article {
		border-top: 1px solid var(--sgp-line);
	}

	.sgp-cta-band {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-cta-band .sgp-button {
		width: 100%;
	}

	.sgp-industries-layout ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sgp-footer-brand {
		grid-column: 1 / -1;
	}

	.sgp-footer-bottom {
		flex-direction: column;
		gap: .4rem;
	}

	.sgp-mobile-actions {
		position: fixed;
		z-index: 9999;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: .45rem max(.55rem, env(safe-area-inset-right)) max(.45rem, env(safe-area-inset-bottom)) max(.55rem, env(safe-area-inset-left));
		background: rgb(3 29 53 / 97%);
		box-shadow: 0 -8px 24px rgb(0 0 0 / 20%);
		backdrop-filter: blur(12px);
	}

	.sgp-mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: .5rem;
		min-height: 3rem;
		color: #fff;
		font-size: .72rem;
		font-weight: 850;
		letter-spacing: .05em;
		text-decoration: none;
		text-transform: uppercase;
	}

	.sgp-mobile-actions a + a {
		background: var(--sgp-gold);
		color: var(--sgp-navy-dark);
	}

	.sgp-mobile-actions .sgp-icon {
		width: 1.3rem;
		height: 1.3rem;
	}

	body.sgp-native-commerce .sgp-native-shop-intro {
		grid-template-columns: minmax(0, 1fr);
		width: calc(100% - 2rem);
	}

	body.sgp-native-commerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.sgp-header-row {
		gap: .35rem;
	}

	.sgp-logo {
		padding-inline: .35rem;
	}

	.sgp-logo img {
		max-width: min(13.5rem, 54vw);
		height: 2.35rem;
	}

	.sgp-hero {
		min-height: max(41rem, 178vw);
	}

	.sgp-eyebrow {
		font-size: .64rem;
	}

	.sgp-actions .sgp-button {
		min-height: 3.2rem;
		font-size: .68rem;
	}

	.sgp-hero-proofs li {
		flex-direction: column;
	}

	.sgp-heading-row {
		display: block;
	}

	.sgp-heading-row > a {
		display: inline-block;
		margin-top: 1rem;
	}

	.sgp-product-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-product-card {
		display: grid;
		grid-template-columns: minmax(7.5rem, .8fr) minmax(0, 1.2fr);
	}

	.sgp-product-image {
		height: 100%;
		aspect-ratio: auto;
	}

	.sgp-product-placeholder .sgp-icon {
		width: 4rem;
		height: 4rem;
	}

	.sgp-industry-band ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-proof-grid span {
		display: none;
	}

	.sgp-form-panel {
		padding: 1.15rem;
	}

	.sgp-form-panel .maspc-structured-fields {
		padding: .85rem;
	}

	.sgp-family-grid article {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-family-icon {
		width: 4.5rem;
	}

	.sgp-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sgp-footer-brand {
		grid-column: auto;
	}

	body.sgp-native-commerce ul.products {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.sgp-site *,
	.sgp-site *::before,
	.sgp-site *::after,
	body.sgp-native-commerce * {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.sgp-utility-bar,
	.sgp-nav,
	.sgp-header-tools,
	.sgp-mobile-actions,
	.sgp-carousel-next,
	.sgp-actions,
	.sgp-footer {
		display: none !important;
	}

	.sgp-header {
		position: static;
		box-shadow: none;
	}

	.sgp-hero {
		min-height: 0;
		background: #fff;
		color: #000;
	}

	.sgp-hero-media,
	.sgp-hero::after {
		display: none;
	}

	.sgp-hero h1,
	.sgp-hero-copy > p:not(.sgp-eyebrow) {
		color: #000;
	}

	.sgp-section,
	.sgp-industry-band,
	.sgp-quote-section,
	.sgp-inner-form-section {
		padding-block: 2rem;
		background: #fff;
		color: #000;
	}
}
