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

body.spt-brand-surface,
.spt-site {
	--spt-navy: #2f8428;
	--spt-navy-dark: #0d1314;
	--spt-navy-soft: #164c2a;
	--spt-gold: #3b922f;
	--spt-gold-bright: #50a73d;
	--spt-ink: #171c19;
	--spt-steel: #4e5a54;
	--spt-muted: #66716c;
	--spt-canvas: #f5f7f4;
	--spt-paper: #fff;
	--spt-line: #dce3dc;
	--spt-success: #2f8428;
	--spt-error: #a32727;
	--spt-focus: #1677d2;
	--spt-container: 1320px;
	--spt-gutter: clamp(1.25rem, 4.25vw, 4.5rem);
	--spt-section: clamp(4.5rem, 7vw, 7.25rem);
	--spt-display: "Arial Narrow", "Roboto Condensed", "Barlow Condensed", Impact, sans-serif;
	--spt-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--spt-shadow-sm: 0 10px 28px rgb(13 19 20 / 9%);
	--spt-shadow-md: 0 18px 44px rgb(13 19 20 / 14%);
	color: var(--spt-ink);
	font-family: var(--spt-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

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

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

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

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

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

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

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

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

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

.spt-skip-link,
.spt-skip-link:link,
.spt-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(--spt-shadow-md);
}

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

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

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

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

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

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

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

.spt-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;
}

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

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

.spt-product-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 3.25rem;
	width: min(100%, 38rem);
	justify-self: center;
	overflow: hidden;
	border: 1px solid var(--spt-line);
	border-radius: .25rem;
	background: #fff;
}

.spt-product-search input[type="search"] {
	min-width: 0;
	height: 3rem;
	padding: .7rem .9rem;
	border: 0;
	background: transparent;
	color: var(--spt-ink);
}

.spt-product-search button {
	display: grid;
	place-items: center;
	width: 3.25rem;
	height: 3rem;
	padding: 0;
	border: 0;
	background: var(--spt-navy);
	color: #fff;
	cursor: pointer;
}

.spt-product-search .spt-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.spt-header-promise {
	margin: 0;
	color: var(--spt-navy);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .16em;
	text-align: center;
	text-transform: uppercase;
}

.spt-category-nav {
	background: var(--spt-navy-dark);
	color: #fff;
}

.spt-category-nav .spt-nav {
	width: 100%;
}

.spt-category-nav .spt-nav-list {
	justify-content: center;
}

.spt-category-nav .spt-nav-list a {
	padding-block: .85rem;
	color: #fff;
}

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

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

.spt-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;
}

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

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

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

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

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

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

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

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

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

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

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

.spt-header-cta,
.spt-button,
.spt-site .maspc-button,
body.spt-native-commerce .button,
body.spt-native-commerce button.button,
body.spt-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(--spt-gold);
	color: var(--spt-navy-dark);
	font-family: var(--spt-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;
}

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

.spt-button-ghost {
	border-color: rgb(255 255 255 / 80%);
	background: rgb(13 19 20 / 38%);
	color: #fff;
}

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

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

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

.spt-button-primary {
	color: #fff;
}

/* Homepage hero */
.spt-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: clamp(28rem, 33vw, 34rem);
	overflow: hidden;
	background: #fff;
	color: var(--spt-ink);
}

.spt-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 98%) 34%, rgb(255 255 255 / 82%) 49%, rgb(255 255 255 / 18%) 72%, transparent 100%);
	content: "";
}

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

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

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

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

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

.spt-hero h1 {
	max-width: 14ch;
	margin: 0;
	color: var(--spt-navy-dark);
	font-family: var(--spt-display);
	font-size: clamp(3.1rem, 4.1vw, 4.65rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: .88;
	text-transform: uppercase;
	text-wrap: balance;
}

.spt-hero h1::first-line {
	color: inherit;
}

.spt-hero-copy > p:not(.spt-eyebrow) {
	max-width: 41rem;
	margin: 1.5rem 0 0;
	color: var(--spt-steel);
	font-size: clamp(1rem, 1.35vw, 1.22rem);
	line-height: 1.58;
}

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

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

.spt-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;
}

.spt-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;
}

.spt-hero-proofs li + li {
	padding-left: 1rem;
	border-left: 1px solid var(--spt-line);
}

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

.spt-hero .spt-button-ghost {
	border-color: var(--spt-navy-dark);
	background: rgb(255 255 255 / 76%);
	color: var(--spt-navy-dark);
}

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

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

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

.spt-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);
}

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

.spt-section-heading h2,
.spt-application-copy h2,
.spt-industry-band h2,
.spt-quote-copy h2,
.spt-inner-hero h1,
.spt-cta-band h2 {
	margin: 0;
	font-family: var(--spt-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;
}

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

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

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

.spt-heading-row h2 {
	margin: 0;
	font-family: var(--spt-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;
}

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

.spt-heading-row > a:hover {
	color: #1f681e;
}

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

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

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

.spt-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(--spt-line);
	border-radius: .4rem;
	background: #fff;
	box-shadow: 0 8px 22px rgb(13 19 20 / 5%);
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.spt-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(--spt-navy);
}

.spt-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(--spt-gold);
	border-radius: 1rem;
	opacity: .2;
	content: "";
}

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

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

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

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

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

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

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

.spt-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spt-product-body .spt-product-sku {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .025em;
}

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

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

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

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

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

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

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

.spt-application-media-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(7rem, .72fr);
	gap: .75rem;
	aspect-ratio: 8 / 5;
}

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

.spt-application-media img,
.spt-application-secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spt-application-media img {
	object-position: center;
}

.spt-application-secondary img {
	object-position: 60% center;
}

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

.spt-application-copy > p:first-child {
	color: #246d22;
}

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

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

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

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

.spt-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;
}

.spt-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spt-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(--spt-ink);
}

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

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

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

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

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

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

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

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

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

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

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

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

.spt-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: "";
}

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

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

.spt-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;
}

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

.spt-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(--spt-line);
	background: #fff;
	box-shadow: var(--spt-shadow-sm);
}

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

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

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

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

.spt-family-grid strong {
	display: block;
	color: #246d22;
	font-size: .75rem;
	line-height: 1.5;
}

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

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

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

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

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

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

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

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

.spt-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(--spt-navy-dark);
	color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spt-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);
}

.spt-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;
}

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

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

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

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

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

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

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

.spt-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;
}

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

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

/* Native WooCommerce layer — exact site only. */
body.spt-native-commerce {
	width: 100%;
	overflow-x: hidden;
	background: var(--spt-canvas);
}

body.spt-native-commerce .spt-native-brand-header,
body.spt-native-commerce .spt-native-brand-header *,
body.spt-native-commerce .spt-native-brand-header *::before,
body.spt-native-commerce .spt-native-brand-header *::after,
body.spt-native-commerce .spt-native-brand-footer,
body.spt-native-commerce .spt-native-brand-footer *,
body.spt-native-commerce .spt-native-brand-footer *::before,
body.spt-native-commerce .spt-native-brand-footer *::after,
body.spt-native-commerce .spt-native-shop-intro,
body.spt-native-commerce .spt-native-shop-intro * {
	box-sizing: border-box;
}

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

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

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

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

body.spt-native-commerce .spt-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(--spt-gutter) * 2)), var(--spt-container));
	margin: clamp(1.5rem, 3vw, 3rem) auto;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--spt-navy-dark);
	color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.spt-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(--spt-ink);
}

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

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

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

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

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

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

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

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

	.spt-logo { grid-column: 1; }
	.spt-product-search,
	.spt-header-promise { grid-column: 2; grid-row: 1; }
	.spt-header-tools { grid-column: 3; grid-row: 1; }

	.spt-category-nav .spt-container {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		min-height: 3.5rem;
	}

	.spt-category-nav .spt-nav {
		position: relative;
		width: auto;
		justify-self: end;
	}

	.spt-nav-toggle { display: inline-flex; }

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

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

	.spt-nav:not(.is-enhanced) .spt-nav-list {
		display: none;
	}

	.spt-category-nav .spt-nav-list a {
		color: var(--spt-ink);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	body.spt-native-commerce {
		padding-bottom: 4.2rem;
	}

	body.spt-native-commerce:is(.woocommerce-cart, .woocommerce-checkout, .woocommerce-account) {
		padding-bottom: 0;
	}

	body.spt-native-commerce:is(.woocommerce-cart, .woocommerce-checkout, .woocommerce-account) .spt-mobile-actions {
		display: none;
	}

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

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

	.spt-header {
		background: rgb(255 255 255 / 98%);
		border-bottom-color: var(--spt-line);
		box-shadow: 0 6px 18px rgb(13 19 20 / 7%);
	}

	.spt-header-row {
		grid-template-columns: minmax(0, 1fr);
		min-height: 4.75rem;
		padding-right: 4rem;
	}

	.spt-logo {
		padding: 0;
	}

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

	.spt-product-search,
	.spt-header-promise,
	.spt-header-tools,
	.spt-header-cta {
		display: none;
	}

	.spt-category-nav {
		position: absolute;
		top: 50%;
		right: var(--spt-gutter);
		width: auto;
		transform: translateY(-50%);
		background: transparent;
	}

	.spt-category-nav .spt-container {
		width: auto;
		min-height: 0;
	}

	.spt-nav-toggle {
		border-color: var(--spt-line);
		background: #fff;
		color: var(--spt-navy-dark);
	}

	.spt-category-nav .spt-nav-toggle {
		border-color: var(--spt-line);
		background: #fff;
		color: var(--spt-navy-dark);
	}

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

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

	.spt-hero {
		min-height: clamp(30rem, 125vw, 36rem);
		color: #fff;
	}

	.spt-hero::after {
		background: linear-gradient(180deg, rgb(13 19 20 / 96%) 0%, rgb(13 19 20 / 83%) 31%, rgb(13 19 20 / 20%) 60%, rgb(13 19 20 / 62%) 100%);
	}

	.spt-hero h1 {
		color: #fff;
	}

	.spt-hero-copy > p:not(.spt-eyebrow) {
		color: rgb(255 255 255 / 90%);
	}

	.spt-hero .spt-button-ghost {
		border-color: rgb(255 255 255 / 80%);
		background: rgb(13 19 20 / 44%);
		color: #fff;
	}

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

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

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

	.spt-hero h1 {
		max-width: 100%;
		font-size: clamp(2.4rem, 10.5vw, 3.4rem);
		line-height: .9;
	}

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

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

	.spt-actions .spt-button {
		min-width: 0;
		padding-inline: .65rem;
		font-size: .72rem;
		white-space: normal;
	}

	.spt-hero-proofs {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		max-width: none;
		margin: 0;
		padding-inline: var(--spt-gutter);
		background: rgb(13 19 20 / 90%);
	}

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

	.spt-hero-proofs li + li {
		padding-left: .4rem;
		border-left-color: rgb(255 255 255 / 34%);
	}

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

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

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

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

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

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

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

	.spt-category-card {
		flex: 0 0 min(10.5rem, 44vw);
		min-height: 12rem;
		scroll-snap-align: start;
	}

	.spt-category-visual {
		min-height: 6.25rem;
	}

	.spt-category-visual .spt-icon {
		width: 3.8rem;
		height: 3.8rem;
	}

	.spt-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(--spt-line);
		border-radius: 50%;
		background: #fff;
		color: var(--spt-navy);
		box-shadow: var(--spt-shadow-sm);
		font-weight: 900;
		cursor: pointer;
	}

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

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

	.spt-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;
	}

	.spt-proof-grid > div:nth-child(odd) {
		border-left: 0;
	}

	.spt-proof-grid > div:nth-child(n + 3) {
		border-top: 1px solid rgb(255 255 255 / 24%);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.spt-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(13 19 20 / 97%);
		box-shadow: 0 -8px 24px rgb(0 0 0 / 20%);
		backdrop-filter: blur(12px);
	}

	.spt-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;
	}

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

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

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

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

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

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

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

	.spt-hero {
		min-height: max(31rem, 132vw);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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