:root {
	--ink: #162f71;
	--red: #db4147;
	--muted: #6b7280;
	--navy: #161d2b;
	--soft: #f5f7fb;
	--max: 1256px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	color: #222;
	background: #fff;
	line-height: 1.5;
	overflow-x: clip;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	color: inherit;
	font: inherit;
}

.content-width {
	width: min(var(--max), calc(100% - 180px));
	margin: 0 auto;
}

.site-header {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	color: #fff;
}

.header-inner {
	height: 100%;
	width: min(1322px, calc(100% - 110px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 318px 1fr 276px;
	align-items: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: max-content;
	color: inherit;
	line-height: 1;
}

.brand img {
	width: 224px;
	height: 44px;
	display: block;
	object-fit: contain;
}

.primary-nav {
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.primary-nav > a,
.nav-submenu > button,
.nav-submenu > .nav-parent-link {
	min-width: 100px;
	height: 100%;
	padding: 0 10px;
	border: 0;
	position: relative;
	background: transparent;
	color: inherit;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 16px;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.primary-nav > a::after,
.nav-submenu > button::after,
.nav-submenu > .nav-parent-link::after {
	content: "";
	position: absolute;
	bottom: 21px;
	left: 50%;
	width: 22px;
	height: 2px;
	background: currentColor;
	opacity: 0;
	transform: translateX(-50%) scaleX(0.25);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-submenu:hover > button::after,
.nav-submenu > button:focus-visible::after,
.nav-submenu > .nav-parent-link:hover::after,
.nav-submenu > .nav-parent-link.is-active::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.nav-submenu {
	position: relative;
}

.nav-submenu.is-empty .submenu-panel {
	display: none;
}

.is-hidden {
	display: none !important;
}

.submenu-panel {
	position: absolute;
	top: 111px;
	left: 50%;
	width: max-content;
	min-width: 180px;
	max-width: 100vw;
	box-sizing: border-box;
	padding: 7px 0;
	background: #fff;
	color: #212121;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -8px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.nav-submenu:hover .submenu-panel,
.nav-submenu.is-open .submenu-panel {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.submenu-panel a {
	display: block;
	padding: 9px 18px;
	font-size: 13px;
	line-height: 1.45;
	white-space: normal;
}

.submenu-panel a:hover {
	color: var(--ink);
	background: #f3f5f9;
}

.product-submenu .submenu-panel {
	min-width: 220px;
}

.hotline {
	justify-self: end;
	margin: 0;
	font-size: 13px;
	white-space: nowrap;
}

.hero {
	height: 604px;
	position: relative;
	overflow: hidden;
	background: #020a16;
	color: #fff;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	background: #020a16;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	pointer-events: none;
}

.hero-copy {
	position: relative;
	z-index: 1;
	width: min(1200px, calc(100% - 240px));
	margin: 0 auto;
	padding-top: 244px;
}

.hero-eyebrow {
	margin: 0 0 2px;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 400;
}

.hero h1 {
	margin: 0;
	font-size: 45px;
	line-height: 1.18;
	font-weight: 800;
}

.hero-note {
	margin: 50px 0 0;
	font-size: 16px;
	position: relative;
	padding-left: 40px;
}

.hero-note::before {
	content: "";
	width: 36px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	background: #fff;
}

.products {
	min-height: 620px;
	padding: 67px 0 0;
	background: #f7f8fc;
	position: relative;
	overflow: hidden;
}

.products::before,
.products::after {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border: 1px solid #e0e5ef;
	transform: rotate(45deg);
	opacity: 0.64;
	pointer-events: none;
}

.products::before {
	left: -280px;
	top: -110px;
}

.products::after {
	right: -280px;
	top: -110px;
}

.section-heading {
	position: relative;
	z-index: 1;
}

.section-heading span {
	display: block;
	color: var(--red);
	font-size: 14px;
	line-height: 1.1;
}

.section-heading h2 {
	margin: 10px 0 0;
	color: var(--ink);
	font-size: 31px;
	line-height: 1.16;
	font-weight: 500;
}

.product-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	margin-top: 50px;
}

.product-item {
	display: grid;
	min-height: 321px;
	grid-template-rows: 239px auto;
	background: #fff;
	overflow: hidden;
}

.product-item img {
	display: block;
	width: 100%;
	height: 239px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.product-item strong {
	display: grid;
	min-height: 82px;
	place-items: center;
	padding: 18px 10px;
	color: #111;
	text-align: center;
	font-size: 15px;
	transition: color 0.25s ease;
}

.product-item:hover img {
	transform: scale(1.04);
}

.about {
	min-height: 752px;
	color: #fff;
	background: #233a69 center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.about-shade {
	position: absolute;
	inset: 0;
	background: rgba(5, 25, 65, 0.6);
}

.about-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding-top: 130px;
}

.light-heading span {
	color: #ef4e55;
}

.light-heading h2 {
	color: #fff;
	font-size: 32px;
}

.about-copy {
	max-width: 870px;
	margin: 31px auto 0;
	font-size: 15px;
	line-height: 1.72;
}

.outline-button,
.solid-button {
	display: inline-grid;
	place-items: center;
	width: 165px;
	height: 55px;
	margin-top: 42px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.outline-button:hover {
	color: var(--ink);
	background: #fff;
	transform: translateY(-3px);
}

.stats {
	margin-top: 38px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stats article {
	min-height: 118px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 6px;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.stats article:last-child {
	border-right: 0;
}

.stats strong {
	font-size: 35px;
	line-height: 1;
	font-weight: 500;
}

.stats span {
	font-size: 14px;
}

.applications {
	min-height: 1516px;
	overflow: visible;
	background: #fff;
}

.applications-inner {
	display: grid;
	grid-template-columns: 465px 1fr;
	gap: 60px;
	min-height: 1516px;
	padding: 106px 0;
	align-items: start;
}

.applications-copy {
	position: sticky;
	top: 30px;
	align-self: start;
}

.applications-copy p {
	width: 465px;
	margin: 36px 0 0;
	color: #6e7177;
	font-size: 14px;
	line-height: 1.78;
}

.solid-button {
	margin-top: 103px;
	border-color: var(--ink);
	background: var(--ink);
}

.solid-button:hover {
	background: #fff;
	color: var(--ink);
	transform: translateY(-3px);
}

.application-mosaic {
	position: relative;
	width: 737px;
	height: 1320px;
}

.application-card {
	position: absolute;
	display: block;
	overflow: hidden;
	background: #091936;
	color: #fff;
}

.application-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.application-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	opacity: 0.65;
	transition: opacity 0.3s ease;
}

.application-card span {
	position: absolute;
	z-index: 1;
	left: 18px;
	right: 18px;
	bottom: 17px;
	text-align: center;
	font-size: 21px;
	line-height: 1.25;
	font-weight: 600;
}

.application-card small {
	display: block;
	margin: 20px auto 0;
	max-width: 268px;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 400;
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.application-card:hover img {
	transform: scale(1.05);
}

.application-card:hover::after {
	opacity: 1;
	background: rgba(0, 0, 0, 0.56);
}

.application-card:hover small {
	opacity: 1;
	transform: translateY(0);
}

.smelting {
	left: 0;
	top: 0;
	width: 359px;
	height: 426px;
}

.battery {
	left: 379px;
	top: 0;
	width: 359px;
	height: 359px;
}

.water {
	left: 379px;
	top: 379px;
	width: 359px;
	height: 359px;
}

.petrochemical {
	left: 0;
	top: 446px;
	width: 359px;
	height: 426px;
}

.power {
	left: 379px;
	top: 758px;
	width: 359px;
	height: 359px;
}

.gas {
	left: 0;
	top: 892px;
	width: 359px;
	height: 426px;
}

.news {
	overflow: hidden;
	padding: 75px 0;
	background: #f5f7fb;
}

.news-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	margin-top: 36px;
}

.featured-news {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 54px;
	padding-top: 2px;
}

.feature-story {
	min-height: 270px;
	position: relative;
}

.feature-story h3,
.news-list b {
	margin: 0;
	color: #202225;
	font-size: 17px;
	line-height: 1.45;
	font-weight: 700;
}

.feature-story time {
	display: block;
	margin-top: 6px;
	color: #8c919b;
	font-size: 14px;
}

.feature-story p {
	margin: 24px 0 0;
	color: #666d78;
	font-size: 14px;
	line-height: 1.55;
}

.feature-story > a {
	position: absolute;
	right: 10px;
	bottom: 28px;
	font-size: 33px;
	font-weight: 300;
}

.feature-story > span {
	position: absolute;
	left: -17px;
	bottom: 0;
	border: 1px solid #d9dde5;
	padding: 2px 8px;
	color: #a0a4ad;
	font-size: 12px;
}

.news-list {
	padding-top: 2px;
}

.news-list a {
	min-height: 73px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #e3e6eb;
}

.news-list b {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-list time {
	color: #9297a1;
	font-size: 14px;
	white-space: nowrap;
}

.partners {
	height: 370px;
	padding-top: 82px;
	overflow: hidden;
	background: #fff;
}

.partner-strip {
	height: 108px;
	width: 100%;
	margin-top: 36px;
	overflow: hidden;
}

.partner-track {
	width: max-content;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 60px;
	animation: partner-scroll 28s linear infinite;
}

.partner-track img {
	width: 188px;
	height: 72px;
	flex: 0 0 auto;
	display: block;
	object-fit: contain;
	opacity: 0.82;
	transition: opacity 0.2s ease;
}

.partner-track img:hover {
	opacity: 1;
}

.partner-strip:hover .partner-track {
	animation-play-state: paused;
}

@keyframes partner-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 30px));
	}
}

.footer-menu {
	height: 100px;
	background: var(--navy);
	color: #fff;
}

.footer-menu .content-width {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-menu a {
	font-size: 14px;
}

.footer-menu a:hover {
	color: #ef4e55;
}

.footer-body {
	height: 286px;
	background: var(--navy);
	color: #c6cbd4;
}

.footer-content {
	height: 100%;
	position: relative;
}

.brand-footer img {
	width: 230px;
	height: 46px;
}

.footer-brand {
	position: absolute;
	left: 30px;
	top: 29px;
}

.footer-content > p {
	position: absolute;
	left: 30px;
	top: 176px;
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
}

.qr-group {
	position: absolute;
	right: 26px;
	top: 23px;
	display: flex;
	justify-content: flex-end;
	gap: 50px;
}

.qr-group figure {
	width: 112px;
	margin: 0;
	text-align: center;
}

.qr-group img {
	width: 112px;
	height: 112px;
	background: #fff;
	padding: 6px;
	display: block;
}

.qr-group figcaption {
	margin-top: 7px;
	color: #9da4b0;
	font-size: 14px;
}

.legal {
	height: 48px;
	display: grid;
	place-items: center;
	background: #111723;
	color: #8b92a0;
	font-size: 12px;
}

.support-tools {
	position: fixed;
	z-index: 30;
	right: 20px;
	top: 63%;
	display: grid;
	gap: 10px;
}

.support-tools > a,
.support-tools > button {
	width: 50px;
	height: 50px;
	padding: 0;
	position: relative;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 13px rgba(14, 28, 54, 0.18);
	cursor: pointer;
}

.support-tools img {
	width: 25px;
	height: 25px;
}

.support-tools > a::after,
.support-tools > button::after {
	content: attr(data-tooltip);
	position: absolute;
	right: 62px;
	top: 50%;
	padding: 8px 11px;
	border-radius: 2px;
	color: #fff;
	background: #172b59;
	box-shadow: 0 6px 16px rgba(12, 30, 69, 0.16);
	font-size: 12px;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translate(8px, -50%);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.support-tools > a::before,
.support-tools > button::before {
	content: "";
	position: absolute;
	z-index: 1;
	right: 56px;
	top: 50%;
	border: 5px solid transparent;
	border-left-color: #172b59;
	opacity: 0;
	pointer-events: none;
	transform: translate(8px, -50%);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.support-tools > a:hover::after,
.support-tools > a:hover::before,
.support-tools > button:hover::after,
.support-tools > button:hover::before,
.support-tools > a:focus-visible::after,
.support-tools > a:focus-visible::before,
.support-tools > button:focus-visible::after,
.support-tools > button:focus-visible::before {
	opacity: 1;
	transform: translate(0, -50%);
}

.section-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.section-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.products {
	opacity: 1;
	transform: none;
}

.motion-target {
	transition:
		opacity 0.65s ease var(--motion-delay, 0ms),
		transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) var(--motion-delay, 0ms);
}

body:not(.reduce-motion) .motion-target {
	opacity: 0;
	transform: translateY(24px);
}

body:not(.reduce-motion) .motion-target.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1040px) {
	.header-inner {
		width: calc(100% - 40px);
		grid-template-columns: 240px 1fr 170px;
	}

	.primary-nav > a,
	.nav-submenu > button,
	.nav-submenu > .nav-parent-link {
		min-width: 70px;
		font-size: 14px;
	}

	.content-width {
		width: calc(100% - 60px);
	}

	.applications-inner {
		grid-template-columns: 40% 1fr;
		gap: 30px;
	}

	.applications-copy p {
		width: auto;
	}

	.application-mosaic {
		transform: scale(0.82);
		transform-origin: left top;
	}

	.applications,
	.applications-inner {
		min-height: 1250px;
	}

	.footer-brand {
		left: 0;
	}

	.footer-content > p {
		left: 0;
	}
}

@media (max-width: 768px) {
	.content-width {
		width: 100%;
	}

	.site-header {
		position: static;
		height: 50px;
		color: #172334;
		background: #fff;
	}

	.header-inner {
		width: 100%;
		display: flex;
		padding-left: 58px;
	}

	.brand img {
		width: 172px;
		height: 34px;
	}

	.primary-nav,
	.hotline {
		display: none;
	}

	.hero {
		height: 359px;
		background: #020a16;
	}

	.hero-copy {
		display: none;
	}

	.products {
		min-height: 647px;
		padding: 0;
	}

	.products::before,
	.products::after {
		display: none;
	}

	.section-heading-left {
		text-align: center;
	}

	.section-heading span {
		font-size: 14px;
	}

	.section-heading h2 {
		font-size: 25px;
	}

	.products .section-heading {
		height: 69px;
		padding-top: 12px;
	}

	.product-grid {
		width: 100%;
		margin: 0;
		grid-template-columns: repeat(6, 1fr);
		gap: 0;
	}

	.product-item {
		height: 289px;
		background: #fff;
		padding: 10px;
	}

	.product-item:nth-child(1) {
		grid-column: 1 / 4;
		padding-left: 74px;
	}

	.product-item:nth-child(2) {
		grid-column: 4 / 7;
		padding-left: 74px;
	}

	.product-item:nth-child(3),
	.product-item:nth-child(4),
	.product-item:nth-child(5) {
		grid-column: span 2;
	}

	.product-item img {
		width: 100%;
		height: 237px;
		object-fit: cover;
	}

	.product-item strong {
		opacity: 1;
		padding: 10px 0 0;
		font-size: 16px;
		white-space: nowrap;
	}

	.about {
		min-height: 611px;
	}

	.about-inner {
		padding: 25px 25px 0;
	}

	.light-heading h2 {
		font-size: 23px;
	}

	.about-copy {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.95;
	}

	.outline-button {
		margin-top: 15px;
		width: 308px;
		height: 56px;
	}

	.stats {
		display: none;
	}

	.applications {
		min-height: 301px;
		height: 301px;
	}

	.applications-inner {
		display: block;
		min-height: auto;
	}

	.applications-copy {
		position: static;
	}

	.applications .section-heading-left {
		text-align: left;
	}

	.applications-copy p {
		display: none;
	}

	.applications .solid-button {
		display: none;
	}

	.application-mosaic {
		display: none;
	}

	.news {
		height: 1672px;
		padding: 70px 35px 0;
	}

	.news .section-heading-left {
		text-align: left;
	}

	.news-layout {
		display: block;
		margin-top: 35px;
	}

	.featured-news {
		display: block;
		padding: 0;
	}

	.feature-story {
		min-height: 270px;
		padding-top: 15px;
	}

	.feature-story + .feature-story {
		margin-top: 25px;
	}

	.news-list {
		padding-top: 24px;
	}

	.partners {
		height: 252px;
		padding: 55px 35px 0;
	}

	.partners .section-heading-left {
		text-align: left;
	}

	.partner-strip {
		height: 88px;
		margin-top: 30px;
	}

	.partner-track {
		gap: 40px;
		animation-name: partner-scroll-mobile;
	}

	.partner-track img {
		width: 146px;
		height: 58px;
	}

	@keyframes partner-scroll-mobile {
		from {
			transform: translateX(0);
		}

		to {
			transform: translateX(calc(-50% - 20px));
		}
	}

	.footer-menu {
		height: 59px;
		overflow: hidden;
	}

	.footer-menu .content-width {
		width: 100%;
		min-width: 760px;
		padding: 0 22px;
		gap: 27px;
		justify-content: flex-start;
	}

	.footer-menu a {
		font-size: 12px;
		white-space: nowrap;
	}

	.footer-body {
		height: 375px;
	}

	.footer-content {
		width: 100%;
		padding: 48px 40px;
		display: block;
	}

	.footer-content {
		position: relative;
	}

	.footer-brand {
		position: static;
	}

	.brand-footer {
		font-size: 26px;
	}

	.footer-content > p {
		position: static;
		margin: 28px 0 0;
		font-size: 12px;
	}

	.qr-group {
		position: absolute;
		right: 34px;
		bottom: 73px;
		gap: 14px;
		transform: scale(0.72);
		transform-origin: right bottom;
	}

	.legal {
		height: 40px;
		font-size: 11px;
	}

	.support-tools {
		right: 9px;
		top: auto;
		bottom: 118px;
		gap: 8px;
	}

	.support-tools > a,
	.support-tools > button {
		width: 44px;
		height: 44px;
	}

	.support-tools > a::after,
	.support-tools > button::after {
		right: 55px;
		font-size: 11px;
	}

	.support-tools > a::before,
	.support-tools > button::before {
		right: 49px;
	}
}

.mobile-menu-button,
.mobile-nav-panel {
	display: none;
}

.sub-banner {
	height: 485px;
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	background-color: #0c2455;
	background-position: center;
	background-size: cover;
	animation: banner-drift 16s ease-in-out infinite alternate;
}

.sub-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 22, 56, 0.24);
}

.sub-banner-copy {
	position: relative;
	z-index: 1;
	margin-top: 28px;
	text-align: center;
}

.sub-banner h1 {
	margin: 0;
	font-size: 39px;
	font-weight: 600;
	line-height: 1.15;
}

.sub-banner p {
	margin: 12px 0 0;
	font-size: 14px;
}

.banner-about {
	background-image: url("../images/banner-about-final.jpg");
}

.banner-products {
	background-image: url("../images/banner-products-final.png");
}

.banner-applications {
	background-image: url("../images/banner-applications-final.png");
}

.banner-download {
	background-image: url("../images/banner-download-final.jpg");
}

.banner-news {
	background-image: url("../images/banner-news-final.png");
}

.banner-contact {
	background-image: url("../images/banner-contact-final.png");
}

@keyframes banner-drift {
	from {
		background-position: center center;
	}

	to {
		background-position: center calc(50% - 18px);
	}
}

.eyebrow {
	margin: 0;
	color: var(--red);
	font-size: 14px;
	line-height: 1.2;
}

.ink-button {
	max-width: 100%;
	padding: 0 20px;
	height: 54px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--ink);
	color: #fff;
	background: var(--ink);
	font-size: 14px;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.ink-button:hover {
	color: var(--ink);
	background: #fff;
	transform: translateY(-3px);
}

.about-profile {
	min-height: 570px;
	padding: 135px 0 110px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 110px;
}

.about-profile-copy h2,
.about-history h2,
.qualification-section h2 {
	max-width: 465px;
	margin: 13px 0 25px;
	color: var(--ink);
	font-size: 33px;
	line-height: 1.25;
	font-weight: 500;
}

.about-profile-copy > p:not(.eyebrow),
.history-copy p {
	margin: 0 0 18px;
	color: #616872;
	font-size: 14px;
	line-height: 1.9;
}

.about-profile > img {
	width: 100%;
	height: 335px;
	object-fit: cover;
}

.metric-band {
	background: #112667;
	color: #fff;
}

.metrics {
	min-height: 190px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.metrics article {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics article:last-child {
	border: 0;
}

.metrics strong {
	font-size: 35px;
	line-height: 1;
	font-weight: 500;
}

.metrics span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
}

.about-history {
	min-height: 390px;
	padding: 110px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 110px;
}

.history-copy {
	padding-top: 24px;
}

.history-copy .ink-button {
	margin-top: 17px;
}

.qualification-section {
	padding: 100px 0 115px;
	background: #f7f8fc;
}

.qualification-list {
	margin-top: 58px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #dfe4ec;
}

.qualification-list article {
	min-height: 150px;
	padding: 30px 16px;
	border-right: 1px solid #dfe4ec;
	display: grid;
	align-content: center;
	gap: 20px;
}

.qualification-list article:first-child {
	border-left: 1px solid #dfe4ec;
}

.qualification-list b {
	color: var(--red);
	font-size: 18px;
	font-weight: 500;
}

.qualification-list span {
	color: #4f5561;
	font-size: 14px;
}

.product-page-content {
	background: #f7f8fc;
	padding-bottom: 110px;
}

.product-categories {
	min-height: 90px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 12;
	box-shadow: 0 1px 0 #edf0f5;
}

.product-categories button {
	min-width: 160px;
	padding: 0 22px;
	border: 0;
	background: transparent;
	color: #353941;
	font-size: 15px;
	cursor: pointer;
	position: relative;
}

.product-categories button + button::before {
	content: "";
	position: absolute;
	left: 0;
	top: 34px;
	width: 1px;
	height: 22px;
	background: #d7dbe2;
}

.product-categories button.is-active {
	color: var(--ink);
	font-weight: 700;
}

.product-categories button.is-active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 33px;
	height: 2px;
	transform: translateX(-50%);
	background: var(--red);
}

.catalog-content {
	padding-top: 95px;
}

.catalog-group {
	margin-bottom: 88px;
}

.catalog-group.is-filtered-out {
	display: none;
}

.catalog-group h2 {
	margin: 0 0 34px;
	color: var(--ink);
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
}

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

.catalog-card {
	min-height: 288px;
	background: #fff;
	display: grid;
	grid-template-rows: 225px auto;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(25, 48, 95, 0.05);
}

.catalog-card img {
	width: 100%;
	height: 225px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.catalog-card span {
	padding: 20px 14px;
	color: #333942;
	text-align: center;
	font-size: 15px;
}

.catalog-card:hover img {
	transform: scale(1.04);
}

.application-page {
	min-height: 790px;
	padding: 105px 0 120px;
}

.application-page-intro {
	max-width: 690px;
	margin-bottom: 56px;
}

.application-page-intro h2 {
	margin: 13px 0 19px;
	color: var(--ink);
	font-size: 34px;
	line-height: 1.22;
	font-weight: 500;
}

.application-page-intro > p:not(.eyebrow) {
	margin: 0;
	color: #626a75;
	font-size: 14px;
	line-height: 1.85;
}

.application-list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.application-list-card {
	min-height: 312px;
	position: relative;
	overflow: hidden;
	display: block;
	background: #0d214d;
	color: #fff;
}

.application-list-card img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.application-list-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(4, 16, 45, 0.06),
		rgba(4, 16, 45, 0.78)
	);
	transition: background 0.3s ease;
}

.application-list-card span {
	position: absolute;
	z-index: 1;
	left: 27px;
	right: 27px;
	bottom: 25px;
	display: grid;
	gap: 7px;
}

.application-list-card small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	text-transform: uppercase;
}

.application-list-card b {
	font-size: 20px;
	line-height: 1.28;
	font-weight: 500;
}

.application-list-card em {
	margin-top: 10px;
	color: #fff;
	font-size: 13px;
	font-style: normal;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.application-list-card:hover img {
	transform: scale(1.06);
}

.application-list-card:hover::after {
	background: linear-gradient(
		180deg,
		rgba(4, 16, 45, 0.18),
		rgba(4, 16, 45, 0.9)
	);
}

.application-list-card:hover em {
	opacity: 1;
	transform: translateY(0);
}

.application-detail {
	min-height: 660px;
	padding: 126px 0 115px;
	text-align: center;
}

.application-detail > h2 {
	margin: 0;
	color: #343a42;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.2;
}

.application-detail > p {
	max-width: 780px;
	margin: 22px auto 67px;
	color: #666e79;
	font-size: 14px;
	line-height: 1.75;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
}

.case-card {
	min-height: 278px;
	position: relative;
	overflow: hidden;
	background: #0d214d;
	text-align: left;
	color: #fff;
}

.case-card img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
	opacity: 0.76;
	transition: transform 0.35s ease;
}

.case-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(3, 15, 39, 0.28);
}

.case-card span {
	position: absolute;
	z-index: 1;
	left: 26px;
	right: 26px;
	bottom: 25px;
	display: grid;
	gap: 7px;
}

.case-card b {
	font-size: 16px;
	line-height: 1.4;
}

.case-card small {
	font-size: 13px;
	opacity: 0.82;
}

.case-card:hover img {
	transform: scale(1.05);
}

.product-categories a {
	min-width: 160px;
	padding: 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #353941;
	font-size: 15px;
	position: relative;
}

.product-categories a + a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 34px;
	width: 1px;
	height: 22px;
	background: #d7dbe2;
}

.product-categories a.is-active {
	color: var(--ink);
	font-weight: 700;
}

.product-categories a.is-active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 33px;
	height: 2px;
	transform: translateX(-50%);
	background: var(--red);
}

.cases-carousel {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
	gap: 18px;
}

.cases-viewport {
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.cases-viewport::-webkit-scrollbar {
	display: none;
}

.cases-track {
	display: flex;
	gap: 24px;
}

.cases-track .case-card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
}

.cases-arrow {
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #d9dfe7;
	border-radius: 50%;
	color: var(--ink);
	background: #fff;
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.cases-arrow:hover:not(:disabled) {
	border-color: var(--ink);
	color: #fff;
	background: var(--ink);
}

.cases-arrow:disabled {
	cursor: default;
	opacity: 0.35;
}

.download-page {
	min-height: 620px;
	padding: 90px 0 110px;
}

.download-page details {
	border-bottom: 1px solid #e2e5e9;
}

.download-page summary {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #1d2742;
	list-style: none;
	font-size: 18px;
	cursor: pointer;
}

.download-page summary::-webkit-details-marker {
	display: none;
}

.download-page summary span {
	font-size: 28px;
	font-weight: 300;
	transition: transform 0.2s ease;
}

.download-page details[open] summary span {
	transform: rotate(45deg);
}

.download-files {
	padding: 0 0 35px;
}

.download-files article {
	min-height: 78px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f7f8fc;
}

.download-files article + article {
	margin-top: 10px;
}

.download-files b {
	display: block;
	color: #313742;
	font-size: 15px;
}

.download-files small {
	display: block;
	margin-top: 5px;
	color: #8b919c;
	font-size: 12px;
}

.download-files button,
.download-files .download-action {
	min-width: 92px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--ink);
	color: var(--ink);
	background: #fff;
	cursor: pointer;
	font-size: 13px;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.download-files button:hover,
.download-files .download-action:hover {
	color: #fff;
	background: var(--ink);
	transform: translateY(-2px);
}

.download-files small span + span::before {
	content: " - ";
}

.download-files .download-action.is-disabled {
	border-color: #cfd4db;
	color: #969da6;
	background: #f4f5f7;
	cursor: not-allowed;
}

.download-files .download-action.is-disabled:hover {
	color: #969da6;
	background: #f4f5f7;
	transform: none;
}

.download-message {
	min-height: 24px;
	margin: 24px 0 0;
	color: var(--ink);
	font-size: 13px;
}

.news-page {
	min-height: 1000px;
	padding: 80px 0 100px;
}

.news-row {
	min-height: 182px;
	padding: 31px 0;
	display: grid;
	grid-template-columns: 1fr 130px;
	gap: 50px;
	border-bottom: 1px solid #e5e8ec;
}

.news-row h2 {
	margin: 0;
	color: #353b43;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
}

.news-row p {
	max-width: 880px;
	margin: 18px 0;
	color: #59616d;
	font-size: 14px;
	line-height: 1.7;
}

.news-row span {
	display: inline-block;
	border: 1px solid #d7dce4;
	padding: 4px 9px;
	color: #9298a2;
	font-size: 12px;
}

.news-row time {
	color: #969ca5;
	text-align: right;
	font-size: 14px;
	white-space: nowrap;
}

.news-pagination {
	margin-top: 55px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.news-pagination .pagination.page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-pagination .pagination.page a,
.news-pagination .pagination.page span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 38px;
	height: 38px;
	padding: 0 11px;
	border: 1px solid #d9dee7;
	background: #fff;
	color: #6e7682;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease;
}

.news-pagination .pagination.page a:hover,
.news-pagination .pagination.page .page-number.active {
	color: #fff;
	border-color: var(--ink);
	background: var(--ink);
}

.news-pagination .pagination.page .prev-page,
.news-pagination .pagination.page .next-page {
	padding: 0 9px;
}

.news-pagination .pagination.page span.prev-page,
.news-pagination .pagination.page span.next-page {
	border-color: #eceff3;
	color: #c6ccd4;
	cursor: default;
}

.news-pagination .pagination.page svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.contact-page {
	min-height: 620px;
	padding: 115px 0 90px;
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 126px;
}

.contact-details h2 {
	margin: 12px 0 50px;
	color: var(--ink);
	font-size: 34px;
	line-height: 1.25;
	font-weight: 500;
}

.contact-details dl {
	margin: 0;
}

.contact-details dl > div {
	padding: 17px 0;
	border-bottom: 1px solid #e5e7eb;
}

.contact-details dt {
	color: #969da8;
	font-size: 12px;
}

.contact-details dd {
	margin: 7px 0 0;
	color: #3b4049;
	font-size: 15px;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 22px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: #555d67;
	font-size: 13px;
}

.contact-form label:nth-of-type(4) {
	grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid #dfe3e8;
	background: #fff;
	color: #242a32;
	padding: 11px 12px;
	outline: 0;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--ink);
}

.contact-form button {
	width: 150px;
	height: 50px;
	border: 0;
	color: #fff;
	background: var(--ink);
	cursor: pointer;
	font-size: 14px;
}

.contact-form > p {
	grid-column: 1 / -1;
	min-height: 18px;
	margin: -13px 0 0;
	color: var(--ink);
	font-size: 13px;
}

.contact-map {
	min-height: 325px;
	position: relative;
	overflow: hidden;
	background: #e4e8e7;
}

.contact-map > img {
	width: 100%;
	height: auto;
	min-height: 325px;
	display: block;
	object-fit: cover;
}

.map-grid {
	position: absolute;
	inset: -30px;
	opacity: 0.58;
	background-image:
		linear-gradient(
			90deg,
			transparent 47%,
			#b3bdc2 48%,
			#b3bdc2 52%,
			transparent 53%
		),
		linear-gradient(
			20deg,
			transparent 44%,
			#b8c3c7 45%,
			#b8c3c7 48%,
			transparent 49%
		),
		linear-gradient(
			155deg,
			transparent 43%,
			#c0c8cb 44%,
			#c0c8cb 47%,
			transparent 48%
		);
	background-size:
		190px 94px,
		290px 150px,
		242px 137px;
	transform: rotate(-7deg) scale(1.15);
}

.contact-map::after {
	content: "";
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	border: 7px solid var(--red);
	border-radius: 50% 50% 50% 0;
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.contact-map span {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ink);
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
	transform: translate(-50%, -50%);
}

.contact-map small {
	color: #727981;
	font-size: 11px;
}

.article-page {
	min-height: 790px;
	padding: 95px 0 125px;
}

.back-link {
	display: inline-block;
	color: var(--ink);
	font-size: 13px;
}

.article-type {
	margin: 55px 0 14px;
	color: var(--red);
	font-size: 13px;
}

.article-page h1 {
	max-width: 990px;
	margin: 0;
	color: #2c3139;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 500;
}

.article-page time {
	display: block;
	margin-top: 18px;
	color: #969ca5;
	font-size: 13px;
}

.article-copy {
	max-width: 900px;
	margin-top: 52px;
	border-top: 1px solid #e3e7ec;
	padding-top: 38px;
}

.article-copy p {
	margin: 0 0 20px;
	color: #575f6a;
	font-size: 15px;
	line-height: 1.95;
}

.product-detail {
	min-height: 665px;
	padding: 85px 0 110px;
}

.product-detail > div {
	margin-top: 54px;
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 100px;
}

.product-detail > div > img {
	width: 100%;
	min-height: 355px;
	object-fit: cover;
}

.product-detail h1 {
	margin: 12px 0 22px;
	color: var(--ink);
	font-size: 36px;
	line-height: 1.22;
	font-weight: 500;
}

.product-detail section > p:not(.eyebrow) {
	color: #5f6771;
	font-size: 14px;
	line-height: 1.9;
}

.product-detail dl {
	margin: 30px 0;
	display: grid;
	gap: 10px;
}

.product-detail dl > div {
	display: grid;
	grid-template-columns: 95px 1fr;
}

.product-detail dt {
	color: #9299a3;
	font-size: 13px;
}

.product-detail dd {
	margin: 0;
	color: #3e4650;
	font-size: 13px;
}

.case-detail {
	min-height: 700px;
	padding: 85px 0 115px;
}

.case-detail > .eyebrow {
	margin-top: 55px;
}

.case-detail h1 {
	max-width: 840px;
	margin: 13px 0 45px;
	color: var(--ink);
	font-size: 36px;
	line-height: 1.22;
	font-weight: 500;
}

.case-detail-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 100px;
}

.case-detail-layout > img {
	width: 100%;
	min-height: 350px;
	object-fit: cover;
}

.case-detail-layout h2 {
	margin: 0 0 20px;
	color: #303741;
	font-size: 27px;
	line-height: 1.3;
	font-weight: 500;
}

.case-detail-layout section > p {
	margin: 0;
	color: #5f6771;
	font-size: 14px;
	line-height: 1.9;
}

.case-detail-layout dl {
	margin: 31px 0;
	display: grid;
	gap: 11px;
}

.case-detail-layout dl > div {
	display: grid;
	grid-template-columns: 95px 1fr;
}

.case-detail-layout dt {
	color: #9299a3;
	font-size: 13px;
}

.case-detail-layout dd {
	margin: 0;
	color: #3e4650;
	font-size: 13px;
}

@media (max-width: 1320px) and (min-width: 1041px) {
	.header-inner {
		width: calc(100% - 56px);
		grid-template-columns: 250px 1fr 190px;
	}

	.primary-nav > a,
	.nav-submenu > button,
	.nav-submenu > .nav-parent-link {
		min-width: 78px;
		font-size: 14px;
	}

	.hotline {
		font-size: 12px;
	}
}

@media (max-width: 1040px) {
	.about-profile,
	.about-history,
	.contact-page {
		gap: 55px;
	}

	.catalog-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.case-grid {
		gap: 24px;
	}

	.cases-track .case-card {
		flex-basis: calc((100% - 24px) / 2);
	}

	.product-detail > div {
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.site-header {
		position: relative;
		z-index: 50;
		height: 50px;
		color: #fff;
		background: #112667;
	}

	.header-inner {
		width: 100%;
		height: 50px;
		padding: 0 16px;
		justify-content: center;
		position: relative;
	}

	.brand {
		margin: 0 auto;
		color: #fff;
		font-size: 16px;
	}

	.brand img {
		width: 172px;
		height: 34px;
	}

	.mobile-menu-button {
		display: grid;
		gap: 4px;
		width: 32px;
		height: 32px;
		padding: 7px 5px;
		position: absolute;
		left: 11px;
		border: 0;
		color: #fff;
		background: transparent;
		cursor: pointer;
	}

	.mobile-menu-button span {
		width: 21px;
		height: 1px;
		display: block;
		background: currentColor;
	}

	.mobile-nav-panel {
		position: absolute;
		z-index: 49;
		top: 50px;
		left: 0;
		width: 100%;
		max-height: 0;
		display: grid;
		overflow: hidden;
		background: #112667;
		box-shadow: 0 10px 22px rgba(5, 17, 48, 0.22);
		transition: max-height 0.3s ease;
	}

	.mobile-nav-panel.is-open {
		max-height: 420px;
	}

	.mobile-nav-panel a {
		min-height: 39px;
		display: flex;
		align-items: center;
		padding: 0 25px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		color: #fff;
		font-size: 13px;
	}

	.mobile-nav-panel a:nth-child(n + 4):nth-child(-n + 7) {
		padding-left: 42px;
		color: rgba(255, 255, 255, 0.76);
	}

	.sub-banner {
		height: 259px;
	}

	.sub-banner h1 {
		font-size: 27px;
	}

	.sub-banner p {
		margin-top: 8px;
		font-size: 11px;
	}

	.about-profile {
		min-height: 0;
		padding: 55px 30px;
		display: flex;
		flex-direction: column;
		gap: 31px;
	}

	.about-profile-copy h2,
	.about-history h2,
	.qualification-section h2 {
		margin-top: 10px;
		font-size: 25px;
	}

	.about-profile-copy > p:not(.eyebrow),
	.history-copy p {
		font-size: 13px;
		line-height: 1.85;
	}

	.about-profile > img {
		height: 235px;
	}

	.metrics {
		width: 100%;
		min-height: 178px;
		grid-template-columns: repeat(2, 1fr);
	}

	.metrics article {
		min-height: 89px;
		border-right: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.metrics article:nth-child(2n) {
		border-right: 0;
	}

	.metrics article:nth-child(n + 3) {
		border-bottom: 0;
	}

	.metrics strong {
		font-size: 27px;
	}

	.metrics span {
		font-size: 11px;
	}

	.about-history {
		min-height: 0;
		padding: 60px 30px;
		display: block;
	}

	.history-copy {
		padding: 9px 0 0;
	}

	.qualification-section {
		padding: 58px 30px 68px;
	}

	.qualification-list {
		margin-top: 35px;
		grid-template-columns: repeat(2, 1fr);
	}

	.qualification-list article {
		min-height: 122px;
		padding: 22px 14px;
		border-bottom: 1px solid #dfe4ec;
	}

	.qualification-list article:nth-child(2n) {
		border-right: 0;
	}

	.qualification-list article:nth-child(n + 3) {
		border-bottom: 0;
	}

	.product-page-content {
		padding-bottom: 56px;
	}

	.product-categories {
		min-height: 55px;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.product-categories button {
		min-width: max-content;
		padding: 0 21px;
		font-size: 13px;
	}

	.product-categories button + button::before {
		top: 18px;
		height: 18px;
	}

	.product-categories a {
		min-width: max-content;
		padding: 0 17px;
		font-size: 12px;
	}

	.product-categories a + a::before {
		top: 18px;
		height: 18px;
	}

	.catalog-content {
		width: 100%;
		padding: 42px 20px 0;
	}

	.catalog-group {
		margin-bottom: 55px;
	}

	.catalog-group h2 {
		margin-bottom: 23px;
		font-size: 24px;
	}

	.catalog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.catalog-card {
		min-height: 210px;
		grid-template-rows: 164px auto;
	}

	.catalog-card img {
		height: 164px;
	}

	.catalog-card span {
		padding: 11px 7px;
		font-size: 13px;
	}

	.application-detail {
		min-height: 0;
		padding: 60px 27px 67px;
	}

	.application-detail > h2 {
		font-size: 28px;
	}

	.application-detail > p {
		margin: 17px auto 35px;
		font-size: 13px;
	}

	.case-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.case-card {
		min-height: 190px;
	}

	.download-page {
		min-height: 0;
		width: 100%;
		padding: 48px 25px 60px;
	}

	.download-page summary {
		min-height: 62px;
		font-size: 16px;
	}

	.download-files {
		padding-bottom: 22px;
	}

	.download-files article {
		padding: 14px 13px;
	}

	.news-page {
		min-height: 0;
		width: 100%;
		padding: 45px 25px 62px;
	}

	.news-row {
		min-height: 0;
		padding: 23px 0;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.news-row h2 {
		font-size: 17px;
	}

	.news-row p {
		margin: 12px 0;
		font-size: 13px;
	}

	.news-row time {
		order: -1;
		text-align: left;
		font-size: 12px;
	}

	.news-pagination {
		margin-top: 32px;
	}

	.contact-page {
		min-height: 0;
		width: 100%;
		padding: 60px 28px 58px;
		display: block;
	}

	.contact-details h2 {
		margin-bottom: 30px;
		font-size: 27px;
	}

	.contact-details dd {
		font-size: 14px;
	}

	.contact-form {
		margin-top: 45px;
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.contact-form label:nth-of-type(4) {
		grid-column: auto;
	}

	.contact-form button {
		width: 100%;
	}

	.contact-map {
		min-height: 220px;
	}

	.contact-map > img {
		min-height: 220px;
	}

	.article-page {
		min-height: 0;
		width: 100%;
		padding: 50px 28px 65px;
	}

	.article-type {
		margin-top: 35px;
	}

	.article-page h1 {
		font-size: 28px;
	}

	.article-copy {
		margin-top: 35px;
		padding-top: 28px;
	}

	.article-copy p {
		font-size: 14px;
		line-height: 1.85;
	}

	.product-detail {
		min-height: 0;
		width: 100%;
		padding: 47px 28px 65px;
	}

	.product-detail > div {
		margin-top: 35px;
		display: block;
	}

	.product-detail > div > img {
		min-height: 235px;
	}

	.product-detail section {
		margin-top: 32px;
	}

	.product-detail h1 {
		font-size: 29px;
	}

	.product-detail dl > div {
		grid-template-columns: 85px 1fr;
	}
}

@media (max-width: 768px) {
	body {
		min-width: 0;
	}

	.content-width {
		width: calc(100% - 40px);
	}

	.site-header {
		position: relative;
		z-index: 50;
		height: 54px;
		color: #fff;
		background: #112667;
	}

	.header-inner {
		width: 100%;
		height: 54px;
		padding: 0 16px;
		justify-content: center;
		position: relative;
	}

	.brand {
		margin: 0 auto;
	}

	.brand img {
		width: 170px;
		height: 34px;
	}

	.mobile-menu-button {
		display: grid;
		gap: 4px;
		width: 36px;
		height: 36px;
		padding: 8px 6px;
		position: absolute;
		left: 10px;
		border: 0;
		color: #fff;
		background: transparent;
		cursor: pointer;
	}

	.mobile-menu-button span {
		width: 23px;
		height: 1px;
		display: block;
		background: currentColor;
	}

	.mobile-nav-panel {
		position: absolute;
		z-index: 49;
		top: 54px;
		left: 0;
		width: 100%;
		max-height: 0;
		display: grid;
		overflow: hidden;
		background: #112667;
		box-shadow: 0 10px 22px rgba(5, 17, 48, 0.22);
		transition: max-height 0.35s ease;
	}

	.mobile-nav-panel.is-open {
		max-height: 760px;
	}

	.mobile-nav-panel a {
		min-height: 42px;
		display: flex;
		align-items: center;
		padding: 0 24px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		color: #fff;
		font-size: 13px;
	}

	.mobile-nav-panel a.mobile-nav-parent {
		min-height: 45px;
		color: #fff;
		font-size: 14px;
	}

	.mobile-nav-panel a.mobile-nav-child {
		min-height: 37px;
		padding-left: 42px;
		color: rgba(255, 255, 255, 0.74);
		font-size: 12px;
	}

	.hero {
		align-content: flex-end;
		height: 420px;
	}

	.hero-copy {
		display: block;
		width: calc(100% - 48px);
		padding: 20px 0;
	}

	.hero-eyebrow {
		font-size: 23px;
	}

	.hero h1 {
		font-size: 31px;
	}

	.hero-note {
		margin-top: 28px;
		padding-left: 30px;
		font-size: 13px;
	}

	.hero-note::before {
		width: 24px;
	}

	.products {
		min-height: 0;
		padding: 48px 0 52px;
	}

	.products .section-heading {
		height: auto;
		padding: 0;
	}

	.section-heading-left,
	.applications .section-heading-left,
	.news .section-heading-left,
	.partners .section-heading-left {
		text-align: left;
	}

	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 30px;
	}

	.product-item,
	.product-item:nth-child(1),
	.product-item:nth-child(2),
	.product-item:nth-child(3),
	.product-item:nth-child(4),
	.product-item:nth-child(5) {
		grid-column: auto;
		height: auto;
		grid-template-rows: 156px auto;
		padding: 0;
	}

	.product-item img {
		height: 156px;
	}

	.product-item strong {
		min-height: 49px;
		padding: 14px 8px;
		opacity: 1;
		font-size: 13px;
		white-space: normal;
	}

	.about {
		min-height: 0;
		padding-bottom: 48px;
	}

	.about-inner {
		padding: 55px 0 0;
	}

	.about-copy {
		margin-top: 20px;
		font-size: 13px;
		line-height: 1.85;
	}

	.outline-button {
		width: 100%;
		margin-top: 26px;
	}

	.stats {
		margin-top: 35px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.stats article {
		min-height: 88px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.stats article:nth-child(2n) {
		border-right: 0;
	}

	.stats article:nth-child(n + 3) {
		border-bottom: 0;
	}

	.applications {
		min-height: 0;
		height: auto;
		padding: 54px 0 58px;
	}

	.applications-inner {
		display: block;
		min-height: 0;
		padding-top: 0;
	}

	.applications-copy {
		position: static;
	}

	.applications-copy p {
		display: block;
		width: auto;
		margin-top: 20px;
		font-size: 13px;
	}

	.applications .solid-button {
		display: inline-grid;
		width: 100%;
		margin-top: 28px;
	}

	.application-mosaic {
		width: 100%;
		height: auto;
		margin-top: 34px;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		transform: none;
	}

	.application-card,
	.smelting,
	.battery,
	.water,
	.petrochemical,
	.power,
	.gas {
		position: relative;
		inset: auto;
		left: auto;
		top: auto;
		width: auto;
		height: 176px;
	}

	.application-card.tall {
		height: 204px;
	}

	.application-card span {
		left: 10px;
		right: 10px;
		bottom: 12px;
		font-size: 15px;
	}

	.application-card small {
		display: none;
	}

	.news {
		height: auto;
		min-height: 0;
		padding: 54px 0 56px;
	}

	.news-layout {
		margin-top: 26px;
	}

	.featured-news {
		display: grid;
		gap: 20px;
	}

	.feature-story {
		min-height: 222px;
		padding: 0 0 27px;
	}

	.feature-story + .feature-story {
		margin-top: 0;
	}

	.feature-story p {
		margin-top: 16px;
		font-size: 13px;
	}

	.news-list {
		padding-top: 6px;
	}

	.news-list a {
		min-height: 66px;
		gap: 12px;
	}

	.news-list b {
		font-size: 14px;
	}

	.news-list time {
		font-size: 11px;
	}

	.partners {
		height: auto;
		padding: 54px 0 60px;
	}

	.partner-strip {
		height: 68px;
		margin-top: 28px;
	}

	.partner-track {
		gap: 34px;
	}

	.partner-track img {
		width: 134px;
		height: 52px;
	}

	.footer-menu {
		height: auto;
		overflow: visible;
	}

	.footer-menu .content-width {
		width: 100%;
		min-width: 0;
		padding: 15px 20px;
		gap: 17px;
		justify-content: flex-start;
		overflow-x: auto;
	}

	.footer-menu a {
		font-size: 12px;
		white-space: nowrap;
	}

	.footer-body {
		height: auto;
		min-height: 360px;
	}

	.footer-content {
		width: calc(100% - 40px);
		height: auto;
		min-height: 360px;
		padding: 40px 0 160px;
	}

	.footer-brand,
	.footer-content > p {
		left: 0;
	}

	.footer-content > p {
		top: 102px;
		font-size: 12px;
	}

	.qr-group {
		right: 0;
		top: auto;
		bottom: 25px;
		gap: 18px;
		transform: scale(0.72);
		transform-origin: right bottom;
	}

	.support-tools {
		display: none;
	}

	.sub-banner {
		height: 252px;
	}

	.sub-banner h1 {
		font-size: 27px;
	}

	.sub-banner p {
		margin-top: 8px;
		font-size: 11px;
	}

	.about-profile,
	.about-history,
	.contact-page {
		width: calc(100% - 40px);
	}

	.about-profile {
		padding: 52px 0;
	}

	.about-history {
		padding: 58px 0;
	}

	.qualification-section {
		padding: 58px 20px 68px;
	}

	.product-categories {
		top: 0;
		min-height: 56px;
	}

	.product-categories button {
		min-width: max-content;
		padding: 0 17px;
		font-size: 12px;
	}

	.product-categories button + button::before {
		top: 18px;
		height: 18px;
	}

	.catalog-content {
		width: calc(100% - 40px);
		padding: 42px 0 0;
	}

	.catalog-group {
		margin-bottom: 52px;
	}

	.catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 13px;
	}

	.catalog-card {
		min-height: 0;
		grid-template-rows: 142px auto;
	}

	.catalog-card img {
		height: 142px;
	}

	.catalog-card span {
		min-height: 47px;
		display: grid;
		place-items: center;
		padding: 8px 6px;
		font-size: 12px;
	}

	.application-page {
		width: calc(100% - 40px);
		min-height: 0;
		padding: 55px 0 65px;
	}

	.application-page-intro {
		margin-bottom: 33px;
	}

	.application-page-intro h2 {
		font-size: 27px;
	}

	.application-page-intro > p:not(.eyebrow) {
		font-size: 13px;
	}

	.application-list-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.application-list-card {
		min-height: 216px;
	}

	.application-list-card span {
		left: 20px;
		right: 20px;
		bottom: 18px;
	}

	.application-list-card b {
		font-size: 18px;
	}

	.application-list-card em {
		opacity: 1;
		transform: none;
	}

	.application-detail {
		width: calc(100% - 40px);
		padding: 56px 0 65px;
	}

	.case-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.case-card {
		min-height: 192px;
	}

	.cases-carousel {
		grid-template-columns: 36px minmax(0, 1fr) 36px;
		gap: 8px;
	}

	.cases-track {
		gap: 14px;
	}

	.cases-track .case-card {
		flex-basis: 100%;
	}

	.cases-arrow {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.download-page {
		width: calc(100% - 40px);
		padding: 48px 0 60px;
	}

	.download-files article {
		min-height: 88px;
		padding: 14px;
		gap: 12px;
	}

	.download-files button,
	.download-files .download-action {
		min-width: 84px;
		height: 34px;
		font-size: 12px;
	}

	.download-files b {
		font-size: 13px;
	}

	.download-files small {
		font-size: 11px;
	}

	.news-page,
	.article-page,
	.product-detail,
	.case-detail {
		width: calc(100% - 40px);
	}

	.article-page,
	.product-detail,
	.case-detail {
		padding-left: 0;
		padding-right: 0;
	}

	.product-detail > div,
	.case-detail-layout {
		display: block;
	}

	.product-detail > div > img,
	.case-detail-layout > img {
		min-height: 225px;
	}

	.product-detail section,
	.case-detail-layout section {
		margin-top: 30px;
	}

	.case-detail > .eyebrow {
		margin-top: 35px;
	}

	.case-detail h1 {
		margin-bottom: 32px;
		font-size: 28px;
	}

	.case-detail-layout h2 {
		font-size: 24px;
	}

	.case-detail-layout dl > div {
		grid-template-columns: 84px 1fr;
	}
}
