body.rs1-body {
	margin: 0;
	--rs1-font-sans: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--rs1-font-display: "Sora", "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--rs1-shadow-soft: 0 18px 40px rgba(18, 30, 54, 0.1);
	--rs1-shadow-strong: 0 28px 60px rgba(14, 24, 43, 0.16);
	background: var(--rs1-page-bg, #f4f6fa);
	background-image:
		radial-gradient(circle at 18% 18%, rgba(82, 145, 255, 0.14), transparent 46%),
		radial-gradient(circle at 88% 6%, rgba(246, 134, 45, 0.12), transparent 38%);
	color: var(--rs1-page-text, #1e293b);
	font-family: var(--rs1-font-sans);
}

.rs1-site-shell {
	min-height: 100vh;
}

.rs1-container {
	width: min(calc(100% - 60px), var(--rs1-container-width, 1240px));
	margin: 0 auto;
}

.rs1-topbar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rs1-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
}

.rs1-topbar__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.rs1-topbar__link {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.rs1-header {
	position: sticky;
	top: 0;
	z-index: 40; 
	width: 100%;
	background: transparent;
	transition: background 0.28s ease, box-shadow 0.28s ease;
}

.rs1-header__surface {
	background: var(--rs1-nav-bg, rgba(255, 255, 255, 0.94));
	color: var(--rs1-nav-text, #1f2f46);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	position: relative;
	transition:
		border-color 0.28s ease,
		background 0.28s ease,
		box-shadow 0.28s ease;
}

.rs1-header.is-compact {
	padding-top: 0;
}

.rs1-header.is-compact .rs1-header__surface {
	width: 100%;
	margin: 0;
	border-bottom-color: rgba(15, 23, 42, 0.08);
	border-radius: 0;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.rs1-header__inner {
	display: grid;
	grid-template-columns: minmax(140px, 1fr) minmax(0, 880px) minmax(140px, 1fr);
	align-items: center;
	gap: 20px;
	padding: 14px 0;
}

.rs1-header.is-compact .rs1-header__inner {
	padding: 14px 0;
}

.rs1-branding {
	display: flex;
	grid-column: 1;
	justify-self: start;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
	max-width: 100%;
	min-width: 0;
}

.rs1-branding__logo {
	flex: 0 0 auto;
	max-width: min(42vw, 240px);
}

.rs1-branding__logo-link,
.rs1-branding__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.rs1-branding__logo-image,
.rs1-branding__logo img,
.rs1-branding__logo .custom-logo {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: var(--rs1-logo-max-height, 64px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(18, 30, 54, 0.16));
}

.rs1-branding__text {
	min-width: 0;
}

.rs1-branding__name {
	display: inline-block;
	color: var(--rs1-nav-text, #1f2f46);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.rs1-branding__tagline {
	margin: 4px 0 0;
	color: var(--rs1-nav-text, #1f2f46);
	opacity: 0.62;
	font-size: 0.82rem;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.rs1-header__panel {
	display: flex;
	grid-column: 2;
	justify-self: center;
	align-items: center;
	gap: 20px;
	margin-left: 0;
	min-width: 0;
}

.rs1-header__nav {
	min-width: 0;
}

.rs1-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rs1-nav-toggle {
	display: none;
	grid-column: 3;
	justify-self: end;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.06);
	padding: 0;
	cursor: pointer;
}

.rs1-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--rs1-nav-text, #111827);
}

.rs1-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs1-menu a {
	color: var(--rs1-nav-text, #111827);
	opacity: 0.92;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.94rem;
	line-height: 1.2;
}

.rs1-menu a:hover,
.current-menu-item > a,
.current_page_item > a {
	color: var(--rs1-nav-text, #1f2f46);
	opacity: 1;
}

.rs1-header__button,
.rs1-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.rs1-header__button {
	background: var(--rs1-accent, #f6862d);
	color: var(--rs1-accent-text, #fff);
	box-shadow: 0 14px 30px rgba(246, 134, 45, 0.28);
}

.rs1-header__button--ghost {
	box-shadow: none;
	border: 1px solid rgba(31, 47, 70, 0.12);
}

.rs1-header__button:hover,
.rs1-button:hover {
	transform: translateY(-2px);
}

.rs1-main {
	display: grid;
	gap: var(--rs1-section-gap, 42px);
	padding-bottom: 48px;
}

.rs1-hero,
.rs1-turnkey {
	position: relative;
	overflow: hidden;
}

.rs1-hero {
	min-height: 760px;
}

.rs1-hero__bg,
.rs1-turnkey__bg,
.rs1-hero__overlay,
.rs1-turnkey__overlay {
	position: absolute;
	inset: 0;
}

.rs1-hero__bg,
.rs1-turnkey__bg {
	background-position: center;
	background-size: cover;
	transform: scale(1.03);
}

.rs1-hero__overlay,
.rs1-turnkey__overlay {
	background:
		radial-gradient(circle at 70% 35%, rgba(97, 191, 255, 0.32), transparent 26%),
		radial-gradient(circle at 24% 78%, rgba(246, 134, 45, 0.22), transparent 20%),
		linear-gradient(135deg, rgba(5, 12, 24, 0.82), rgba(8, 22, 43, 0.94));
}

.rs1-hero__inner,
.rs1-turnkey__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 42px;
	align-items: center;
	padding: 84px 0;
}

.rs1-hero__eyebrow {
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #9cc7ff;
	text-transform: uppercase;
}

.rs1-hero__title {
	margin: 0;
	line-height: 0.98;
	letter-spacing: -0.04em;
	/* max-width: 14ch; */
	font-family: var(--rs1-font-display);
}

.rs1-hero__title span {
	display: block;
	color: var(--rs1-accent, #f6862d);
}

.rs1-hero__description {
	max-width: 56ch;
	margin: 20px 0 0;
	line-height: 1.7;
}

.rs1-hero__features {
	display: grid;
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.rs1-hero__features li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rs1-hero__features li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 6px rgba(142, 197, 255, 0.14);
}

.rs1-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.rs1-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.rs1-metric-card {
	padding: 18px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.rs1-metric-card strong {
	display: block;
	font-size: 1.6rem;
	color: #fff;
}

.rs1-metric-card span {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.92rem;
	line-height: 1.5;
}

.rs1-button--primary {
	background: var(--rs1-accent, #f6862d);
	color: var(--rs1-accent-text, #fff);
	box-shadow: 0 18px 32px rgba(246, 134, 45, 0.3);
}

.rs1-button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.rs1-button--primary {
	background: linear-gradient(135deg, #f6862d, #ff9b3f);
}

.rs1-hero__visual {
	position: relative;
	min-height: 540px;
}

.rs1-hero__orb {
	position: absolute;
	inset: 16% 10% auto auto;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(153, 221, 255, 0.7) 0%, rgba(112, 169, 255, 0.18) 42%, transparent 72%);
	filter: blur(8px);
	animation: rs1-float 7s ease-in-out infinite;
}

.rs1-hero__image-frame {
	position: absolute;
	inset: 8% 0 0 8%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 32px;
	padding: 24px;
	background: linear-gradient(145deg, rgba(15, 31, 58, 0.65), rgba(9, 20, 40, 0.2));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 48px rgba(0, 0, 0, 0.22);
}

.rs1-hero__image-frame img,
.rs1-media-card__media img,
.rs1-product-card__media img,
.rs1-industry-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs1-hero__image-frame img {
	height: 100%;
	border-radius: 26px;
	min-height: 470px;
	filter: saturate(0.92) contrast(1.08);
}

.rs1-hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(9, 21, 38, 0.6);
	border: 1px solid rgba(142, 197, 255, 0.28);
	backdrop-filter: blur(8px);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 20px rgba(0, 0, 0, 0.16);
	white-space: nowrap;
}

.rs1-hotspot::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-right: 7px;
	background: currentColor;
}

.rs1-section {
	padding-top: 8px;
}

.rs1-section--compact {
	padding-top: 0;
}

.rs1-section__heading {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.rs1-section__heading h2 {
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.04em;
	font-family: var(--rs1-font-display);
	font-size: clamp(2rem, 3vw, 2.9rem);
}

.rs1-section__heading p {
	margin: 12px auto 0;
	line-height: 1.7;
	color: #516078;
}

.rs1-grid {
	display: grid;
	gap: 24px;
}

.rs1-grid--solutions,
.rs1-hero__title {
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.04em;
	font-family: var(--rs1-font-display);
}

.rs1-hero__title span {
	display: block;
	color: var(--rs1-accent, #f6862d);
}

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

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

.rs1-grid--advantages {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs1-media-card,
.rs1-product-card,
.rs1-industry-card,
.rs1-advantage-card,
.rs1-generic__article {
	background: var(--rs1-card-bg, #fff);
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--rs1-shadow-soft);
}

.rs1-media-card__media,
.rs1-product-card__media,
.rs1-industry-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(140deg, #18345f, #0d1728);
	overflow: hidden;
}

.rs1-media-card__media::after,
.rs1-industry-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 11, 22, 0) 25%, rgba(6, 11, 22, 0.65) 100%);
}

.rs1-media-card__tag {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(8, 18, 35, 0.72);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.rs1-media-card__content,
.rs1-product-card__content,
.rs1-industry-card__content {
	padding: 20px 20px 22px;
}

.rs1-media-card,
.rs1-industry-card {
	position: relative;
}

.rs1-media-card__content,
.rs1-industry-card__content {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(12, 20, 38, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 16px 32px rgba(7, 12, 22, 0.3);
	backdrop-filter: blur(10px);
}

.rs1-media-card__content h3,
.rs1-product-card__content h3,
.rs1-industry-card__content h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.25;
	color: #203049;
}

.rs1-media-card__content h3,
.rs1-industry-card__content h3 {
	color: #fff;
	font-size: 1.2rem;
}

.rs1-media-card__content p,
.rs1-product-card__content p,
.rs1-industry-card__content p {
	margin: 10px 0 0;
	line-height: 1.65;
	color: #5d6b80;
}

.rs1-media-card__content p,
.rs1-industry-card__content p {
	color: rgba(255, 255, 255, 0.78);
	margin-top: 6px;
}

.rs1-media-card__content a,
.rs1-product-card__content a,
.rs1-industry-card__content a {
	display: inline-flex;
	margin-top: 16px;
	color: var(--rs1-accent, #f6862d);
	font-weight: 700;
	text-decoration: none;
}

.rs1-media-card__content a,
.rs1-industry-card__content a {
	color: #f5c19a;
}

.rs1-product-card__tag {
	margin: 0 0 10px;
	color: var(--rs1-accent, #f6862d) !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.72rem;
}

.rs1-product-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(150deg, #e9eef6, #dbe4f2);
	padding: 12px;
}

.rs1-product-card__media img {
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(13, 22, 40, 0.12);
}

.rs1-product-card__content {
	padding: 22px 22px 24px;
}

.rs1-advantage-card {
	padding: 24px;
}

.rs1-advantage-card__tag {
	margin: 0 0 12px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--rs1-accent, #f6862d);
}

.rs1-advantage-card h3,
.rs1-advantage-card p {
	margin: 0;
}

.rs1-advantage-card p {
	margin-top: 10px;
	line-height: 1.7;
}

.rs1-turnkey {
	padding: 8px 0;
}

.rs1-hero__title {
	margin: 0;
	line-height: 0.98;
	letter-spacing: -0.04em;
	/* max-width: 14ch; */
	font-family: var(--rs1-font-display);
}

.rs1-turnkey__copy h2 {
	margin: 0;
	line-height: 1.05;
	letter-spacing: -0.04em;
	max-width: 12ch;
	font-family: var(--rs1-font-display);
}

.rs1-turnkey__copy p {
	max-width: 54ch;
	margin: 18px 0 0;
	line-height: 1.75;
}

.rs1-turnkey__copy .rs1-button {
	margin-top: 28px;
}

.rs1-turnkey__steps {
	display: grid;
	gap: 18px;
	padding: 24px;
	border-radius: 28px;
	background: rgba(8, 19, 36, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	box-shadow: 0 24px 50px rgba(5, 12, 22, 0.45);
}

.rs1-step {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.rs1-step + .rs1-step {
	border-top: 1px dashed rgba(255, 255, 255, 0.12);
	padding-top: 16px;
}

.rs1-step__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 1px solid;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.rs1-step__content h3,
.rs1-step__content p {
	margin: 0;
}

.rs1-step__content p {
	margin-top: 7px;
}

.rs1-footer {
	padding: 40px 0 44px;
	background: linear-gradient(140deg, #0e1d35, #13294b);
}

.rs1-footer__surface {
	width: 100%;
}

.rs1-footer__cta,
.rs1-footer__inner {
	color: rgba(255, 255, 255, 0.76);
}

.rs1-footer__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rs1-footer__eyebrow {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.62);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.76rem;
	font-weight: 700;
}

.rs1-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	gap: 24px;
	padding-bottom: 22px;
}

.rs1-footer__title {
	margin: 0;
	font-size: 1.9rem;
	color: #fff;
	font-family: var(--rs1-font-display);
}

.rs1-footer__text,
.rs1-footer__meta p,
.rs1-footer__column p {
	margin: 8px 0 0;
}

.rs1-footer__column h3 {
	margin: 0;
	color: #fff;
	font-size: 1.02rem;
}

.rs1-footer__links {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.rs1-footer__links a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}

.rs1-footer__links a:hover {
	color: #fff;
}

.rs1-footer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.6);
}

.rs1-generic {
	padding-top: 48px;
}

.rs1-main--page {
	padding-bottom: 56px;
}

.rs1-page-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 26px;
	background:
		radial-gradient(circle at top right, rgba(138, 201, 255, 0.24), transparent 28%),
		linear-gradient(180deg, #eef3f8, rgba(244, 246, 250, 0));
}

.rs1-page-hero--dark,
.rs1-page-hero--generic {
	background-size: cover;
	background-position: center;
}

.rs1-page-hero--generic {
	padding-bottom: 12px;
}

.rs1-page-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 24px;
	align-items: start;
}

.rs1-page-hero__eyebrow {
	margin: 0 0 12px;
	color: var(--rs1-accent, #f6862d);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	font-weight: 700;
}

.rs1-page-hero__title {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #203049;
}

.rs1-page-hero__description {
	max-width: 62ch;
	margin: 16px 0 0;
	color: #5d6b80;
	font-size: 1.05rem;
	line-height: 1.8;
}

.rs1-page-hero--dark .rs1-page-hero__title,
.rs1-page-hero--dark .rs1-page-hero__description,
.rs1-page-hero--dark .rs1-page-hero__panel,
.rs1-page-hero--dark .rs1-page-hero__panel h2,
.rs1-page-hero--dark .rs1-page-hero__panel li {
	color: #fff;
}

.rs1-page-hero__panel {
	padding: 24px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-page-hero__panel--dark {
	background: rgba(8, 19, 36, 0.44);
	border-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(14px);
}

.rs1-page-hero__panel h2 {
	margin: 0 0 12px;
	font-size: 1.1rem;
	color: #203049;
}

.rs1-page-hero__panel ul,
.rs1-anchor-nav,
.rs1-bullet-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs1-page-hero__panel ul {
	display: grid;
	gap: 12px;
}

.rs1-page-hero__panel li,
.rs1-bullet-list li {
	position: relative;
	padding-left: 18px;
	line-height: 1.7;
	color: #5d6b80;
}

.rs1-page-hero__panel li::before,
.rs1-bullet-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--rs1-accent, #f6862d);
	transform: translateY(-50%);
}

.rs1-anchor-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.rs1-anchor-nav a {
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	color: #203049;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	font-weight: 600;
}

.rs1-detail-stack {
	display: grid;
	gap: 24px;
}

.rs1-detail-card,
.rs1-contact-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: 0;
	background: var(--rs1-card-bg, #fff);
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-detail-card__media {
	min-height: 280px;
	background: linear-gradient(145deg, #15345d, #0a1729);
}

.rs1-detail-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs1-detail-card__content,
.rs1-contact-card {
	padding: 28px;
}

.rs1-detail-card__eyebrow {
	margin: 0 0 12px;
	color: var(--rs1-accent, #f6862d);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

.rs1-detail-card__content h2,
.rs1-contact-card h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2.3rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #203049;
}

.rs1-detail-card__content p,
.rs1-contact-card p {
	color: #5d6b80;
	line-height: 1.8;
}

.rs1-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.rs1-spec-grid,
.rs1-service-grid,
.rs1-contact-list {
	display: grid;
	gap: 14px;
}

.rs1-spec-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
}

.rs1-spec-grid div,
.rs1-service-card,
.rs1-contact-list div {
	padding: 16px 18px;
	border-radius: 18px;
	background: #f6f9fd;
	border: 1px solid #e0e8f1;
}

.rs1-spec-grid strong,
.rs1-contact-list strong {
	display: block;
	color: #203049;
	margin-bottom: 6px;
}

.rs1-spec-grid span,
.rs1-contact-list span {
	color: #5d6b80;
}

.rs1-timeline {
	display: grid;
	gap: 18px;
	margin-bottom: 24px;
}

.rs1-timeline__item {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 18px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-timeline__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--rs1-accent, #f6862d);
	color: #fff;
	font-weight: 800;
}

.rs1-timeline__item h2,
.rs1-timeline__item p,
.rs1-service-card h3,
.rs1-service-card p {
	margin: 0;
}

.rs1-timeline__item p,
.rs1-service-card p {
	margin-top: 8px;
	color: #5d6b80;
	line-height: 1.7;
}

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

.rs1-service-card h3 {
	color: #203049;
	font-size: 1.08rem;
}

.rs1-contact-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rs1-contact-card {
	grid-template-columns: 1fr;
}

.rs1-contact-card__cta {
	margin: 18px 0 0;
}

.rs1-faq-list {
	display: grid;
	gap: 16px;
}

.rs1-faq-item {
	background: var(--rs1-card-bg, #fff);
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.06);
}

.rs1-faq-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.rs1-faq-item__trigger strong {
	font-size: 1.6rem;
	color: var(--rs1-accent, #f6862d);
	transition: transform 0.24s ease;
}

.rs1-faq-item__body {
	display: none;
	padding: 0 24px 24px;
}

.rs1-faq-item.is-open .rs1-faq-item__body {
	display: block;
}

.rs1-faq-item.is-open .rs1-faq-item__trigger strong {
	transform: rotate(45deg);
}

.rs1-home-cta {
	padding: 12px 0 4px;
}

.rs1-home-cta__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
}

.rs1-home-cta__content,
.rs1-home-cta__panel {
	padding: 30px 32px;
	border-radius: 28px;
	background: linear-gradient(145deg, #0f213d, #163056);
	color: #fff;
	box-shadow: 0 24px 48px rgba(11, 23, 47, 0.16);
}

.rs1-home-cta__panel {
	background: var(--rs1-card-bg, #fff);
	color: var(--rs1-page-text, #1e293b);
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	box-shadow: 0 20px 44px rgba(19, 33, 57, 0.08);
}

.rs1-home-cta__eyebrow {
	margin: 0 0 10px;
	color: #9cc7ff;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-home-cta__content h2,
.rs1-home-cta__panel h3 {
	margin: 0;
	line-height: 1.1;
	font-family: var(--rs1-font-display);
}

.rs1-home-cta__content p,
.rs1-home-cta__panel li {
	line-height: 1.75;
}

.rs1-generic__article {
	padding: 36px;
}

.rs1-generic__title {
	margin-top: 0;
}

.rs1-placeholder,
.rs1-media-picker__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 120px;
	background:
		linear-gradient(135deg, rgba(140, 194, 255, 0.18), rgba(246, 134, 45, 0.18)),
		linear-gradient(160deg, #112443, #0d1524);
	color: #fff;
	font-weight: 700;
	padding: 24px;
	text-align: center;
}

.rs1-js [data-rs1-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.rs1-js [data-rs1-reveal="left"] {
	transform: translateX(-32px);
}

.rs1-js [data-rs1-reveal="right"] {
	transform: translateX(32px);
}

.rs1-js [data-rs1-reveal].is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

@keyframes rs1-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-16px);
	}
}

.rs1-container--media {
	width: min(calc(100% - 40px), 1380px);
}

.rs1-main {
	padding-bottom: 0;
}

.rs1-header__surface {
	backdrop-filter: blur(14px);
}

.rs1-branding__name {
	font-size: 1.1rem;
}

.rs1-hero {
	min-height: 700px;
}

.rs1-hero__inner {
	padding: 78px 0 64px;
	gap: 52px;
}

.rs1-hero__eyebrow {
	font-size: 0.96rem;
	letter-spacing: 0.06em;
}

.rs1-hero__title {
	/* max-width: 11ch; */
	line-height: 1;
}

.rs1-hero__description {
	max-width: 38rem;
	font-size: 1.08rem;
}

.rs1-hero__features {
	margin-top: 30px;
}

.rs1-hero__metrics {
	grid-template-columns: repeat(3, minmax(118px, 1fr));
	gap: 18px;
	max-width: 560px;
}

.rs1-metric-card {
	padding: 20px 18px;
	border-radius: 24px;
	background: rgba(12, 26, 51, 0.48);
	border: 1px solid rgba(142, 197, 255, 0.18);
}

.rs1-metric-card strong {
	font-size: 1.25rem;
	letter-spacing: -0.03em;
}

.rs1-metric-card span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-hero__visual {
	min-height: 560px;
}

.rs1-hero__image-frame {
	inset: 3% 0 0 4%;
	padding: 16px;
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(9, 19, 38, 0.12), rgba(9, 19, 38, 0.04));
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 28px 54px rgba(5, 12, 22, 0.28);
}

.rs1-hero__image-frame img {
	min-height: 520px;
	border-radius: 28px;
	object-position: center center;
}

.rs1-hotspot {
	padding: 7px 12px;
	font-size: 0.78rem !important;
}

.rs1-section {
	padding-top: 0;
}

.rs1-section__heading {
	max-width: 900px;
	margin-bottom: 32px;
}

.rs1-section__heading p {
	max-width: 760px;
}

.rs1-section--media-home {
	padding-top: 10px;
}

.rs1-grid {
	gap: 26px;
}

.rs1-grid--solutions,
.rs1-grid--industries {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs1-media-card,
.rs1-industry-card {
	border-radius: 28px;
	min-height: 0;
}

.rs1-media-card__media,
.rs1-industry-card__media {
	aspect-ratio: 2.18 / 1;
	border-radius: 28px;
}

.rs1-media-card__media::after,
.rs1-industry-card__media::after {
	background: linear-gradient(180deg, rgba(7, 12, 22, 0) 24%, rgba(7, 12, 22, 0.74) 100%);
}

.rs1-media-card__content,
.rs1-industry-card__content {
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 18px 20px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(11, 19, 36, 0.36), rgba(11, 19, 36, 0.72));
}

.rs1-media-card__content h3,
.rs1-industry-card__content h3 {
	font-size: 1.05rem;
}

.rs1-media-card__content p,
.rs1-industry-card__content p {
	max-width: 24rem;
}

.rs1-media-card__content a,
.rs1-industry-card__content a {
	margin-top: 10px;
	color: #ffffff;
}

.rs1-section__action {
	display: grid;
	place-items: center;
	gap: 16px;
	padding-top: 24px;
	text-align: center;
}

.rs1-section__action p {
	margin: 0;
	color: #364861;
	font-size: 1.05rem;
}

.rs1-product-card {
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.09);
}

.rs1-product-card__media {
	aspect-ratio: 1.32 / 1;
	padding: 14px 14px 0;
	background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.rs1-product-card__media img {
	border-radius: 20px;
	box-shadow: none;
}

.rs1-product-card__content {
	padding: 18px 22px 24px;
}

.rs1-product-card__content h3 {
	font-size: 1.02rem;
}

.rs1-product-card__content p {
	margin-top: 10px;
}

.rs1-product-card__content a {
	margin-top: 16px;
	color: #456b9a;
}

.rs1-turnkey {
	padding: 10px 0 4px;
}

.rs1-turnkey__inner {
	padding: 74px 0;
}

.rs1-turnkey__copy h2 {
	max-width: 10ch;
}

.rs1-turnkey__copy p {
	max-width: 36rem;
}

.rs1-turnkey__emphasis {
	margin: 20px 0 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: #ffffff !important;
}

.rs1-turnkey__steps {
	background: rgba(7, 17, 33, 0.34);
	border-color: rgba(255, 255, 255, 0.1);
}

.rs1-footer {
	padding: 0;
	background:
		linear-gradient(180deg, #34455d 0, #34455d 98px, #1d2435 98px, #181f2f 100%),
		radial-gradient(circle at 20% 20%, rgba(106, 146, 214, 0.1), transparent 34%);
}

.rs1-footer__surface {
	padding: 28px 0 24px;
}

.rs1-footer__cta,
.rs1-footer__inner {
	color: rgba(255, 255, 255, 0.84);
}

.rs1-footer__cta {
	display: block;
	padding: 0 0 40px;
	margin: 0 0 38px;
	border-bottom: 0;
	text-align: center;
}

.rs1-footer__title {
	font-size: clamp(2rem, 3.5vw, 3.4rem);
	letter-spacing: -0.04em;
}

.rs1-footer__inner {
	grid-template-columns: 1.15fr 0.9fr 1fr 1.12fr;
	gap: 48px;
	padding-bottom: 34px;
}

.rs1-footer__column h3 {
	margin-bottom: 18px;
	font-size: 1.08rem;
}

.rs1-footer__column p {
	line-height: 1.72;
}

.rs1-footer__column p:first-of-type {
	margin-top: 0;
}

.rs1-footer__links {
	gap: 12px;
	margin-top: 0;
}

.rs1-footer__links a,
.rs1-footer__column p {
	color: rgba(255, 255, 255, 0.82);
}

.rs1-footer__links li::before {
	content: "•";
	display: inline-block;
	margin-right: 4px;
	color: rgba(255, 255, 255, 0.82);
}

.rs1-footer__button {
	margin-top: 22px;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, #55bff6, #3c9ce6);
	box-shadow: none;
}

.rs1-footer__meta {
	padding-top: 22px;
	border-top-color: rgba(255, 255, 255, 0.14);
}

.rs1-page-hero {
	padding: 82px 0 34px;
	background:
		radial-gradient(circle at top right, rgba(138, 201, 255, 0.18), transparent 28%),
		linear-gradient(180deg, #eef3f8, rgba(244, 246, 250, 0));
}

.rs1-page-hero--media {
	background-size: cover;
	background-position: center;
}

.rs1-page-hero__layout {
	gap: 28px;
	align-items: stretch;
}

.rs1-page-hero__description {
	max-width: 40rem;
}

.rs1-page-hero__lead {
	margin: 18px 0 0;
	font-weight: 800;
	line-height: 1.55;
}

.rs1-page-hero__panel {
	align-self: end;
}

.rs1-anchor-nav {
	margin-bottom: 26px;
}

.rs1-detail-stack {
	gap: 28px;
}

.rs1-detail-card,
.rs1-contact-card {
	border-radius: 28px;
}

.rs1-detail-card--reverse {
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.rs1-detail-card--reverse .rs1-detail-card__media {
	order: 2;
}

.rs1-detail-card--reverse .rs1-detail-card__content {
	order: 1;
}

.rs1-detail-card__media {
	min-height: 360px;
}

.rs1-detail-card__content {
	padding: 32px;
}

.rs1-contact-list div {
	background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
	.rs1-header__inner {
		position: relative;
		flex-wrap: nowrap;
		align-items: center;
	}

	.rs1-nav-toggle {
		display: inline-flex;
		flex: 0 0 auto;
		margin-left: 12px;
	}

	.rs1-header__panel {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		width: min(380px, calc(100vw - 32px));
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 18px;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.99);
		backdrop-filter: blur(16px);
		box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
		z-index: 60;
	}

	.rs1-site-shell.is-nav-open .rs1-header__panel {
		display: flex;
	}

	.rs1-header__nav,
	.rs1-header__actions {
		width: 100%;
	}

	.rs1-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 0;
	}

	.rs1-menu > li {
		width: 100%;
	}

	.rs1-menu a {
		display: block;
		padding: 12px 14px;
		border-radius: 16px;
		background: #f7f9fc;
		color: #111827;
		opacity: 1;
	}

	.rs1-menu__item .rs1-menu__link {
		font-weight: 700;
	}

	.rs1-menu__toggle {
		background: #eef3f8;
		color: #111827;
	}

	.rs1-header__actions {
		flex-direction: column;
		gap: 10px;
	}

	.rs1-header__button {
		width: 100%;
	}

	.rs1-topbar__inner,
	.rs1-footer__cta,
	.rs1-hero__inner,
	.rs1-turnkey__inner,
	.rs1-grid--equipment,
	.rs1-grid--advantages,
	.rs1-page-hero__layout,
	.rs1-detail-card,
	.rs1-contact-layout,
	.rs1-home-cta__inner,
	.rs1-footer__inner {
		grid-template-columns: 1fr;
	}

	.rs1-grid--solutions,
	.rs1-grid--industries {
		grid-template-columns: 1fr;
	}

	.rs1-container--media {
		width: min(calc(100% - 28px), 1380px);
	}

	.rs1-footer__inner {
		gap: 30px;
	}

	.rs1-detail-card--reverse .rs1-detail-card__media,
	.rs1-detail-card--reverse .rs1-detail-card__content {
		order: initial;
	}

	.rs1-hero {
		min-height: auto;
	}

	.rs1-hero__visual {
		min-height: 420px;
	}

	.rs1-hero__image-frame {
		position: relative;
		inset: auto;
	}

	.rs1-spec-grid,
	.rs1-service-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.rs1-topbar__inner,
	.rs1-footer__cta {
		flex-direction: column;
		align-items: stretch;
	}

	.rs1-branding {
		max-width: calc(100% - 58px);
	}

	.rs1-branding {
		align-items: flex-start;
	}

	.rs1-header__inner {
		align-items: flex-start;
	}

	.rs1-header__panel {
		top: calc(100% + 8px);
		right: 0;
		width: min(100%, calc(100vw - 24px));
		padding: 14px;
		border-radius: 20px;
	}

	.rs1-branding__logo {
		max-width: min(34vw, 120px);
	}

	.rs1-branding__logo-image,
	.rs1-branding__logo img,
	.rs1-branding__logo .custom-logo {
		max-height: min(var(--rs1-logo-max-height, 64px), 52px);
	}

	.rs1-branding__text {
		max-width: calc(100% - 72px);
	}

	.rs1-hero__metrics {
		grid-template-columns: 1fr;
	}

	.rs1-hero__inner,
	.rs1-turnkey__inner {
		padding: 56px 0;
		gap: 28px;
	}

	.rs1-hero__visual {
		min-height: 360px;
	}

	.rs1-hero__title {
		max-width: none;
	}

	.rs1-hotspot {
		font-size: 11px !important;
	}

	.rs1-media-card__content,
	.rs1-industry-card__content {
		position: static;
		background: #fff;
		color: #203049;
		box-shadow: none;
		border: 1px solid var(--rs1-card-border, #dbe2ec);
	}

	.rs1-media-card__content h3,
	.rs1-industry-card__content h3 {
		color: #203049;
	}

	.rs1-media-card__content p,
	.rs1-industry-card__content p {
		color: #5d6b80;
	}

	.rs1-media-card__content a,
	.rs1-industry-card__content a {
		color: var(--rs1-accent, #f6862d);
	}

	.rs1-media-card__media,
	.rs1-industry-card__media {
		aspect-ratio: 1.72 / 1;
	}

	.rs1-product-card__media,
	.rs1-detail-card__media {
		min-height: 240px;
	}

	.rs1-section__action {
		padding-top: 18px;
	}

	.rs1-footer__surface {
		padding-top: 22px;
	}

	.rs1-footer__title {
		text-align: center;
	}

	.rs1-footer__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

body.rs1-body {
	background:
		radial-gradient(circle at 14% 12%, rgba(95, 144, 217, 0.1), transparent 32%),
		radial-gradient(circle at 82% 0, rgba(255, 123, 0, 0.08), transparent 26%),
		linear-gradient(180deg, #eef3fa, #edf2f8 100%);
}

.rs1-main {
	gap: 28px;
}

.rs1-hero {
	background:
		radial-gradient(circle at 78% 22%, rgba(101, 160, 255, 0.18), transparent 26%),
		linear-gradient(135deg, #142847 0%, #0b1932 54%, #081120 100%);
}

.rs1-hero__bg {
	background:
		linear-gradient(90deg, rgba(6, 14, 27, 0.86) 0%, rgba(10, 21, 40, 0.76) 44%, rgba(11, 24, 47, 0.46) 100%);
}

.rs1-hero__overlay {
	background:
		radial-gradient(circle at 72% 54%, rgba(88, 167, 255, 0.2), transparent 18%),
		radial-gradient(circle at 20% 82%, rgba(255, 122, 0, 0.12), transparent 18%),
		linear-gradient(180deg, rgba(5, 10, 20, 0.06), rgba(5, 10, 20, 0.32));
}

.rs1-hero__description {
	max-width: 34rem;
}

.rs1-hero__actions .rs1-button--secondary {
	border-color: rgba(105, 171, 255, 0.34);
}

.rs1-hero__metrics {
	display: flex;
	gap: 22px;
	margin-top: 36px;
}

.rs1-metric-card {
	display: grid;
	justify-items: center;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.rs1-metric-card strong {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(118, 189, 255, 0.9), rgba(30, 93, 172, 0.34) 46%, rgba(7, 18, 34, 0.1) 72%);
	border: 1px solid rgba(142, 197, 255, 0.4);
	box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12), 0 0 22px rgba(86, 153, 255, 0.18);
	font-size: 1.05rem;
}

.rs1-metric-card span {
	margin-top: 12px;
	font-size: 0.78rem;
	letter-spacing: 0;
	text-transform: none;
}

.rs1-hero__image-frame {
	background: linear-gradient(145deg, rgba(8, 18, 35, 0.4), rgba(8, 18, 35, 0.08));
}

.rs1-hero__image-frame img {
	object-position: 70% center;
}

.rs1-visual {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	background: linear-gradient(140deg, #173862, #0d1830 72%);
}

.rs1-visual__wash,
.rs1-visual__glow,
.rs1-visual__grid,
.rs1-visual__shape {
	position: absolute;
}

.rs1-visual__wash {
	inset: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 36%),
		linear-gradient(180deg, rgba(7, 13, 24, 0.02), rgba(7, 13, 24, 0.22));
}

.rs1-visual__glow {
	inset: auto auto 14% 12%;
	width: 42%;
	height: 42%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(123, 197, 255, 0.38), transparent 68%);
	filter: blur(8px);
}

.rs1-visual__grid {
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 80%);
}

.rs1-visual__shape {
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(145deg, rgba(247, 250, 255, 0.28), rgba(159, 192, 231, 0.08));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 30px rgba(5, 10, 20, 0.18);
}

.rs1-visual__shape--one {
	inset: 16% auto auto 12%;
	width: 18%;
	height: 54%;
}

.rs1-visual__shape--two {
	inset: 24% auto auto 33%;
	width: 12%;
	height: 42%;
}

.rs1-visual__shape--three {
	inset: auto 10% 16% auto;
	width: 48%;
	height: 18%;
	border-radius: 999px;
}

.rs1-visual__shape--four {
	inset: 32% 16% auto auto;
	width: 22%;
	height: 24%;
	border-radius: 50%;
}

.rs1-visual--hero {
	border-radius: 28px;
	background:
		radial-gradient(circle at 76% 48%, rgba(123, 197, 255, 0.28), transparent 22%),
		linear-gradient(135deg, #152f56 0%, #101f3d 46%, #0a1327 100%);
}

.rs1-visual--hero .rs1-visual__shape--one {
	inset: 18% auto auto 7%;
	width: 12%;
	height: 52%;
}

.rs1-visual--hero .rs1-visual__shape--two {
	inset: 28% auto auto 22%;
	width: 7%;
	height: 36%;
}

.rs1-visual--hero .rs1-visual__shape--three {
	inset: auto 5% 14% auto;
	width: 64%;
	height: 16%;
}

.rs1-visual--hero .rs1-visual__shape--four {
	inset: 26% 6% auto auto;
	width: 48%;
	height: 40%;
	border-radius: 26px;
}

.rs1-media-card__media .rs1-visual,
.rs1-industry-card__media .rs1-visual,
.rs1-product-card__media .rs1-visual,
.rs1-detail-card__media .rs1-visual {
	min-height: 100%;
}

.rs1-media-card__media .rs1-visual__shape--one,
.rs1-industry-card__media .rs1-visual__shape--one,
.rs1-detail-card__media .rs1-visual__shape--one {
	width: 20%;
	height: 58%;
}

.rs1-media-card__media .rs1-visual__shape--two,
.rs1-industry-card__media .rs1-visual__shape--two,
.rs1-detail-card__media .rs1-visual__shape--two {
	width: 14%;
	height: 42%;
}

.rs1-media-card__media .rs1-visual__shape--three,
.rs1-industry-card__media .rs1-visual__shape--three,
.rs1-detail-card__media .rs1-visual__shape--three {
	width: 50%;
	height: 14%;
}

.rs1-media-card--liquid-extract-drying .rs1-visual,
.rs1-detail-card--liquid-extract-drying .rs1-visual {
	background:
		radial-gradient(circle at 42% 52%, rgba(245, 207, 117, 0.38), transparent 14%),
		linear-gradient(135deg, #32556e, #1e3145 55%, #111b2b);
}

.rs1-media-card--liquid-extract-drying .rs1-visual__shape--three,
.rs1-detail-card--liquid-extract-drying .rs1-visual__shape--three {
	inset: auto 4% 14% auto;
	width: 42%;
	height: 20%;
	background: linear-gradient(145deg, rgba(230, 183, 76, 0.84), rgba(123, 84, 19, 0.28));
}

.rs1-media-card--food-ingredient-drying .rs1-visual,
.rs1-detail-card--food-ingredient-drying .rs1-visual {
	background:
		radial-gradient(circle at 60% 30%, rgba(255, 178, 48, 0.34), transparent 18%),
		linear-gradient(135deg, #486d88, #28445d 45%, #171f2d);
}

.rs1-media-card--food-ingredient-drying .rs1-visual__shape--three,
.rs1-detail-card--food-ingredient-drying .rs1-visual__shape--three {
	inset: auto 2% 12% auto;
	width: 58%;
	height: 16%;
	transform: rotate(-12deg);
	background: linear-gradient(145deg, rgba(241, 177, 83, 0.95), rgba(194, 120, 29, 0.36));
}

.rs1-media-card--plant-extract-processing .rs1-visual,
.rs1-detail-card--plant-extract-processing .rs1-visual {
	background:
		radial-gradient(circle at 24% 20%, rgba(205, 195, 130, 0.28), transparent 18%),
		linear-gradient(135deg, #dde4e8, #9db0bc 58%, #617488);
}

.rs1-media-card--plant-extract-processing .rs1-visual__shape,
.rs1-detail-card--plant-extract-processing .rs1-visual__shape {
	border-color: rgba(70, 93, 107, 0.22);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(127, 149, 165, 0.12));
}

.rs1-media-card--high-viscosity-materials .rs1-visual,
.rs1-detail-card--high-viscosity-materials .rs1-visual {
	background:
		radial-gradient(circle at 38% 55%, rgba(151, 81, 47, 0.32), transparent 18%),
		linear-gradient(135deg, #35516b, #223244 52%, #111928);
}

.rs1-media-card--high-viscosity-materials .rs1-visual__shape--three,
.rs1-detail-card--high-viscosity-materials .rs1-visual__shape--three {
	inset: auto 4% 10% auto;
	width: 46%;
	height: 22%;
	background: linear-gradient(145deg, rgba(123, 72, 45, 0.9), rgba(56, 28, 17, 0.32));
}

.rs1-product-card__media .rs1-visual,
.rs1-detail-card--equipment .rs1-visual {
	background:
		linear-gradient(180deg, #f5f8fc, #e2e9f2 72%, #d4dde8 100%);
}

.rs1-product-card__media .rs1-visual__grid,
.rs1-detail-card--equipment .rs1-visual__grid {
	background-image:
		linear-gradient(rgba(40, 63, 90, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(40, 63, 90, 0.08) 1px, transparent 1px);
}

.rs1-product-card__media .rs1-visual__shape,
.rs1-detail-card--equipment .rs1-visual__shape {
	border-color: rgba(74, 94, 122, 0.14);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(177, 191, 210, 0.24));
	box-shadow: 0 14px 28px rgba(102, 120, 146, 0.12);
}

.rs1-product-card--vacuum-belt-dryer-vbd .rs1-visual__shape--three,
.rs1-detail-card--vacuum-belt-dryer-vbd .rs1-visual__shape--three {
	inset: auto 5% 18% auto;
	width: 60%;
	height: 18%;
}

.rs1-product-card--vacuum-evaporator .rs1-visual__shape--four,
.rs1-detail-card--vacuum-evaporator .rs1-visual__shape--four {
	width: 28%;
	height: 50%;
	border-radius: 40px;
}

.rs1-product-card--sterilization-system .rs1-visual__shape--one,
.rs1-detail-card--sterilization-system .rs1-visual__shape--one {
	width: 16%;
	height: 48%;
}

.rs1-industry-card__media .rs1-visual,
.rs1-detail-card--industry .rs1-visual {
	background: linear-gradient(135deg, #4a382d, #201715 66%, #130f11);
}

.rs1-industry-card--herbal-extracts .rs1-visual,
.rs1-detail-card--herbal-extracts .rs1-visual {
	background:
		radial-gradient(circle at 28% 25%, rgba(173, 132, 82, 0.22), transparent 18%),
		linear-gradient(135deg, #5b4336, #2c211d 62%, #161112);
}

.rs1-industry-card--food-ingredients .rs1-visual,
.rs1-detail-card--food-ingredients .rs1-visual {
	background:
		radial-gradient(circle at 68% 20%, rgba(255, 164, 55, 0.18), transparent 18%),
		linear-gradient(135deg, #6a4d34, #35251b 62%, #171113);
}

.rs1-industry-card--plant-extracts .rs1-visual,
.rs1-detail-card--plant-extracts .rs1-visual {
	background:
		radial-gradient(circle at 22% 62%, rgba(86, 188, 135, 0.24), transparent 18%),
		linear-gradient(135deg, #c9d7db, #90a8b3 56%, #5b6d7f);
}

.rs1-industry-card--nutraceuticals .rs1-visual,
.rs1-detail-card--nutraceuticals .rs1-visual {
	background:
		radial-gradient(circle at 58% 28%, rgba(224, 181, 102, 0.16), transparent 18%),
		linear-gradient(135deg, #8a674f, #4d372b 62%, #1a1314);
}

.rs1-page-hero--solution,
.rs1-page-hero--contact,
.rs1-page-hero--turnkey {
	background:
		radial-gradient(circle at 78% 24%, rgba(92, 169, 255, 0.16), transparent 20%),
		linear-gradient(135deg, #122642 0%, #0c1830 58%, #091220 100%);
}

.rs1-page-hero--equipment,
.rs1-page-hero--industries {
	background:
		radial-gradient(circle at 18% 18%, rgba(99, 146, 214, 0.1), transparent 20%),
		linear-gradient(180deg, #eff4fa, #edf2f8);
}

.rs1-page-hero--turnkey {
	background-size: cover;
	background-position: center;
}

.rs1-page-hero__panel {
	border-radius: 28px;
}

.rs1-detail-card__media {
	background: linear-gradient(135deg, #152d4f, #0c1728);
}

.rs1-turnkey {
	background:
		radial-gradient(circle at 74% 50%, rgba(97, 181, 255, 0.1), transparent 18%),
		linear-gradient(135deg, #0d1628 0%, #111c30 44%, #0b1322 100%);
}

.rs1-turnkey__bg {
	background:
		linear-gradient(90deg, rgba(6, 14, 27, 0.92) 0%, rgba(6, 14, 27, 0.72) 40%, rgba(6, 14, 27, 0.58) 100%);
}

.rs1-turnkey__overlay {
	background:
		radial-gradient(circle at 70% 35%, rgba(97, 191, 255, 0.16), transparent 22%),
		radial-gradient(circle at 24% 78%, rgba(246, 134, 45, 0.14), transparent 18%),
		linear-gradient(135deg, rgba(5, 12, 24, 0.2), rgba(8, 22, 43, 0.38));
}

.rs1-turnkey__inner {
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
}

.rs1-turnkey__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 26px;
	padding: 26px;
	border-radius: 32px;
	background: linear-gradient(145deg, rgba(10, 21, 38, 0.44), rgba(10, 21, 38, 0.2));
}

.rs1-step--diagram {
	position: relative;
	grid-template-columns: 58px minmax(0, 1fr);
	padding: 18px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
}

.rs1-step--diagram + .rs1-step--diagram {
	border-top: 0;
	padding-top: 18px;
}

.rs1-step--diagram .rs1-step__index {
	position: relative;
	width: 58px;
	height: 58px;
	background: rgba(255, 255, 255, 0.03);
}

.rs1-step--diagram .rs1-step__index::before,
.rs1-step--diagram .rs1-step__index::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}

.rs1-step--1 .rs1-step__index::before {
	width: 22px;
	height: 26px;
	border: 2px solid currentColor;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}

.rs1-step--1 .rs1-step__index::after {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	margin-top: 10px;
}

.rs1-step--2 .rs1-step__index::before {
	width: 22px;
	height: 22px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.rs1-step--2 .rs1-step__index::after {
	width: 2px;
	height: 16px;
	background: currentColor;
}

.rs1-step--3 .rs1-step__index::before {
	width: 24px;
	height: 28px;
	border: 2px solid currentColor;
	border-radius: 14px 14px 18px 18px;
}

.rs1-step--4 .rs1-step__index::before {
	width: 30px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 999px;
}

.rs1-step--4 .rs1-step__index::after {
	width: 22px;
	height: 2px;
	background: currentColor;
}

.rs1-step__content h3 {
	font-size: 1rem;
}

.rs1-step__content p {
	margin-top: 6px;
}

.rs1-footer {
	background:
		linear-gradient(180deg, #5a6882 0, #5a6882 94px, #1a2232 94px, #151d2b 100%);
}

.rs1-footer__surface {
	padding: 0 0 22px;
}

.rs1-footer__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 94px;
	margin: 0;
	padding: 0 20px;
}

.rs1-footer__title {
	max-width: none;
	margin: 0 auto;
	font-size: clamp(1.2rem, 2vw, 2.1rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
	text-align: center;
	white-space: nowrap;
}

.rs1-footer .rs1-container {
	width: min(calc(100% - 44px), 1500px);
}

.rs1-footer__inner {
	grid-template-columns: 1.15fr 0.9fr 0.95fr 1.15fr;
	gap: 46px;
	padding: 34px 0 28px;
}

.rs1-footer__column {
	min-width: 0;
}

.rs1-footer__column h3 {
	margin-bottom: 20px;
	font-size: 1.02rem;
	font-weight: 800;
}

.rs1-footer__column p,
.rs1-footer__links a {
	font-size: 0.98rem;
	line-height: 1.7;
}

.rs1-footer__links li::before {
	display: none;
}

.rs1-footer__links li {
	position: relative;
	padding-left: 12px;
}

.rs1-footer__links li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	transform: translateY(-50%);
}

.rs1-footer__button {
	margin-top: 26px;
	min-height: 56px;
	padding: 0 30px;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 800;
	background: linear-gradient(135deg, #58c3f9, #41a7ea);
	box-shadow: 0 14px 30px rgba(60, 156, 230, 0.22);
}

.rs1-footer__meta {
	padding-top: 18px;
	color: rgba(255, 255, 255, 0.68);
}

.rs1-footer__meta p {
	margin: 0;
}

@media (max-width: 1024px) {
	.rs1-hero__metrics {
		flex-wrap: wrap;
	}

	.rs1-turnkey__steps {
		grid-template-columns: 1fr;
	}

	.rs1-footer .rs1-container {
		width: min(calc(100% - 28px), 1500px);
	}

	.rs1-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.rs1-main {
		gap: 22px;
	}

	.rs1-hero__metrics {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.rs1-metric-card strong {
		width: 72px;
		height: 72px;
		font-size: 0.95rem;
	}

	.rs1-metric-card span {
		font-size: 0.74rem;
		text-align: center;
	}

	.rs1-turnkey__steps {
		padding: 18px;
	}

	.rs1-step--diagram {
		grid-template-columns: 48px minmax(0, 1fr);
		padding: 14px;
	}

	.rs1-step--diagram .rs1-step__index {
		width: 48px;
		height: 48px;
	}

	.rs1-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 26px;
	}

	.rs1-footer__cta {
		min-height: auto;
		padding: 16px 16px 18px;
	}

	.rs1-footer__title {
		font-size: clamp(1rem, 5.6vw, 1.4rem);
		white-space: normal;
	}

	.rs1-footer__button {
		width: 100%;
	}

	.rs1-footer__meta {
		gap: 10px;
	}
}

html {
	overflow-x: clip;
}

body.rs1-body {
	overflow-x: clip;
}

body.rs1-body *,
body.rs1-body *::before,
body.rs1-body *::after {
	box-sizing: border-box;
}

body.rs1-body img,
body.rs1-body svg,
body.rs1-body video,
body.rs1-body iframe {
	max-width: 100%;
}

@media (max-width: 1024px) {
	.rs1-topbar__inner {
		flex-wrap: wrap;
	}

	.rs1-topbar__text,
	.rs1-topbar__link,
	.rs1-branding__name,
	.rs1-branding__tagline {
		white-space: normal;
	}

	.rs1-header__inner {
		gap: 14px;
	}

	.rs1-branding {
		max-width: calc(100% - 64px);
	}

	.rs1-hero__inner,
	.rs1-turnkey__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 60px 0;
	}

	.rs1-hero__title,
	.rs1-turnkey__copy h2,
	.rs1-page-hero__title {
		max-width: none;
	}

	.rs1-hero__description,
	.rs1-turnkey__copy p,
	.rs1-page-hero__description {
		max-width: none;
	}

	.rs1-hero__orb,
	.rs1-hotspot {
		display: none;
	}

	.rs1-grid--solutions,
	.rs1-grid--industries,
	.rs1-grid--equipment,
	.rs1-grid--advantages {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rs1-hero__image-frame {
		position: relative;
		inset: auto;
	}

	.rs1-hero__visual,
	.rs1-hero__image-frame,
	.rs1-hero__image-frame img {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.rs1-container,
	.rs1-container--media,
	.rs1-footer .rs1-container {
		width: min(calc(100% - 24px), 1500px);
	}

	.rs1-main {
		gap: 18px;
	}

	.rs1-topbar__inner,
	.rs1-footer__cta {
		gap: 10px;
	}

	.rs1-header__inner {
		padding: 12px 0;
		gap: 10px;
	}

	.rs1-branding {
		max-width: calc(100% - 54px);
		gap: 10px;
	}

	.rs1-branding__logo {
		max-width: min(30vw, 108px);
	}

	.rs1-branding__text {
		max-width: calc(100% - 60px);
	}

	.rs1-branding__name {
		font-size: 0.98rem;
	}

	.rs1-branding__tagline {
		margin-top: 2px;
		font-size: 0.74rem;
		line-height: 1.35;
	}

	.rs1-header__panel {
		width: calc(100vw - 24px);
		max-width: none;
	}

	.rs1-hero,
	.rs1-turnkey {
		min-height: auto;
	}

	.rs1-hero__inner,
	.rs1-turnkey__inner {
		padding: 30px 0;
		gap: 18px;
	}

	.rs1-hero__title {
		font-size: clamp(1.8rem, 8.2vw, 2.65rem) !important;
		line-height: 1.06;
	}

	.rs1-section__heading h2,
	.rs1-turnkey__copy h2,
	.rs1-page-hero__title,
	.rs1-detail-card__content h2,
	.rs1-contact-card h2,
	.rs1-footer__title {
		font-size: clamp(1.45rem, 6.4vw, 2rem) !important;
		line-height: 1.12;
	}

	.rs1-hero__description,
	.rs1-section__heading p,
	.rs1-turnkey__copy p,
	.rs1-page-hero__description,
	.rs1-detail-card__content p,
	.rs1-contact-card p,
	.rs1-home-cta__content p,
	.rs1-home-cta__panel li {
		font-size: 0.96rem !important;
		line-height: 1.7;
	}

	.rs1-section__heading {
		margin-bottom: 20px;
	}

	.rs1-section__heading p {
		margin-top: 10px;
	}

	.rs1-hero__actions,
	.rs1-inline-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.rs1-hero__actions .rs1-button,
	.rs1-inline-actions .rs1-button,
	.rs1-section__action .rs1-button {
		width: 100%;
	}

	.rs1-hero__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 24px;
	}

	.rs1-metric-card strong {
		width: 56px;
		height: 56px;
		font-size: 0.82rem;
	}

	.rs1-metric-card span {
		font-size: 0.68rem;
	}

	.rs1-hero__visual {
		min-height: 0;
	}

	.rs1-hero__image-frame {
		padding: 10px;
		border-radius: 18px;
	}

	.rs1-hero__image-frame img,
	.rs1-visual--hero {
		min-height: 0;
		aspect-ratio: 16 / 11;
		border-radius: 14px;
	}

	.rs1-grid--solutions,
	.rs1-grid--industries,
	.rs1-grid--equipment,
	.rs1-grid--advantages,
	.rs1-spec-grid,
	.rs1-service-grid,
	.rs1-contact-layout,
	.rs1-contact-list,
	.rs1-home-cta__inner,
	.rs1-page-hero__layout,
	.rs1-footer__inner {
		grid-template-columns: 1fr;
	}

	.rs1-media-card,
	.rs1-product-card,
	.rs1-industry-card,
	.rs1-advantage-card,
	.rs1-detail-card,
	.rs1-contact-card,
	.rs1-home-cta__content,
	.rs1-home-cta__panel,
	.rs1-page-hero__panel,
	.rs1-turnkey__steps,
	.rs1-generic__article,
	.rs1-faq-item {
		border-radius: 18px;
	}

	.rs1-media-card__media,
	.rs1-industry-card__media,
	.rs1-product-card__media,
	.rs1-detail-card__media {
		aspect-ratio: 16 / 11;
		min-height: 0;
	}

	.rs1-media-card__content,
	.rs1-industry-card__content {
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 0 14px 14px;
		padding: 16px;
		border-radius: 16px;
		background: #fff;
		border: 1px solid var(--rs1-card-border, #dbe2ec);
		box-shadow: none;
	}

	.rs1-media-card__content h3,
	.rs1-industry-card__content h3 {
		color: #203049;
		font-size: 1rem;
	}

	.rs1-media-card__content p,
	.rs1-industry-card__content p {
		color: #5d6b80;
		max-width: none;
	}

	.rs1-media-card__content a,
	.rs1-industry-card__content a {
		color: var(--rs1-accent, #f6862d);
	}

	.rs1-product-card__content,
	.rs1-advantage-card,
	.rs1-detail-card__content,
	.rs1-contact-card,
	.rs1-page-hero__panel,
	.rs1-home-cta__content,
	.rs1-home-cta__panel,
	.rs1-turnkey__steps,
	.rs1-generic__article {
		padding: 16px;
	}

	.rs1-detail-card__content,
	.rs1-contact-card {
		padding: 16px;
	}

	.rs1-detail-card__media {
		min-height: 200px;
	}

	.rs1-page-hero {
		padding: 46px 0 18px;
	}

	.rs1-page-hero__panel {
		align-self: stretch;
	}

	.rs1-anchor-nav {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.rs1-anchor-nav a {
		width: 100%;
		text-align: center;
	}

	.rs1-faq-item__trigger {
		align-items: flex-start;
		gap: 12px;
		padding: 18px;
	}

	.rs1-faq-item__trigger strong {
		font-size: 1.3rem;
	}

	.rs1-faq-item__body {
		padding: 0 18px 18px;
	}

	.rs1-turnkey__steps {
		padding: 14px;
	}

	.rs1-step,
	.rs1-step--diagram {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}

	.rs1-step__index,
	.rs1-step--diagram .rs1-step__index {
		width: 44px;
		height: 44px;
	}

	.rs1-footer__surface {
		padding-top: 14px;
	}

	.rs1-footer__inner {
		gap: 18px;
		padding: 18px 0 20px;
	}

	.rs1-footer__button {
		width: 100%;
		min-height: 46px;
	}

	.rs1-footer__meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.home .rs1-main {
		gap: 14px;
	}

	.home .rs1-section--media-home,
	.home .rs1-section--equipment-home,
	.home .rs1-home-cta,
	.home .rs1-turnkey {
		padding-top: 0;
	}

	.home .rs1-hero__features {
		margin-top: 18px;
		gap: 8px;
	}

	.home .rs1-grid {
		gap: 14px;
	}

	.home .rs1-media-card__content,
	.home .rs1-industry-card__content {
		margin: 0 10px 10px;
		padding: 14px;
	}

	.home .rs1-product-card__content,
	.home .rs1-advantage-card {
		padding: 14px;
	}

	.home .rs1-turnkey__copy .rs1-button {
		margin-top: 18px;
	}

	.home .rs1-section__action {
		padding-top: 12px;
		gap: 12px;
	}

.home .rs1-section__action p {
		font-size: 0.94rem;
	}
}

.rs1-menu__item {
	position: relative;
	display: flex;
	align-items: center;
}

.rs1-header__inner {
	gap: 28px;
}

.rs1-branding {
	max-width: 180px;
}

.rs1-header__panel {
	width: 100%;
	max-width: none;
	justify-content: center;
}

.rs1-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.rs1-menu__chevron {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.24s ease;
}

.rs1-menu__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-left: 6px;
	border: 0;
	border-radius: 10px;
	background: rgba(31, 47, 70, 0.06);
	color: var(--rs1-nav-text, #1f2f46);
	cursor: pointer;
}

.rs1-submenu {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	min-width: 260px;
	padding: 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(31, 47, 70, 0.08);
	box-shadow: 0 26px 54px rgba(31, 47, 70, 0.12);
	backdrop-filter: blur(18px);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.rs1-menu__item:hover .rs1-submenu,
.rs1-menu__item:focus-within .rs1-submenu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.rs1-menu__item:hover .rs1-menu__chevron,
.rs1-menu__item:focus-within .rs1-menu__chevron,
.rs1-menu__item.is-open .rs1-menu__chevron {
	transform: rotate(225deg) translateY(-1px);
}

.rs1-submenu__eyebrow {
	margin: 0 0 10px;
	color: rgba(31, 47, 70, 0.5);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-submenu__grid {
	display: grid;
	gap: 8px;
}

.rs1-submenu__link {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	color: #1f2f46;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.45;
}

.rs1-submenu__link:hover {
	background: rgba(69, 107, 154, 0.08);
}

.rs1-process-hero {
	position: relative;
	margin: 0;
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	background-color: #0d1a31;
	background-size: cover;
	background-position: center;
	box-shadow: none;
}

.rs1-process-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 24px;
	padding: 56px;
}

.rs1-process-hero__inner--single {
	grid-template-columns: 1fr;
}

.rs1-process-hero__copy {
	color: #fff;
	max-width: 680px;
}

.rs1-process-hero__eyebrow {
	margin: 0 0 14px;
	color: #8ec5ff;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rs1-process-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2.2rem, 4vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.rs1-process-hero__description,
.rs1-process-hero__caption {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.04rem;
	line-height: 1.8;
}

.rs1-process-hero__panel {
	align-self: end;
	padding: 24px 26px;
	border-radius: 24px;
	background: rgba(7, 18, 33, 0.44);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	color: #fff;
}

.rs1-process-hero__panel-label {
	margin: 0 0 10px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8ec5ff;
}

.rs1-process-hero__flow {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.8;
}

.rs1-process-hero__flow span {
	display: inline-block;
	margin: 0 8px;
	color: #8ec5ff;
}

.rs1-process-hero__panel-text {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.7;
}

.rs1-process-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rs1-process-grid--adaptive {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.rs1-process-grid--adaptive .rs1-process-card__media {
	aspect-ratio: 1.86 / 1;
}

.rs1-process-grid--home {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .rs1-section--media-home,
.home .rs1-section--equipment-home {
	width: min(calc(100% - 32px), 1380px);
	margin: 0 auto;
	padding: 28px 0 24px;
	border-radius: 28px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.home .rs1-section--media-home .rs1-container--media,
.home .rs1-section--equipment-home .rs1-container--media {
	width: min(calc(100% - 44px), 1280px);
}

.home .rs1-section--media-home .rs1-section__heading,
.home .rs1-section--equipment-home .rs1-section__heading {
	margin: 0 auto 24px;
	text-align: center;
}

.home .rs1-section--equipment-home .rs1-section__heading {
	margin: 0 0 24px;
	text-align: left;
}

.home .rs1-section--media-home .rs1-section__heading h2,
.home .rs1-section--equipment-home .rs1-section__heading h2 {
	font-size: clamp(1.95rem, 3vw, 3rem) !important;
	letter-spacing: -0.04em;
}

.home .rs1-section--media-home .rs1-section__heading p,
.home .rs1-section--equipment-home .rs1-section__heading p {
	margin: 8px auto 0;
	max-width: 760px;
	font-size: 0.96rem !important;
	line-height: 1.65;
}

.home .rs1-section--equipment-home .rs1-section__heading p {
	margin: 8px 0 0;
	max-width: 720px;
}

.home .rs1-process-grid--home {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.home .rs1-process-grid--home .rs1-process-card:last-child {
	grid-column: 1 / -1;
}

.home .rs1-process-card,
.home .rs1-product-card,
.home .rs1-industry-card {
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(31, 47, 70, 0.1);
}

.home .rs1-process-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(31, 47, 70, 0.08);
}

.home .rs1-process-card__media {
	aspect-ratio: 2.12 / 1;
}

.home .rs1-process-card__content {
	position: absolute;
	inset: 0;
	padding: 0;
}

.home .rs1-process-card__content::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 48%;
	background: linear-gradient(180deg, rgba(8, 15, 26, 0), rgba(8, 15, 26, 0.82));
}

.home .rs1-process-card__eyebrow {
	display: none;
}

.home .rs1-process-card__content h3,
.home .rs1-process-card__content p,
.home .rs1-process-card__content a {
	position: absolute;
	z-index: 2;
	left: 16px;
	right: 16px;
	color: #ffffff;
}

.home .rs1-process-card__content h3 {
	bottom: 58px;
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.22;
}

.home .rs1-process-card__content p {
	bottom: 30px;
	margin: 0;
	max-width: calc(100% - 124px);
	font-size: 0.8rem;
	line-height: 1.45;
	opacity: 0.9;
}

.home .rs1-process-card__content a {
	left: auto;
	right: 14px;
	bottom: 14px;
	margin: 0;
	font-size: 0.76rem;
	line-height: 1;
}

.home .rs1-grid--equipment,
.home .rs1-grid--industries {
	gap: 18px;
}

.home .rs1-product-card {
	border: 1px solid rgba(31, 47, 70, 0.09);
	background: #fff;
}

.home .rs1-product-card__media {
	padding: 10px 10px 0;
	background: #fff;
}

.home .rs1-product-card__media img {
	border-radius: 10px;
}

.home .rs1-product-card__content {
	padding: 14px 16px 18px;
}

.home .rs1-product-card__content h3 {
	font-size: 0.95rem;
}

.home .rs1-product-card__content p {
	font-size: 0.82rem;
	line-height: 1.55;
}

.home .rs1-product-card__content a {
	margin-top: 10px;
	font-size: 0.82rem;
}

.home .rs1-industry-card {
	position: relative;
	overflow: hidden;
}

.home .rs1-industry-card__content {
	left: 18px;
	right: 18px;
	bottom: 16px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.home .rs1-industry-card__content h3 {
	margin: 0;
	color: #ffffff;
	font-size: 1.08rem;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(7, 12, 22, 0.4);
}

.home .rs1-industry-card__content p {
	display: none;
}

.home .rs1-industry-card__content a {
	margin-top: 8px;
	color: #ffffff;
	font-size: 0.82rem;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(7, 12, 22, 0.4);
}

.home .rs1-section__action {
	padding-top: 16px;
}

.home .rs1-section__action p {
	font-size: 0.88rem;
}

.rs1-process-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border-radius: 26px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-process-card__media {
	aspect-ratio: 1.86 / 1;
	background: linear-gradient(145deg, #15345d, #0b1728);
}

.rs1-process-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs1-process-card__content {
	padding: 20px 22px 24px;
}

.rs1-process-card__eyebrow {
	margin: 0 0 10px;
	color: var(--rs1-accent, #f6862d);
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-process-card__content h3,
.rs1-surface-card h2,
.rs1-topic-card h2,
.rs1-module-card h3 {
	margin: 0;
	color: #203049;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.rs1-process-card__content p,
.rs1-surface-card p,
.rs1-topic-card p,
.rs1-module-card p {
	color: #5d6b80;
	line-height: 1.75;
}

.rs1-process-card__content a,
.rs1-module-card a,
.rs1-text-link {
	display: inline-flex;
	margin-top: 12px;
	color: #456b9a;
	text-decoration: none;
	font-weight: 700;
}

.rs1-keyword-band,
.rs1-process-banner {
	display: grid;
	gap: 18px;
	margin-top: 24px;
	padding: 28px 30px;
	border-radius: 26px;
	background: linear-gradient(145deg, #0f213d, #163056);
	color: #fff;
	box-shadow: 0 24px 48px rgba(11, 23, 47, 0.16);
}

.rs1-keyword-band h2,
.rs1-process-banner h2 {
	margin: 0;
	color: #fff;
}

.rs1-keyword-band__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rs1-keyword-band__list span {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-weight: 700;
}

.rs1-module-grid,
.rs1-process-layout,
.rs1-topic-grid,
.rs1-company-metrics {
	display: grid;
	gap: 24px;
	margin-top: 24px;
}

.rs1-module-grid,
.rs1-company-metrics {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs1-process-layout {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.rs1-module-card,
.rs1-surface-card,
.rs1-topic-card,
.rs1-company-metrics__card {
	padding: 24px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-surface-card--compact {
	align-self: start;
}

.rs1-process-banner {
	grid-template-columns: minmax(0, 1.1fr) auto;
	align-items: center;
}

.rs1-process-banner--light {
	background: linear-gradient(135deg, #f4f7f9, #e9eef2);
	color: #203049;
	box-shadow: 0 18px 38px rgba(19, 33, 57, 0.08);
}

.rs1-process-banner--light h2 {
	color: #2b5d8f;
}

.rs1-process-banner--light p {
	color: #506177;
}

.rs1-inner-page {
	display: grid;
	gap: 22px;
}

.rs1-inner-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0;
	border-radius: 0;
	background-color: #dfe8f1;
	background-size: cover;
	background-position: center;
	box-shadow: none;
}

.rs1-inner-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(244, 248, 252, 0.95) 0%, rgba(244, 248, 252, 0.84) 34%, rgba(244, 248, 252, 0.2) 68%, rgba(244, 248, 252, 0.02) 100%);
}

.rs1-inner-hero__body {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: 300px;
	padding: 42px 48px;
	max-width: 560px;
}

.rs1-inner-hero__eyebrow {
	margin: 0 0 10px;
	color: #456b9a;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-inner-hero__title {
	margin: 0;
	color: #17263c;
	font-size: clamp(2rem, 3.7vw, 3.5rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.rs1-inner-hero__description {
	margin: 14px 0 0;
	color: #2f415b;
	font-size: 1rem;
	line-height: 1.7;
}

.rs1-inner-content {
	width: min(calc(100% - 32px), 1380px);
	margin: 0 auto;
	display: grid;
	gap: 18px;
}

.rs1-inner-split,
.rs1-inner-block {
	padding: 26px 28px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(31, 47, 70, 0.08);
	box-shadow: 0 14px 32px rgba(31, 47, 70, 0.07);
}

.rs1-inner-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
	gap: 24px;
	align-items: start;
}

.rs1-inner-split__copy h2,
.rs1-inner-block h2 {
	margin: 0;
	color: #17263c;
	font-size: clamp(1.55rem, 2.1vw, 2.25rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.rs1-inner-split__copy p,
.rs1-inner-block p {
	color: #526277;
	line-height: 1.7;
}

.rs1-inner-copy-list {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.rs1-inner-copy-list div {
	padding: 12px 0;
	border-top: 1px solid rgba(31, 47, 70, 0.08);
}

.rs1-inner-copy-list div:first-child {
	border-top: 0;
	padding-top: 0;
}

.rs1-inner-copy-list strong {
	display: block;
	margin-bottom: 4px;
	color: #17263c;
	font-size: 0.98rem;
}

.rs1-inner-media {
	min-height: 220px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(145deg, #ebf1f6, #dce6ef);
}

.rs1-inner-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.rs1-modular-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs1-modular-card {
	padding: 18px 18px 16px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(31, 47, 70, 0.08);
	box-shadow: 0 10px 24px rgba(31, 47, 70, 0.06);
}

.rs1-modular-card h3 {
	margin: 0;
	color: #17263c;
	font-size: 1.05rem;
	line-height: 1.2;
}

.rs1-modular-card p,
.rs1-modular-card li {
	color: #526277;
	line-height: 1.65;
}

.rs1-modular-card ul {
	margin: 12px 0 0;
	padding-left: 18px;
}

.rs1-modular-card a {
	display: inline-flex;
	margin-top: 10px;
	color: #456b9a;
	text-decoration: none;
	font-weight: 700;
}

.rs1-inner-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.rs1-inner-note-list {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.rs1-inner-note-list div {
	padding: 10px 12px;
	border-radius: 12px;
	background: #f5f8fb;
	border: 1px solid rgba(31, 47, 70, 0.06);
}

.rs1-inner-links {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.rs1-inner-links a {
	color: #456b9a;
	text-decoration: none;
	font-weight: 700;
}

.rs1-split-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: 24px;
	padding: 28px;
	border-radius: 28px;
	background: #fff;
	border: 1px solid var(--rs1-card-border, #dbe2ec);
	box-shadow: 0 18px 40px rgba(19, 33, 57, 0.08);
}

.rs1-split-panel__media,
.rs1-split-panel__media img {
	width: 100%;
	height: 100%;
}

.rs1-split-panel__media {
	min-height: 280px;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(145deg, #15345d, #0b1728);
}

.rs1-split-panel__media img {
	display: block;
	object-fit: cover;
}

.rs1-info-stack,
.rs1-mini-grid,
.rs1-feature-grid,
.rs1-advantage-grid {
	display: grid;
	gap: 16px;
	margin-top: 18px;
}

.rs1-info-stack__item,
.rs1-mini-card,
.rs1-feature-card,
.rs1-advantage-pill,
.rs1-topic-card__route {
	padding: 16px 18px;
	border-radius: 18px;
	background: #f6f9fd;
	border: 1px solid #e0e8f1;
}

.rs1-info-stack__item h3,
.rs1-mini-card h3,
.rs1-feature-card h3,
.rs1-advantage-pill h3 {
	margin: 0;
	color: #203049;
	font-size: 1rem;
}

.rs1-info-stack__item p,
.rs1-mini-card p,
.rs1-feature-card p,
.rs1-advantage-pill p {
	margin: 8px 0 0;
}

.rs1-mini-grid,
.rs1-feature-grid,
.rs1-advantage-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs1-mini-grid--three,
.rs1-feature-grid--three,
.rs1-advantage-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs1-topic-card__eyebrow {
	margin: 0 0 10px;
	color: var(--rs1-accent, #f6862d);
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-topic-card__route {
	display: grid;
	gap: 6px;
	margin-top: 14px;
}

.rs1-topic-card__route strong {
	color: #203049;
}

.rs1-company-metrics__card {
	text-align: center;
}

.rs1-company-metrics__card strong {
	display: block;
	color: #203049;
	font-size: 1.3rem;
}

.rs1-company-metrics__card span {
	display: block;
	margin-top: 8px;
	color: #5d6b80;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	font-weight: 700;
}

@media (max-width: 1180px) {
	.rs1-process-grid--home,
	.rs1-module-grid,
	.rs1-topic-grid,
	.rs1-company-metrics,
	.rs1-mini-grid--three,
	.rs1-feature-grid--three,
	.rs1-advantage-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home .rs1-process-grid--home {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.rs1-header__inner {
		display: flex;
		justify-content: space-between;
	}

	.rs1-menu__item {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 34px;
		align-items: center;
	}

	.rs1-menu__link .rs1-menu__chevron {
		display: none;
	}

	.rs1-menu__toggle {
		display: inline-flex;
	}

	.rs1-menu__item .rs1-menu__link {
		padding-right: 0;
	}

	.rs1-submenu {
		position: static;
		min-width: 0;
		margin-top: 12px;
		padding: 14px;
		border-radius: 16px;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		background: #f1f5f9;
		border: 1px solid rgba(15, 23, 42, 0.06);
		box-shadow: none;
		backdrop-filter: none;
	}

	.rs1-menu__item:hover .rs1-submenu,
	.rs1-menu__item:focus-within .rs1-submenu {
		transform: none;
	}

	.rs1-menu__item.is-open .rs1-submenu {
		display: block;
	}

	.rs1-submenu__eyebrow {
		color: rgba(17, 24, 39, 0.48);
	}

	.rs1-submenu__link {
		color: #111827;
		background: rgba(255, 255, 255, 0.72);
	}

	.rs1-submenu__link:hover {
		background: rgba(214, 228, 243, 0.9);
	}

	.rs1-process-hero__inner,
	.rs1-process-banner,
	.rs1-split-panel,
	.rs1-process-layout {
		grid-template-columns: 1fr;
	}

	.rs1-process-grid,
	.rs1-process-grid--home,
	.rs1-module-grid,
	.rs1-topic-grid,
	.rs1-company-metrics,
	.rs1-mini-grid,
	.rs1-feature-grid,
	.rs1-advantage-grid {
		grid-template-columns: 1fr;
	}

	.home .rs1-section--media-home,
	.home .rs1-section--equipment-home {
		width: min(calc(100% - 20px), 1380px);
		padding: 18px 0 18px;
		border-radius: 22px;
	}

	.home .rs1-section--equipment-home .rs1-section__heading {
		margin: 0 0 18px;
	}

	.home .rs1-section--media-home .rs1-container--media,
	.home .rs1-section--equipment-home .rs1-container--media {
		width: min(calc(100% - 24px), 1280px);
	}

	.home .rs1-process-grid--home .rs1-process-card:last-child {
		grid-column: auto;
	}

	.rs1-inner-split,
	.rs1-inner-two-column,
	.rs1-modular-grid,
	.rs1-modular-grid--three {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.rs1-process-hero {
		width: 100%;
		border-radius: 0;
	}

	.rs1-process-hero__inner,
	.rs1-split-panel,
	.rs1-keyword-band,
	.rs1-process-banner,
	.rs1-module-card,
	.rs1-surface-card,
	.rs1-topic-card,
	.rs1-company-metrics__card {
		padding: 18px;
	}

	.rs1-process-hero__title {
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.rs1-inner-hero,
	.rs1-inner-content {
		width: min(calc(100% - 20px), 1380px);
	}

	.rs1-inner-hero {
		width: 100%;
		border-radius: 0;
	}

	.rs1-inner-hero__body,
	.rs1-inner-split,
	.rs1-inner-block {
		padding: 18px;
	}
}

/* Homepage large-block refinements */
.home .rs1-main {
	gap: 24px;
}

.home .rs1-hero,
.home .rs1-turnkey,
.home .rs1-section--media-home,
.home .rs1-section--equipment-home {
	width: min(calc(100% - 32px), 1380px);
	margin-left: auto;
	margin-right: auto;
}

.home .rs1-hero {
	margin-top: 18px;
	min-height: clamp(520px, 72vh, 720px);
	border-radius: 34px;
	background:
		radial-gradient(circle at 78% 22%, rgba(101, 160, 255, 0.18), transparent 26%),
		linear-gradient(135deg, #142847 0%, #0b1932 54%, #081120 100%);
	box-shadow: 0 28px 64px rgba(10, 18, 32, 0.18);
	isolation: isolate;
}

.home .rs1-hero__bg {
	transform: none;
	background-position: center;
	background-size: cover;
}

.home .rs1-hero__overlay {
	background:
		linear-gradient(96deg, rgba(4, 10, 20, 0.74) 0%, rgba(8, 17, 33, 0.62) 36%, rgba(9, 20, 39, 0.3) 62%, rgba(9, 20, 39, 0.16) 100%),
		radial-gradient(circle at 78% 30%, rgba(88, 167, 255, 0.2), transparent 18%),
		radial-gradient(circle at 16% 82%, rgba(255, 122, 0, 0.12), transparent 20%);
}

.home .rs1-hero__inner {
	align-items: end;
	min-height: clamp(520px, 72vh, 720px);
	padding: 72px 56px 58px;
}

.home .rs1-hero--single .rs1-hero__inner {
	grid-template-columns: minmax(0, 1fr);
}

.home .rs1-hero--has-visual .rs1-hero__inner {
	grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.84fr);
}

.home .rs1-hero__copy {
	position: relative;
	z-index: 1;
	max-width: 620px;
}

.home .rs1-hero__eyebrow {
	margin-bottom: 16px;
	font-size: 0.88rem;
	letter-spacing: 0.1em;
}

.home .rs1-hero__title {
	line-height: 1.2;
}

.home .rs1-hero__description {
	max-width: 38rem;
	margin-top: 22px;
	font-size: clamp(1rem, 1.25vw, 1.16rem);
	line-height: 1.72;
}

.home .rs1-hero__features {
	grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
	gap: 12px 14px;
	margin-top: 30px;
}

.home .rs1-hero__features li {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.home .rs1-hero__actions {
	margin-top: 30px;
}

.home .rs1-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 580px;
	margin-top: 30px;
}

.home .rs1-metric-card {
	justify-items: start;
	padding: 16px 18px;
	border-radius: 20px;
	background: rgba(7, 18, 34, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.home .rs1-metric-card strong {
	display: block;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: none;
	box-shadow: none;
	font-size: 1.45rem;
	line-height: 1;
	color: #ffffff;
}

.home .rs1-metric-card span {
	margin-top: 8px;
	font-size: 0.82rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
}

.home .rs1-hero__visual {
	display: flex;
	align-items: flex-end;
	min-height: 420px;
}

.home .rs1-hero__orb {
	inset: auto 4% 6% auto;
	width: 360px;
	height: 360px;
	opacity: 0.7;
}

.home .rs1-hero__image-frame {
	position: relative;
	inset: auto;
	width: 100%;
	min-height: 420px;
	padding: 14px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(8, 18, 35, 0.48), rgba(8, 18, 35, 0.14));
	box-shadow: 0 26px 52px rgba(5, 12, 22, 0.26);
}

.home .rs1-hero__image-frame img {
	min-height: 390px;
	border-radius: 20px;
	object-position: center;
}

.home .rs1-turnkey {
	border-radius: 30px;
	overflow: hidden;
}

.home .rs1-turnkey__inner {
	padding-left: 56px;
	padding-right: 56px;
}

.home .rs1-section--media-home,
.home .rs1-section--equipment-home {
	padding-top: 8px;
	padding-bottom: 10px;
}

.home .rs1-section--media-home .rs1-container--media,
.home .rs1-section--equipment-home .rs1-container--media {
	width: min(calc(100% - 40px), 1280px);
}

.home .rs1-section--media-home .rs1-section__heading,
.home .rs1-section--equipment-home .rs1-section__heading {
	margin-bottom: 26px;
}

.home .rs1-process-grid--home {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.home .rs1-process-card {
	border-radius: 18px;
}

.home .rs1-process-card__media {
	aspect-ratio: 1.9 / 1;
}

.home .rs1-process-card__content h3 {
	right: 24px;
	bottom: 62px;
	font-size: 1.12rem;
	line-height: 1.24;
}

.home .rs1-process-card__content p {
	right: 24px;
	bottom: 30px;
	max-width: calc(100% - 148px);
	font-size: 0.84rem;
	line-height: 1.55;
}

.home .rs1-process-card__content a {
	right: 18px;
	bottom: 16px;
	font-size: 0.78rem;
}

.home .rs1-grid--equipment {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .rs1-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border-radius: 16px;
}

.home .rs1-product-card__media {
	aspect-ratio: 1.28 / 1;
	padding: 10px 10px 0;
}

.home .rs1-product-card__content {
	display: flex;
	flex-direction: column;
	min-height: 180px;
	padding: 16px 18px 20px;
}

.home .rs1-product-card__content h3 {
	font-size: 1rem;
	line-height: 1.28;
}

.home .rs1-product-card__content p {
	font-size: 0.84rem;
	line-height: 1.62;
}

.home .rs1-product-card__content a {
	margin-top: auto;
	padding-top: 12px;
}

.home .rs1-grid--industries {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home .rs1-industry-card {
	border-radius: 16px;
}

.home .rs1-industry-card__media {
	aspect-ratio: 0.92 / 1;
}

.home .rs1-industry-card__content h3 {
	font-size: 1rem;
}

.home .rs1-section__action {
	padding-top: 18px;
}

.home .rs1-section__action p {
	font-size: 0.92rem;
}

@media (max-width: 1180px) {
	.home .rs1-grid--industries {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.home .rs1-hero,
	.home .rs1-turnkey,
	.home .rs1-section--media-home,
	.home .rs1-section--equipment-home {
		width: min(calc(100% - 20px), 1380px);
	}

	.home .rs1-hero {
		border-radius: 24px;
	}

	.home .rs1-hero__inner,
	.home .rs1-turnkey__inner {
		grid-template-columns: 1fr;
		padding: 52px 24px 28px;
	}

	.home .rs1-hero__features,
	.home .rs1-hero__metrics,
	.home .rs1-grid--equipment,
	.home .rs1-grid--industries {
		grid-template-columns: 1fr;
	}

	.home .rs1-process-grid--home {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home .rs1-section--media-home .rs1-container--media,
	.home .rs1-section--equipment-home .rs1-container--media {
		width: min(calc(100% - 20px), 1280px);
	}

	.home .rs1-product-card__content {
		min-height: 0;
	}
}

@media (max-width: 720px) {
	.home .rs1-hero {
		min-height: 0;
	}

	.home .rs1-hero__inner {
		min-height: 0;
		padding: 48px 18px 22px;
	}

	.home .rs1-hero__title {
		max-width: 100%;
		font-size: clamp(2rem, 9vw, 3.1rem) !important;
	}

	.home .rs1-hero__description {
		font-size: 0.96rem !important;
	}

	.home .rs1-turnkey__inner,
	.home .rs1-section--media-home .rs1-container--media,
	.home .rs1-section--equipment-home .rs1-container--media {
		width: min(calc(100% - 20px), 1280px);
		padding-left: 18px;
		padding-right: 18px;
	}

	.home .rs1-section--media-home,
	.home .rs1-section--equipment-home {
		padding-bottom: 6px;
	}
}

/* Homepage structure correction */
.home .rs1-main {
	gap: 0;
	padding-bottom: 0;
	background: linear-gradient(180deg, #eef3fa 0%, #f6f8fc 100%);
}

.home .rs1-hero,
.home .rs1-turnkey,
.home .rs1-section--media-home,
.home .rs1-section--equipment-home {
	width: 100%;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

.home .rs1-hero {
	margin-top: 0;
	min-height: calc(100svh - 84px);
	box-sizing: border-box;
	background:
		radial-gradient(circle at 74% 26%, rgba(109, 174, 255, 0.2), transparent 20%),
		linear-gradient(90deg, #10192d 0%, #17243b 36%, #1b2941 58%, #213453 100%);
}

.home .rs1-hero__bg {
	transform: none;
	background-position: center;
	background-size: cover;
}

.home .rs1-hero__overlay {
	background: linear-gradient(
  90deg,
  rgba(8, 14, 33, 1) 0%,
  rgba(10, 18, 31, 1) 18%,
  rgba(12, 21, 36, 1) 38%,
  rgba(13, 23, 39, 0.34) 58%,
  rgba(13, 23, 39, 0.12) 78%,
  rgba(13, 23, 39, 0) 100%
 );
}

.home .rs1-hero .rs1-container {
	width: min(calc(100% - 40px), 1780px);
}

.home .rs1-turnkey .rs1-container {
	width: min(calc(100% - 40px), 1700px);
}

.home #solutions .rs1-container--media,
.home #equipment .rs1-container--media,
.home #industries .rs1-container--media,
.home .rs1-footer .rs1-container {
	width: min(calc(100% - 72px), 1720px);
}

.home .rs1-hero__inner {
	align-items: center;
	min-height: calc(100svh - 84px);
	box-sizing: border-box;
	padding: 42px 0 26px;
}

.home .rs1-hero--has-visual .rs1-hero__inner,
.home .rs1-hero--single .rs1-hero__inner {
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.home .rs1-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 920px;
	padding-left: clamp(24px, 3vw, 72px);
	box-sizing: border-box;
}

.home .rs1-hero__eyebrow {
	margin: 0 0 14px;
	color: #9cc7ff;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.09em;
}

.home .rs1-hero__title {
	/* max-width: 16ch; */
	line-height: 0.94;
	font-size: clamp(3.4rem, 4.5vw, 5.4rem) !important;
}

.home .rs1-hero__title span {
	color: #ffffff !important;
}

.home .rs1-hero__description {
	max-width: 40ch;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: clamp(1.12rem, 1.45vw, 1.45rem) !important;
	line-height: 1.48;
}

.home .rs1-hero__features {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin-top: 34px;
	grid-template-columns: 1fr;
}

.home .rs1-hero__features li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	background: none;
	border: 0;
	backdrop-filter: none;
	font-size: 1.22rem !important;
	font-weight: 500;
	line-height: 1.3;
	color: #ffffff !important;
}

.home .rs1-hero__features li::before {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin-right: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%2353a5ff'/%3E%3Cpath d='M13.7 21.7 8.9 17l2.1-2.2 2.7 2.7 7.2-7.2 2.2 2.1-9.4 9.3Z' fill='%23ffffff'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	box-shadow: 0 0 0 7px rgba(95, 174, 255, 0.14);
}

.home .rs1-hero__actions {
	margin-top: 34px;
	gap: 22px;
}

.home .rs1-hero__actions .rs1-button {
	min-height: 60px;
	padding: 0 28px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 800;
}

.home .rs1-hero__actions .rs1-button--primary {
	background: linear-gradient(135deg, #ff6a00, #ff7f17) !important;
	box-shadow: 0 18px 36px rgba(255, 115, 20, 0.24);
}

.home .rs1-hero__actions .rs1-button--secondary {
	border: 2px solid rgba(94, 165, 246, 0.72);
	background: rgba(30, 53, 88, 0.18) !important;
	color: #5ea5f6 !important;
	box-shadow: none;
}

.home .rs1-hero__metrics {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	max-width: none;
	margin-top: 38px;
}

.home .rs1-metric-card {
	display: grid;
	justify-items: center;
	align-content: start;
	flex: 0 0 148px;
	width: 148px;
	padding: 0;
	background: none;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.home .rs1-metric-card strong {
	display: grid;
	place-items: center;
	width: 108px;
	height: 108px;
	margin: 0 auto;
	border-radius: 50%;
	background:
		radial-gradient(circle at 34% 30%, rgba(118, 190, 255, 0.98), rgba(41, 105, 185, 0.68) 58%, rgba(10, 20, 39, 0.12) 100%);
	border: 1px solid rgba(130, 197, 255, 0.42);
	box-shadow:
		inset 0 0 22px rgba(255, 255, 255, 0.16),
		0 0 0 10px rgba(91, 171, 255, 0.08);
	font-size: 0;
	line-height: 0;
	position: relative;
	color: transparent;
}

.home .rs1-metric-card span {
	margin-top: 12px;
	width: 100%;
	max-width: none;
	font-size: 0.84rem;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.28;
	text-align: center;
	text-wrap: balance;
}

.home .rs1-metric-card strong::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50px 50px;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.12));
}

.home .rs1-metric-card--1 strong::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 23c0-5 3-8 8-9'/%3E%3Cpath d='M32 25c-8-10-22-5-22 8 0 10 8 17 18 17 2 0 3 0 4-1'/%3E%3Cpath d='M32 25c8-10 22-5 22 8 0 10-8 17-18 17-2 0-3 0-4-1'/%3E%3Cpath d='M32 24v27'/%3E%3C/svg%3E");
}

.home .rs1-metric-card--2 strong::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='21' y='11' width='22' height='9' rx='3'/%3E%3Cpath d='M24 20v7c0 4-7 8-7 15 0 7 6 11 15 11s15-4 15-11c0-7-7-11-7-15v-7'/%3E%3Cpath d='M23 42c6-3 12-3 18 0'/%3E%3C/svg%3E");
}

.home .rs1-metric-card--3 strong::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 15c6 0 6 7 8 9 2-2 2-9 8-9'/%3E%3Cpath d='M24 49c6 0 6-7 8-9 2 2 2 9 8 9'/%3E%3Cpath d='M24 15v34'/%3E%3Cpath d='M40 15v34'/%3E%3Cpath d='M28 22c6 4 10 8 8 10-2 2-6 6-8 10'/%3E%3Cpath d='M36 22c-6 4-10 8-8 10 2 2 6 6 8 10'/%3E%3C/svg%3E");
}

.home .rs1-hero__visual,
.home .rs1-hero__annotations {
	position: relative;
	min-height: clamp(440px, 54vh, 560px);
}

.home .rs1-hero__orb {
	display: none;
}

.home .rs1-hero__image-frame {
	position: absolute;
	inset: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.home .rs1-hero__image-frame img {
	width: 100%;
	height: 100%;
	min-height: clamp(440px, 54vh, 560px);
	border-radius: 0;
	object-position: center right;
	filter: saturate(0.96) contrast(1.02);
}

.home .rs1-hero__annotations .rs1-hotspot,
.home .rs1-hero__visual .rs1-hotspot {
	padding: 10px 18px;
	border-radius: 14px;
	background: rgba(66, 136, 222, 0.2);
	border: 1px solid rgba(126, 194, 255, 0.34);
	box-shadow: 0 12px 26px rgba(12, 22, 39, 0.22);
	backdrop-filter: blur(10px);
	font-size: 0.88rem !important;
	font-weight: 600;
}

.home .rs1-hero__annotations .rs1-hotspot::before,
.home .rs1-hero__visual .rs1-hotspot::before {
	width: 8px;
	height: 8px;
	margin-right: 8px;
}

.home #solutions,
.home #equipment,
.home #industries {
	padding: 52px 0 18px;
	background: transparent;
}

.home #turnkey {
	padding: 40px 0 42px;
}

.home .rs1-section--media-home .rs1-container--media,
.home .rs1-section--equipment-home .rs1-container--media {
	width: min(calc(100% - 24px), 1720px);
}

.home #industries .rs1-container--narrow {
	width: min(calc(100% - 120px), 1560px);
}

.home #solutions .rs1-section__heading,
.home #industries .rs1-section__heading {
	max-width: 1040px;
	margin: 0 auto 34px;
	text-align: center;
}

.home #solutions .rs1-section__heading {
	max-width: 1420px;
}

.home #equipment .rs1-section__heading {
	max-width: 980px;
	margin: 0 0 34px;
	text-align: left;
}

.home #solutions .rs1-section__heading h2,
.home #equipment .rs1-section__heading h2,
.home #industries .rs1-section__heading h2 {
	font-size: clamp(2.08rem, 2.8vw, 3.18rem) !important;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.home #solutions .rs1-section__heading p,
.home #industries .rs1-section__heading p {
	max-width: 860px;
	margin: 14px auto 0;
	font-size: 1rem !important;
	line-height: 1.58;
}

.home #solutions .rs1-section__heading p {
	max-width: 980px;
}

@media (min-width: 1181px) {
	.home #solutions .rs1-section__heading h2 {
		white-space: nowrap;
		font-size: clamp(2.2rem, 2.5vw, 3.08rem) !important;
	}
}

.home #equipment .rs1-section__heading p {
	max-width: 860px;
	margin: 14px 0 0;
	font-size: 1rem !important;
	line-height: 1.58;
}

.home .rs1-process-grid--home {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.home .rs1-process-grid--home .rs1-process-card:last-child {
	grid-column: auto;
}

.home .rs1-process-card {
	border-radius: 24px;
	border: 0;
	box-shadow: 0 16px 36px rgba(28, 44, 72, 0.1);
}

.home .rs1-process-card__media {
	aspect-ratio: 2.14 / 1;
}

.home .rs1-process-card__content::before {
	height: 56%;
	background: linear-gradient(180deg, rgba(9, 15, 26, 0) 20%, rgba(9, 15, 26, 0.78) 100%);
}

.home .rs1-process-card__content {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
}

.home .rs1-process-card__content h3 {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	align-self: flex-end;
	flex: 1 1 auto;
	max-width: min(58%, 360px);
	margin: 0;
	font-size: 1.22rem;
	font-weight: 700;
	line-height: 1.18;
}

.home .rs1-process-card__aside {
	display: grid;
	gap: 6px;
	flex: 0 0 248px;
	width: 248px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(9, 15, 26, 0.48);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 28px rgba(4, 10, 18, 0.18);
}

.home .rs1-process-card__content p {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	font-size: 0.82rem;
	line-height: 1.42;
	text-align: right;
	background: none;
	border-radius: 0;
}

.home .rs1-process-card__content a {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	justify-self: end;
	width: auto;
	margin-top: 0;
	padding: 0;
	font-size: 0.82rem;
	font-weight: 700;
	text-align: right;
	background: none;
	border-radius: 0;
}

.home .rs1-process-card__content a::before {
	content: "\2192";
	font-size: 1.05em;
	line-height: 1;
}

.home .rs1-section__action {
	padding-top: 24px;
	text-align: center;
}

.home .rs1-section__action p {
	font-size: 0.98rem;
}

.home .rs1-section__action .rs1-button {
	min-height: 50px;
	padding: 0 28px;
	border-radius: 12px;
}

.home .rs1-turnkey {
	overflow: hidden;
	min-height: min(100svh, 860px);
	background:
		radial-gradient(circle at 78% 48%, rgba(255, 158, 64, 0.14), transparent 20%),
		linear-gradient(90deg, #111928 0%, #141f33 36%, #162336 58%, #17253b 100%);
}

.home .rs1-turnkey__bg {
	transform: none;
	background-position: center;
	background-size: cover;
}

.home .rs1-turnkey__overlay {
	background:
		linear-gradient(90deg, rgba(9, 14, 24, 0.84) 0%, rgba(10, 16, 28, 0.68) 34%, rgba(14, 22, 36, 0.38) 56%, rgba(18, 27, 42, 0.18) 100%);
}

.home .rs1-turnkey__inner {
	align-items: center;
	min-height: min(100svh, 860px);
	padding: 60px 0 44px;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) minmax(500px, 0.94fr);
}

.home .rs1-turnkey__copy {
	width: 100%;
	max-width: none;
}

.home .rs1-turnkey__eyebrow {
	margin: 0 0 14px;
	color: #9cc7ff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.home .rs1-turnkey__copy h2 {
	max-width: none;
	font-size: clamp(3.1rem, 4.4vw, 5.3rem) !important;
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.home .rs1-turnkey__copy > p {
	max-width: none;
	margin-top: 28px;
	font-size: clamp(1.22rem, 1.58vw, 1.62rem) !important;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.9) !important;
}

.home .rs1-turnkey__emphasis {
	max-width: none;
	margin-top: 34px !important;
	padding: 0;
	border-left: 0;
	background: none;
	border-radius: 0;
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: 800;
	color: #ffffff;
}

.home .rs1-turnkey__copy .rs1-button {
	margin-top: 40px;
	min-height: 72px;
	padding: 0 36px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 800;
}

.home .rs1-turnkey__visual {
	position: relative;
	min-height: 100%;
	width: 100%;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 32px 72px rgba(6, 12, 22, 0.26);
}

.home .rs1-turnkey__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 16, 28, 0.04) 0%, rgba(10, 16, 28, 0.22) 100%),
		linear-gradient(135deg, rgba(255, 132, 0, 0.08), rgba(125, 210, 255, 0.08));
	pointer-events: none;
}

.home .rs1-turnkey__visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: min(72svh, 700px);
	object-fit: cover;
	object-position: center;
}

.home .rs1-grid--equipment {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.home .rs1-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border-radius: 24px;
	border: 1px solid rgba(214, 223, 235, 0.92);
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(39, 58, 91, 0.12);
}

.home .rs1-product-card__media {
	aspect-ratio: 1.56 / 1;
	padding: 16px 16px 0;
	background: #ffffff;
}

.home .rs1-product-card__media img {
	border-radius: 16px;
	box-shadow: none;
}

.home .rs1-product-card__content {
	display: flex;
	flex-direction: column;
	min-height: 214px;
	padding: 18px 22px 0;
}

.home .rs1-product-card__tag {
	display: none;
}

.home .rs1-product-card__content h3 {
	font-size: 1.22rem;
	line-height: 1.18;
}

.home .rs1-product-card__content p {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 0.94rem;
	line-height: 1.52;
}

.home .rs1-product-card__action {
	margin: auto -22px 0;
	padding: 18px 22px 22px;
	border-top: 1px solid rgba(31, 47, 70, 0.12);
}

.home .rs1-product-card__content a {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	color: #3d6798;
}

.home .rs1-product-card__content a::before {
	content: "\2192";
	font-size: 1.05em;
	line-height: 1;
}

.home .rs1-grid--industries {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.home .rs1-industry-card {
	border-radius: 24px;
	border: 0;
	box-shadow: 0 14px 34px rgba(28, 44, 72, 0.1);
}

.home .rs1-industry-card__media {
	aspect-ratio: 2.08 / 1;
}

.home .rs1-industry-card__content {
	left: 24px;
	right: 24px;
	bottom: 22px;
}

.home .rs1-industry-card__content h3 {
	font-size: 1.18rem;
	line-height: 1.18;
}

.home .rs1-industry-card__content a {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(7, 12, 22, 0.4);
}

.home .rs1-industry-card__content a::before {
	content: "\2192";
	font-size: 1.05em;
	line-height: 1;
}

.home .rs1-footer {
	margin-top: 48px;
}

.home .rs1-footer__surface {
	padding-bottom: 34px;
}

.home .rs1-footer__cta {
	min-height: 104px;
}

.home .rs1-footer__title {
	font-size: clamp(1.44rem, 2.1vw, 2.2rem);
}

.home .rs1-footer__inner {
	grid-template-columns: 1.12fr 0.92fr 0.98fr 1.1fr;
	gap: 48px;
	padding: 40px 0 32px;
}

.home .rs1-footer__column h3 {
	font-size: 1.18rem;
}

.home .rs1-footer__column p,
.home .rs1-footer__links a {
	font-size: 0.98rem;
	line-height: 1.68;
}

.home .rs1-footer__button {
	margin-top: 18px;
	min-height: 56px;
	padding: 0 28px;
}

@media (max-width: 1180px) {
	.home .rs1-grid--equipment,
	.home .rs1-grid--industries {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.home .rs1-hero .rs1-container {
		width: min(calc(100% - 28px), 1780px);
	}

	.home .rs1-turnkey .rs1-container {
		width: min(calc(100% - 28px), 1700px);
	}

	.home #solutions .rs1-container--media,
	.home #equipment .rs1-container--media,
	.home #industries .rs1-container--media,
	.home .rs1-footer .rs1-container {
		width: min(calc(100% - 32px), 1720px);
	}

	.home #industries .rs1-container--narrow {
		width: min(calc(100% - 48px), 1560px);
	}

	.home .rs1-hero {
		min-height: 0;
	}

	.home .rs1-hero__inner,
	.home .rs1-turnkey__inner,
	.home .rs1-hero--single .rs1-hero__inner,
	.home .rs1-hero--has-visual .rs1-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 58px 0 42px;
	}

	.home .rs1-hero__metrics {
		flex-wrap: wrap;
		gap: 24px;
	}

	.home .rs1-metric-card strong {
		width: 102px;
		height: 102px;
	}

	.home .rs1-metric-card {
		flex: 0 0 146px;
		width: 146px;
	}

	.home .rs1-metric-card strong::before {
		width: 48px;
		height: 48px;
		background-size: 48px 48px;
	}

	.home .rs1-hero__visual,
	.home .rs1-hero__annotations {
		min-height: 360px;
	}

	.home .rs1-hero__image-frame img {
		min-height: 360px;
	}

	.home .rs1-process-grid--home,
	.home .rs1-grid--equipment,
	.home .rs1-grid--industries,
	.home .rs1-footer__inner {
		grid-template-columns: 1fr;
	}

	.home .rs1-turnkey__visual {
		max-width: none;
		justify-self: stretch;
	}

	.home .rs1-product-card__content {
		min-height: 0;
	}
}

@media (max-width: 720px) {
	.home .rs1-hero .rs1-container {
		width: min(calc(100% - 80px), 1780px);
	}

	.home .rs1-turnkey .rs1-container {
		width: min(calc(100% - 80px), 1700px);
	}

	.home #solutions .rs1-container--media,
	.home #equipment .rs1-container--media,
	.home #industries .rs1-container--media,
	.home .rs1-footer .rs1-container {
		width: min(calc(100% - 120px), 1720px);
	}

	.home #industries .rs1-container--narrow {
		width: min(calc(100% - 24px), 1560px);
	}

	.home .rs1-hero__title,
	.home .rs1-turnkey__copy h2 {
		max-width: 100%;
	}

	.home .rs1-hero__description,
	.home .rs1-turnkey__copy > p,
	.home .rs1-turnkey__emphasis {
		max-width: 100%;
	}

	.home .rs1-turnkey__visual {
		border-radius: 24px;
	}

	.home .rs1-turnkey__visual img {
		min-height: 320px;
	}

	.home .rs1-hero__actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.home .rs1-hero__actions .rs1-button,
	.home .rs1-turnkey__copy .rs1-button {
		min-height: 58px;
		padding: 0 24px;
		font-size: 0.98rem;
	}

	.home .rs1-process-card__content h3 {
		max-width: none;
		font-size: 1.08rem;
	}

	.home .rs1-process-card__aside {
		width: 100%;
		flex-basis: auto;
	}

	.home .rs1-process-card__content {
		display: grid;
		grid-template-columns: 1fr;
		align-items: end;
		padding: 16px 16px 14px;
	}

	.home .rs1-process-card__content p,
	.home .rs1-process-card__content a {
		width: auto;
		max-width: none;
		text-align: left;
	}

	.home .rs1-process-card__aside {
		margin-top: 10px;
		padding: 10px 12px;
	}
}

.rs1-page-hero--product,
.rs1-page-hero--product-archive {
	background:
		radial-gradient(circle at top right, rgba(138, 201, 255, 0.24), transparent 26%),
		linear-gradient(180deg, #edf3fa, rgba(244, 246, 250, 0.22));
}

.rs1-wc-single,
.rs1-wc-archive {
	gap: 18px;
}

.rs1-wc-product-top {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 20px;
	align-items: start;
}

.rs1-wc-gallery,
.rs1-wc-summary,
.rs1-wc-product-card,
.rs1-wc-related .products li.product {
	padding: 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(31, 47, 70, 0.08);
	box-shadow: 0 14px 32px rgba(31, 47, 70, 0.07);
}

.rs1-wc-gallery {
	display: grid;
	gap: 16px;
}

.rs1-wc-gallery__featured,
.rs1-wc-gallery__thumb,
.rs1-wc-product-card__media {
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(145deg, #edf2f7, #dfe7f0);
}

.rs1-wc-gallery__featured {
	min-height: 460px;
}

.rs1-wc-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.rs1-wc-gallery__thumb {
	min-height: 180px;
}

.rs1-wc-gallery img,
.rs1-wc-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs1-wc-summary__price,
.rs1-wc-product-card__price {
	color: #17263c;
	font-size: clamp(1.5rem, 2vw, 2.05rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.rs1-wc-summary__intro {
	margin-top: 16px;
	color: #526277;
	line-height: 1.76;
}

.rs1-spec-grid--product {
	margin-top: 22px;
}

.rs1-inline-actions--product {
	align-items: center;
	margin-top: 24px;
}

.rs1-wc-summary__cart .cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
}

.rs1-wc-summary__cart .quantity .qty {
	width: 88px;
	min-height: 50px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid rgba(31, 47, 70, 0.14);
	background: #fff;
	color: #17263c;
	font-weight: 700;
}

.rs1-wc-summary__cart .single_add_to_cart_button {
	min-height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, #ff6a00, #ff7f17);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 16px 28px rgba(255, 115, 20, 0.18);
}

.rs1-wc-product-body {
	align-items: start;
}

.rs1-wc-product-content .rs1-wc-richtext {
	color: #526277;
	line-height: 1.8;
}

.rs1-wc-product-content .rs1-wc-richtext > *:first-child {
	margin-top: 0;
}

.rs1-wc-product-content .rs1-wc-richtext > *:last-child {
	margin-bottom: 0;
}

.rs1-wc-side-stack {
	display: grid;
	gap: 18px;
}

.rs1-wc-archive__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.rs1-wc-archive__toolbar .woocommerce-ordering,
.rs1-wc-archive__toolbar .woocommerce-result-count {
	margin: 0;
}

.rs1-wc-archive__toolbar select {
	min-height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid rgba(31, 47, 70, 0.14);
	background: #fff;
	color: #17263c;
}

.rs1-wc-product-grid,
.rs1-wc-related ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs1-wc-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	padding: 16px;
}

.rs1-wc-product-card__media {
	display: block;
	aspect-ratio: 1.22 / 1;
}

.rs1-wc-product-card__content {
	display: flex;
	flex-direction: column;
	padding: 16px 6px 4px;
}

.rs1-wc-product-card__eyebrow {
	margin: 0 0 10px;
	color: #456b9a;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs1-wc-product-card__content h2,
.rs1-wc-related ul.products li.product h2,
.rs1-wc-related ul.products li.product .woocommerce-loop-product__title {
	margin: 0;
	color: #17263c;
	font-size: 1.08rem;
	line-height: 1.22;
}

.rs1-wc-product-card__content h2 a,
.rs1-wc-related ul.products li.product a {
	color: inherit;
	text-decoration: none;
}

.rs1-wc-product-card__content p,
.rs1-wc-related ul.products li.product .price {
	margin: 10px 0 0;
	color: #526277;
	line-height: 1.68;
}

.rs1-wc-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(31, 47, 70, 0.1);
}

.rs1-wc-product-card__footer a,
.rs1-wc-related ul.products li.product .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	background: rgba(69, 107, 154, 0.08);
	color: #456b9a;
	font-weight: 700;
	text-decoration: none;
}

.rs1-wc-related ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 16px;
}

.rs1-wc-related ul.products li.product img {
	width: 100%;
	margin: 0 0 14px;
	border-radius: 16px;
}

.rs1-wc-related ul.products li.product .price {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #17263c;
}

.rs1-wc-pagination {
	margin-top: 22px;
}

.rs1-wc-pagination .woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.rs1-wc-pagination .woocommerce-pagination ul.page-numbers li {
	border: 0;
}

.rs1-wc-pagination .woocommerce-pagination ul.page-numbers a,
.rs1-wc-pagination .woocommerce-pagination ul.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid rgba(31, 47, 70, 0.1);
	background: #fff;
	color: #17263c;
	text-decoration: none;
}

.rs1-wc-pagination .woocommerce-pagination ul.page-numbers .current {
	background: #17263c;
	color: #fff;
}

@media (max-width: 1024px) {
	.rs1-wc-product-top,
	.rs1-wc-product-grid,
	.rs1-wc-related ul.products {
		grid-template-columns: 1fr;
	}

	.rs1-wc-gallery__featured {
		min-height: 360px;
	}
}

@media (max-width: 720px) {
	.rs1-wc-gallery,
	.rs1-wc-summary,
	.rs1-wc-product-card,
	.rs1-wc-related .products li.product {
		padding: 18px;
		border-radius: 20px;
	}

	.rs1-wc-gallery__grid {
		grid-template-columns: 1fr;
	}

	.rs1-wc-gallery__featured,
	.rs1-wc-gallery__thumb {
		min-height: 240px;
	}

	.rs1-wc-archive__toolbar,
	.rs1-wc-product-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.rs1-wc-summary__cart .cart {
		flex-direction: column;
		align-items: stretch;
	}

	.rs1-wc-summary__cart .quantity .qty,
	.rs1-wc-summary__cart .single_add_to_cart_button,
	.rs1-wc-product-card__footer a,
	.rs1-wc-related ul.products li.product .button {
		width: 100%;
	}
}

.rs1-main--custom-home {
	gap: 0;
	padding-bottom: 72px;
}

.home .rs1-main--custom-home .rs1-hero {
	margin-bottom: 30px;
}

.home .rs1-home-exact {
	padding: 58px 20px;
}

.home .rs1-home-exact--solutions#solutions {
	padding: 58px 20px;
}

.home .rs1-home-exact--systems#equipment {
	padding: 58px 20px;
}

.home .rs1-home-exact--materials {
	padding: 58px 20px;
}

.home .rs1-home-exact__container {
	width: min(calc(100% - 64px), 1760px);
	margin: 0 auto;
}

.home .rs1-home-exact--solutions .rs1-home-exact__container {
	width: min(calc(100% - 112px), 1360px);
}

.home .rs1-home-exact--engineered .rs1-home-exact__container {
	width: min(calc(100% - 96px), 1900px);
}

.home .rs1-home-exact--systems .rs1-home-exact__container {
	width: min(calc(100% - 84px), 1940px);
}

.home .rs1-home-exact--efficiency .rs1-home-exact__container {


	width: min(calc(100% - 160px), 1560px);
}

.home .rs1-home-exact--materials .rs1-home-exact__container {
	width: min(calc(100% - 86px), 1840px);
}

.home .rs1-home-heading {
	text-align: center;
}

.home .rs1-home-heading h2 {
	margin: 0;
	color: #1f2430;
	font-family: var(--rs1-font-sans);
	font-size: clamp(2.65rem, 3vw, 4.08rem);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.home .rs1-home-heading p {
	max-width: 1180px;
	margin: 18px auto 0;
	color: #2e323a;
	font-size: clamp(1.06rem, 1.12vw, 1.18rem);
	line-height: 1.52;
}

.home .rs1-home-heading__subline,
.home .rs1-home-flow,
.home .rs1-home-system-flow {
	margin-top: 28px;
	color: #767a82;
	font-size: clamp(1rem, 1vw, 1.1rem);
	line-height: 1.5;
	text-align: center;
}

.home .rs1-home-heading__divider {
	width: 208px;
	height: 1px;
	margin: 22px auto 0;
	background: rgba(34, 49, 74, 0.14);
}

.home .rs1-home-flow,
.home .rs1-home-system-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.home .rs1-home-flow span,
.home .rs1-home-system-flow span {
	color: #959aa3;
}

.home .rs1-home-cta {
	padding-top: 32px;
	text-align: center;
}

.home .rs1-home-cta p {
	margin: 0;
	color: #23262c;
	font-size: clamp(1rem, 1.2vw, 1.06rem);
	line-height: 1.5;
}

.home .rs1-home-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 20px;
	padding: 0 24px;
	border: 1px solid rgba(31, 36, 48, 0.16);
	border-radius: 12px;
	background: #ffffff;
	color: #1d2330;
	text-decoration: none;
	font-size: 0.98rem;
	font-weight: 700;
	box-shadow: 0 14px 30px rgba(23, 34, 56, 0.08);
}

.home .rs1-home-cta__button--dark {
	border-color: rgba(20, 36, 63, 0.08);
	background: #16284a;
	color: #ffffff;
	box-shadow: 0 18px 32px rgba(17, 31, 55, 0.18);
}

.home .rs1-home-cta--inline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.home .rs1-home-cta--inline .rs1-home-cta__button {
	margin-top: 0;
}

.home .rs1-home-exact--solutions {
	padding-top: 30px;
}

.home .rs1-home-solution-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin-top: 34px;
}

.home .rs1-home-solution-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 44px rgba(31, 44, 71, 0.11);
}

.home .rs1-home-solution-card__link,
.home .rs1-home-system-card__link,
.home .rs1-home-material-card__link {
	display: block;
	position: relative;
	color: inherit;
	text-decoration: none;
}

.home .rs1-home-solution-card__media,
.home .rs1-home-material-card__media {
	position: relative;
	aspect-ratio: 1.86 / 1;
	background: #dfe5ee;
}

.home .rs1-home-system-card__media {
	position: relative;
	aspect-ratio: 1.64 / 1;
	background: #eef2f7;
}

.home .rs1-home-solution-card__media::after,
.home .rs1-home-system-card__media::after,
.home .rs1-home-material-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 21, 28, 0) 35%, rgba(17, 21, 28, 0.76) 100%);
}

.home .rs1-home-solution-card__media img,
.home .rs1-home-system-card__media img,
.home .rs1-home-material-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home .rs1-home-solution-card--1 .rs1-home-solution-card__media img,
.home .rs1-home-solution-card--2 .rs1-home-solution-card__media img,
.home .rs1-home-system-grid .rs1-home-system-card:first-child .rs1-home-system-card__media img {
	object-position: center 8%;
}

.home .rs1-home-solution-card__overlay,
.home .rs1-home-system-card__overlay,
.home .rs1-home-material-card__overlay {
	position: absolute;
	right: 22px;
	bottom: 18px;
	left: 22px;
	z-index: 1;
}

.home .rs1-home-solution-card__overlay h3,
.home .rs1-home-system-card__overlay h3,
.home .rs1-home-material-card__overlay h3 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.32rem, 1.55vw, 1.76rem);
	font-weight: 500;
	line-height: 1.16;
}

.home .rs1-home-solution-card__overlay p {
	max-width: 76%;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(0.98rem, 0.98vw, 1.04rem);
	line-height: 1.42;
}

.home .rs1-home-exact--engineered {
	position: relative;
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 18px;
}

.home .rs1-home-exact--engineered::before,
.home .rs1-home-exact--engineered::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home .rs1-home-exact--engineered::before {
	background:
		radial-gradient(circle at 50% 100%, rgba(161, 211, 255, 0.24), transparent 30%),
		linear-gradient(90deg, rgba(120, 139, 171, 0.12) 0 2px, transparent 2px 100%);
	background-size: 100% 100%, 240px 240px;
	opacity: 0.24;
}

.home .rs1-home-exact--engineered::after {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 760'%3E%3Cg fill='none' stroke='%23cbd3df' stroke-width='2'%3E%3Cpath d='M0 220h180v-90h180v160h220v120h220v-80h220V70h220'/%3E%3Cpath d='M0 520h220v-90h160v120h200v110h220v-90h220V250h220'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
	opacity: 0.4;
}

.home .rs1-home-heading--wide h2 {
	max-width: 1240px;
	margin: 0 auto;
	color: #114483;
	font-size: clamp(3.1rem, 4.8vw, 5.2rem);
	font-weight: 400;
	line-height: 1.08;
}

.home .rs1-home-engineered-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 52px;
	margin-top: 84px;
}

.home .rs1-home-engineered-item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.home .rs1-home-icon {
	width: 92px;
	height: 92px;
	color: #88a0bc;
}

.home .rs1-home-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home .rs1-home-engineered-item__body h3 {
	margin: 0;
	color: #1674bb;
	font-size: clamp(1.56rem, 1.9vw, 2.18rem);
	font-weight: 400;
	line-height: 1.14;
}

.home .rs1-home-engineered-item__body p {
	margin: 26px 0 0;
	color: #121418;
	font-size: clamp(1.02rem, 1.16vw, 1.1rem);
	line-height: 1.42;
}

.home .rs1-home-exact--systems {
	padding-top: 82px;
}

.home .rs1-home-exact--systems .rs1-home-heading h2 {
	color: #101d46;
	font-weight: 800;
}

.home .rs1-home-exact--systems .rs1-home-heading p {
	max-width: 1020px;
	font-size: clamp(1.14rem, 1.45vw, 1.26rem);
}

.home .rs1-home-system-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
	margin-top: 52px;
}

.home .rs1-home-system-card {
	border: 1px solid rgba(24, 37, 67, 0.08);
	border-radius: 20px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 20px 42px rgba(24, 37, 67, 0.11);
}

.home .rs1-home-system-card__content {
	padding: 22px 28px 26px;
}

.home .rs1-home-system-card__content h3 {
	margin: 0;
	color: #162148;
	font-size: clamp(1.36rem, 1.7vw, 1.82rem);
	font-weight: 700;
	line-height: 1.18;
}

.home .rs1-home-system-card__content p {
	margin: 16px 0 0;
	color: #27314f;
	font-size: clamp(0.98rem, 1.02vw, 1.06rem);
	line-height: 1.5;
}

.home .rs1-home-system-card__content a {
	display: inline-flex;
	margin-top: 30px;
	color: #162148;
	text-decoration: none;
	font-size: 0.98rem;
	font-weight: 700;
}

.home .rs1-home-system-flow {
	margin-top: 26px;
	color: rgba(31, 36, 48, 0.28);
}

.home .rs1-home-exact--efficiency {
	padding-top: 66px;
}

.home .rs1-home-efficiency-panel {
	position: relative;
	overflow: hidden;
	padding: 36px 40px 42px;
	border-radius: 26px;
	background: linear-gradient(180deg, #e9eff7, #e8eff8);
}

.home .rs1-home-efficiency-panel::before,
.home .rs1-home-efficiency-panel::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.home .rs1-home-efficiency-panel::before {
	inset: 0;
	background:
		radial-gradient(circle at 18% 18%, rgba(130, 183, 243, 0.18), transparent 26%),
		radial-gradient(circle at 82% 58%, rgba(128, 198, 255, 0.18), transparent 24%);
}

.home .rs1-home-efficiency-panel::after {
	top: 112px;
	right: -40px;
	bottom: 40px;
	left: 48%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 420'%3E%3Cg fill='none' stroke='%239dc8ef' stroke-width='3'%3E%3Cpath d='M0 160h240l30-24h236l34-34h360'/%3E%3Cpath d='M0 202h280l26-26h224l22-22h348'/%3E%3Cpath d='M0 244h254l28 22h246l26 30h346'/%3E%3Cpath d='M0 286h230l30 28h242l30 40h338'/%3E%3Ccircle cx='360' cy='136' r='5'/%3E%3Ccircle cx='438' cy='176' r='5'/%3E%3Ccircle cx='460' cy='266' r='5'/%3E%3Ccircle cx='520' cy='354' r='5'/%3E%3C/g%3E%3C/svg%3E") right center/contain no-repeat;
	opacity: 0.56;
}

.home .rs1-home-efficiency-panel h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	text-align: center;
	color: #06080c;
	font-family: var(--rs1-font-sans);
	font-size: clamp(2.3rem, 3vw, 3.66rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.home .rs1-home-efficiency-panel__body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: 30px;
	align-items: center;
	margin-top: 44px;
}

.home .rs1-home-efficiency-panel__intro p {
	max-width: 332px;
	margin: 0;
	color: #10151e;
	font-size: clamp(1.18rem, 1.45vw, 1.38rem);
	line-height: 1.44;
}

.home .rs1-home-efficiency-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.home .rs1-home-efficiency-card {
	min-height: 258px;
	padding: 20px 18px 22px;
	border: 3px solid rgba(255, 255, 255, 0.72);
	border-radius: 22px;
	background: rgba(248, 250, 253, 0.9);
	box-shadow: 0 18px 34px rgba(82, 127, 172, 0.1);
}

.home .rs1-home-efficiency-card .rs1-home-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 10px;
	color: #30465b;
}

.home .rs1-home-efficiency-card h3 {
	margin: 0;
	color: #0d1218;
	font-size: clamp(1.16rem, 1.45vw, 1.36rem);
	font-weight: 800;
	line-height: 1.16;
}

.home .rs1-home-efficiency-card p {
	margin: 20px 0 0;
	color: #161d27;
	font-size: clamp(0.98rem, 1.02vw, 1.03rem);
	line-height: 1.44;
}

.home .rs1-home-exact--materials {
	padding-top: 64px;
}

.home .rs1-home-material-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 28px;
}

.home .rs1-home-material-card {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(31, 44, 71, 0.1);
}

.home .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 1.74 / 1;
}

.home .rs1-home-material-card__overlay h3 {
	font-weight: 400;
}

@media (max-width: 1380px) {
	.home .rs1-home-exact__container {
		width: min(calc(100% - 40px), 1760px);
	}

	.home .rs1-home-exact--solutions .rs1-home-exact__container,
	.home .rs1-home-exact--efficiency .rs1-home-exact__container,
	.home .rs1-home-exact--materials .rs1-home-exact__container {
		width: min(calc(100% - 48px), 100%);
	}

	.home .rs1-home-exact--engineered .rs1-home-exact__container,
	.home .rs1-home-exact--systems .rs1-home-exact__container {
		width: min(calc(100% - 48px), 100%);
	}

	.home .rs1-home-engineered-grid,
	.home .rs1-home-system-grid,
	.home .rs1-home-efficiency-grid,
	.home .rs1-home-material-grid {
		gap: 22px;
	}
}

@media (max-width: 1180px) {
	.home .rs1-home-engineered-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 48px;
	}

	.home .rs1-home-system-grid,
	.home .rs1-home-material-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home .rs1-home-efficiency-panel__body {
		grid-template-columns: 1fr;
	}

	.home .rs1-home-efficiency-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home .rs1-home-efficiency-panel__intro p {
		max-width: none;
	}
}

@media (max-width: 900px) {
	.home .rs1-home-exact__container {
		width: min(calc(100% - 24px), 1760px);
	}

	.home .rs1-home-exact--solutions .rs1-home-exact__container,
	.home .rs1-home-exact--engineered .rs1-home-exact__container,
	.home .rs1-home-exact--systems .rs1-home-exact__container,
	.home .rs1-home-exact--efficiency .rs1-home-exact__container,
	.home .rs1-home-exact--materials .rs1-home-exact__container {
		width: min(calc(100% - 24px), 100%);
	}

	.home .rs1-home-solution-grid,
	.home .rs1-home-system-grid,
	.home .rs1-home-material-grid,
	.home .rs1-home-efficiency-grid {
		grid-template-columns: 1fr;
	}

	.home .rs1-home-engineered-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.home .rs1-home-efficiency-panel {
		padding: 28px 20px 30px;
	}

	.home .rs1-home-efficiency-panel::after {
		display: none;
	}

	.home .rs1-home-efficiency-card {
		min-height: 0;
	}

	.home .rs1-home-cta--inline {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.home .rs1-home-heading h2,
	.home .rs1-home-efficiency-panel h2 {
		letter-spacing: -0.03em;
	}

	.home .rs1-home-solution-card__overlay,
	.home .rs1-home-material-card__overlay {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.home .rs1-home-solution-card__overlay p {
		max-width: 100%;
	}

	.home .rs1-home-engineered-item {
		grid-template-columns: 70px minmax(0, 1fr);
		gap: 16px;
	}

	.home .rs1-home-icon {
		width: 70px;
		height: 70px;
	}

	.home .rs1-home-system-card__content {
		padding: 20px 18px 22px;
	}
}

.rs1-nav-page {
	gap: 0;
	padding-bottom: 88px;
	background: linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.rs1-nav-banner {
	padding: 22px 0 0;
}

.rs1-nav-banner__media {
	width: min(calc(100% - 40px), 1920px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 28px;
	background: #dde6f0;
	box-shadow: 0 26px 56px rgba(17, 31, 55, 0.12);
}

.rs1-nav-banner__media img {
	display: block;
	width: 100%;
	height: auto;
}

.rs1-nav-page__shell {
	width: min(calc(100% - 40px), 1520px);
	margin: 30px auto 0;
	display: grid;
	gap: 24px;
}

.rs1-nav-panel,
.rs1-nav-section,
.rs1-nav-strip,
.rs1-nav-meta,
.rs1-nav-cta,
.rs1-nav-comparison {
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(22, 35, 58, 0.08);
	box-shadow: 0 18px 38px rgba(17, 31, 55, 0.06);
}

.rs1-nav-panel,
.rs1-nav-section,
.rs1-nav-strip,
.rs1-nav-meta,
.rs1-nav-cta,
.rs1-nav-comparison {
	padding: 30px;
}

.rs1-nav-panel--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 30px;
	align-items: center;
}

.rs1-nav-panel__copy {
	display: grid;
	gap: 20px;
}

.rs1-nav-kicker {
	margin: 0;
	color: #245fa5;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rs1-nav-copy-list {
	display: grid;
	gap: 18px;
}

.rs1-nav-copy-list article {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(22, 35, 58, 0.08);
}

.rs1-nav-copy-list article:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.rs1-nav-copy-list h2,
.rs1-nav-strip h2,
.rs1-nav-meta__block h2,
.rs1-nav-comparison h2,
.rs1-nav-cta__copy h2,
.rs1-nav-section__heading h2 {
	margin: 0;
	color: #16233a;
	font-family: var(--rs1-font-sans);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.rs1-nav-copy-list h2 {
	font-size: clamp(1.24rem, 1.45vw, 1.68rem);
}

.rs1-nav-copy-list p,
.rs1-nav-section__heading p,
.rs1-nav-card__body p,
.rs1-nav-feature-card p,
.rs1-nav-meta__block p,
.rs1-nav-cta__copy p,
.rs1-nav-comparison__column li {
	margin: 0;
	color: #5b697d;
	font-size: 1rem;
	line-height: 1.68;
}

.rs1-nav-panel__media,
.rs1-nav-card__media {
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(145deg, #edf2f7, #dfe7f0);
}

.rs1-nav-panel__media {
	min-height: 320px;
}

.rs1-nav-panel__media--soft {
	box-shadow: inset 0 0 0 1px rgba(22, 35, 58, 0.06);
}

.rs1-nav-panel__media img,
.rs1-nav-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs1-nav-section__heading {
	max-width: 920px;
	margin: 0 auto 24px;
	text-align: center;
}

.rs1-nav-section__heading h2,
.rs1-nav-comparison h2,
.rs1-nav-cta__copy h2 {
	font-size: clamp(2rem, 2.5vw, 3rem);
}

.rs1-nav-section__heading p {
	margin: 14px auto 0;
	max-width: 920px;
}

.rs1-nav-card-grid,
.rs1-nav-feature-grid {
	display: grid;
	gap: 22px;
}

.rs1-nav-card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rs1-nav-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs1-nav-card,
.rs1-nav-feature-card {
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(22, 35, 58, 0.08);
	box-shadow: 0 14px 30px rgba(17, 31, 55, 0.06);
}

.rs1-nav-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
}

.rs1-nav-card__link {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.rs1-nav-card__media {
	aspect-ratio: 1.52 / 1;
	border-radius: 0;
}

.rs1-nav-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 20px 20px;
}

.rs1-nav-card__eyebrow {
	margin: 0;
	color: #70839a;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rs1-nav-card__body h3,
.rs1-nav-feature-card h3,
.rs1-nav-comparison__column h3 {
	margin: 0;
	color: #17253d;
	line-height: 1.22;
}

.rs1-nav-card__body h3 {
	font-size: 1.16rem;
}

.rs1-nav-card__cta {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	color: #245fa5;
	font-size: 0.96rem;
	font-weight: 700;
	text-decoration: none;
}

.rs1-nav-strip {
	text-align: center;
}

.rs1-nav-strip h2,
.rs1-nav-meta__block h2 {
	font-size: clamp(1.54rem, 1.9vw, 2rem);
}

.rs1-nav-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
}

.rs1-nav-flow span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	background: #eef4fb;
	color: #22314a;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.2;
}

.rs1-nav-flow span:not(:last-child)::after {
	content: "\2192";
	margin-left: 14px;
	color: #8fa3b8;
	font-weight: 400;
}

.rs1-nav-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.rs1-nav-meta--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

.rs1-nav-meta__block {
	text-align: center;
}

.rs1-nav-meta__block p {
	margin-top: 14px;
}

.rs1-nav-meta__block .rs1-nav-flow {
	margin-top: 16px;
}

.rs1-nav-feature-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs1-nav-feature-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs1-nav-feature-card {
	position: relative;
	padding: 24px 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rs1-nav-feature-card__badge {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #dceafe;
	color: #1d5eaa;
	font-size: 0.94rem;
	font-weight: 800;
}

.rs1-nav-feature-card h3 {
	margin-top: 16px;
	font-size: 1.16rem;
}

.rs1-nav-feature-card p {
	margin-top: 10px;
}

.rs1-nav-feature-card--benefit::before {
	content: "";
	position: absolute;
	top: 26px;
	left: 22px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #5d98d8;
	box-shadow: 0 0 0 6px rgba(93, 152, 216, 0.14);
}

.rs1-nav-feature-card--benefit h3 {
	padding-left: 22px;
	margin-top: 0;
}

.rs1-nav-comparison__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.rs1-nav-comparison__column {
	padding: 24px 22px;
	border-radius: 20px;
	background: #f6f9fd;
	border: 1px solid rgba(22, 35, 58, 0.08);
}

.rs1-nav-comparison__column h3 {
	font-size: 1.18rem;
}

.rs1-nav-comparison__column ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.rs1-nav-comparison__column li {
	position: relative;
	padding-left: 20px;
}

.rs1-nav-comparison__column li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #5d98d8;
}

.rs1-nav-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: linear-gradient(135deg, #e9f3ff 0%, #f7fbff 100%);
}

.rs1-nav-cta__copy {
	max-width: 760px;
}

.rs1-nav-cta__copy p {
	margin-top: 14px;
	max-width: 58ch;
}

.home .rs1-main--custom-home {
	padding-bottom: 76px;
}

.home .rs1-main--custom-home .rs1-hero {
	margin-bottom: 0;
}

.home .rs1-hero .rs1-container {
	width: min(calc(100% - 48px), 1620px);
}

.home .rs1-hero__inner {
	padding: 54px 0 42px;
}

.home .rs1-hero__copy {
	max-width: 860px;
}

.home .rs1-hero__title {
	/* max-width: 13ch; */
	font-size: clamp(3rem, 4.4vw, 5rem) !important;
}

.home .rs1-hero__description {
	max-width: 34rem;
	font-size: clamp(1.04rem, 1.22vw, 1.28rem) !important;
}

.home .rs1-hero__features {
	margin-top: 28px;
}

.home .rs1-hero__features li {
	font-size: 1.04rem !important;
}

.home .rs1-hero__metrics {
	gap: 20px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.home .rs1-metric-card {
	flex: 0 0 132px;
	width: 132px;
}

.home .rs1-metric-card strong {
	width: 94px;
	height: 94px;
}

.home .rs1-home-exact,
.home .rs1-home-exact--solutions#solutions,
.home .rs1-home-exact--systems#equipment,
.home .rs1-home-exact--materials {
	padding: 58px 0 0;
}

.home .rs1-home-exact__container,
.home .rs1-home-exact--solutions .rs1-home-exact__container,
.home .rs1-home-exact--systems .rs1-home-exact__container,
.home .rs1-home-exact--materials .rs1-home-exact__container {
	width: min(calc(100% - 48px), 1480px);
}

.home .rs1-home-heading h2 {
	font-size: clamp(2.18rem, 2.8vw, 3.36rem);
}

.home .rs1-home-heading p {
	max-width: 920px;
	font-size: 1rem;
}

.home .rs1-home-solution-grid,
.home .rs1-home-system-grid,
.home .rs1-home-material-grid {
	gap: 24px;
}

.home .rs1-home-exact--systems .rs1-home-exact__container {
	width: min(calc(100% - 44px), 1760px);
}

.home .rs1-home-exact--efficiency .rs1-home-exact__container {
	width: min(calc(100% - 160px), 1560px);
}



.home .rs1-home-exact--materials .rs1-home-exact__container {
	width: min(calc(100% - 86px), 1840px);
}



.home .rs1-home-solution-card,
.home .rs1-home-system-card,
.home .rs1-home-material-card {
	border-radius: 22px;
}

.home .rs1-home-solution-card__media,
.home .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 1.9 / 1;
}

.home .rs1-home-system-card__media {
	aspect-ratio: 1.42 / 1;
}

.home .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 1.68 / 1;
}

.home .rs1-home-system-card__overlay,
.home .rs1-home-material-card__overlay {
	right: 18px;
	bottom: 14px;
	left: 18px;
}

.home .rs1-home-system-card__overlay h3,
.home .rs1-home-material-card__overlay h3 {
	font-size: clamp(1.08rem, 1.3vw, 1.42rem);
	line-height: 1.12;
}

.home .rs1-home-mid-banner {
	padding: 26px 0 8px;
}

.home .rs1-home-mid-banner__frame {
	width: min(100%, 1920px);
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
	display: grid;
	align-items: end;
	height: min(600px, 31.25vw);
	min-height: 360px;
	overflow: hidden;
	border-radius: 0;
	background: #0f1724;
	box-shadow: 0 28px 58px rgba(17, 31, 55, 0.16);
	isolation: isolate;
}

.home .rs1-home-mid-banner__media,
.home .rs1-home-mid-banner__media img,
.home .rs1-home-mid-banner__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home .rs1-home-mid-banner__media img {
	display: block;
	object-fit: cover;
	object-position: 50% 38%;
	transform: scale(1.02);
}

.home .rs1-home-mid-banner__overlay {
	background:
		linear-gradient(90deg, rgba(8, 17, 32, 0.82) 0%, rgba(8, 17, 32, 0.58) 40%, rgba(8, 17, 32, 0.16) 100%),
		linear-gradient(180deg, rgba(8, 17, 32, 0.08) 0%, rgba(8, 17, 32, 0.54) 100%);
	z-index: 1;
}

.home .rs1-home-mid-banner__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 18px;
	width: min(100% - 64px, 860px);
	padding: clamp(28px, 3.8vw, 54px) clamp(28px, 3.4vw, 48px) clamp(28px, 3.8vw, 54px) clamp(42px, 5.2vw, 92px);
}

.home .rs1-home-mid-banner__eyebrow {
	margin: 0;
	color: rgba(232, 239, 247, 0.8);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.home .rs1-home-mid-banner__content h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2rem, 3.1vw, 3.72rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.home .rs1-home-mid-banner__content > p:last-of-type {
	margin: 0;
	max-width: 54ch;
	color: rgba(241, 245, 250, 0.88);
	font-size: clamp(1rem, 1.05vw, 1.14rem);
	line-height: 1.58;
}

.home .rs1-home-mid-banner__flow {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.home .rs1-home-mid-banner__flow span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(235, 242, 250, 0.12);
	color: #f2f6fb;
	font-size: 0.88rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.home .rs1-home-mid-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home .rs1-home-mid-banner__actions .rs1-home-cta__button {
	margin-top: 0;
}

@media (max-width: 1320px) {
	.rs1-nav-card-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rs1-nav-feature-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.rs1-nav-panel--split,
	.rs1-nav-meta,
	.rs1-nav-comparison__grid {
		grid-template-columns: 1fr;
	}

	.rs1-nav-card-grid--three,
	.rs1-nav-card-grid--five,
	.rs1-nav-feature-grid--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rs1-nav-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.home .rs1-hero .rs1-container,
	.home .rs1-home-exact__container,
	.home .rs1-home-exact--solutions .rs1-home-exact__container,
	.home .rs1-home-exact--systems .rs1-home-exact__container,
	.home .rs1-home-exact--materials .rs1-home-exact__container,
	.home .rs1-home-mid-banner__frame {
		width: min(calc(100% - 28px), 100%);
	}
}

@media (max-width: 780px) {
	.rs1-nav-page {
		padding-bottom: 64px;
	}

	.rs1-nav-banner {
		padding-top: 12px;
	}

	.rs1-nav-banner__media,
	.rs1-nav-page__shell {
		width: min(calc(100% - 20px), 100%);
	}

	.rs1-nav-panel,
	.rs1-nav-section,
	.rs1-nav-strip,
	.rs1-nav-meta,
	.rs1-nav-cta,
	.rs1-nav-comparison {
		padding: 22px 18px;
		border-radius: 20px;
	}

	.rs1-nav-card-grid--three,
	.rs1-nav-card-grid--five,
	.rs1-nav-feature-grid--four,
	.rs1-nav-feature-grid--two {
		grid-template-columns: 1fr;
	}

	.rs1-nav-flow {
		justify-content: flex-start;
	}

	.rs1-nav-flow span {
		width: 100%;
		justify-content: flex-start;
		padding: 12px 16px;
	}

	.rs1-nav-flow span:not(:last-child)::after {
		content: "";
		margin-left: 0;
	}

	.home .rs1-hero__inner {
		padding: 46px 0 26px;
	}

	.home .rs1-hero__title {
		font-size: clamp(2.2rem, 9vw, 3.6rem) !important;
	}

	.home .rs1-hero__metrics {
		gap: 14px;
	}

	.home .rs1-metric-card {
		flex: 0 0 114px;
		width: 114px;
	}

	.home .rs1-home-mid-banner {
		padding-top: 18px;
	}

	.home .rs1-home-mid-banner__frame {
		min-height: 360px;
		border-radius: 20px;
	}

	.home .rs1-home-mid-banner__content {
		width: min(100% - 36px, 100%);
		gap: 14px;
		padding: 22px 18px 24px;
	}

	.home .rs1-home-mid-banner__content h2 {
		max-width: 10ch;
		font-size: clamp(1.62rem, 7vw, 2.28rem);
	}

	.home .rs1-home-mid-banner__content > p:last-of-type {
		font-size: 0.94rem;
		line-height: 1.5;
	}

	.home .rs1-home-mid-banner__flow {
		gap: 8px;
	}

	.home .rs1-home-mid-banner__flow span {
		min-height: 34px;
		padding: 0 12px;
		font-size: 0.8rem;
	}

	.home .rs1-home-mid-banner__actions {
		gap: 10px;
	}
}

/* Compact layout tuning */
.rs1-process-hero__inner {
	gap: 18px;
	padding: 40px 44px 34px;
}

.rs1-process-hero__copy {
	max-width: 600px;
}

.rs1-process-hero__title {
	font-size: clamp(1.9rem, 3.2vw, 3.4rem);
	line-height: 1.02;
}

.rs1-process-hero__description,
.rs1-process-hero__caption {
	margin-top: 14px;
	font-size: 0.98rem;
	line-height: 1.58;
}

.rs1-process-hero__panel {
	padding: 18px 20px;
}

.rs1-keyword-band,
.rs1-process-banner {
	gap: 14px;
	margin-top: 18px;
	padding: 22px 24px;
}

.rs1-module-grid,
.rs1-process-layout,
.rs1-topic-grid,
.rs1-company-metrics {
	gap: 18px;
	margin-top: 18px;
}

.rs1-module-card,
.rs1-surface-card,
.rs1-topic-card,
.rs1-company-metrics__card {
	padding: 20px;
	border-radius: 20px;
}

.rs1-split-panel {
	gap: 18px;
	padding: 20px;
	border-radius: 22px;
}

.rs1-split-panel__media {
	min-height: 220px;
	border-radius: 18px;
}

.rs1-info-stack,
.rs1-mini-grid,
.rs1-feature-grid,
.rs1-advantage-grid {
	gap: 12px;
	margin-top: 14px;
}

.rs1-info-stack__item,
.rs1-mini-card,
.rs1-feature-card,
.rs1-advantage-pill,
.rs1-topic-card__route {
	padding: 14px 16px;
	border-radius: 14px;
}

.rs1-info-stack__item h3,
.rs1-mini-card h3,
.rs1-feature-card h3,
.rs1-advantage-pill h3 {
	font-size: 0.94rem;
}

.rs1-nav-page {
	padding-bottom: 64px;
}

.rs1-nav-banner {
	padding-top: 12px;
}

.rs1-nav-banner__media {
	border-radius: 22px;
}

.rs1-nav-page__shell {
	margin-top: 22px;
	gap: 18px;
}

.rs1-nav-panel,
.rs1-nav-section,
.rs1-nav-strip,
.rs1-nav-meta,
.rs1-nav-cta,
.rs1-nav-comparison {
	padding: 22px;
	border-radius: 20px;
}

.rs1-nav-panel--split {
	gap: 20px;
}

.rs1-nav-panel__copy {
	gap: 16px;
}

.rs1-nav-copy-list {
	gap: 14px;
}

.rs1-nav-copy-list article {
	padding-bottom: 14px;
}

.rs1-nav-panel__media {
	min-height: 240px;
}

.rs1-nav-section__heading {
	margin-bottom: 18px;
}

.rs1-nav-section__heading h2,
.rs1-nav-comparison h2,
.rs1-nav-cta__copy h2 {
	font-size: clamp(1.74rem, 2vw, 2.42rem);
}

.rs1-nav-section__heading p {
	margin-top: 10px;
	font-size: 0.94rem;
	line-height: 1.56;
}

.rs1-nav-card-grid,
.rs1-nav-feature-grid,
.rs1-nav-comparison__grid {
	gap: 16px;
}

.rs1-nav-card__media {
	aspect-ratio: 1.9 / 1;
}

.rs1-nav-card__body {
	gap: 10px;
	padding: 16px 16px 18px;
}

.rs1-nav-card__body h3,
.rs1-nav-feature-card h3,
.rs1-nav-comparison__column h3 {
	font-size: 1.06rem;
}

.rs1-nav-card__body p,
.rs1-nav-feature-card p,
.rs1-nav-meta__block p,
.rs1-nav-cta__copy p,
.rs1-nav-comparison__column li {
	font-size: 0.94rem;
	line-height: 1.56;
}

.rs1-nav-flow {
	gap: 10px;
	margin-top: 14px;
}

.rs1-nav-flow span {
	min-height: 40px;
	padding: 0 14px;
	font-size: 0.9rem;
}

.rs1-nav-feature-card {
	padding: 18px 16px;
}

.rs1-nav-feature-card h3 {
	margin-top: 12px;
}

.rs1-nav-comparison__column {
	padding: 18px 16px;
}

.rs1-nav-comparison__column ul {
	margin-top: 12px;
	gap: 10px;
}

.rs1-nav-cta__copy p {
	margin-top: 10px;
}

.home .rs1-hero {
	min-height: min(82svh, 720px);
}

.home .rs1-hero__inner {
	min-height: min(82svh, 720px);
	padding: 38px 0 28px;
}

.home .rs1-hero__title {
	font-size: clamp(2.7rem, 4vw, 4.4rem) !important;
}

.home .rs1-hero__description {
	font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
	line-height: 1.42;
}

.home .rs1-hero__features {
	gap: 12px;
	margin-top: 22px;
}

.home .rs1-hero__features li {
	font-size: 0.98rem !important;
}

.home .rs1-hero__actions {
	margin-top: 24px;
	gap: 14px;
}

.home .rs1-hero__actions .rs1-button {
	min-height: 52px;
}

.home .rs1-hero__metrics {
	gap: 16px;
	margin-top: 24px;
}

.home .rs1-metric-card {
	flex: 0 0 118px;
	width: 118px;
}

.home .rs1-metric-card strong {
	width: 84px;
	height: 84px;
}

.home .rs1-hero__visual,
.home .rs1-hero__annotations {
	min-height: clamp(320px, 42vh, 460px);
}

.home .rs1-hero__image-frame img {
	min-height: clamp(320px, 42vh, 460px);
}

.home .rs1-home-exact,
.home .rs1-home-exact--solutions#solutions,
.home .rs1-home-exact--systems#equipment,
.home .rs1-home-exact--materials {
	padding-top: 40px;
}

.home .rs1-home-heading h2 {
	font-size: clamp(1.92rem, 2.3vw, 2.72rem);
}

.home .rs1-home-heading p {
	margin-top: 12px;
	font-size: 0.94rem;
	line-height: 1.5;
}

.home .rs1-home-heading__subline,
.home .rs1-home-flow,
.home .rs1-home-system-flow {
	margin-top: 16px;
	font-size: 0.92rem;
}

.home .rs1-home-solution-grid,
.home .rs1-home-system-grid,
.home .rs1-home-material-grid {
	gap: 18px;
	margin-top: 24px;
}

.home .rs1-home-solution-card__media,
.home .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 2.28 / 1;
}

.home .rs1-home-system-card__media {
	aspect-ratio: 1.52 / 1;
}

.home .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 1.82 / 1;
}

.home .rs1-home-solution-card__overlay,
.home .rs1-home-system-card__overlay,
.home .rs1-home-material-card__overlay {
	right: 18px;
	bottom: 14px;
	left: 18px;
}

.home .rs1-home-solution-card__overlay h3,
.home .rs1-home-system-card__overlay h3,
.home .rs1-home-material-card__overlay h3 {
	font-size: clamp(1.1rem, 1.3vw, 1.38rem);
}

.home .rs1-home-solution-card__overlay p {
	margin-top: 8px;
	font-size: 0.9rem;
	line-height: 1.36;
}

.home .rs1-home-system-card__content {
	padding: 18px 18px 20px;
}

.home .rs1-home-system-card__content h3 {
	font-size: clamp(1.1rem, 1.3vw, 1.38rem);
}

.home .rs1-home-system-card__content p {
	margin-top: 10px;
	font-size: 0.92rem;
	line-height: 1.42;
}

.home .rs1-home-system-card__content a {
	margin-top: 18px;
}

.home .rs1-home-cta {
	padding-top: 20px;
}

.home .rs1-home-cta__button {
	min-height: 46px;
	margin-top: 14px;
}

.home .rs1-home-mid-banner {
	padding: 18px 0 4px;
}

@media (max-width: 780px) {
	.rs1-process-hero__inner {
		padding: 22px 18px 20px;
	}

	.rs1-split-panel,
	.rs1-surface-card,
	.rs1-process-banner,
	.rs1-keyword-band {
		padding: 16px;
	}

	.home .rs1-hero {
		min-height: 0;
	}

	.home .rs1-hero__inner {
		min-height: 0;
		padding: 30px 0 18px;
	}

	.home .rs1-home-exact,
	.home .rs1-home-exact--solutions#solutions,
	.home .rs1-home-exact--systems#equipment,
	.home .rs1-home-exact--materials {
		padding-top: 26px;
	}
}

.rs1-home-pagination,
.rs1-home-scrollcue {
	display: none;
}

body.home.rs1-home-screen-mode {
	overscroll-behavior-y: contain;
}

.rs1-home-screen-mode-root {
	scroll-behavior: smooth;
}

body.home.rs1-home-screen-mode .rs1-home-screen {
	position: relative;
	scroll-margin-top: 0;
}

body.home.rs1-home-screen-mode .rs1-main--custom-home {
	padding-bottom: 0;
}

body.home.rs1-home-screen-mode .rs1-hero,
body.home.rs1-home-screen-mode .rs1-home-exact,
body.home.rs1-home-screen-mode .rs1-home-mid-banner {
	min-height: var(--rs1-home-screen-height);
}

body.home.rs1-home-screen-mode .rs1-hero {
	display: grid;
	align-items: center;
}

body.home.rs1-home-screen-mode .rs1-hero .rs1-container {
	width: min(calc(100% - clamp(80px, 7.6vw, 152px)), 1880px);
}

body.home.rs1-home-screen-mode .rs1-hero__inner {
	min-height: var(--rs1-home-screen-height);
	padding: clamp(18px, 2vh, 28px) 0 clamp(24px, 2.8vh, 36px);
}

body.home.rs1-home-screen-mode .rs1-hero__title {
	font-size: clamp(2.45rem, 3.3vw, 4rem) !important;
}

body.home.rs1-home-screen-mode .rs1-hero__description {
	max-width: 36rem;
	font-size: 0.98rem !important;
	line-height: 1.36;
}

body.home.rs1-home-screen-mode .rs1-hero__features {
	gap: 10px;
	margin-top: 18px;
}

body.home.rs1-home-screen-mode .rs1-hero__features li {
	font-size: 0.92rem !important;
}

body.home.rs1-home-screen-mode .rs1-hero__actions {
	margin-top: 20px;
}

body.home.rs1-home-screen-mode .rs1-hero__actions .rs1-button {
	min-height: 48px;
	padding: 0 24px;
}

body.home.rs1-home-screen-mode .rs1-hero__metrics {
	gap: 14px;
	margin-top: 18px;
}

body.home.rs1-home-screen-mode .rs1-metric-card {
	flex: 0 0 108px;
	width: 108px;
}

body.home.rs1-home-screen-mode .rs1-metric-card strong {
	width: 76px;
	height: 76px;
}

body.home.rs1-home-screen-mode .rs1-hero__visual,
body.home.rs1-home-screen-mode .rs1-hero__annotations {
	min-height: clamp(320px, 38vh, 430px);
}

body.home.rs1-home-screen-mode .rs1-hero__image-frame img {
	min-height: clamp(320px, 38vh, 430px);
}

body.home.rs1-home-screen-mode .rs1-home-exact {
	display: grid;
	align-items: center;
	padding: clamp(16px, 2vh, 24px) 0;
}

body.home.rs1-home-screen-mode .rs1-home-exact__container {
	width: min(calc(100% - clamp(36px, 3.4vw, 68px)), 1760px);
	display: grid;
	align-content: center;
}

body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-exact__container {
	width: min(calc(100% - clamp(30px, 2.8vw, 56px)), 1880px);
}

body.home.rs1-home-screen-mode .rs1-home-heading h2 {
	font-size: clamp(1.9rem, 2.2vw, 2.72rem);
}

body.home.rs1-home-screen-mode .rs1-home-heading p {
	margin-top: 10px;
	font-size: 0.96rem;
	line-height: 1.42;
}

body.home.rs1-home-screen-mode .rs1-home-heading__subline,
body.home.rs1-home-screen-mode .rs1-home-flow,
body.home.rs1-home-screen-mode .rs1-home-system-flow {
	margin-top: 12px;
	font-size: 0.84rem;
}

body.home.rs1-home-screen-mode .rs1-home-solution-grid,
body.home.rs1-home-screen-mode .rs1-home-system-grid,
body.home.rs1-home-screen-mode .rs1-home-material-grid {
	gap: clamp(18px, 1.35vw, 24px);
	margin-top: 22px;
}

body.home.rs1-home-screen-mode .rs1-home-solution-card__media,
body.home.rs1-home-screen-mode .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 2.58 / 1;
}

body.home.rs1-home-screen-mode .rs1-home-system-card__media {
	aspect-ratio: 1.48 / 1;
}

body.home.rs1-home-screen-mode .rs1-home-material-card .rs1-home-material-card__media {
	aspect-ratio: 1.9 / 1;
}

body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay,
body.home.rs1-home-screen-mode .rs1-home-system-card__overlay,
body.home.rs1-home-screen-mode .rs1-home-material-card__overlay {
	right: 16px;
	bottom: 12px;
	left: 16px;
}

body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay h3,
body.home.rs1-home-screen-mode .rs1-home-system-card__overlay h3,
body.home.rs1-home-screen-mode .rs1-home-material-card__overlay h3 {
	font-size: clamp(1.08rem, 1.2vw, 1.38rem);
	line-height: 1.12;
}

body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay p {
	margin-top: 6px;
	max-width: 80%;
	font-size: 0.88rem;
	line-height: 1.28;
}

body.home.rs1-home-screen-mode .rs1-home-system-card__content {
	padding: 14px 16px 16px;
}

body.home.rs1-home-screen-mode .rs1-home-system-card__content h3 {
	font-size: 1.08rem;
}

body.home.rs1-home-screen-mode .rs1-home-system-card__content p {
	margin-top: 8px;
	font-size: 0.88rem;
	line-height: 1.32;
}

body.home.rs1-home-screen-mode .rs1-home-system-card__content a {
	margin-top: 14px;
	font-size: 0.86rem;
}

body.home.rs1-home-screen-mode .rs1-home-cta {
	padding-top: 14px;
}

body.home.rs1-home-screen-mode .rs1-home-cta p {
	font-size: 0.9rem;
}

body.home.rs1-home-screen-mode .rs1-home-cta__button {
	min-height: 42px;
	margin-top: 10px;
	padding: 0 20px;
	font-size: 0.9rem;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner {
	display: grid;
	align-items: center;
	padding: 18px 0;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__frame {
	width: min(100%, 1920px);
	max-width: 1920px;
	height: min(calc(var(--rs1-home-screen-height) - 40px), 600px);
	min-height: min(420px, calc(var(--rs1-home-screen-height) - 40px));
	max-height: 600px;
	border-radius: 0;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__content {
	width: min(100% - 72px, 920px);
	gap: 20px;
	padding: clamp(34px, 4.2vw, 64px);
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__content h2 {
	font-size: clamp(2.4rem, 3.4vw, 4.3rem);
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__content > p:last-of-type {
	max-width: 58ch;
	font-size: 1rem;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__flow {
	gap: 12px;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__flow span {
	min-height: 40px;
	padding: 0 18px;
	font-size: 0.9rem;
}

body.home.rs1-home-screen-mode .rs1-home-mid-banner__actions {
	gap: 16px;
}

body.home.rs1-home-screen-mode .rs1-home-screen--final {
	padding-bottom: clamp(20px, 2.6vh, 32px);
}

body.home.rs1-home-screen-mode .rs1-home-screen .rs1-home-exact__container,
body.home.rs1-home-screen-mode .rs1-home-mid-banner__frame,
body.home.rs1-home-screen-mode .rs1-hero__inner {
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.54s ease,
		filter 0.54s ease;
	will-change: transform, opacity, filter;
}

body.home.rs1-home-screen-mode .rs1-home-screen:not(.is-active-screen) .rs1-home-exact__container,
body.home.rs1-home-screen-mode .rs1-home-screen:not(.is-active-screen) .rs1-home-mid-banner__frame,
body.home.rs1-home-screen-mode .rs1-home-screen:not(.is-active-screen) .rs1-hero__inner {
	opacity: 0.72;
	transform: translateY(24px) scale(0.986);
	filter: saturate(0.9);
}

body.home.rs1-home-screen-mode .rs1-home-screen.is-active-screen .rs1-home-exact__container,
body.home.rs1-home-screen-mode .rs1-home-screen.is-active-screen .rs1-home-mid-banner__frame,
body.home.rs1-home-screen-mode .rs1-home-screen.is-active-screen .rs1-hero__inner {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: none;
}

.rs1-home-exact.rs1-home-exact--materials.rs1-home-screen.rs1-home-screen--final.is-active-screen {
	padding-top: 40px;
}

body.home.rs1-home-screen-mode .rs1-footer {
	margin-top: 30px;
}

body.home.rs1-home-screen-mode .rs1-footer .rs1-container {
	width: min(calc(100% - clamp(80px, 7.6vw, 152px)), 1760px);
}

@media (min-width: 1180px) and (min-height: 720px) {
	body.home.rs1-home-screen-mode .rs1-home-pagination {
		position: fixed;
		top: 50%;
		right: 18px;
		z-index: 48;
		display: grid;
		gap: 10px;
		transform: translateY(-50%);
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		color: #9db4cb;
		font: inherit;
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot::before {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: rgba(157, 180, 203, 0.42);
		box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.26);
		transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot span {
		display: inline-block;
		padding: 6px 10px;
		border-radius: 999px;
		background: rgba(17, 31, 55, 0.74);
		color: #ffffff;
		font-size: 0.76rem;
		font-weight: 700;
		letter-spacing: 0.04em;
		opacity: 0;
		transform: translateX(10px);
		pointer-events: none;
		transition: opacity 0.28s ease, transform 0.28s ease;
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot:hover span,
	body.home.rs1-home-screen-mode .rs1-home-pagination__dot.is-active span {
		opacity: 1;
		transform: translateX(0);
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot.is-active {
		color: #ffffff;
	}

	body.home.rs1-home-screen-mode .rs1-home-pagination__dot.is-active::before {
		background: #4f9cf2;
		box-shadow: 0 0 0 10px rgba(79, 156, 242, 0.18);
		transform: scale(1.14);
	}

	body.home.rs1-home-screen-mode .rs1-home-scrollcue {
		position: absolute;
		left: 50%;
		bottom: 12px;
		z-index: 5;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 10px 14px;
		border: 0;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.12);
		color: #ffffff;
		backdrop-filter: blur(12px);
		cursor: pointer;
		transform: translateX(-50%);
		animation: rs1ScrollCue 2s ease-in-out infinite;
	}

	body.home.rs1-home-screen-mode .rs1-home-scrollcue::after {
		content: "";
		width: 10px;
		height: 10px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
	}

	body.home.rs1-home-screen-mode .rs1-home-scrollcue span {
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
}

@keyframes rs1ScrollCue {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

@media (max-height: 860px) and (min-width: 1180px) {
	body.home.rs1-home-screen-mode .rs1-hero__visual,
	body.home.rs1-home-screen-mode .rs1-hero__annotations,
	body.home.rs1-home-screen-mode .rs1-hero__image-frame img {
		min-height: clamp(280px, 34vh, 360px);
	}

	body.home.rs1-home-screen-mode .rs1-home-heading p {
		margin-top: 8px;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-grid,
	body.home.rs1-home-screen-mode .rs1-home-system-grid,
	body.home.rs1-home-screen-mode .rs1-home-material-grid {
		gap: 16px;
		margin-top: 18px;
	}
}

@media (min-width: 1180px) and (min-height: 720px) {
	body.home.rs1-home-screen-mode .rs1-home-exact,
	body.home.rs1-home-screen-mode .rs1-home-exact--solutions#solutions,
	body.home.rs1-home-screen-mode .rs1-home-exact--systems#equipment,
	body.home.rs1-home-screen-mode .rs1-home-exact--materials#materials-we-process {
		padding: 58px clamp(120px, 9vw, 220px);
		box-sizing: border-box;
		height: auto;
		min-height: calc(var(--rs1-home-screen-height) + 180px);
	}

	body.home.rs1-home-screen-mode .rs1-hero,
	body.home.rs1-home-screen-mode .rs1-home-mid-banner {
		height: var(--rs1-home-screen-height);
		min-height: 0;
	}

	body.home.rs1-home-screen-mode .rs1-hero__inner {
		height: var(--rs1-home-screen-height);
		min-height: 0;
		padding: clamp(16px, 1.7vh, 24px) 0 clamp(18px, 2vh, 28px);
	}

	body.home.rs1-home-screen-mode .rs1-hero__copy {
		max-width: min(100%, 40rem);
		padding-left: clamp(28px, 3.2vw, 84px);
		box-sizing: border-box;
	}

	body.home.rs1-home-screen-mode .rs1-hero__title {
		font-size: clamp(2.3rem, 3.05vw, 3.7rem) !important;
		line-height: 0.98;
	}

	body.home.rs1-home-screen-mode .rs1-hero__description {
		max-width: 34rem;
		font-size: 0.94rem !important;
		line-height: 1.32;
	}

	body.home.rs1-home-screen-mode .rs1-hero__features {
		gap: 8px;
		margin-top: 14px;
	}

	body.home.rs1-home-screen-mode .rs1-hero__actions {
		margin-top: 16px;
	}

	body.home.rs1-home-screen-mode .rs1-hero__metrics {
		gap: 12px;
		margin-top: 14px;
	}

	body.home.rs1-home-screen-mode .rs1-metric-card {
		flex: 0 0 102px;
		width: 102px;
	}

	body.home.rs1-home-screen-mode .rs1-metric-card strong {
		width: 70px;
		height: 70px;
	}

	body.home.rs1-home-screen-mode .rs1-hero__visual,
	body.home.rs1-home-screen-mode .rs1-hero__annotations {
		min-height: clamp(300px, 35vh, 400px);
	}

	body.home.rs1-home-screen-mode .rs1-hero__image-frame img {
		min-height: clamp(300px, 35vh, 400px);
	}

	body.home.rs1-home-screen-mode .rs1-home-exact__container {
		width: 100%;
		max-width: none;
		height: auto;
		min-height: 0;
		display: grid;
		grid-template-rows: auto auto;
		align-content: start;
		gap: clamp(14px, 1.6vh, 22px);
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--systems .rs1-home-exact__container,
	body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-exact__container {
		height: auto;
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-exact__container {
		gap: clamp(12px, 1.3vh, 18px);
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--materials {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	body.home.rs1-home-screen-mode .rs1-home-heading {
		display: grid;
		align-content: start;
	}

	body.home.rs1-home-screen-mode .rs1-home-heading h2 {
		font-size: clamp(1.8rem, 2.05vw, 2.55rem);
		line-height: 1.02;
	}

	body.home.rs1-home-screen-mode .rs1-home-heading p {
		margin-top: 8px;
		font-size: 0.92rem;
		line-height: 1.36;
	}

	body.home.rs1-home-screen-mode .rs1-home-heading__subline,
	body.home.rs1-home-screen-mode .rs1-home-flow,
	body.home.rs1-home-screen-mode .rs1-home-system-flow {
		margin-top: 10px;
		font-size: 0.8rem;
		line-height: 1.3;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-grid,
	body.home.rs1-home-screen-mode .rs1-home-system-grid,
	body.home.rs1-home-screen-mode .rs1-home-material-grid {
		align-content: stretch;
		gap: clamp(14px, 1.1vw, 20px);
		margin-top: 0;
		min-height: 0;
		height: var(--rs1-home-screen-height);
		align-self: stretch;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(2, minmax(0, 1fr));
	}

	body.home.rs1-home-screen-mode .rs1-home-system-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: minmax(0, 1fr);
	}

	body.home.rs1-home-screen-mode .rs1-home-material-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: repeat(2, minmax(0, 1fr));
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card,
	body.home.rs1-home-screen-mode .rs1-home-system-card,
	body.home.rs1-home-screen-mode .rs1-home-material-card,
	body.home.rs1-home-screen-mode .rs1-home-solution-card__link,
	body.home.rs1-home-screen-mode .rs1-home-system-card__link,
	body.home.rs1-home-screen-mode .rs1-home-material-card__link {
		height: 100%;
		min-height: 0;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card__media,
	body.home.rs1-home-screen-mode .rs1-home-system-card__media,
	body.home.rs1-home-screen-mode .rs1-home-material-card .rs1-home-material-card__media {
		height: 100%;
		aspect-ratio: auto;
		min-height: 0;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card__media img,
	body.home.rs1-home-screen-mode .rs1-home-system-card__media img,
	body.home.rs1-home-screen-mode .rs1-home-material-card__media img {
		height: 100%;
		object-fit: cover;
	}

	body.home.rs1-home-screen-mode .rs1-home-cta {
		display: none;
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-heading p {
		max-width: 760px;
		margin-top: 6px;
	}

	body.home.rs1-home-screen-mode .rs1-home-material-grid {
		gap: clamp(12px, 1vw, 16px);
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-heading h2 {
		font-size: clamp(1.7rem, 1.86vw, 2.22rem);
	}

	body.home.rs1-home-screen-mode .rs1-home-exact--materials .rs1-home-heading p {
		font-size: 0.88rem;
		line-height: 1.28;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay,
	body.home.rs1-home-screen-mode .rs1-home-system-card__overlay,
	body.home.rs1-home-screen-mode .rs1-home-material-card__overlay {
		right: 14px;
		bottom: 10px;
		left: 14px;
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay h3,
	body.home.rs1-home-screen-mode .rs1-home-system-card__overlay h3,
	body.home.rs1-home-screen-mode .rs1-home-material-card__overlay h3 {
		font-size: clamp(1rem, 1.05vw, 1.28rem);
	}

	body.home.rs1-home-screen-mode .rs1-home-solution-card__overlay p {
		max-width: 74%;
		margin-top: 4px;
		font-size: 0.82rem;
		line-height: 1.22;
	}

	body.home.rs1-home-screen-mode .rs1-home-cta {
		padding-top: 0;
	}

	body.home.rs1-home-screen-mode .rs1-home-cta p {
		font-size: 0.86rem;
		line-height: 1.32;
	}

	body.home.rs1-home-screen-mode .rs1-home-cta__button {
		min-height: 40px;
		margin-top: 8px;
		padding: 0 18px;
		font-size: 0.86rem;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner {
		padding: clamp(10px, 1.2vh, 16px) 0;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__frame {
		height: min(calc(var(--rs1-home-screen-height) - clamp(20px, 2.4vh, 32px)), 600px);
		min-height: 0;
		max-height: 600px;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__content {
		width: min(100% - 72px, 860px);
		gap: clamp(12px, 1.4vh, 18px);
		padding:
			clamp(26px, 2.8vw, 46px)
			clamp(26px, 2.4vw, 40px)
			clamp(26px, 2.8vw, 46px)
			clamp(44px, 4.8vw, 96px);
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__content h2 {
		font-size: clamp(2.15rem, 3vw, 3.6rem);
		line-height: 0.96;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__content > p:last-of-type {
		max-width: 52ch;
		font-size: 0.94rem;
		line-height: 1.38;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__flow {
		gap: 10px;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__flow span {
		min-height: 36px;
		padding: 0 14px;
		font-size: 0.84rem;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__actions {
		gap: 12px;
	}

	body.home.rs1-home-screen-mode .rs1-home-screen--final {
		padding-bottom: 14px;
	}
}

@media (max-height: 860px) and (min-width: 1180px) {
	body.home.rs1-home-screen-mode .rs1-home-exact__container {
		gap: 10px;
	}

	body.home.rs1-home-screen-mode .rs1-home-mid-banner__content {
		padding: clamp(22px, 2.4vw, 36px);
	}
}
