:root {
	--nvx-navy: #0e2d48;
	--nvx-blue: #176da7;
	--nvx-blue-dark: #0f5688;
	--nvx-sky: #eaf4fa;
	--nvx-ice: #f6f9fb;
	--nvx-line: #d9e3e9;
	--nvx-text: #1e2d38;
	--nvx-muted: #5f6f7a;
	--nvx-white: #ffffff;
	--nvx-radius: 14px;
	--nvx-shadow: 0 14px 34px rgba(14, 45, 72, 0.08);
}

.nvx-site {
	color: var(--nvx-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

.nvx-site h1,
.nvx-site h2,
.nvx-site h3,
.nvx-site p {
	margin-top: 0;
}

.nvx-site h1,
.nvx-site h2,
.nvx-site h3 {
	color: var(--nvx-navy);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.16;
}

.nvx-site h1 {
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	margin-bottom: 1.25rem;
}

.nvx-site h2 {
	font-size: clamp(1.85rem, 3.6vw, 3rem);
	margin-bottom: 1rem;
}

.nvx-site h3 {
	font-size: 1.25rem;
	margin-bottom: 0.7rem;
}

.nvx-site a {
	color: var(--nvx-blue-dark);
}

.nvx-site img {
	display: block;
	height: auto;
	max-width: 100%;
}

.nvx-container {
	margin: 0 auto;
	max-width: 1180px;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

.nvx-section {
	padding: 92px 0;
}

.nvx-section--muted {
	background: var(--nvx-ice);
}

.nvx-section--dark {
	background: var(--nvx-navy);
	color: rgba(255, 255, 255, 0.82);
}

.nvx-section--dark h2,
.nvx-section--dark .nvx-eyebrow {
	color: var(--nvx-white);
}

.nvx-eyebrow {
	color: var(--nvx-blue-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: 0.85rem;
	text-transform: uppercase;
}

.nvx-lead {
	color: var(--nvx-muted);
	font-size: clamp(1.08rem, 2vw, 1.28rem);
	line-height: 1.7;
	max-width: 760px;
}

.nvx-helper {
	color: var(--nvx-muted);
	font-size: 0.9rem;
	margin: 1rem 0 0;
}

.nvx-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 1.8rem;
}

.nvx-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.98rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 0.9rem 1.35rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nvx-button--primary {
	background: var(--nvx-blue);
	color: var(--nvx-white) !important;
}

.nvx-button--primary:hover,
.nvx-button--primary:focus {
	background: var(--nvx-blue-dark);
}

.nvx-button--secondary {
	background: var(--nvx-white);
	border-color: var(--nvx-navy);
	color: var(--nvx-navy) !important;
}

.nvx-button--secondary:hover,
.nvx-button--secondary:focus {
	background: var(--nvx-ice);
}

.nvx-button--light {
	background: var(--nvx-white);
	color: var(--nvx-navy) !important;
}

.nvx-button--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--nvx-white) !important;
}

.nvx-button--outline-light:hover,
.nvx-button--outline-light:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--nvx-white);
}

.nvx-text-link {
	font-weight: 700;
	text-decoration: none;
}

.nvx-text-link:hover,
.nvx-text-link:focus {
	text-decoration: underline;
}

.nvx-hero {
	background: var(--nvx-white);
	padding-bottom: 76px;
	padding-top: 84px;
}

.nvx-home .nvx-hero h1 {
	font-size: clamp(2.5rem, 3.4vw, 3.25rem);
	line-height: 1.08;
	max-width: 21ch;
}

.nvx-hero__subheadline {
	color: var(--nvx-navy);
	font-size: clamp(1.12rem, 1.6vw, 1.3rem);
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.85rem;
	max-width: 34rem;
}

.nvx-hero__supporting {
	color: var(--nvx-muted);
	font-size: 0.98rem;
	line-height: 1.65;
	margin-bottom: 0;
	max-width: 34rem;
}

.nvx-hero__grid,
.nvx-product-hero__grid,
.nvx-split,
.nvx-contact-grid,
.nvx-spec-layout {
	align-items: center;
	display: grid;
	gap: clamp(38px, 7vw, 86px);
	grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
}

.nvx-hero__media,
.nvx-media-panel,
.nvx-product-hero__media {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	box-shadow: var(--nvx-shadow);
	overflow: hidden;
}

.nvx-hero__media img,
.nvx-media-panel img,
.nvx-product-hero__media img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.nvx-hero__media img {
	object-position: 58% center;
}

.nvx-proof-strip {
	background: var(--nvx-navy);
	color: var(--nvx-white);
	padding: 20px 0;
}

.nvx-proof-strip__grid {
	display: grid;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 16px 26px;
	grid-template-columns: repeat(4, 1fr);
	letter-spacing: 0.02em;
	text-align: center;
}

.nvx-proof-strip__item,
.nvx-proof-strip__item:visited {
	align-items: center;
	border-radius: 6px;
	color: var(--nvx-white) !important;
	display: flex;
	justify-content: center;
	text-decoration: none !important;
	transition: background-color 160ms ease;
}

.nvx-proof-strip__item:hover,
.nvx-proof-strip__item:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: var(--nvx-white) !important;
	text-decoration: underline !important;
	text-underline-offset: 0.18em;
}

.nvx-proof-strip__item:focus-visible {
	box-shadow: 0 0 0 2px var(--nvx-white);
	outline: none;
}

.nvx-section-heading {
	margin-bottom: 38px;
	max-width: 760px;
}

.nvx-section-heading > p:last-child {
	color: var(--nvx-muted);
	font-size: 1.06rem;
}

.nvx-section-heading--split {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.nvx-category-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.nvx-category-card {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	color: var(--nvx-text) !important;
	display: block;
	min-height: 210px;
	padding: 28px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nvx-category-card:hover,
.nvx-category-card:focus {
	border-color: var(--nvx-blue);
	box-shadow: var(--nvx-shadow);
	transform: translateY(-2px);
}

.nvx-category-card p {
	color: var(--nvx-muted);
}

.nvx-category-card span {
	color: var(--nvx-blue-dark);
	font-weight: 700;
}

.nvx-product-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nvx-product-card {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.nvx-product-card__image {
	background: #f9fbfc;
	display: block;
	overflow: hidden;
}

.nvx-product-card__image img {
	aspect-ratio: 4 / 3;
	object-fit: contain;
	padding: 14px;
	transition: transform 180ms ease;
	width: 100%;
}

.nvx-product-card:hover .nvx-product-card__image img {
	transform: scale(1.02);
}

.nvx-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.nvx-product-card__body h3 a {
	color: var(--nvx-navy);
	text-decoration: none;
}

.nvx-product-card__body > p:not(.nvx-eyebrow) {
	color: var(--nvx-muted);
	font-size: 0.94rem;
}

.nvx-product-card__body .nvx-text-link {
	margin-top: auto;
}

.nvx-check-list {
	list-style: none;
	margin: 1.5rem 0 2rem;
	padding: 0;
}

.nvx-check-list li {
	margin-bottom: 0.75rem;
	padding-left: 1.6rem;
	position: relative;
}

.nvx-check-list li::before {
	color: var(--nvx-blue);
	content: "✓";
	font-weight: 700;
	left: 0;
	position: absolute;
}

.nvx-process__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.nvx-process__grid li {
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 18px;
}

.nvx-process__grid strong {
	color: #8cc8e7;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
}

.nvx-process__grid span {
	color: var(--nvx-white);
	font-size: 1rem;
	font-weight: 700;
}

.nvx-beyond {
	align-items: start;
	display: grid;
	gap: clamp(32px, 7vw, 86px);
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.nvx-beyond p {
	color: var(--nvx-muted);
}

.nvx-cta {
	background: var(--nvx-blue);
	color: rgba(255, 255, 255, 0.86);
	padding: 62px 0;
}

.nvx-cta h2,
.nvx-cta .nvx-eyebrow {
	color: var(--nvx-white);
}

.nvx-cta__inner {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.nvx-cta__inner p:last-child {
	margin-bottom: 0;
}

.nvx-page-hero {
	background: var(--nvx-white);
	padding-bottom: 74px;
	padding-top: 74px;
}

.nvx-page-hero .nvx-container > h1,
.nvx-page-hero .nvx-container > .nvx-lead {
	max-width: 850px;
}

.nvx-info-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nvx-info-grid > div {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	padding: 28px;
}

.nvx-info-grid p {
	color: var(--nvx-muted);
	margin-bottom: 0;
}

.nvx-spec-request {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nvx-spec-request span {
	background: var(--nvx-ice);
	border: 1px solid var(--nvx-line);
	border-radius: 8px;
	font-weight: 700;
	padding: 16px 18px;
}

.nvx-brand-panel {
	background: var(--nvx-ice);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	padding: 42px;
	text-align: center;
}

.nvx-brand-panel img {
	margin: 0 auto 16px;
	max-width: 320px;
	width: 100%;
}

.nvx-catalog-intro {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 34px;
}

.nvx-catalog-intro > div {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
}

.nvx-catalog-intro strong {
	color: var(--nvx-navy);
}

.nvx-catalog-intro span,
.nvx-product-buyer-note {
	color: var(--nvx-muted);
	font-size: 0.92rem;
}

.nvx-category-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 34px;
}

.nvx-category-nav a {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: 999px;
	color: var(--nvx-navy);
	font-size: 0.92rem;
	font-weight: 700;
	padding: 9px 15px;
	text-decoration: none;
}

.nvx-category-nav a:hover,
.nvx-category-nav a:focus,
.nvx-category-nav a.is-current {
	background: var(--nvx-navy);
	border-color: var(--nvx-navy);
	color: var(--nvx-white);
}

.nvx-product-hero {
	background: var(--nvx-white);
	padding-top: 46px;
}

.nvx-breadcrumbs {
	color: var(--nvx-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.88rem;
	gap: 8px;
	margin-bottom: 34px;
}

.nvx-breadcrumbs a {
	color: var(--nvx-muted);
	text-decoration: none;
}

.nvx-product-hero__media img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	padding: 28px;
}

.nvx-spec-layout {
	align-items: start;
	grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
}

.nvx-spec-table {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	overflow: hidden;
}

.nvx-spec-row {
	display: grid;
	grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
	margin: 0;
}

.nvx-spec-row + .nvx-spec-row {
	border-top: 1px solid var(--nvx-line);
}

.nvx-spec-row dt,
.nvx-spec-row dd {
	margin: 0;
	padding: 15px 18px;
}

.nvx-spec-row dt {
	background: #edf4f8;
	font-weight: 700;
}

.nvx-rfq-panel,
.nvx-contact-aside {
	background: var(--nvx-navy);
	border-radius: var(--nvx-radius);
	color: rgba(255, 255, 255, 0.82);
	padding: 32px;
}

.nvx-rfq-panel h2,
.nvx-contact-aside h2,
.nvx-contact-aside a {
	color: var(--nvx-white);
}

.nvx-rfq-panel .nvx-check-list li::before,
.nvx-contact-aside .nvx-check-list li::before {
	color: #8cc8e7;
}

.nvx-contact-grid {
	align-items: start;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.nvx-rfq-form {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	box-shadow: var(--nvx-shadow);
	padding: clamp(24px, 5vw, 42px);
}

.nvx-rfq-form label {
	color: var(--nvx-navy);
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.nvx-rfq-form input,
.nvx-rfq-form textarea,
.nvx-rfq-form select {
	background: var(--nvx-white);
	border: 1px solid #aebcc6;
	border-radius: 7px;
	color: var(--nvx-text);
	display: block;
	font: inherit;
	font-weight: 400;
	margin-top: 7px;
	min-height: 46px;
	padding: 10px 12px;
	width: 100%;
}

.nvx-rfq-form textarea {
	min-height: 150px;
	resize: vertical;
}

.nvx-rfq-form input:focus,
.nvx-rfq-form textarea:focus,
.nvx-rfq-form select:focus {
	border-color: var(--nvx-blue);
	box-shadow: 0 0 0 3px rgba(23, 109, 167, 0.14);
	outline: none;
}

.nvx-form-row {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nvx-honeypot {
	left: -9999px;
	position: absolute;
}

.nvx-form-status {
	background: #e4f5ea;
	border: 1px solid #9acbad;
	border-radius: 8px;
	color: #155b32;
	font-weight: 700;
	margin-bottom: 18px;
	padding: 14px 16px;
}

.nvx-form-status--error {
	background: #fff1f0;
	border-color: #e1a5a0;
	color: #8b211c;
}

.nvx-form-status--error a {
	color: inherit;
}

.nvx-media-link {
	display: block;
}

.nvx-media-link:focus-visible {
	outline: 3px solid var(--nvx-blue);
	outline-offset: -3px;
}

.nvx-contact-aside hr {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	margin: 26px 0;
}

.nvx-product-copy {
	max-width: 820px;
}

.nvx-product-capability-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nvx-product-capability-grid > div {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: var(--nvx-radius);
	padding: 28px;
}

.nvx-product-capability-grid p {
	color: var(--nvx-muted);
}

.nvx-product-capability-grid .nvx-check-list {
	margin-bottom: 0;
}

.nvx-application-row {
	align-items: center;
	background: var(--nvx-sky);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
	padding: 18px 20px;
}

.nvx-application-row span {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-line);
	border-radius: 999px;
	font-size: 0.9rem;
	padding: 6px 11px;
}

.nvx-optional {
	color: var(--nvx-muted);
	font-size: 0.78rem;
	font-weight: 400;
}

.nvx-footer {
	background: #0a2236;
	color: rgba(255, 255, 255, 0.76);
	font-family: Arial, Helvetica, sans-serif;
	padding: 64px 0 22px;
}

.nvx-footer__grid {
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(150px, 0.75fr));
}

.nvx-footer h2,
.nvx-footer h3 {
	color: var(--nvx-white);
	margin-top: 0;
}

.nvx-footer h2 {
	font-size: 1.65rem;
	margin-bottom: 14px;
}

.nvx-footer h3 {
	font-size: 1rem;
	margin-bottom: 16px;
}

.nvx-footer p {
	margin-top: 0;
}

.nvx-footer__brand-note {
	color: #8cc8e7;
	font-weight: 700;
}

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

.nvx-footer li + li {
	margin-top: 9px;
}

.nvx-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.nvx-footer a:hover,
.nvx-footer a:focus {
	color: var(--nvx-white);
	text-decoration: underline;
}

.nvx-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	font-size: 0.82rem;
	gap: 20px;
	justify-content: space-between;
	margin-top: 44px;
	padding-top: 20px;
}

body.nvx-catalog-context footer.site-footer {
	display: none;
}

body.nvx-shortcode-page .entry-header {
	display: none;
}

body.nvx-shortcode-page .entry-content {
	margin-top: 0;
}

body.nvx-shortcode-page {
	overflow-x: clip;
}

body.post-type-archive-nvx_product .ast-container,
body.tax-nvx_product_cat .ast-container,
body.single-nvx_product .ast-container,
body.page .entry-content > .nvx-site {
	max-width: none;
}

body.post-type-archive-nvx_product #content > .ast-container,
body.tax-nvx_product_cat #content > .ast-container,
body.single-nvx_product #content > .ast-container {
	display: block;
	padding: 0;
}

body.page .entry-content > .nvx-site {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.nvx-intent-grid,
.nvx-procurement-copy {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 32px;
}

.nvx-procurement-copy {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nvx-intent-grid > div,
.nvx-procurement-copy > div {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-border);
	border-radius: var(--nvx-radius);
	padding: 28px;
}

.nvx-section:not(.nvx-section--muted) .nvx-intent-grid > div,
.nvx-section:not(.nvx-section--muted) .nvx-procurement-copy > div {
	background: var(--nvx-surface);
}

.nvx-intent-grid h3,
.nvx-procurement-copy h3 {
	font-size: 1.08rem;
	margin-bottom: 12px;
}

.nvx-faq-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.nvx-faq-item {
	background: var(--nvx-white);
	border: 1px solid var(--nvx-border);
	border-radius: 12px;
	padding: 0 22px;
}

.nvx-faq-item summary {
	color: var(--nvx-navy);
	cursor: pointer;
	font-weight: 700;
	padding: 19px 34px 19px 0;
}

.nvx-faq-item summary:focus-visible {
	outline: 3px solid rgba(17, 95, 153, 0.28);
	outline-offset: 4px;
}

.nvx-faq-item p {
	margin: 0;
	padding: 0 0 20px;
}

.nvx-context-links {
	align-items: center;
	border-top: 1px solid var(--nvx-border);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-top: 34px;
	padding-top: 24px;
}

.nvx-context-links strong {
	color: var(--nvx-navy);
}

.nvx-context-links a {
	color: var(--nvx-blue);
	font-weight: 700;
	text-decoration: none;
}

.nvx-context-links a:hover,
.nvx-context-links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 1024px) {
	.nvx-category-grid,
	.nvx-info-grid,
	.nvx-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nvx-process__grid,
	.nvx-spec-request {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

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

@media (max-width: 820px) {
	.nvx-section {
		padding: 68px 0;
	}

	.nvx-hero__grid,
	.nvx-product-hero__grid,
	.nvx-split,
	.nvx-contact-grid,
	.nvx-spec-layout {
		grid-template-columns: 1fr;
	}

	.nvx-hero__content {
		order: 1;
	}

	.nvx-hero__media {
		order: 2;
	}

	.nvx-beyond,
	.nvx-product-capability-grid,
	.nvx-procurement-copy {
		grid-template-columns: 1fr;
	}

	.nvx-home .nvx-hero h1 {
		max-width: 14ch;
	}

	.nvx-section-heading--split,
	.nvx-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.nvx-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.nvx-section {
		padding: 54px 0;
	}

	.nvx-hero,
	.nvx-page-hero {
		padding-bottom: 54px;
		padding-top: 54px;
	}

	.nvx-home .nvx-hero h1 {
		font-size: 2.25rem;
		line-height: 1.08;
		max-width: 100%;
	}

	.nvx-hero__subheadline {
		font-size: 1.08rem;
	}

	.nvx-hero__media img {
		object-position: 64% center;
	}

	.nvx-category-grid,
	.nvx-info-grid,
	.nvx-product-grid,
	.nvx-process__grid,
	.nvx-spec-request,
	.nvx-form-row,
	.nvx-proof-strip__grid,
	.nvx-catalog-intro,
	.nvx-footer__grid {
		grid-template-columns: 1fr;
	}

	.nvx-brand-panel {
		padding: 28px 24px;
	}

	.nvx-proof-strip__grid {
		text-align: left;
	}

	.nvx-proof-strip__item {
		justify-content: flex-start;
	}

	.nvx-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.nvx-cta__inner,
	.nvx-cta .nvx-actions,
	.nvx-spec-request .nvx-actions {
		width: 100%;
	}

	.nvx-button {
		width: 100%;
	}

	.nvx-spec-row {
		grid-template-columns: 1fr;
	}

	.nvx-spec-row dd {
		padding-top: 10px;
	}

	.nvx-footer {
		padding-top: 48px;
	}

	.nvx-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.nvx-intent-grid {
		grid-template-columns: 1fr;
	}

	.nvx-intent-grid > div,
	.nvx-procurement-copy > div {
		padding: 22px;
	}

	.nvx-context-links {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nvx-site *,
	.nvx-site *::before,
	.nvx-site *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
