@font-face {
	font-display: swap;
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/NotoSans-Medium.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/NotoSans-SemiBold.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 800;
	src: url("../fonts/NotoSans-ExtraBold.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans Condensed";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/NotoSans_Condensed-Regular.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Noto Sans Condensed";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/NotoSans_Condensed-Bold.ttf") format("truetype");
}

:root {
	--brand-orange: #ea5504;
	--blue-50: #eef4fb;
	--blue-100: #d7e5f4;
	--blue-500: #1f5fa3;
	--blue-600: #154a85;
	--blue-700: #103a6b;
	--blue-900: #07203d;
	--cyan-500: #00a5c8;
	--ink-900: #0f1216;
	--ink-800: #1c2128;
	--ink-700: #2a2f38;
	--ink-600: #424952;
	--ink-500: #5a626d;
	--ink-300: #a8aeb6;
	--ink-200: #d2d6dc;
	--ink-100: #e6e9ed;
	--ink-50: #f2f4f6;
	--paper: #fff;
	--paper-2: #fafbfc;
	--container: 1280px;
	--gutter: clamp(20px, 4vw, 32px);
	--header-reveal-duration: 500ms;
	--shadow: 0 16px 40px rgba(15, 18, 22, 0.12);
	--font-display: "Noto Sans", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-condensed: "Noto Sans Condensed", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}

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

body {
	background: var(--paper);
	color: var(--ink-900);
	margin: 0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
	font-family: var(--font-display);
}

body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: min(var(--wp--style--global--content-size), calc(100vw - (var(--gutter) * 2)));
}

body .is-layout-constrained > .alignwide {
	max-width: min(var(--wp--style--global--wide-size), calc(100vw - (var(--gutter) * 2)));
}

.wp-site-blocks > *,
.wp-block-post-content > * {
	margin-block-start: 0;
}

.wp-site-blocks,
.wp-block-post-content {
	max-width: 100%;
	overflow-x: hidden;
}

a {
	color: var(--blue-600);
	text-decoration: none;
}

a:hover {
	color: var(--blue-700);
	text-decoration: underline;
	text-underline-offset: 3px;
}

img,
video {
	display: block;
	max-width: 100%;
}

.tw-main {
	margin-block-start: 0;
}

.wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	left: 0;
	margin-block-start: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate3d(0, 0, 0);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background-color 320ms ease, box-shadow 320ms ease;
	z-index: 100;
	will-change: transform;
}

.wp-site-blocks:has(> .wp-block-template-part .tw-site-header) {
	padding-top: 72px;
}

body.admin-bar .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	top: 32px;
}

body.tw-header-is-sticky .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	position: fixed;
	transform: translate3d(0, -120%, 0);
}

body.tw-header-is-sticky.tw-header-is-visible .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	box-shadow: 0 8px 28px rgba(8, 14, 24, 0.1);
	transform: translate3d(0, 0, 0);
}

body.tw-header-is-revealing .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	transition-duration: var(--header-reveal-duration);
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body.tw-header-is-animating .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	animation: tw-header-slide-down var(--header-reveal-duration) cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.tw-header-is-resetting .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
	animation: none !important;
	transition: none !important;
}

@keyframes tw-header-slide-down {
	from {
		transform: translate3d(0, -120%, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.tw-site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--ink-100);
	position: relative;
	z-index: 50;
	backdrop-filter: saturate(180%) blur(8px);
}

.tw-site-header__inner {
	min-height: 72px;
	padding: 0 var(--gutter);
}

.tw-site-header__logo img,
.tw-site-footer__logo img {
	height: auto;
}

.tw-site-header__nav a {
	color: var(--ink-800);
	font-size: 14px;
	font-weight: 600;
}

.tw-site-header__nav a:hover,
.tw-site-header__nav .current-menu-item > a {
	color: var(--blue-600);
	text-decoration: none;
}

.wp-block-button__link,
.tw-button {
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
	white-space: normal;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.tw-button:hover,
.tw-button:focus-visible {
	background-color: var(--blue-600);
	border-color: var(--blue-600);
	box-shadow: 0 10px 22px rgba(21, 74, 133, 0.2);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.wp-block-button__link:focus-visible,
.tw-button:focus-visible {
	outline: 2px solid rgba(0, 165, 200, 0.5);
	outline-offset: 3px;
}

.is-style-outline > .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
	border-color: currentColor;
}

.is-style-outline > .wp-block-button__link:hover,
.is-style-outline > .wp-block-button__link:focus-visible,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
	background-color: var(--blue-600);
	border-color: var(--blue-600);
	color: #fff;
}

.tw-site-footer,
.tw-footer {
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.85);
	padding: 80px 0 32px;
}

.tw-site-footer > .tw-container,
.tw-site-footer .tw-container,
.editor-styles-wrapper .tw-site-footer > .tw-container,
.editor-styles-wrapper .tw-site-footer .tw-container {
	margin: 0 auto;
	max-width: var(--container) !important;
	padding: 0 var(--gutter);
	width: 100%;
}

.tw-footer__grid,
.tw-site-footer__grid {
	display: grid !important;
	gap: 40px;
	grid-template-columns: 1.6fr repeat(4, 1fr);
}

.tw-footer__brand p,
.tw-site-footer .tw-footer__brand p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 320px;
}

.tw-footer__logo,
.tw-site-footer__logo {
	height: 30px;
	margin: 0 0 18px;
	width: auto;
}

.tw-footer__logo img,
.tw-site-footer__logo img {
	height: 30px;
	width: auto !important;
}

.tw-footer__col h5,
.tw-site-footer h5 {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.tw-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-footer-links li {
	margin: 0;
}

.tw-footer-links li + li {
	margin-top: 0;
}

.tw-footer__col a,
.tw-site-footer a {
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
	display: block;
	font-size: 14px;
	line-height: 1.45;
	padding: 5px 0;
	text-decoration: none;
}

.tw-footer__col a:hover,
.tw-site-footer a:hover {
	color: #fff;
	text-decoration: none;
}

.tw-footer__social {
	align-items: center;
	display: inline-flex !important;
	gap: 8px;
}

.tw-footer__social--logo {
	line-height: 0;
	padding-top: 10px;
}

.tw-footer__linkedin {
	color: #0a66c2;
	flex: 0 0 18px;
	height: 18px;
	width: 18px;
}

.tw-footer__linkedin-logo {
	display: block;
	height: 24px;
	width: 92px;
}

.tw-footer__bottom,
.tw-site-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 12px;
	justify-content: space-between;
	margin-top: 64px;
	padding-top: 28px;
}

.tw-footer__bottom p,
.tw-site-footer__bottom p {
	color: inherit;
	font-size: inherit;
	line-height: 1.4;
	margin: 0;
}

.tw-footer__credit,
.tw-footer__hardcoded a {
	color: inherit !important;
	display: inline !important;
	font-size: inherit !important;
	line-height: inherit !important;
	margin-left: 12px;
	padding: 0 !important;
	text-decoration: none;
	white-space: nowrap;
}

.tw-footer__credit:hover,
.tw-footer__hardcoded a:hover {
	color: #fff !important;
	text-decoration: none;
}

.tw-footer__bottom-right {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	line-height: 1.4;
	margin-left: auto !important;
	text-align: right;
	white-space: nowrap;
}

.tw-footer__bottom-right a {
	color: inherit;
	display: inline-flex;
	line-height: inherit;
	text-decoration: none;
}

.tw-footer__bottom-right a:hover {
	color: #fff;
}

.tw-section {
	padding: clamp(64px, 8vw, 96px) var(--gutter);
}

.tw-section--alt {
	background: var(--paper-2);
}

.tw-section--dark {
	background: var(--blue-900);
	color: #fff;
	text-align: center;
}

.tw-section--dark h1,
.tw-section--dark h2,
.tw-section--dark h3,
.tw-section--dark p,
.tw-section--dark a {
	color: inherit;
}

.tw-section--dark p {
	color: rgba(255, 255, 255, 0.82);
}

.tw-section--dark .wp-block-button__link {
	background: #fff;
	color: var(--blue-900);
}

.tw-not-found {
	align-items: center;
	background:
		linear-gradient(180deg, rgba(238, 244, 251, 0.92), rgba(255, 255, 255, 0.98)),
		linear-gradient(rgba(31, 95, 163, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 95, 163, 0.06) 1px, transparent 1px);
	background-size: auto, 32px 32px, 32px 32px;
	display: flex;
	min-height: clamp(460px, 62vh, 680px);
	padding: clamp(72px, 9vw, 120px) var(--gutter);
}

.tw-not-found__panel {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--ink-100);
	border-radius: 8px;
	box-shadow: var(--shadow);
	margin-left: auto;
	margin-right: auto;
	padding: clamp(40px, 7vw, 72px) clamp(24px, 6vw, 72px);
	text-align: center;
}

.tw-not-found__panel .tw-eyebrow {
	margin: 0 0 14px;
}

.tw-not-found__panel h1 {
	color: var(--ink-900);
	font-size: clamp(42px, 7vw, 78px);
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0 auto;
	max-width: 760px;
}

.tw-not-found__lead {
	color: var(--ink-600);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	margin: 22px auto 0;
	max-width: 620px;
}

.tw-not-found__panel .wp-block-buttons {
	margin-top: 30px;
}

.tw-not-found__links {
	border-top: 1px solid var(--ink-100);
	gap: 10px 22px !important;
	margin-top: 34px;
	padding-top: 24px;
}

.tw-not-found__links p {
	margin: 0;
}

.tw-not-found__links a {
	color: var(--blue-600);
	font-size: 14px;
	font-weight: 800;
}

.tw-page-hero {
	background: var(--paper-2);
	border-bottom: 1px solid var(--ink-100);
	padding: clamp(72px, 9vw, 112px) var(--gutter);
	position: relative;
	overflow: hidden;
}

.tw-page-hero::after {
	background-image:
		linear-gradient(rgba(31, 95, 163, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 95, 163, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tw-page-hero > * {
	position: relative;
	z-index: 1;
}

.tw-page-hero--photo {
	background: var(--blue-900);
	color: #fff;
	min-height: 420px;
}

.tw-page-hero--photo::before {
	background-image: var(--tw-hero-image);
	background-position: var(--tw-hero-position, center 45%);
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
}

.tw-page-hero--photo::after {
	background:
		linear-gradient(180deg, rgba(7, 22, 40, 0.52), rgba(7, 22, 40, 0.86)),
		linear-gradient(90deg, rgba(7, 22, 40, 0.62), rgba(7, 22, 40, 0.12));
}

.tw-eyebrow,
.tw-page-hero__eyebrow,
.tw-kicker {
	color: var(--blue-600);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tw-page-hero--photo .tw-eyebrow,
.tw-page-hero--photo .tw-page-hero__eyebrow {
	color: rgba(255, 255, 255, 0.88);
}

.tw-hero {
	align-items: center;
	background: var(--ink-900);
	color: #fff;
	display: flex;
	min-height: clamp(620px, 88vh, 820px);
	overflow: hidden;
	position: relative;
}

.tw-hero video,
.tw-hero__fallback {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.tw-hero__fallback {
	background:
		radial-gradient(ellipse at 70% 20%, rgba(31, 95, 163, 0.35), transparent 55%),
		radial-gradient(ellipse at 20% 80%, rgba(0, 165, 200, 0.18), transparent 60%),
		linear-gradient(135deg, #0a1628, #07203d 50%, #0f1216);
}

.tw-hero::after {
	background:
		linear-gradient(90deg, rgba(15, 18, 22, 0.8), rgba(15, 18, 22, 0.48), rgba(15, 18, 22, 0.18)),
		linear-gradient(180deg, transparent 60%, rgba(15, 18, 22, 0.65));
	content: "";
	inset: 0;
	position: absolute;
}

.tw-hero__inner {
	margin: 0 auto;
	max-width: var(--container);
	padding: 96px var(--gutter);
	position: relative;
	width: 100%;
	z-index: 1;
}

.tw-hero h1 {
	color: #fff;
	font-size: clamp(42px, 6vw, 72px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 0 24px;
	max-width: 920px;
}

.tw-hero p {
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
	max-width: 620px;
}

.tw-hero__meta {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	margin-top: 56px;
	padding-top: 24px;
}

.tw-hero__meta span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 700;
}

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

.tw-grid--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.tw-card,
.tw-proof-card,
.tw-feature,
.tw-case-card,
.tw-download-card {
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(15, 18, 22, 0.04);
	padding: 24px;
}

.tw-proof-card h3,
.tw-feature h3 {
	font-size: 17px;
	margin: 16px 0 8px;
}

.tw-proof-card p,
.tw-feature p,
.tw-card p {
	color: var(--ink-600);
	line-height: 1.6;
	margin: 0;
}

.tw-icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 6px;
	color: var(--blue-600);
	display: inline-flex;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.tw-split {
	align-items: center;
	display: grid;
	gap: clamp(32px, 6vw, 72px);
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.tw-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-check-list li {
	border-bottom: 1px solid var(--ink-100);
	padding: 14px 0 14px 30px;
	position: relative;
}

.tw-check-list li::before {
	color: var(--blue-600);
	content: "\2713";
	font-weight: 800;
	left: 0;
	position: absolute;
}

.tw-product-card {
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: 6px;
	overflow: hidden;
}

.tw-home-product-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 48px;
	text-align: left;
}

.tw-home-product-card {
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(15, 18, 22, 0.06);
	overflow: hidden;
}

.tw-home-product-card > .wp-block-image {
	aspect-ratio: 5 / 3;
	background: var(--ink-900);
	margin: 0;
	overflow: hidden;
}

.tw-home-product-card > .wp-block-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tw-home-product-card__body {
	padding: 24px;
}

.tw-home-product-card__specs {
	border-top: 1px solid var(--ink-100);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 20px 0;
	padding-top: 16px;
}

.tw-home-product-card__spec {
	color: var(--ink-900);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
}

.tw-product-card__image {
	aspect-ratio: 4 / 3;
	background: var(--ink-50);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tw-product-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tw-product-card__body {
	padding: 24px;
}

.tw-product-card__specs,
.tw-spec-highlights {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 24px 0;
}

.tw-product-card__specs div,
.tw-spec-highlights div {
	background: var(--ink-50);
	padding: 16px;
}

.tw-product-card__specs span,
.tw-spec-highlights span {
	color: var(--ink-500);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tw-product-card__specs strong,
.tw-spec-highlights strong {
	color: var(--ink-900);
	display: block;
	font-size: 28px;
	line-height: 1.1;
	margin-top: 6px;
}

.tw-pdp-hero {
	background:
		radial-gradient(circle at 15% 20%, rgba(0, 165, 200, 0.12), transparent 32%),
		linear-gradient(135deg, #fff, #f5f8fb);
	border-bottom: 1px solid var(--ink-100);
	padding: clamp(64px, 8vw, 104px) var(--gutter);
}

.tw-pdp-hero__inner {
	align-items: center;
	display: grid;
	gap: clamp(40px, 7vw, 88px);
	grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
	margin: 0 auto;
	max-width: var(--container);
}

.tw-pdp-hero__panel {
	align-items: center;
	display: flex;
	justify-content: center;
}

.tw-pdp-hero__panel img {
	filter: drop-shadow(0 24px 32px rgba(15, 18, 22, 0.18));
	max-height: 560px;
	object-fit: contain;
}

.tw-spec,
.tw-features,
.tw-downloads,
.tw-othermods,
.tw-archive-list,
.tw-case-facts {
	padding: clamp(56px, 7vw, 88px) var(--gutter);
}

.tw-spec__inner,
.tw-features__inner,
.tw-downloads__inner,
.tw-othermods__inner,
.tw-archive-list__inner,
.tw-case-facts__inner {
	margin: 0 auto;
	max-width: var(--container);
}

.tw-spec-groups {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tw-spec-group {
	border: 1px solid var(--ink-100);
	border-radius: 6px;
	overflow: hidden;
}

.tw-spec-group h3 {
	background: var(--ink-900);
	color: #fff;
	font-size: 15px;
	margin: 0;
	padding: 14px 18px;
}

.tw-spec-row {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	padding: 14px 18px;
}

.tw-spec-row + .tw-spec-row {
	border-top: 1px solid var(--ink-100);
}

.tw-spec-row dt {
	color: var(--ink-600);
	font-size: 14px;
}

.tw-spec-row dd {
	font-weight: 700;
	margin: 0;
	text-align: right;
}

.tw-video-frame {
	aspect-ratio: 16 / 9;
	background: var(--ink-900);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.tw-video-frame iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.tw-case-row {
	align-items: center;
	border-bottom: 1px solid var(--ink-100);
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
	padding: clamp(40px, 6vw, 72px) 0;
}

.tw-case-row__image {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	overflow: hidden;
}

.tw-case-row__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tw-fact-list {
	display: grid;
	gap: 1px;
}

.tw-fact-list div {
	background: var(--paper-2);
	display: grid;
	gap: 16px;
	grid-template-columns: 160px 1fr;
	padding: 16px 18px;
}

.tw-fact-list dt {
	color: var(--ink-500);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tw-fact-list dd {
	margin: 0;
}

.tw-notice {
	background: var(--blue-50);
	border: 1px solid var(--blue-100);
	border-radius: 6px;
	color: var(--blue-700);
	padding: 18px 20px;
}

.tw-doc-list {
	border: 1px solid var(--ink-100);
	border-radius: 6px;
	margin: 24px 0;
	overflow: hidden;
}

.tw-doc-list__row {
	align-items: center;
	display: grid;
	gap: 16px;
	grid-template-columns: 220px 1fr;
	padding: 16px 18px;
}

.tw-doc-list__row + .tw-doc-list__row {
	border-top: 1px solid var(--ink-100);
}

.tw-doc-list__model {
	color: var(--ink-900);
	font-weight: 800;
	margin: 0;
}

.tw-doc-list__files {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tw-doc-list__file {
	background: var(--ink-50);
	border: 1px solid var(--ink-100);
	border-radius: 4px;
	color: var(--ink-600);
	font-size: 13px;
	font-weight: 700;
	margin: 0;
	padding: 7px 10px;
}

.tw-form-shell {
	background: var(--paper-2);
	padding: clamp(56px, 7vw, 88px) var(--gutter);
}

.tw-form-shell__inner {
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: 8px;
	display: grid;
	gap: 32px;
	grid-template-columns: 0.8fr 1.2fr;
	margin: 0 auto;
	max-width: 1120px;
	padding: clamp(24px, 5vw, 48px);
}

@media (max-width: 980px) {
	.tw-grid--5,
	.tw-grid--3,
	.tw-home-product-grid,
	.tw-spec-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tw-split,
	.tw-pdp-hero__inner,
	.tw-case-row,
	.tw-form-shell__inner {
		grid-template-columns: 1fr;
	}

	.tw-site-header__inner {
		align-items: flex-start;
		padding-bottom: 14px;
		padding-top: 14px;
	}

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

	.tw-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.tw-site-header__inner {
		flex-wrap: nowrap;
		min-height: 64px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.tw-site-header__logo img {
		max-width: min(196px, 58vw);
	}

	.tw-site-header__actions {
		display: none !important;
	}

	.tw-site-footer,
	.tw-footer {
		padding-top: 56px;
	}

	.tw-footer__grid,
	.tw-site-footer__grid {
		grid-template-columns: 1fr;
	}

	.tw-footer__bottom,
	.tw-site-footer__bottom {
		margin-top: 40px;
	}

	.tw-grid--5,
	.tw-grid--3,
	.tw-home-product-grid,
	.tw-spec-groups,
	.tw-product-card__specs,
	.tw-spec-highlights,
	.tw-home-product-card__specs,
	.tw-doc-list__row {
		grid-template-columns: 1fr;
	}

	.tw-hero {
		min-height: 680px;
	}

	.tw-hero h1 {
		font-size: 34px;
		line-height: 1.08;
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.tw-hero p {
		font-size: 16px;
		max-width: 100%;
	}

	.tw-hero__inner {
		padding-bottom: 56px;
		padding-top: 80px;
	}

	.tw-hero__meta {
		gap: 14px 20px;
	}

	.tw-spec-row,
	.tw-fact-list div {
		grid-template-columns: 1fr;
	}

	.tw-spec-row dd {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.tw-hero__inner,
	.tw-section > .alignwide,
	.tw-section > .wp-block-group.alignwide {
		max-width: 350px !important;
		width: 350px;
	}

	.tw-hero h1 {
		font-size: 30px;
	}

	.wp-block-button__link {
		max-width: 100%;
	}
}

/* Core Tongwei Solar design tokens shared by the frontend and Site Editor. */
:root {
	--brand-orange-warm: #f08020;
	--brand-yellow: #fdd000;
	--brand-red: #e30613;
	--brand-ink: #231815;
	--blue-200: #aecbe8;
	--blue-300: #7da8d5;
	--blue-400: #4a82bd;
	--blue-800: #0c2c53;
	--ink-400: #818892;
	--cyan-100: #d6f0f6;
	--cyan-600: #0089a6;
	--fg-1: var(--ink-900);
	--fg-2: var(--ink-600);
	--fg-3: var(--ink-400);
	--fg-on-dark: #fff;
	--bg-1: var(--paper);
	--bg-2: var(--paper-2);
	--bg-3: var(--ink-50);
	--border-1: var(--ink-100);
	--border-2: var(--ink-200);
	--font-sans: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-mono: "Noto Sans Condensed", ui-monospace, "SF Mono", Menlo, monospace;
	--shadow-1: 0 1px 0 rgba(15, 18, 22, 0.04), 0 1px 2px rgba(15, 18, 22, 0.06);
	--shadow-2: 0 1px 0 rgba(15, 18, 22, 0.04), 0 4px 12px rgba(15, 18, 22, 0.08);
}

.wp-block-post-content > .tw-hero,
.wp-block-post-content > .tw-proof,
.wp-block-post-content > .tw-installers,
.wp-block-post-content > .tw-range,
.wp-block-post-content > .tw-videos,
.wp-block-post-content > .tw-localsupport,
.editor-styles-wrapper .tw-hero,
.editor-styles-wrapper .tw-proof,
.editor-styles-wrapper .tw-installers,
.editor-styles-wrapper .tw-range,
.editor-styles-wrapper .tw-videos,
.editor-styles-wrapper .tw-localsupport {
	max-width: none !important;
	width: 100%;
}

.editor-styles-wrapper .is-root-container > div:has(> .tw-hero),
.editor-styles-wrapper .is-root-container > div:has(> .tw-proof),
.editor-styles-wrapper .is-root-container > div:has(> .tw-installers),
.editor-styles-wrapper .is-root-container > div:has(> .tw-range),
.editor-styles-wrapper .is-root-container > div:has(> .tw-videos),
.editor-styles-wrapper .is-root-container > div:has(> .tw-localsupport),
.editor-styles-wrapper .is-root-container > div:has(.tw-hero),
.editor-styles-wrapper .is-root-container > div:has(.tw-proof),
.editor-styles-wrapper .is-root-container > div:has(.tw-installers),
.editor-styles-wrapper .is-root-container > div:has(.tw-range),
.editor-styles-wrapper .is-root-container > div:has(.tw-videos),
.editor-styles-wrapper .is-root-container > div:has(.tw-localsupport),
.editor-styles-wrapper .is-root-container > div:has(.tw-hero) > div,
.editor-styles-wrapper .is-root-container > div:has(.tw-proof) > div,
.editor-styles-wrapper .is-root-container > div:has(.tw-installers) > div,
.editor-styles-wrapper .is-root-container > div:has(.tw-range) > div,
.editor-styles-wrapper .is-root-container > div:has(.tw-videos) > div,
.editor-styles-wrapper .is-root-container > div:has(.tw-localsupport) > div {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.editor-styles-wrapper .is-root-container > *,
.editor-styles-wrapper .is-root-container > .wp-block-template-part,
.editor-styles-wrapper .is-root-container > .wp-block-template-part + * {
	margin-block-start: 0 !important;
}

.editor-styles-wrapper a[href] {
	cursor: default;
}

.editor-styles-wrapper .tw-range .tw-pcard,
.editor-styles-wrapper .tw-range .tw-pcard * {
	cursor: default;
	pointer-events: none;
	user-select: none;
}

.editor-styles-wrapper .is-root-container > .wp-block-template-part:has(.tw-site-header) {
	height: 72px;
	min-height: 72px;
	overflow: visible;
}

.editor-styles-wrapper .is-root-container > .wp-block-template-part:has(.tw-site-header) .tw-site-header,
.editor-styles-wrapper .is-root-container > .wp-block-template-part:has(.tw-site-header) .tw-site-header__inner {
	height: 72px;
	min-height: 72px;
}

.tw-container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
}

.tw-site-header {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid transparent;
	backdrop-filter: saturate(180%) blur(8px);
	position: relative;
	z-index: 50;
}

.tw-site-header__inner {
	align-items: center;
	display: grid !important;
	gap: 24px;
	grid-template-columns: 1fr auto 1fr;
	height: 72px;
	margin: 0 auto;
	max-width: var(--container) !important;
	min-height: 72px;
	padding: 0 var(--gutter);
	width: 100%;
}

.tw-site-header__logo,
.tw-site-header__logo.wp-block-image {
	line-height: 0;
	margin: 0;
}

.tw-site-header__logo a {
	display: inline-flex;
	line-height: 0;
}

.tw-site-header__logo img {
	display: block;
	height: 32px !important;
	object-fit: contain;
	width: auto !important;
}

.tw-site-header__nav {
	justify-self: center;
}

.tw-site-header__nav .wp-block-navigation__container {
	gap: 36px;
}

.tw-site-header__nav a {
	color: var(--ink-800);
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 0;
	text-decoration: none;
}

.tw-site-header__nav a:hover,
.tw-site-header__nav .current-menu-item > a {
	color: var(--blue-600);
	text-decoration: none;
}

.tw-site-header__actions {
	justify-self: end;
	margin: 0;
}

.tw-site-header__actions .wp-block-button__link {
	align-items: center;
	background: var(--blue-500);
	border: 1px solid var(--blue-500);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	line-height: 1;
	padding: 13px 18px;
	text-decoration: none;
	white-space: nowrap;
}

.tw-site-header__actions .wp-block-button__link::before {
	background: currentColor;
	content: "";
	flex: 0 0 auto;
	height: 14px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92V20a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92V20a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 14px;
}

.tw-site-header__actions .wp-block-button__link:hover {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: #fff;
	text-decoration: none;
}

.page-id-10 .tw-site-header__nav a[href="/products/"],
.single-tw_product .tw-site-header__nav a[href="/products/"],
.post-type-archive-tw_product .tw-site-header__nav a[href="/products/"],
.page-id-12 .tw-site-header__nav a[href="/case-studies/"],
.single-tw_case_study .tw-site-header__nav a[href="/case-studies/"],
.post-type-archive-tw_case_study .tw-site-header__nav a[href="/case-studies/"],
.page-id-11 .tw-site-header__nav a[href="/about/"] {
	color: var(--blue-600);
	position: relative;
}

.page-id-10 .tw-site-header__nav a[href="/products/"]::after,
.single-tw_product .tw-site-header__nav a[href="/products/"]::after,
.post-type-archive-tw_product .tw-site-header__nav a[href="/products/"]::after,
.page-id-12 .tw-site-header__nav a[href="/case-studies/"]::after,
.single-tw_case_study .tw-site-header__nav a[href="/case-studies/"]::after,
.post-type-archive-tw_case_study .tw-site-header__nav a[href="/case-studies/"]::after,
.page-id-11 .tw-site-header__nav a[href="/about/"]::after {
	background: var(--blue-500);
	bottom: -22px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
}

.tw-btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	line-height: 1;
	padding: 11px 18px;
	text-decoration: none;
	transition: background 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
	white-space: nowrap;
}

.tw-btn:hover {
	text-decoration: none;
}

.tw-btn--primary {
	background: var(--blue-500);
	border-color: var(--blue-500);
	color: #fff;
}

.tw-btn--primary:hover {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: #fff;
}

.tw-btn--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.tw-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

.tw-btn--lg {
	font-size: 15px;
	padding: 14px 22px;
}

.tw-home-center-action {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.tw-home-video-action {
	margin-top: 28px;
}

.tw-hero {
	align-items: center;
	background: var(--ink-900);
	display: flex;
	height: calc(100vh - 72px);
	margin: 0;
	max-height: calc(100vh - 72px);
	min-height: 560px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

body.admin-bar .tw-hero {
	height: calc(100vh - 72px - 32px);
	max-height: calc(100vh - 72px - 32px);
}

@media (max-width: 782px) {
	body.admin-bar .tw-hero {
		height: calc(100vh - 64px - 46px);
		max-height: calc(100vh - 64px - 46px);
	}
}

.tw-hero__video,
.tw-hero__videoFallback {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.tw-hero__fallback {
	display: none;
}

.tw-hero__videoFallback {
	background:
		radial-gradient(ellipse at 70% 20%, rgba(31, 95, 163, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse at 20% 80%, rgba(0, 165, 200, 0.18) 0%, transparent 60%),
		linear-gradient(135deg, #0a1628 0%, #07203d 50%, #0f1216 100%);
}

.tw-hero__videoFallback::before,
.tw-hero__videoFallback::after {
	content: "";
	inset: 0;
	position: absolute;
}

.tw-hero__videoFallback::before {
	animation: tw-pan 24s linear infinite;
	background-image:
		linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%),
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 80px),
		repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 50px);
	opacity: 0.7;
}

.tw-hero__videoFallback::after {
	animation: tw-drift 18s ease-in-out infinite alternate;
	background:
		radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 80% 60%, rgba(0, 165, 200, 0.1) 0%, transparent 45%);
}

@keyframes tw-pan {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-160px, -100px, 0);
	}
}

@keyframes tw-drift {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	100% {
		transform: translate3d(40px, -20px, 0) scale(1.05);
	}
}

.tw-hero__overlay,
.tw-hero::after {
	background:
		linear-gradient(90deg, rgba(15, 18, 22, 0.78) 0%, rgba(15, 18, 22, 0.55) 45%, rgba(15, 18, 22, 0.2) 100%),
		linear-gradient(180deg, rgba(15, 18, 22, 0) 60%, rgba(15, 18, 22, 0.5) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.tw-hero::after {
	content: "";
}

.tw-hero__inner {
	color: #fff;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
	position: relative;
	width: 100%;
	z-index: 2;
}

.tw-hero__eyebrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	gap: 10px;
	letter-spacing: 0.12em;
	margin-bottom: 28px;
	padding: 8px 14px;
	text-transform: uppercase;
}

.tw-dot,
.tw-hero__eyebrow .tw-dot {
	background: var(--cyan-500);
	border-radius: 99px;
	box-shadow: 0 0 10px var(--cyan-500);
	height: 6px;
	width: 6px;
}

.tw-hero__title,
.tw-hero h1 {
	color: #fff;
	font-family: var(--font-display);
	font-size: 72px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 0 24px;
	max-width: 920px;
}

.tw-hero__lead,
.tw-hero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.55;
	margin: 0 0 36px;
	max-width: 580px;
}

.tw-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.tw-hero__meta {
	background: linear-gradient(180deg, transparent 0%, rgba(15, 18, 22, 0.6) 100%);
	border-top: 0;
	bottom: 0;
	display: block;
	gap: 0;
	left: 0;
	margin-top: 0;
	padding-top: 0;
	position: absolute;
	right: 0;
	z-index: 2;
}

.tw-hero__meta-inner {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	font-size: 13px;
	gap: 32px;
	justify-content: center;
	margin: 0 auto;
	max-width: var(--container);
	padding: 24px var(--gutter);
}

.tw-hero__meta .tw-hero__meta-item {
	align-items: center;
	display: inline-flex;
	font-weight: 500;
	gap: 8px;
}

.tw-hero__meta-item svg {
	color: var(--cyan-500);
	flex: 0 0 auto;
}

.tw-hero__meta-divider {
	background: rgba(255, 255, 255, 0.18);
	height: 14px;
	width: 1px;
}

.tw-proof {
	background: #fff;
	border-bottom: 1px solid var(--border-1);
	padding: 72px 0;
}

.tw-proof__head {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
	margin-bottom: 40px;
}

.tw-proof__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0;
}

.tw-proof__sub {
	color: var(--fg-2);
	font-size: 14px;
	line-height: 1.55;
	margin: 12px 0 0;
	max-width: 520px;
}

.tw-proof__grid {
	border-bottom: 1px solid var(--border-1);
	border-left: 1px solid var(--border-1);
	border-right: 1px solid var(--border-1);
	border-top: 1px solid var(--border-1);
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tw-proof__item {
	border-right: 1px solid var(--border-1);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px 24px;
}

.tw-proof__item:last-child {
	border-right: 0;
}

.tw-proof__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 4px;
	color: var(--blue-600);
	display: flex;
	flex: 0 0 auto;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.tw-proof__h {
	color: var(--ink-900);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0;
}

.tw-proof__d {
	color: var(--fg-2);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.tw-installers {
	background: var(--ink-900);
	color: var(--fg-on-dark);
	overflow: hidden;
	padding: 96px 0;
	position: relative;
}

.tw-installers::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	content: "";
	inset: 0;
	mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
	pointer-events: none;
	position: absolute;
}

.tw-installers__inner {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	position: relative;
	z-index: 1;
}

.tw-installers__eb,
.tw-installers__list-eb {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tw-installers__eb {
	color: var(--cyan-500);
	margin: 0 0 16px;
}

.tw-installers__title {
	color: #fff;
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 24px;
}

.tw-installers__lead {
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 28px;
	max-width: 480px;
}

.tw-installers__list-eb {
	color: rgba(255, 255, 255, 0.55);
	margin: 6px 0 24px;
}

.tw-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-checklist li {
	align-items: flex-start;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.92);
	display: flex;
	font-size: 16px;
	gap: 14px;
	line-height: 1.45;
	padding: 18px 0;
}

.tw-checklist li:last-child {
	border-bottom: 0;
}

.tw-checklist__icon {
	align-items: center;
	background: var(--cyan-500);
	border-radius: 99px;
	color: var(--ink-900);
	display: flex;
	flex: 0 0 auto;
	height: 22px;
	justify-content: center;
	margin-top: 2px;
	width: 22px;
}

.tw-range {
	background: var(--paper-2);
	padding: 96px 0;
}

.tw-range__head {
	margin-bottom: 56px;
	text-align: center;
}

.tw-range__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 14px;
}

.tw-range__sub {
	color: var(--fg-2);
	font-size: 17px;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 540px;
}

.tw-range__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.tw-pcard {
	background: #fff;
	border: 1px solid var(--border-1);
	border-radius: 6px;
	box-shadow: var(--shadow-1);
	color: inherit;
	cursor: pointer;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 200ms ease-out, box-shadow 200ms ease-out, transform 200ms ease-out;
}

.tw-pcard:hover,
.tw-pcard:focus-visible {
	border-color: var(--ink-200);
	box-shadow: var(--shadow-2);
	outline: none;
	text-decoration: none;
	transform: translateY(-2px);
}

.tw-pcard:focus-visible {
	box-shadow: 0 0 0 3px rgba(31, 95, 163, 0.28), var(--shadow-2);
}

.tw-pcard__img {
	aspect-ratio: 5 / 3;
	background: #0a1220 center 65% / cover no-repeat;
	overflow: hidden;
	position: relative;
}

.tw-pcard__img::before {
	background: linear-gradient(180deg, rgba(8, 14, 24, 0) 50%, rgba(8, 14, 24, 0.45) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tw-pcard__img::after {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tw-pcard__tag {
	background: var(--ink-900);
	border-radius: 2px;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	left: 14px;
	letter-spacing: 0.1em;
	padding: 5px 9px;
	position: absolute;
	text-transform: uppercase;
	top: 14px;
	z-index: 2;
}

.tw-pcard__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.tw-pcard__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0;
}

.tw-pcard__sub {
	color: var(--fg-2);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.tw-pcard__specs {
	border-top: 1px solid var(--border-1);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: auto;
	padding-top: 18px;
}

.tw-pcard__spec {
	border-right: 1px solid var(--border-1);
	padding: 0 12px;
}

.tw-pcard__spec:first-child {
	padding-left: 0;
}

.tw-pcard__spec:last-child {
	border-right: 0;
	padding-right: 0;
}

.tw-pcard__spec span {
	color: var(--fg-3);
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.tw-pcard__spec b {
	color: var(--ink-900);
	font-family: var(--font-mono);
	font-feature-settings: "tnum";
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}

.tw-pcard__cta {
	align-items: center;
	color: var(--blue-600);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 6px;
	line-height: 1;
	margin-top: 4px;
	text-decoration: none;
	transition: gap 150ms ease-out;
}

.tw-pcard__cta svg {
	display: block;
	flex: 0 0 auto;
}

.tw-pcard:hover .tw-pcard__cta {
	gap: 10px;
	text-decoration: none;
}

.tw-videos {
	background: var(--bg-1);
	border-top: 1px solid var(--border-1);
	padding: 0;
}

.tw-videos--split {
	padding: 80px 0;
}

.tw-videos__inner {
	margin: 0;
	max-width: none;
	padding: 0;
}

.tw-videos__split {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 48px;
}

.tw-testimonial {
	margin: 0 auto;
	max-width: 1080px;
	padding: 96px 32px 72px;
	position: relative;
	text-align: left;
}

.tw-testimonial--compact {
	margin: 0;
	max-width: none;
	padding: 0;
}

.tw-testimonial__mark {
	color: var(--cyan-500);
	display: block;
	font-family: var(--font-display);
	font-size: 140px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 0.6;
	margin: 0 0 8px -8px;
	user-select: none;
}

.tw-testimonial--compact .tw-testimonial__mark {
	font-size: 112px;
	margin-bottom: 0;
}

.tw-testimonial__quote {
	color: var(--fg-1);
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 28px;
	max-width: none;
}

.tw-testimonial__cite {
	align-items: center;
	column-gap: 20px;
	display: grid;
	font-style: normal;
	grid-template-columns: 56px 1fr;
	padding-top: 4px;
	row-gap: 4px;
}

.tw-testimonial__rule {
	align-self: center;
	background: var(--fg-1);
	grid-row: 1 / span 2;
	height: 1px;
	width: 56px;
}

.tw-testimonial__name {
	color: var(--fg-1);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.tw-testimonial__role {
	color: var(--fg-2);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.4;
}

.tw-video {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.tw-video--split {
	margin: 0;
	max-width: none;
}

.tw-video__frame {
	aspect-ratio: 16 / 9;
	background: #0a1220;
	border: 1px solid var(--border-1);
	border-radius: 8px;
	cursor: pointer;
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.tw-video__frame--embed {
	cursor: default;
}

.tw-video__frame iframe {
	border: 0;
	display: block;
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.tw-video--split .tw-video__frame {
	border: 1px solid var(--border-1);
	border-radius: 8px;
	box-shadow: 0 24px 48px rgba(15, 18, 22, 0.12), 0 6px 14px rgba(15, 18, 22, 0.06);
	overflow: hidden;
}

.tw-video__play {
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	border: 0;
	border-radius: 99px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
	color: var(--ink-900);
	cursor: pointer;
	display: flex;
	height: 76px;
	justify-content: center;
	left: 50%;
	margin-left: -38px;
	margin-top: -38px;
	padding-left: 4px;
	position: absolute;
	top: 50%;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 200ms ease-out, background 200ms ease-out;
	width: 76px;
	z-index: 2;
}

.tw-video__play--corner {
	background: #fff;
	bottom: 24px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
	height: 64px;
	left: auto;
	margin: 0;
	right: 24px;
	top: auto;
	transform: none;
	width: 64px;
}

.tw-video__frame:hover .tw-video__play--corner {
	background: #fff;
	transform: scale(1.06);
}

.tw-video__play-ring {
	animation: tw-vidpulse 2.4s ease-out infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 99px;
	inset: -8px;
	position: absolute;
}

@keyframes tw-vidpulse {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
	}

	70%,
	100% {
		opacity: 0;
		transform: scale(1.25);
	}
}

.tw-localsupport {
	background-color: var(--ink-900);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--fg-on-dark);
	overflow: hidden;
	padding: 112px 0;
	position: relative;
	text-align: center;
}

.tw-localsupport::before {
	background: linear-gradient(180deg, rgba(8, 14, 22, 0.55) 0%, rgba(8, 14, 22, 0.62) 45%, rgba(8, 14, 22, 0.55) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tw-localsupport::after {
	background:
		radial-gradient(ellipse 75% 65% at 50% 45%, rgba(8, 14, 22, 0.4) 0%, transparent 80%),
		radial-gradient(ellipse at 20% 100%, rgba(0, 165, 200, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 0%, rgba(31, 95, 163, 0.1) 0%, transparent 50%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tw-localsupport__inner {
	margin: 0 auto;
	max-width: 760px;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}

.tw-localsupport__title {
	color: #fff;
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 18px;
	text-shadow: 0 2px 14px rgba(8, 14, 22, 0.55);
}

.tw-localsupport__lead {
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin: 0 auto 32px;
	max-width: 580px;
	text-shadow: 0 1px 6px rgba(8, 14, 22, 0.85), 0 2px 18px rgba(8, 14, 22, 0.65);
}

.tw-localsupport__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

@media (max-width: 1024px) {
	.tw-hero__title,
	.tw-hero h1 {
		font-size: 56px;
	}

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

	.tw-proof__item:nth-child(3n) {
		border-right: 0;
	}

	.tw-installers__inner,
	.tw-videos__split {
		grid-template-columns: 1fr;
	}

	.tw-range__grid {
		flex-direction: column;
	}

	.tw-videos__split {
		gap: 40px;
		padding: 0 24px;
	}
}

@media (max-width: 720px) {
	:root {
		--gutter: 20px;
	}

	.tw-hero {
		height: auto;
		max-height: none;
		min-height: 720px;
	}

	.tw-hero__inner {
		max-width: none !important;
		padding: 80px var(--gutter) 140px;
		min-width: 0;
		overflow: hidden;
		width: 100%;
	}

	.tw-hero__eyebrow {
		font-size: 11px;
		line-height: 1.35;
		max-width: 100%;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.tw-hero__title,
	.tw-hero h1 {
		font-size: 42px;
		line-height: 1.07;
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.tw-hero__lead,
	.tw-hero p {
		font-size: 16px;
		max-width: 100%;
	}

	.tw-hero__ctas,
	.tw-localsupport__ctas {
		align-items: stretch;
		flex-direction: column;
	}

	.tw-hero__ctas .tw-btn,
	.tw-localsupport__ctas .tw-btn {
		justify-content: center;
		line-height: 1.3;
		min-width: 0;
		overflow-wrap: anywhere;
		text-align: center;
		white-space: normal;
		width: 100%;
	}

	.tw-container,
	.tw-proof__grid,
	.tw-proof__item,
	.tw-pcard,
	.tw-pcard__body {
		min-width: 0;
	}

	.tw-proof__title,
	.tw-proof__sub,
	.tw-proof__h,
	.tw-proof__d,
	.tw-pcard__title,
	.tw-pcard__sub,
	.tw-installers__title,
	.tw-installers__lead,
	.tw-checklist li,
	.tw-testimonial__quote,
	.tw-localsupport__title,
	.tw-localsupport__lead {
		overflow-wrap: break-word;
	}

	.tw-hero__meta-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		padding-bottom: 24px;
	}

	.tw-hero__meta-divider {
		display: none;
	}

	.tw-proof,
	.tw-installers,
	.tw-range,
	.tw-videos--split,
	.tw-localsupport {
		padding: 56px 0;
	}

	.tw-proof__grid {
		grid-template-columns: 1fr;
	}

	.tw-proof__item,
	.tw-proof__item:nth-child(3n) {
		border-right: 0;
	}

	.tw-installers__inner {
		gap: 40px;
	}

	.tw-installers__title,
	.tw-localsupport__title {
		font-size: 36px;
	}

	.tw-range__title {
		font-size: 34px;
	}

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

	.tw-testimonial__mark,
	.tw-testimonial--compact .tw-testimonial__mark {
		font-size: 88px;
	}

	.tw-testimonial__quote {
		font-size: 24px;
	}

	.tw-video__play--corner {
		bottom: 16px;
		height: 56px;
		right: 16px;
		width: 56px;
	}
}

@media (max-width: 430px) {
	.tw-hero__title,
	.tw-hero h1 {
		font-size: 32px;
	}

	.tw-hero__eyebrow {
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.tw-btn {
		font-size: 13px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.tw-pcard__specs {
		grid-template-columns: 1fr;
	}

	.tw-pcard__spec,
	.tw-pcard__spec:first-child,
	.tw-pcard__spec:last-child {
		border-right: 0;
		padding: 8px 0;
	}
}

/* Subpage layout selectors for matching frontend and editor rendering. */
.wp-block-post-content > .tw-pagehero,
.wp-block-post-content > .tw-page-section,
.wp-block-post-content > .tw-cta-strip,
.wp-block-post-content > .tw-contact-split,
.editor-styles-wrapper .tw-pagehero,
.editor-styles-wrapper .tw-page-section,
.editor-styles-wrapper .tw-cta-strip,
.editor-styles-wrapper .tw-contact-split {
	max-width: none !important;
	width: 100%;
}

.tw-pagehero {
	background: var(--bg-2);
	border-bottom: 1px solid var(--border-1);
	overflow: hidden;
	padding: 80px 0 72px;
	position: relative;
}

.tw-pagehero::after {
	background-image:
		linear-gradient(rgba(31, 95, 163, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 95, 163, 0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
	opacity: 0.6;
	pointer-events: none;
	position: absolute;
}

.tw-pagehero__inner {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
	position: relative;
	z-index: 2;
}

.tw-pagehero__eb,
.tw-section-head__eb,
.tw-about-block__eb {
	align-items: center;
	color: var(--blue-600);
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	gap: 8px;
	letter-spacing: 0.12em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.tw-pagehero__eb .tw-dot,
.tw-section-head__eb .tw-dot {
	background: var(--cyan-500);
	border-radius: 99px;
	height: 6px;
	width: 6px;
}

.tw-pagehero__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 20px;
	max-width: 920px;
	text-wrap: balance;
}

.tw-pagehero__lead {
	color: var(--fg-2);
	font-size: 18px;
	line-height: 1.55;
	margin: 0;
	max-width: 720px;
}

.tw-pagehero--photo {
	background-color: #07203d;
	border-bottom: 0;
	min-height: 380px;
	padding: 144px 0 112px;
}

.tw-pagehero--photo::before {
	background-image: var(--pagehero-img);
	background-position: var(--pagehero-pos, center 45%);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.tw-pagehero--photo::after {
	background:
		linear-gradient(180deg, rgba(7, 22, 40, 0.55) 0%, rgba(7, 32, 61, 0.6) 55%, rgba(7, 22, 40, 0.85) 100%),
		linear-gradient(90deg, rgba(7, 22, 40, 0.55) 0%, rgba(7, 22, 40, 0.18) 55%, transparent 100%);
	mask-image: none;
	opacity: 1;
	z-index: 1;
}

.tw-pagehero--photo .tw-pagehero__eb {
	color: rgba(255, 255, 255, 0.88);
}

.tw-pagehero--photo .tw-pagehero__eb .tw-dot {
	background: #62c4ff;
	box-shadow: 0 0 0 4px rgba(98, 196, 255, 0.18);
}

.tw-pagehero--photo .tw-pagehero__title {
	color: #fff;
}

.tw-pagehero--photo .tw-pagehero__lead {
	color: rgba(255, 255, 255, 0.85);
}

.tw-page-section {
	background: #fff;
	padding: 80px 0;
}

.tw-privacy .tw-page-section__inner {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: 860px;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	width: 100%;
}

.tw-privacy__updated {
	color: var(--fg-3);
	font-size: 14px;
	margin: 0 0 32px;
}

.tw-privacy h2 {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1.18;
	margin: 40px 0 14px;
}

.tw-privacy h2:first-of-type {
	margin-top: 0;
}

.tw-privacy p {
	color: var(--fg-2);
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 18px;
}

.tw-privacy .wp-block-buttons {
	margin-top: 34px;
}

.tw-crumbs {
	background: #fff;
	border-bottom: 1px solid var(--border-1);
	font-size: 13px;
	padding: 14px 0;
}

.tw-crumbs--over-hero {
	background: transparent;
	border-bottom: 0;
	margin-bottom: -45px;
	padding: 16px 0 0;
	position: relative;
	z-index: 3;
}

.tw-crumbs__inner {
	align-items: center;
	color: var(--fg-3);
	display: flex;
	gap: 8px;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
}

.tw-crumbs__inner p {
	display: flex;
	gap: 8px;
	margin: 0;
}

.tw-crumbs a {
	color: var(--fg-2);
	text-decoration: none;
}

.tw-crumbs--over-hero a,
.tw-crumbs--over-hero .tw-crumbs__inner {
	color: rgba(255, 255, 255, 0.82);
}

.tw-crumbs--over-hero a:hover,
.tw-crumbs--over-hero .tw-crumbs__current {
	color: #fff !important;
}

.tw-crumbs__sep {
	color: var(--ink-200);
}

.tw-crumbs--over-hero .tw-crumbs__sep {
	color: rgba(255, 255, 255, 0.45);
}

.tw-crumbs__current {
	color: var(--ink-900) !important;
	font-weight: 500;
}

.tw-page-section--compact {
	padding: 24px 0;
}

.tw-page-section--alt {
	background: var(--bg-2);
}

.tw-page-section > .alignwide,
.tw-page-section > .wp-block-group.alignwide {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--container) !important;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.tw-about-block {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
}

.tw-about-block--reverse .tw-about-block__copy {
	order: 2;
}

.tw-about-block__title,
.tw-section-head__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 18px;
	text-wrap: balance;
}

.tw-about-block__lead,
.tw-section-head__lead {
	color: var(--fg-2);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 20px;
}

.tw-section-head {
	margin-bottom: 40px;
}

.tw-section-head--center {
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
	text-align: center;
}

.tw-about-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-about-list li {
	align-items: flex-start;
	border-bottom: 1px solid var(--border-1);
	color: var(--fg-1);
	display: flex;
	font-size: 15px;
	gap: 12px;
	line-height: 1.55;
	padding: 14px 0;
}

.tw-about-list__bullet {
	background: var(--cyan-500);
	border-radius: 99px;
	flex: 0 0 auto;
	height: 8px;
	margin-top: 8px;
	width: 8px;
}

.tw-img-ph {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	margin: 0;
	overflow: hidden;
}

.tw-img-ph img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tw-intro-sheet {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	margin: 32px auto 0;
	max-width: 980px;
	padding: 18px;
}

.tw-intro-sheet img {
	border-radius: 16px;
	width: 100%;
}

.tw-intro-sheet figcaption {
	color: var(--fg-2);
	font-size: 14px;
	margin-top: 12px;
	text-align: center;
}

.tw-pillars,
.tw-claim-steps {
	align-items: stretch;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 48px;
}

.tw-pillars {
	border: 1px solid var(--border-1);
	border-radius: 6px;
	overflow: hidden;
}

.tw-claim-steps {
	border-top: 1px solid var(--border-1);
}

.tw-pillars > *,
.tw-faq-cats > *,
.tw-claim-steps > * {
	margin-block-start: 0 !important;
}

.tw-pillar,
.tw-claim-step {
	align-self: stretch;
	border-right: 1px solid var(--border-1);
	display: flex;
	flex-direction: column;
	height: 332px;
	min-height: 332px;
	padding: 32px 24px;
	text-align: center;
}

.tw-pillar {
	align-items: center;
	align-content: center;
	display: grid;
	grid-template-rows: auto auto auto;
	height: 320px;
	justify-content: center;
	justify-items: center;
	min-height: 320px;
	row-gap: 12px;
}

.tw-pillar__icon {
	align-self: end;
	margin-bottom: 0;
}

.tw-pillar__h {
	align-self: center;
	margin-bottom: 0;
}

.tw-pillar__d {
	align-self: start;
	max-width: 340px;
}

.tw-pillar:last-child,
.tw-claim-step:last-child {
	border-right: 0;
}

.tw-pillar__icon,
.tw-faq-cat__icon,
.tw-claim-step__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 99px;
	color: var(--blue-600);
	display: flex;
	height: 56px;
	justify-content: center;
	margin: 0 auto 16px;
	width: 56px;
}

.tw-pillar__h,
.tw-faq-cat__h,
.tw-claim-step__h,
.tw-warranty-card__h {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0 0 8px;
}

.tw-pillar__d,
.tw-faq-cat__d,
.tw-claim-step__d,
.tw-warranty-card__d {
	color: var(--fg-2);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.tw-modulelist {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tw-modulelist__row {
	align-items: center;
	border-bottom: 1px solid var(--border-1);
	display: grid;
	gap: 64px;
	grid-template-columns: 360px 1fr;
	padding: 64px 0;
}

.tw-modulelist__row:last-child {
	border-bottom: 0;
}

.tw-modulelist__visual,
.tw-pdp-hero__visual {
	align-items: center;
	aspect-ratio: 2 / 3;
	display: flex;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
}

.tw-modulelist__panel,
.tw-pdp-hero__panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: 0 22px 40px rgba(15, 18, 22, 0.14), 0 4px 10px rgba(15, 18, 22, 0.08);
	height: 100%;
	width: 100%;
}

.tw-modulelist__panel img,
.tw-pdp-hero__panel img {
	height: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.tw-modulelist__tag,
.tw-pdp-hero__tag {
	background: var(--ink-900);
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	margin-bottom: 18px;
	padding: 5px 10px;
	text-transform: uppercase;
}

.tw-modulelist__title,
.tw-pdp-hero__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: clamp(34px, 3.6vw, 44px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 16px;
}

.tw-modulelist__title a {
	color: inherit;
	text-decoration: none;
}

.tw-modulelist__lead,
.tw-pdp-hero__lead {
	color: var(--fg-2);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 28px;
	max-width: 620px;
}

.tw-modulelist__bestfor {
	margin-bottom: 28px;
}

.tw-modulelist__bestfor h4 {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 10px;
}

.tw-modulelist__bestfor ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-modulelist__bestfor li {
	color: var(--fg-1);
	font-size: 15px;
	line-height: 1.55;
	padding: 4px 0;
}

.tw-modulelist__ctas,
.tw-pdp-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tw-modulelist__ctas .tw-btn,
.tw-pdp-hero__ctas .tw-btn {
	align-items: center;
	border-radius: 4px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 11px 18px;
	text-decoration: none;
}

.tw-modulelist__ctas .tw-btn--dark,
.tw-pdp-hero__ctas .tw-btn--dark {
	background: var(--ink-900);
	border: 1px solid var(--ink-900);
	color: #fff;
}

.tw-modulelist__ctas .tw-btn--ghost,
.tw-pdp-hero__ctas .tw-btn--ghost {
	background: transparent;
	border: 1px solid var(--border-2);
	color: var(--ink-900);
}

.tw-pdp-hero {
	background: #fff;
	border-bottom: 0;
	padding: 56px 0 64px;
}

.tw-pdp-hero__inner {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 360px) 1fr;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
}

.tw-spec {
	background: var(--bg-2);
	border-bottom: 1px solid var(--border-1);
	border-top: 1px solid var(--border-1);
	padding: 72px 0;
}

.tw-spec__inner,
.tw-features__inner,
.tw-othermods__inner {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
}

.tw-spec__head {
	align-items: baseline;
	border-bottom: 1px solid var(--border-1);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	margin: 0 0 28px;
	padding-bottom: 16px;
}

.tw-spec__title,
.tw-features__title,
.tw-othermods__title {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0;
}

.tw-spec__model {
	color: var(--fg-3);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tw-spec__hi {
	background: var(--border-1);
	border: 1px solid var(--border-1);
	border-radius: 8px;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 40px;
	overflow: hidden;
}

.tw-spec__hi-cell {
	background: #fff;
	padding: 28px 24px;
}

.tw-spec__hi-value {
	align-items: baseline;
	color: var(--ink-900);
	display: flex;
	font-family: var(--font-display);
	gap: 4px;
	margin: 0 0 6px;
}

.tw-spec__hi-num {
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.tw-spec__hi-unit {
	color: var(--fg-2);
	font-size: 18px;
	font-weight: 600;
}

.tw-spec__hi-label,
.tw-spec__foot {
	color: var(--fg-3);
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}

.tw-spec__groups,
.tw-features__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.tw-spec__group,
.tw-feature {
	background: #fff;
	border: 1px solid var(--border-1);
	border-radius: 8px;
	padding: 24px 24px 8px;
}

.tw-spec__group-title {
	border-bottom: 1px solid var(--border-1);
	color: var(--ink-900);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 14px;
	padding-bottom: 12px;
	text-transform: uppercase;
}

.tw-spec__list {
	margin: 0;
	padding: 0;
}

.tw-spec__row {
	border-bottom: 1px solid var(--border-1);
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr auto;
	padding: 11px 0;
}

.tw-spec__row dt,
.tw-spec__row dd {
	font-size: 13px;
	margin: 0;
}

.tw-spec__row dt {
	color: var(--fg-2);
	font-weight: 500;
}

.tw-spec__row dd {
	color: var(--ink-900);
	font-weight: 600;
	text-align: right;
}

.tw-features,
.tw-othermods {
	background: #fff;
	padding: 64px 0;
}

.tw-features__title,
.tw-othermods__title {
	font-size: 22px;
	margin-bottom: 28px;
}

.tw-features__grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.tw-feature {
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.tw-feature__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 4px;
	color: var(--blue-600);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.tw-feature__h {
	color: var(--ink-900);
	font-size: 15px;
	font-weight: 700;
	margin: 0;
}

.tw-feature__d {
	color: var(--fg-2);
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.tw-othermods__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr;
}

.tw-othermod {
	color: inherit;
	display: block;
	text-decoration: none;
}

.tw-othermod__visual {
	align-items: center;
	aspect-ratio: 16 / 9;
	background: linear-gradient(180deg, #f4f6f8 0%, #e6eaef 100%);
	border: 1px solid var(--border-1);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
	overflow: hidden;
}

.tw-othermod__visual img {
	max-height: 88%;
	max-width: 38%;
	object-fit: contain;
}

.tw-othermod__title {
	color: var(--ink-900);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
}

.tw-othermod__lead {
	color: var(--fg-2);
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 10px;
}

.tw-othermod__cta {
	color: var(--blue-600);
	font-size: 13px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tw-cases {
	display: flex;
	flex-direction: column;
}

.tw-case {
	align-items: start;
	border-bottom: 1px solid var(--border-1);
	display: grid;
	gap: 56px;
	grid-template-columns: 480px 1fr;
	padding: 56px 0;
}

.tw-case__visual {
	aspect-ratio: 4 / 3;
	background: #0f1216;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.tw-case__visual--photo::before {
	background-image: var(--case-img);
	background-position: center;
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
}

.tw-case__visual--photo::after {
	background: linear-gradient(0deg, rgba(7, 22, 40, 0.75) 0%, rgba(7, 22, 40, 0.2) 50%, rgba(7, 22, 40, 0.05) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.tw-case__loc {
	align-items: center;
	bottom: 16px;
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	gap: 6px;
	left: 18px;
	letter-spacing: 0.1em;
	position: absolute;
	text-transform: uppercase;
	z-index: 2;
}

.tw-case__title {
	color: var(--ink-900);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 24px;
}

.tw-case__title a {
	color: inherit;
	text-decoration: none;
}

.tw-case__row {
	align-items: baseline;
	border-top: 1px solid var(--border-1);
	display: grid;
	gap: 16px;
	grid-template-columns: 130px 1fr;
	padding: 12px 0;
}

.tw-case__row:first-child {
	border-top: 0;
	padding-top: 6px;
}

.tw-case__rowlabel {
	color: var(--fg-3);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tw-case__rowvalue {
	color: var(--ink-900);
	font-size: 15px;
	line-height: 1.5;
}

.tw-case__cta {
	align-items: center;
	background: var(--blue-600);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
	margin-top: 24px;
	padding: 13px 18px;
	text-decoration: none;
}

.tw-case__cta:hover,
.tw-case__cta:focus-visible {
	background: var(--blue-700);
	color: #fff;
	text-decoration: none;
}

.tw-case__cta svg {
	display: block;
	flex: 0 0 auto;
}

.tw-doclist {
	list-style: none;
	margin: 16px 0 24px;
	padding: 0;
}

.tw-doclist > li {
	border-bottom: 1px solid var(--border-1);
	padding: 14px 0;
}

.tw-doclist__row {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.tw-doclist__model {
	color: var(--ink-900);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
}

.tw-doclist__files {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tw-doclist__file {
	background: #fff;
	border: 1px solid var(--border-1);
	border-radius: 4px;
	color: var(--blue-600);
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	text-decoration: none;
	transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.tw-doclist__file:hover,
.tw-doclist__file:focus-visible {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: #fff;
}

.tw-form {
	background: #fff;
	padding: 64px 0;
}

.tw-form__inner {
	margin: 0 auto;
	max-width: 760px;
	padding: 0 var(--gutter);
}

.tw-form__intro {
	margin-bottom: 32px;
}

.tw-form__intro-eb {
	color: var(--fg-2);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.tw-form__intro-h {
	color: var(--fg-1);
	font-family: var(--font-display);
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 8px;
}

.tw-form__intro-d {
	color: var(--fg-2);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 60ch;
}

.tw-form .gform_wrapper.gravity-theme .gform_fields {
	display: grid;
	gap: 24px 32px;
	grid-template-columns: 1fr 1fr;
}

.tw-form .gform-theme {
	--gf-color-primary: var(--ink-900) !important;
	--gf-ctrl-btn-bg-color-primary: var(--ink-900) !important;
	--gf-ctrl-btn-bg-color-hover-primary: var(--ink-800) !important;
	--gf-ctrl-btn-border-color-primary: var(--ink-900) !important;
}

.tw-form .gform_fields {
	display: grid !important;
	gap: 24px 32px !important;
	grid-template-columns: 1fr 1fr !important;
}

.tw-form .gform_legacy_markup_wrapper .gform_body,
.tw-form .gform_legacy_markup_wrapper .gform_footer {
	margin: 0;
	padding: 0;
}

.tw-form .gform_legacy_markup_wrapper ul.gform_fields {
	display: grid !important;
	gap: 24px 32px !important;
	grid-template-columns: 1fr 1fr !important;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}

.tw-form .gfield {
	grid-column: auto !important;
	margin: 0 !important;
}

.tw-form .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
	clear: none;
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
}

.tw-form .gfield:nth-child(3) .gfield_description,
.tw-form .gfield:nth-child(3) .gform-field-label {
	max-width: 100%;
}

.tw-form .gform_wrapper.gravity-theme .gfield_label {
	color: var(--ink-900);
	font-size: 13px;
	font-weight: 600;
}

.tw-form .gfield_required_text {
	font-size: 0;
}

.tw-form .gfield_required_text::before {
	content: "*";
	font-size: 13px;
}

.tw-form .gform_wrapper.gravity-theme input[type="text"],
.tw-form .gform_wrapper.gravity-theme input[type="email"],
.tw-form .gform_wrapper.gravity-theme select,
.tw-form .gform_wrapper.gravity-theme textarea,
.tw-form .gform_legacy_markup_wrapper input[type="text"],
.tw-form .gform_legacy_markup_wrapper input[type="email"],
.tw-form .gform_legacy_markup_wrapper select,
.tw-form .gform_legacy_markup_wrapper textarea {
	border: 1px solid var(--border-2);
	border-radius: 4px;
	color: var(--ink-900);
	font-family: inherit;
	font-size: 14px;
	height: auto;
	line-height: 1.4;
	padding: 11px 14px;
	width: 100% !important;
}

.tw-form .gform_wrapper.gravity-theme input::placeholder,
.tw-form .gform_legacy_markup_wrapper input::placeholder {
	color: var(--ink-300);
}

.tw-form .gform_wrapper.gravity-theme select,
.tw-form .gform_legacy_markup_wrapper select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A626D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-position: right 14px center;
	background-repeat: no-repeat;
	padding-right: 38px;
}

.tw-form .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.tw-form .gform_legacy_markup_wrapper .gform_footer input[type="submit"] {
	background: var(--ink-900);
	border: 1px solid var(--ink-900);
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 22px;
}

.tw-form .gform_wrapper.gravity-theme .gform_footer,
.tw-form .gform_legacy_markup_wrapper .gform_footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.tw-form__legal {
	color: var(--ink-500);
	flex: 1 1 280px;
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
}

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

.tw-faq-cat,
.tw-warranty-card,
.tw-contact-card {
	background: #fff;
	border: 1px solid var(--border-1);
	border-radius: 6px;
	padding: 28px 24px;
}

.tw-faq-cat {
	display: flex;
	flex-direction: column;
	height: 320px;
	min-height: 320px;
	text-align: center;
}

.tw-claim-step {
	text-align: left;
}

.tw-claim-step__icon {
	margin-left: 0;
}

.tw-claim-step__num {
	color: var(--blue-600);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.tw-warranty-stack,
.tw-contact-split__inner {
	align-items: stretch;
	display: grid;
	gap: 56px;
	grid-template-columns: 1fr 1fr;
}

.tw-contact-split {
	background: var(--bg-2);
	border-top: 1px solid var(--border-1);
	padding: 56px 0 80px;
}

.tw-contact-split__inner > .tw-contact-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-block-start: 0 !important;
}

.tw-contact-card__eb {
	color: var(--blue-600);
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 600;
	gap: 6px;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.tw-contact-card__icon {
	align-items: center;
	display: inline-flex;
	height: 13px;
	justify-content: center;
	width: 13px;
}

.tw-contact-card__icon svg {
	display: block;
	height: 13px;
	width: 13px;
}

.tw-contact-card__h {
	color: var(--ink-900);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px;
}

.tw-contact-card__lead {
	color: var(--fg-2);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 16px;
}

.tw-contact-card__cta a,
.tw-contact-card__cta {
	color: var(--blue-600);
	display: inline-flex;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	margin: auto 0 0;
}

.tw-cta-strip {
	background: var(--bg-2);
	padding: 80px var(--gutter);
	text-align: center;
}

.tw-cta-strip__title {
	color: var(--ink-900);
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 700;
	margin: 0 0 14px;
}

.tw-cta-strip__lead {
	color: var(--fg-2);
	font-size: 17px;
	margin: 0 auto 28px;
	max-width: 600px;
}

.tw-icon__mark {
	display: inline-block;
	height: 24px;
	line-height: 24px;
	position: relative;
	text-align: center;
	width: 24px;
}

.tw-icon__mark::before,
.tw-icon__mark::after {
	box-sizing: border-box;
}

.tw-icon--layers::before,
.tw-icon--layers::after {
	border: 2px solid currentColor;
	border-radius: 4px;
	content: "";
	height: 13px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-58%, -42%) rotate(-16deg);
	width: 17px;
}

.tw-icon--layers::after {
	transform: translate(-42%, -58%) rotate(-16deg);
}

.tw-icon--file-text::before {
	border: 2px solid currentColor;
	border-radius: 4px;
	content: "";
	height: 22px;
	left: 4px;
	position: absolute;
	top: 1px;
	width: 16px;
}

.tw-icon--file-text::after {
	background:
		linear-gradient(currentColor, currentColor) 0 0 / 10px 2px no-repeat,
		linear-gradient(currentColor, currentColor) 0 6px / 10px 2px no-repeat,
		linear-gradient(currentColor, currentColor) 0 12px / 7px 2px no-repeat;
	content: "";
	height: 16px;
	left: 7px;
	position: absolute;
	top: 7px;
	width: 10px;
}

.tw-icon--truck::before {
	border: 2px solid currentColor;
	border-radius: 3px;
	content: "";
	height: 12px;
	left: 2px;
	position: absolute;
	top: 6px;
	width: 14px;
}

.tw-icon--truck::after {
	background:
		radial-gradient(circle, currentColor 0 2px, transparent 2px) 2px 15px / 6px 6px no-repeat,
		radial-gradient(circle, currentColor 0 2px, transparent 2px) 16px 15px / 6px 6px no-repeat,
		linear-gradient(currentColor, currentColor) 14px 9px / 8px 2px no-repeat,
		linear-gradient(currentColor, currentColor) 19px 11px / 2px 5px no-repeat,
		linear-gradient(currentColor, currentColor) 2px 16px / 18px 2px no-repeat;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 0;
	width: 24px;
}
.tw-icon--package::before { content: "□"; }
.tw-icon--shield-check::before { content: "✓"; }
.tw-icon--wrench::before { content: "⌁"; }
.tw-icon--phone::before { content: "☎"; }
.tw-icon--check-square::before { content: "✓"; }
.tw-icon--home::before { content: "⌂"; }

@media (max-width: 980px) {
	.tw-about-block,
	.tw-modulelist__row,
	.tw-pdp-hero__inner,
	.tw-case,
	.tw-warranty-stack,
	.tw-contact-split__inner {
		grid-template-columns: 1fr;
	}

	.tw-about-block--reverse .tw-about-block__copy {
		order: 0;
	}

	.tw-spec__hi,
	.tw-spec__groups,
	.tw-features__grid,
	.tw-pillars,
	.tw-faq-cats,
	.tw-claim-steps {
		grid-template-columns: 1fr 1fr;
	}

	.tw-pillars .tw-pillar {
		border-bottom: 1px solid var(--border-1);
	}

	.tw-pillars .tw-pillar:nth-child(2n) {
		border-right: 0;
	}

	.tw-pillars .tw-pillar:last-child {
		border-bottom: 0;
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.tw-pagehero,
	.tw-pagehero--photo {
		min-height: 0;
		padding: 72px 0;
	}

	.tw-pagehero__title {
		font-size: 34px;
	}

	.tw-page-section {
		padding: 56px 0;
	}

	.tw-modulelist__visual,
	.tw-pdp-hero__visual {
		margin-left: auto;
		margin-right: auto;
		max-width: min(230px, 72vw);
		width: 100%;
	}

	.tw-modulelist__row {
		gap: 36px;
		padding: 56px 0;
	}

	.tw-spec__hi,
	.tw-spec__groups,
	.tw-features__grid,
	.tw-pillars,
	.tw-faq-cats,
	.tw-claim-steps,
	.tw-othermods__grid,
	.tw-form .gform_fields {
		grid-template-columns: 1fr;
	}

	.tw-pillar,
	.tw-claim-step {
		border-right: 0;
	}

	.tw-pillars .tw-pillar {
		border-bottom: 1px solid var(--border-1);
		grid-column: auto;
		height: auto;
		min-height: 260px;
		padding: 40px 24px;
	}

	.tw-pillars .tw-pillar:last-child {
		border-bottom: 0;
	}

	.tw-case__row,
	.tw-spec__row {
		grid-template-columns: 1fr;
	}

	.tw-spec__row dd {
		text-align: left;
	}

	.tw-form .gform_fields {
		grid-template-columns: 1fr !important;
	}

	.tw-form .gform_legacy_markup_wrapper ul.gform_fields {
		grid-template-columns: 1fr !important;
	}
}

/* Final mobile layout refinements. */
@media (max-width: 640px) {
	.wp-site-blocks:has(> .wp-block-template-part .tw-site-header) {
		padding-top: 64px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wp-site-blocks > .wp-block-template-part:has(.tw-site-header) {
		animation: none !important;
		transition: none;
	}
}

@media (max-width: 640px) {
	.tw-site-header__inner,
	.editor-styles-wrapper .tw-site-header__inner {
		display: grid !important;
		gap: 16px;
		grid-template-columns: auto 1fr auto !important;
		height: 64px;
		min-height: 64px;
		padding: 0 var(--gutter);
	}

	.tw-site-header__logo,
	.tw-site-header__logo.wp-block-image {
		grid-column: 1;
		justify-self: start;
	}

	.tw-site-header__logo img {
		height: 30px !important;
		max-width: min(172px, 52vw);
	}

	.tw-site-header__nav {
		grid-column: 3;
		justify-self: end;
		margin-left: auto;
	}

	.tw-site-header__actions {
		display: none !important;
	}

	.tw-site-header__nav > .wp-block-navigation__container {
		display: none !important;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container-open {
		align-items: center;
		color: var(--ink-900);
		display: flex !important;
		height: 48px;
		justify-content: center;
		margin: 0 0 0 auto;
		padding: 8px;
		width: 48px;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container-open svg {
		display: block;
		height: 30px;
		width: 30px;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container.is-menu-open {
		background: #fff;
		color: var(--ink-900);
		box-sizing: border-box;
		height: 100dvh;
		inset: 0;
		max-height: none;
		overflow-y: auto;
		padding: 88px var(--gutter) 32px;
		position: fixed;
		width: 100vw;
		z-index: 100000;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		align-items: stretch;
		display: flex !important;
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container.is-menu-open a {
		border-bottom: 1px solid var(--border-1);
		color: var(--ink-900);
		display: block;
		font-size: 22px;
		font-weight: 700;
		padding: 18px 0;
		width: 100%;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container-close {
		height: 48px;
		right: var(--gutter);
		top: 16px;
		width: 48px;
		z-index: 100001;
	}

	.tw-site-header__nav .wp-block-navigation__responsive-container-close svg {
		height: 28px;
		width: 28px;
	}

	.tw-hero {
		height: auto;
		max-height: none;
		min-height: calc(100svh - 64px);
	}

	body.admin-bar .tw-hero {
		height: auto;
		max-height: none;
		min-height: calc(100svh - 64px - 46px);
	}

	.tw-hero__inner {
		padding-bottom: 188px;
	}

	.tw-hero__meta-inner {
		display: grid;
		gap: 14px 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
		padding: 18px var(--gutter) 22px;
	}

	.tw-hero__meta .tw-hero__meta-item {
		align-items: flex-start;
		font-size: 13px;
		line-height: 1.35;
		min-width: 0;
	}

	.tw-hero__meta-item svg {
		margin-top: 2px;
	}

	.tw-hero__meta-divider {
		display: none;
	}

	.tw-proof__grid {
		border: 1px solid var(--border-1);
		border-bottom: 0;
		border-radius: 6px;
		grid-template-columns: 1fr;
		overflow: hidden;
	}

	.tw-proof__item,
	.tw-proof__item:nth-child(3n) {
		border-bottom: 1px solid var(--border-1);
		border-right: 0;
	}

	.tw-range {
		overflow: hidden;
	}

	.tw-range__grid {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 16px;
		margin-left: calc(var(--gutter) * -1);
		margin-right: calc(var(--gutter) * -1);
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 0 var(--gutter) 12px;
		scroll-padding-inline: var(--gutter);
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.tw-range__grid::-webkit-scrollbar {
		display: none;
	}

	.tw-range__grid {
		scrollbar-width: none;
	}

	.tw-pcard {
		flex: 0 0 min(84vw, 360px);
		scroll-snap-align: start;
	}

	.tw-pcard__specs {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.tw-pcard__spec,
	.tw-pcard__spec:first-child,
	.tw-pcard__spec:last-child {
		padding-bottom: 0;
		padding-top: 0;
	}

	.tw-pcard__spec {
		border-right: 1px solid var(--border-1);
		padding-left: 8px;
		padding-right: 8px;
	}

	.tw-pcard__spec:first-child {
		padding-left: 0;
	}

	.tw-pcard__spec:last-child {
		border-right: 0;
		padding-right: 0;
	}

	.tw-pcard__spec span {
		font-size: 9px;
		letter-spacing: 0.08em;
	}

	.tw-pcard__spec b {
		font-size: 17px;
	}

	.tw-footer__grid,
	.tw-site-footer__grid {
		gap: 36px 28px;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.tw-footer__brand {
		grid-column: 1 / -1;
	}

	.tw-footer__bottom,
	.tw-site-footer__bottom {
		align-items: center;
		flex-direction: column;
		gap: 14px;
		justify-content: center;
		text-align: center;
	}

	.tw-footer__bottom p,
	.tw-site-footer__bottom p,
	.tw-footer__hardcoded {
		text-align: center;
	}

	.tw-footer__credit,
	.tw-footer__hardcoded a {
		margin-left: 0;
	}

	.tw-footer__bottom-right {
		flex-wrap: wrap;
		gap: 18px;
		justify-content: center;
		margin-left: 0 !important;
		text-align: center;
		white-space: normal;
	}
}

@media (max-width: 390px) {
	.tw-hero__meta-inner {
		grid-template-columns: 1fr;
	}
}
