:root {
	--sm-ink: #0c1726;
	--sm-blue: #075a94;
	--sm-teal: #00a6a6;
	--sm-signal: #e65322;
	--sm-paper: #f6f8fa;
	--sm-line: #dbe4ea;
	--sm-muted: #52616b;
	--sm-white: #fff;
}

body {
	margin: 0;
	background: var(--sm-white);
	color: var(--sm-ink);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--sm-blue);
}

.sm-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.sm-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--sm-line);
	backdrop-filter: blur(10px);
}

.sm-header-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: 24px;
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
}

.sm-brand img {
	width: 190px;
	display: block;
}

.sm-primary-nav {
	flex: 1;
}

.sm-primary-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-primary-nav a {
	color: var(--sm-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sm-header-cta,
.sm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--sm-signal);
	color: var(--sm-white);
	font-weight: 800;
	text-decoration: none;
}

.sm-btn-outline {
	background: transparent;
	color: var(--sm-blue);
	border: 1px solid var(--sm-blue);
}

.sm-band-dark .sm-btn-outline {
	color: var(--sm-white);
	border-color: var(--sm-teal);
}

.sm-skip-link {
	position: absolute;
	left: -999px;
	top: 10px;
}

.sm-skip-link:focus {
	left: 10px;
	z-index: 100;
	background: var(--sm-white);
	padding: 8px 12px;
}

.sm-hero,
.sm-product-hero {
	padding: 76px 0 48px;
	background: linear-gradient(180deg, #fafdff 0%, var(--sm-paper) 100%);
}

.sm-hero-grid,
.sm-product-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
	gap: 46px;
	align-items: center;
}

.sm-hero h1,
.sm-product-hero h1,
.sm-page-hero h1 {
	margin: 0 0 18px;
	color: var(--sm-ink);
	font-family: "Barlow Condensed", Impact, sans-serif;
	font-size: clamp(42px, 6vw, 74px);
	line-height: .95;
	letter-spacing: 0;
}

.sm-hero p,
.sm-product-hero p,
.sm-page-hero p {
	max-width: 760px;
	color: var(--sm-muted);
	font-size: 18px;
}

.sm-eyebrow {
	margin: 0 0 10px;
	color: var(--sm-signal);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sm-hero-media,
.sm-product-media {
	margin: 0;
	border: 1px solid var(--sm-line);
	background: var(--sm-white);
}

.sm-hero-media img,
.sm-product-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	display: block;
}

.sm-band {
	padding: 64px 0;
}

.sm-band-soft {
	background: var(--sm-paper);
}

.sm-band-dark {
	background: var(--sm-ink);
	color: var(--sm-white);
}

.sm-band h2,
.sm-content h2,
.sm-spec-panel h2 {
	margin: 0 0 18px;
	font-family: "Barlow Condensed", Impact, sans-serif;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.05;
	letter-spacing: 0;
}

.sm-feature-grid,
.sm-equipment-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.sm-feature-card,
.sm-equipment-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid var(--sm-line);
	border-radius: 8px;
	background: var(--sm-white);
	color: var(--sm-ink);
	text-decoration: none;
}

.sm-feature-card {
	padding: 22px;
}

.sm-feature-card strong,
.sm-equipment-card strong {
	display: block;
	color: var(--sm-blue);
	font-size: 20px;
	line-height: 1.25;
}

.sm-feature-card span,
.sm-equipment-card em {
	display: block;
	margin-top: 8px;
	color: var(--sm-muted);
	font-style: normal;
	font-size: 14px;
}

.sm-equipment-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #eef4f8;
}

.sm-equipment-card__body {
	display: block;
	padding: 16px;
}

.sm-equipment-card__model {
	display: block;
	margin-bottom: 6px;
	color: var(--sm-signal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.sm-process-grid,
.sm-two-col {
	display: grid;
	grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
	gap: 40px;
	align-items: start;
}

.sm-steps {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.sm-steps li {
	counter-increment: step;
	padding: 18px 18px 18px 58px;
	border: 1px solid var(--sm-line);
	border-radius: 8px;
	background: var(--sm-white);
	position: relative;
}

.sm-steps li::before {
	content: counter(step);
	position: absolute;
	left: 18px;
	top: 18px;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--sm-teal);
	color: var(--sm-white);
	font-weight: 900;
}

.sm-steps strong,
.sm-steps span {
	display: block;
}

.sm-spec-panel {
	border: 1px solid var(--sm-line);
	border-radius: 8px;
	padding: 22px;
	background: var(--sm-paper);
}

.sm-spec-panel dl {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 8px 14px;
}

.sm-spec-panel dt {
	color: var(--sm-muted);
	font-weight: 800;
}

.sm-spec-panel dd {
	margin: 0;
}

.sm-spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.sm-spec-table th,
.sm-spec-table td {
	padding: 10px;
	border-bottom: 1px solid var(--sm-line);
	text-align: left;
	vertical-align: top;
}

.sm-rfq {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
}

.sm-rfq h2,
.sm-rfq p {
	color: inherit;
}

.sm-rfq-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sm-cta-note {
	color: #dce8f1;
}

.sm-site-footer {
	background: #07101d;
	color: #dce8f1;
	padding: 34px 0;
}

.sm-footer-inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.sm-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sm-footer-links a {
	color: #fff;
}

@media (max-width: 880px) {
	.sm-header-inner,
	.sm-primary-nav ul,
	.sm-footer-inner,
	.sm-rfq {
		align-items: flex-start;
		flex-direction: column;
	}

	.sm-primary-nav ul {
		gap: 10px;
	}

	.sm-header-cta {
		display: none;
	}

	.sm-hero-grid,
	.sm-product-hero-grid,
	.sm-process-grid,
	.sm-two-col,
	.sm-feature-grid,
	.sm-equipment-grid {
		grid-template-columns: 1fr;
	}

	.sm-container {
		width: min(100% - 28px, 1180px);
	}
}
