:root {
	--wtc-bg: #06101f;
	--wtc-bg-deep: #030816;
	--wtc-panel: #0c172a;
	--wtc-panel-2: #111e34;
	--wtc-line: rgba(144, 171, 213, 0.18);
	--wtc-line-strong: rgba(144, 171, 213, 0.34);
	--wtc-text: #f7faff;
	--wtc-muted: #98a7c1;
	--wtc-blue: #2f7dff;
	--wtc-cyan: #31d7e8;
	--wtc-red: #ff5a3d;
	--wtc-green: #16c784;
	--wtc-purple: #8b5cf6;
	--wtc-radius-sm: 10px;
	--wtc-radius: 18px;
	--wtc-radius-lg: 28px;
	--wtc-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
	--wtc-content: 1240px;
	--wtc-gutter: clamp(20px, 5vw, 72px);
	--wtc-section: clamp(76px, 9vw, 132px);
}

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

body.elementor-page:has(.wtc-site-header),
body:has(.wtc-site-header) {
	margin: 0;
	background: var(--wtc-bg-deep);
	color: var(--wtc-text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

body.wtc-lock-scroll {
	overflow: hidden;
}

.wtc-site-header *,
.wtc-section *,
.wtc-site-footer *,
.wtc-interactions * {
	box-sizing: border-box;
}

.wtc-site-header a,
.wtc-section a,
.wtc-site-footer a,
.wtc-interactions a {
	color: inherit;
	text-decoration: none;
}

.wtc-site-header.e-con,
.wtc-section.e-con,
.wtc-site-footer.e-con {
	width: 100%;
	max-width: none;
	margin: 0;
}

.wtc-site-header.e-con {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: 82px;
	padding: 14px var(--wtc-gutter);
	border-bottom: 1px solid var(--wtc-line);
	background: rgba(3, 8, 22, 0.88);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.admin-bar .wtc-site-header.e-con {
	top: 32px;
}

.wtc-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.wtc-brand-mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(49, 215, 232, 0.55);
	border-radius: 12px 12px 4px 12px;
	background: linear-gradient(145deg, rgba(47, 125, 255, 0.28), rgba(49, 215, 232, 0.08));
	box-shadow: inset 0 0 20px rgba(49, 215, 232, 0.12), 0 0 30px rgba(47, 125, 255, 0.16);
	color: var(--wtc-cyan);
	font-size: 26px;
	font-weight: 300;
}

.wtc-brand strong,
.wtc-brand small {
	display: block;
}

.wtc-brand strong {
	color: var(--wtc-text);
	font-size: 17px;
	letter-spacing: -0.02em;
}

.wtc-brand small {
	margin-top: 2px;
	color: var(--wtc-muted);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.wtc-nav-wrap {
	margin-left: auto;
}

.wtc-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.1vw, 32px);
}

.wtc-nav a {
	position: relative;
	padding: 11px 0;
	color: #aebbd0;
	font-size: 13px;
	font-weight: 600;
}

.wtc-nav a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 1px;
	background: var(--wtc-cyan);
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.wtc-nav a:hover,
.wtc-nav a:focus-visible,
.wtc-nav a[aria-current="page"] {
	color: var(--wtc-text);
}

.wtc-nav a:hover::after,
.wtc-nav a:focus-visible::after,
.wtc-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

button.wtc-nav-toggle {
	display: none !important;
	width: 44px !important;
	height: 44px;
	min-width: 44px;
	flex: 0 0 44px;
	padding: 10px;
	border: 1px solid var(--wtc-line-strong) !important;
	border-radius: 12px;
	background: var(--wtc-panel) !important;
	box-shadow: none !important;
	color: var(--wtc-text) !important;
	cursor: pointer;
}

.wtc-nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100% !important;
	height: 2px;
	margin: 4px 0;
	background: var(--wtc-text);
}

.wtc-mobile-plan {
	display: none !important;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wtc-button .elementor-button,
.wtc-button.elementor-widget-button .elementor-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.wtc-button--accent .elementor-button {
	background: linear-gradient(135deg, var(--wtc-blue), #5b35f5);
	box-shadow: 0 10px 28px rgba(47, 125, 255, 0.26);
	color: #fff;
}

.wtc-button--ghost .elementor-button {
	border-color: var(--wtc-line-strong);
	background: rgba(255, 255, 255, 0.025);
	color: var(--wtc-text);
}

.wtc-button .elementor-button:hover,
.wtc-button .elementor-button:focus-visible {
	transform: translateY(-2px);
}

.wtc-button--accent .elementor-button:hover,
.wtc-button--accent .elementor-button:focus-visible {
	box-shadow: 0 16px 38px rgba(47, 125, 255, 0.38);
}

.wtc-section.e-con {
	position: relative;
	padding: var(--wtc-section) var(--wtc-gutter);
	background: var(--wtc-bg);
}

.wtc-section.e-con > * {
	width: 100%;
	max-width: var(--wtc-content);
	margin-right: auto;
	margin-left: auto;
}

.wtc-section--tinted.e-con {
	border-top: 1px solid var(--wtc-line);
	border-bottom: 1px solid var(--wtc-line);
	background:
		radial-gradient(circle at 8% 15%, rgba(47, 125, 255, 0.12), transparent 34%),
		linear-gradient(180deg, #081425, #07111f);
}

.wtc-hero.e-con {
	min-height: min(820px, calc(100vh - 82px));
	justify-content: center;
	padding-top: clamp(104px, 12vw, 172px);
	padding-bottom: clamp(92px, 11vw, 156px);
	background:
		linear-gradient(rgba(38, 92, 190, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(38, 92, 190, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 78% 42%, rgba(49, 215, 232, 0.18), transparent 17%),
		radial-gradient(circle at 75% 48%, rgba(47, 125, 255, 0.18), transparent 37%),
		linear-gradient(145deg, #030816 0%, #071324 54%, #06111f 100%);
	background-size: 48px 48px, 48px 48px, auto, auto, auto;
	overflow: hidden;
}

.wtc-hero::before,
.wtc-hero::after {
	position: absolute;
	border: 1px solid rgba(49, 215, 232, 0.2);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.wtc-hero::before {
	right: 5vw;
	top: 50%;
	width: clamp(250px, 35vw, 540px);
	aspect-ratio: 1;
	box-shadow: 0 0 0 32px rgba(47, 125, 255, 0.04), 0 0 0 76px rgba(49, 215, 232, 0.025), inset 0 0 80px rgba(49, 215, 232, 0.06);
	transform: translateY(-50%);
}

.wtc-hero::after {
	right: calc(5vw + clamp(80px, 11vw, 170px));
	top: 50%;
	width: clamp(90px, 14vw, 220px);
	aspect-ratio: 1;
	border-color: rgba(47, 125, 255, 0.4);
	box-shadow: 0 0 70px rgba(47, 125, 255, 0.2), inset 0 0 45px rgba(47, 125, 255, 0.1);
	transform: translateY(-50%);
}

.wtc-hero > * {
	position: relative;
	z-index: 1;
	max-width: min(760px, 62vw) !important;
	margin-right: auto !important;
	margin-left: max(0px, calc((100vw - var(--wtc-content)) / 2)) !important;
}

.wtc-eyebrow p,
.wtc-kicker,
.wtc-component-id {
	margin: 0;
	color: var(--wtc-cyan);
	font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.wtc-display .elementor-heading-title {
	max-width: 820px;
	margin: 0;
	color: var(--wtc-text);
	font-size: clamp(44px, 6.2vw, 92px);
	font-weight: 720;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.wtc-display .elementor-heading-title span {
	background: linear-gradient(90deg, #fff 5%, #8295b5 65%, var(--wtc-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.wtc-lead p {
	max-width: 690px;
	margin: 0;
	color: #b6c2d5;
	font-size: clamp(17px, 1.7vw, 22px);
	line-height: 1.65;
}

.wtc-actions.e-con {
	width: auto;
	align-items: center;
	gap: 12px;
}

.wtc-section-intro.e-con {
	max-width: 780px;
	margin-bottom: clamp(28px, 4vw, 54px);
	gap: 14px;
}

.wtc-section-title .elementor-heading-title,
.wtc-section h2,
.wtc-cta-panel h2 {
	margin: 0;
	color: var(--wtc-text);
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.wtc-section-copy p,
.wtc-section p,
.wtc-site-footer p {
	color: var(--wtc-muted);
	font-size: 16px;
	line-height: 1.72;
}

.wtc-connection-panel.e-con {
	min-height: 520px;
	justify-content: center;
	background:
		linear-gradient(90deg, rgba(3, 8, 22, 0.95), rgba(3, 8, 22, 0.58)),
		radial-gradient(circle at 85% 50%, rgba(22, 199, 132, 0.22), transparent 24%),
		linear-gradient(145deg, #071223, #0b1b2f);
}

.wtc-connection-panel > * {
	max-width: 780px !important;
	margin-right: auto !important;
	margin-left: max(0px, calc((100vw - var(--wtc-content)) / 2)) !important;
}

.wtc-connection-panel h2 {
	font-size: clamp(36px, 5vw, 68px);
}

.wtc-signal p {
	color: var(--wtc-text);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.wtc-signal span {
	margin: 0 14px;
	color: var(--wtc-green);
}

.wtc-product-grid.e-con,
.wtc-family-grid.e-con,
.wtc-step-grid.e-con,
.wtc-metric-grid.e-con,
.wtc-pricing-grid.e-con,
.wtc-system-grid.e-con {
	display: flex;
	width: 100%;
	max-width: var(--wtc-content);
	align-items: stretch;
	gap: 20px;
}

.wtc-product-widget {
	width: calc(33.333% - 14px);
	min-width: 0;
}

.wtc-product-card {
	--family: var(--wtc-blue);
	display: flex;
	height: 100%;
	min-height: 600px;
	flex-direction: column;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: linear-gradient(180deg, rgba(17, 30, 52, 0.92), rgba(8, 18, 33, 0.98));
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.wtc-product-card:hover {
	border-color: color-mix(in srgb, var(--family) 55%, transparent);
	box-shadow: 0 24px 72px color-mix(in srgb, var(--family) 12%, transparent);
	transform: translateY(-5px);
}

.wtc-family-performance-red { --family: #ff5a3d; }
.wtc-family-precision-blue { --family: #2f7dff; }
.wtc-family-executive-silver { --family: #b8c2d6; }
.wtc-family-midnight-luxury { --family: #8b5cf6; }
.wtc-family-clinical-white { --family: #31d7e8; }

.wtc-product-preview {
	position: relative;
	display: grid;
	min-height: 182px;
	place-items: center;
	border-bottom: 1px solid var(--wtc-line);
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		radial-gradient(circle at 50% 60%, color-mix(in srgb, var(--family) 24%, transparent), transparent 50%),
		#081323;
	background-size: 24px 24px, 24px 24px, auto, auto;
}

.wtc-product-preview > span {
	position: absolute;
	top: 16px;
	left: 18px;
	color: var(--family);
	font-family: ui-monospace, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wtc-live-sample,
.wtc-system-canvas > button {
	min-height: 46px;
	padding: 12px 24px;
	border: 1px solid color-mix(in srgb, var(--family) 70%, white 8%);
	border-radius: 10px;
	background: var(--family);
	box-shadow: 0 12px 32px color-mix(in srgb, var(--family) 28%, transparent);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.wtc-live-sample--secondary-action {
	border-color: color-mix(in srgb, var(--family) 45%, white 15%);
	background: color-mix(in srgb, var(--family) 22%, #07111f);
	box-shadow: none;
}

.wtc-live-sample--outline-action {
	border-width: 2px;
	background: transparent;
	box-shadow: none;
	color: var(--family);
}

.wtc-live-sample--icon-action {
	width: 58px;
	height: 58px;
	min-height: 58px;
	padding: 0;
	border-radius: 50%;
}

.wtc-live-sample--icon-action b {
	font-size: 22px;
}

.wtc-family-executive-silver .wtc-live-sample,
.wtc-family-clinical-white .wtc-live-sample,
.wtc-family-executive-silver .wtc-system-canvas > button,
.wtc-family-clinical-white .wtc-system-canvas > button {
	color: #07101f;
}

.wtc-product-body {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 24px;
}

.wtc-product-body h3,
.wtc-family-card h3,
.wtc-step-card h3,
.wtc-system-canvas h3,
.wtc-form-showcase h3,
.wtc-pricing-card h3 {
	margin: 10px 0;
	color: var(--wtc-text);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.wtc-product-body > p {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.55;
}

.wtc-product-body ul {
	padding: 0;
	margin: 0 0 20px;
	color: #b7c3d7;
	font-size: 12px;
	line-height: 1.8;
	list-style: none;
}

.wtc-product-body li::before {
	margin-right: 8px;
	color: var(--family);
	content: "✓";
}

.wtc-price-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: auto;
	border: 1px solid var(--wtc-line);
	border-radius: 12px;
	overflow: hidden;
}

.wtc-price-row > span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 5px;
	padding: 13px;
}

.wtc-price-row > span + span {
	border-left: 1px solid var(--wtc-line);
}

.wtc-price-row small,
.wtc-plan-summary small {
	color: var(--wtc-muted);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wtc-price-row strong {
	color: var(--wtc-text);
	font-size: 19px;
}

.wtc-rx-price {
	position: relative;
	background: rgba(22, 199, 132, 0.055);
}

.wtc-rx-price::after {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 8px;
	background: rgba(7, 16, 31, 0.91);
	color: #8fa0bb;
	content: "Verify prescription";
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.wtc-product-card.wtc-rx-eligible .wtc-rx-price::after {
	display: none;
}

.wtc-product-card.wtc-rx-eligible .wtc-rx-price strong,
.wtc-product-card.wtc-rx-eligible .wtc-rx-price small {
	color: var(--wtc-green);
}

.wtc-install-price {
	margin: 12px 0 !important;
	color: #b7c3d7 !important;
	font-size: 11px !important;
}

.wtc-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.wtc-card-actions > :first-child {
	grid-column: 1 / -1;
}

.wtc-card-actions button,
.wtc-card-actions a,
.wtc-filter button,
.wtc-prescription-form button,
.wtc-treatment-form button,
.wtc-drawer-cta {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.025);
	color: #dbe5f4;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.wtc-card-actions > :first-child,
.wtc-prescription-form button,
.wtc-treatment-form button,
.wtc-drawer-cta {
	border-color: transparent;
	background: linear-gradient(135deg, var(--wtc-blue), #5b35f5);
	color: white;
}

.wtc-card-actions button:hover,
.wtc-card-actions a:hover,
.wtc-card-actions button:focus-visible,
.wtc-card-actions a:focus-visible {
	border-color: var(--family);
}

.wtc-product-card[hidden] {
	display: none;
}

.wtc-filter {
	display: grid;
	grid-template-columns: minmax(240px, 1.5fr) minmax(190px, 0.8fr) auto;
	align-items: end;
	gap: 12px;
	padding: 18px;
	margin-bottom: 30px;
	border: 1px solid var(--wtc-line);
	border-radius: 14px;
	background: rgba(17, 30, 52, 0.72);
}

.wtc-filter label,
.wtc-prescription-form label,
.wtc-treatment-form label,
.wtc-form-showcase label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	color: #c4d0e2;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.wtc-filter input,
.wtc-filter select,
.wtc-prescription-form input,
.wtc-treatment-form input,
.wtc-treatment-form textarea,
.wtc-form-showcase input,
.wtc-form-showcase select {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 9px;
	outline: 0;
	background: #07111f;
	box-shadow: none;
	color: var(--wtc-text);
	font: inherit;
}

.wtc-filter input:focus,
.wtc-filter select:focus,
.wtc-prescription-form input:focus,
.wtc-treatment-form input:focus,
.wtc-treatment-form textarea:focus {
	border-color: var(--wtc-cyan);
	box-shadow: 0 0 0 3px rgba(49, 215, 232, 0.11);
}

.wtc-filter output {
	grid-column: 1 / -1;
	min-height: 16px;
	color: var(--wtc-muted);
	font-size: 11px;
}

.wtc-family-grid > .elementor-element,
.wtc-step-grid > .elementor-element {
	width: calc(20% - 16px);
}

.wtc-family-card {
	--family: var(--wtc-blue);
	height: 100%;
	padding: 26px;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: linear-gradient(145deg, rgba(17, 30, 52, 0.88), rgba(8, 18, 33, 0.95));
}

.wtc-family-card .wtc-family-swatch {
	display: block;
	width: 44px;
	height: 6px;
	border-radius: 999px;
	background: var(--family);
	box-shadow: 0 0 22px color-mix(in srgb, var(--family) 45%, transparent);
}

.wtc-family-card p {
	font-size: 13px;
	line-height: 1.55;
}

.wtc-family-card small {
	color: var(--family);
	font-family: ui-monospace, monospace;
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wtc-step-card.e-con {
	position: relative;
	min-height: 260px;
	justify-content: flex-start;
	padding: 26px;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: rgba(9, 21, 39, 0.75);
	overflow: hidden;
}

.wtc-step-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--wtc-blue), var(--wtc-cyan));
	content: "";
}

.wtc-step-number p {
	margin: 0;
	color: var(--wtc-cyan);
	font-family: ui-monospace, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.wtc-step-card p {
	font-size: 13px;
	line-height: 1.6;
}

.wtc-metric-grid > .elementor-element,
.wtc-pricing-grid > .elementor-element {
	width: calc(25% - 15px);
}

.wtc-metric-card.e-con,
.wtc-pricing-card.e-con {
	min-height: 290px;
	padding: 28px;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: linear-gradient(160deg, rgba(17, 30, 52, 0.95), rgba(7, 17, 31, 0.94));
}

.wtc-metric-value .elementor-heading-title,
.wtc-price-value .elementor-heading-title {
	color: var(--wtc-cyan);
	font-size: clamp(32px, 3.3vw, 50px);
	letter-spacing: -0.04em;
}

.wtc-split-panel.e-con {
	display: flex;
	align-items: stretch;
	gap: 0;
}

.wtc-split-panel > .elementor-element {
	width: 50%;
	max-width: none;
	padding: clamp(32px, 5vw, 72px);
	border: 1px solid var(--wtc-line);
}

.wtc-split-panel > :first-child {
	border-radius: var(--wtc-radius-lg) 0 0 var(--wtc-radius-lg);
	background: linear-gradient(145deg, #0e1c32, #081321);
}

.wtc-split-panel > :last-child {
	justify-content: center;
	border-left: 0;
	border-radius: 0 var(--wtc-radius-lg) var(--wtc-radius-lg) 0;
	background: linear-gradient(145deg, rgba(47, 125, 255, 0.16), rgba(49, 215, 232, 0.06));
}

.wtc-choice-list ol {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: choice;
}

.wtc-choice-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid var(--wtc-line);
	color: #dce5f2;
	counter-increment: choice;
}

.wtc-choice-list li::before {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	border: 1px solid rgba(49, 215, 232, 0.35);
	border-radius: 50%;
	color: var(--wtc-cyan);
	content: counter(choice);
	font-family: ui-monospace, monospace;
	font-size: 11px;
}

.wtc-form-showcase {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wtc-form-showcase article,
.wtc-form-showcase form {
	display: flex;
	min-height: 380px;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: var(--wtc-panel);
}

.wtc-form-showcase form:focus-within {
	border-color: rgba(49, 215, 232, 0.52);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(49, 215, 232, 0.06);
}

.wtc-form-showcase > form > button[type="submit"] {
	min-height: 46px;
	margin-top: auto;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 9px;
	background: linear-gradient(135deg, var(--wtc-blue), #5b35f5);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.wtc-system-widget {
	width: calc(50% - 10px);
}

.wtc-system-preview {
	--family: var(--wtc-blue);
	height: 100%;
	min-height: 390px;
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	background: #091426;
	box-shadow: var(--wtc-shadow);
	overflow: hidden;
}

.wtc-browser-bar {
	display: flex;
	height: 45px;
	align-items: center;
	gap: 7px;
	padding: 0 16px;
	border-bottom: 1px solid var(--wtc-line);
	background: #07101f;
}

.wtc-browser-bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #30415b;
}

.wtc-browser-bar small {
	margin-left: auto;
	color: #6f7e96;
	font-family: ui-monospace, monospace;
	font-size: 9px;
	letter-spacing: 0.06em;
}

.wtc-system-canvas {
	position: relative;
	display: flex;
	min-height: 345px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(30px, 4vw, 60px);
	background:
		radial-gradient(circle at 85% 45%, color-mix(in srgb, var(--family) 22%, transparent), transparent 38%),
		linear-gradient(145deg, rgba(15, 30, 52, 0.95), rgba(5, 13, 25, 0.98));
}

.wtc-system-canvas h3 {
	max-width: 480px;
	font-size: clamp(25px, 3vw, 42px);
}

.wtc-system-canvas p {
	max-width: 520px;
	margin: 0 0 24px;
	font-size: 14px;
}

.wtc-pricing-card.e-con {
	min-height: 330px;
}

.wtc-pricing-card .wtc-price-value {
	margin-top: auto;
}

.wtc-prescription-form,
.wtc-treatment-form {
	padding: clamp(26px, 4.5vw, 58px);
	border: 1px solid var(--wtc-line-strong);
	border-radius: var(--wtc-radius-lg);
	background:
		radial-gradient(circle at 88% 14%, rgba(49, 215, 232, 0.13), transparent 30%),
		linear-gradient(145deg, #0d1b30, #07111f);
	box-shadow: var(--wtc-shadow);
}

.wtc-form-head {
	max-width: 720px;
	margin-bottom: 28px;
}

.wtc-form-head h3 {
	margin: 8px 0;
	color: var(--wtc-text);
	font-size: clamp(28px, 4vw, 46px);
	letter-spacing: -0.04em;
}

.wtc-form-head p {
	margin: 0;
	font-size: 14px;
}

.wtc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}

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

.wtc-treatment-form > label,
.wtc-treatment-form .wtc-consent {
	margin: 16px 0;
}

.wtc-treatment-form textarea {
	min-height: 100px;
	resize: vertical;
}

.wtc-consent {
	flex-direction: row !important;
	align-items: flex-start;
}

.wtc-consent input {
	width: 18px;
	min-height: 18px;
	flex: 0 0 18px;
}

.wtc-prescription-form > button,
.wtc-treatment-form > button {
	min-height: 50px;
	padding: 13px 24px;
	margin-top: 10px;
}

.wtc-prescription-form output,
.wtc-treatment-form output {
	display: block;
	min-height: 24px;
	padding-top: 15px;
	color: #b9c6d9;
	font-size: 13px;
	line-height: 1.5;
}

.wtc-prescription-form output[data-state="success"],
.wtc-treatment-form output[data-state="success"] {
	color: var(--wtc-green);
}

.wtc-prescription-form output[data-state="error"],
.wtc-treatment-form output[data-state="error"] {
	color: #ff8b79;
}

.wtc-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	min-height: 1px !important;
	opacity: 0 !important;
}

.wtc-faq {
	border-top: 1px solid var(--wtc-line);
}

.wtc-faq details {
	border-bottom: 1px solid var(--wtc-line);
}

.wtc-faq summary {
	position: relative;
	padding: 22px 48px 22px 0;
	color: var(--wtc-text);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.wtc-faq summary::-webkit-details-marker {
	display: none;
}

.wtc-faq summary::after {
	position: absolute;
	right: 5px;
	content: "+";
	color: var(--wtc-cyan);
	font-size: 24px;
	font-weight: 300;
}

.wtc-faq details[open] summary::after {
	content: "−";
}

.wtc-faq p {
	max-width: 850px;
	padding: 0 0 24px;
	margin: 0;
}

.wtc-cta-panel.e-con {
	align-items: center;
	text-align: center;
	background:
		radial-gradient(circle at 50% 0%, rgba(47, 125, 255, 0.2), transparent 45%),
		linear-gradient(145deg, #08162a, #050d1a);
}

.wtc-cta-panel p {
	max-width: 760px;
	margin: 0 auto;
}

.wtc-cta-panel .wtc-button {
	width: auto;
	margin-top: 12px;
}

.wtc-site-footer.e-con {
	padding: clamp(58px, 7vw, 92px) var(--wtc-gutter) 34px;
	border-top: 1px solid var(--wtc-line);
	background: #030816;
}

.wtc-site-footer > * {
	width: 100%;
	max-width: var(--wtc-content);
	margin-right: auto;
	margin-left: auto;
}

.wtc-footer-title .elementor-heading-title {
	color: var(--wtc-text);
	font-size: 28px;
}

.wtc-site-footer .elementor-widget-text-editor {
	max-width: 620px;
}

.wtc-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	padding: 22px 0;
	border-top: 1px solid var(--wtc-line);
	border-bottom: 1px solid var(--wtc-line);
}

.wtc-footer-links a {
	color: #b7c3d6;
	font-size: 12px;
	font-weight: 600;
}

.wtc-footer-links a:hover,
.wtc-footer-links a:focus-visible {
	color: var(--wtc-cyan);
}

.wtc-footer-legal p {
	font-size: 11px;
}

button.wtc-plan-trigger {
	position: fixed;
	right: 24px;
	bottom: 88px;
	z-index: 999990;
	display: flex;
	min-height: 52px;
	align-items: center;
	gap: 12px;
	padding: 10px 12px 10px 18px;
	border: 1px solid rgba(49, 215, 232, 0.35) !important;
	border-radius: 999px;
	background: rgba(8, 19, 35, 0.94) !important;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.38) !important;
	color: var(--wtc-text) !important;
	font-size: 12px;
	font-weight: 700;
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	cursor: pointer;
}

.wtc-plan-trigger strong {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: var(--wtc-blue);
	color: white;
}

.wtc-plan-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000000;
	display: flex;
	width: min(440px, 94vw);
	height: 100dvh;
	flex-direction: column;
	padding: 28px;
	border-left: 1px solid var(--wtc-line-strong);
	background: #07111f;
	box-shadow: -30px 0 90px rgba(0, 0, 0, 0.48);
	color: var(--wtc-text);
	transform: translateX(105%);
	transition: transform 240ms ease;
}

.wtc-plan-drawer[aria-hidden="false"] {
	transform: translateX(0);
}

.wtc-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(1, 4, 12, 0.76);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.wtc-drawer-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--wtc-line);
}

.wtc-drawer-head h2 {
	margin: 4px 0 0;
	font-size: 30px;
	letter-spacing: -0.04em;
}

.wtc-drawer-head > button,
.wtc-preview-dialog > button {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 50%;
	background: transparent;
	color: var(--wtc-text);
	font-size: 26px;
	cursor: pointer;
}

.wtc-plan-items {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 20px 0;
	overflow-y: auto;
}

.wtc-plan-empty {
	padding: 30px 0;
	color: var(--wtc-muted);
	font-size: 14px;
	line-height: 1.6;
}

.wtc-plan-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 5px 12px;
	padding: 14px;
	border: 1px solid var(--wtc-line);
	border-radius: 12px;
	background: var(--wtc-panel);
}

.wtc-plan-item span,
.wtc-plan-item small {
	color: var(--wtc-muted);
	font-size: 10px;
}

.wtc-plan-item button {
	grid-column: 2;
	grid-row: 1 / 3;
	border: 0;
	background: transparent;
	color: #ff8b79;
	cursor: pointer;
}

.wtc-plan-summary {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding: 18px 0;
	border-top: 1px solid var(--wtc-line);
}

.wtc-plan-summary strong {
	color: var(--wtc-cyan);
}

.wtc-plan-summary small {
	grid-column: 1 / -1;
	line-height: 1.5;
	text-transform: none;
}

.wtc-preview-modal {
	position: fixed;
	inset: 0;
	z-index: 1000001;
	display: none;
	padding: clamp(12px, 4vw, 60px);
	background: rgba(1, 4, 12, 0.92);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.wtc-preview-modal[aria-hidden="false"] {
	display: grid;
	place-items: center;
}

.wtc-preview-dialog {
	position: relative;
	width: min(1100px, 100%);
	max-height: 90dvh;
	padding: 22px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: var(--wtc-radius-lg);
	background: #07111f;
	box-shadow: var(--wtc-shadow);
	overflow: auto;
}

.wtc-preview-dialog > button {
	position: sticky;
	top: 0;
	z-index: 2;
	margin: 0 0 10px auto;
}

.wtc-preview-dialog .wtc-product-card,
.wtc-preview-dialog .wtc-system-preview {
	min-height: 640px;
}

.wtc-preview-dialog .wtc-product-body {
	max-width: 760px;
	margin: 0 auto;
}

.wtc-preview-dialog .wtc-product-preview {
	min-height: 340px;
}

.wtc-toast {
	position: fixed;
	right: 24px;
	bottom: 154px;
	z-index: 1000002;
	max-width: min(360px, calc(100vw - 32px));
	padding: 13px 18px;
	border: 1px solid rgba(49, 215, 232, 0.38);
	border-radius: 12px;
	background: #0d1d32;
	box-shadow: var(--wtc-shadow);
	color: var(--wtc-text);
	font-size: 12px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.wtc-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Canonical built parts: the same widgets render in the showroom and Elementor. */
.wtc-product-preview {
	min-height: 330px;
	padding: 52px 20px 24px;
}

.wtc-preview-family {
	z-index: 2;
}

.wtc-built-control {
	display: grid;
	width: 100%;
	min-height: 220px;
	place-items: center;
	align-content: center;
	gap: 15px;
}

.wtc-widget-kicker {
	color: var(--family);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.wtc-live-sample {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-decoration: none !important;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.wtc-live-sample:hover {
	transform: translateY(-3px);
}

.wtc-live-sample:active,
.wtc-live-sample[aria-pressed="true"] {
	transform: translateY(0) scale(0.97);
	box-shadow: inset 0 0 0 2px color-mix(in srgb, white 35%, transparent);
}

.wtc-live-sample:focus-visible,
.wtc-built-card button:focus-visible,
.wtc-built-system button:focus-visible,
.wtc-built-system a:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--family) 60%, white 25%);
	outline-offset: 4px;
}

.wtc-live-sample b {
	font-size: 17px;
	line-height: 1;
}

.wtc-demo-status {
	display: block;
	min-height: 18px;
	color: #9fb0c9;
	font-size: 10px;
	font-style: normal;
	text-align: center;
}

.wtc-demo-status[data-state="success"] {
	color: var(--wtc-green);
}

.wtc-icon-control {
	position: relative;
	display: inline-grid;
	place-items: center;
}

.wtc-tooltip {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	min-width: max-content;
	padding: 7px 10px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 7px;
	background: #020711;
	color: #e8eef8;
	font-size: 9px;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.wtc-icon-control:hover .wtc-tooltip,
.wtc-icon-control:focus-within .wtc-tooltip {
	opacity: 1;
	transform: translate(-50%, 0);
}

.wtc-built-card {
	display: flex;
	width: min(310px, 100%);
	min-height: 245px;
	flex-direction: column;
	align-items: stretch;
	padding: 20px;
	border: 1px solid color-mix(in srgb, var(--family) 38%, var(--wtc-line));
	border-radius: 16px;
	background: linear-gradient(155deg, color-mix(in srgb, var(--family) 10%, #101d32), #07111f 72%);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
	color: var(--wtc-text);
}

.wtc-built-card > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wtc-live-badge {
	padding: 5px 8px;
	border: 1px solid color-mix(in srgb, var(--family) 35%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--family) 11%, transparent);
	color: color-mix(in srgb, var(--family) 80%, white 20%);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.wtc-built-card h4 {
	margin: 12px 0 7px;
	color: var(--wtc-text);
	font-size: 20px;
	letter-spacing: -0.025em;
}

.wtc-built-card p {
	margin: 0 0 14px;
	color: #aab8ce;
	font-size: 11px;
	line-height: 1.55;
}

.wtc-built-card button,
.wtc-built-section button,
.wtc-built-kit button {
	min-height: 38px;
	padding: 9px 12px;
	border: 1px solid color-mix(in srgb, var(--family) 52%, transparent);
	border-radius: 8px;
	background: color-mix(in srgb, var(--family) 18%, #0b1728);
	color: var(--wtc-text);
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.wtc-live-symbol {
	display: grid;
	width: 42px;
	height: 42px;
	margin-top: 18px;
	place-items: center;
	border: 1px solid color-mix(in srgb, var(--family) 50%, transparent);
	border-radius: 13px 13px 4px 13px;
	background: color-mix(in srgb, var(--family) 13%, transparent);
	color: var(--family);
	font-size: 24px;
}

.wtc-live-details {
	width: 100%;
	padding: 13px;
	margin-top: 10px;
	border: 1px solid var(--wtc-line);
	border-radius: 9px;
	background: rgba(0, 0, 0, 0.18);
	color: #b8c5d8;
}

.wtc-live-details[hidden] {
	display: none;
}

.wtc-live-details ul {
	padding: 0;
	margin: 0;
	font-size: 9px;
	line-height: 1.8;
	list-style: none;
}

.wtc-live-details li::before {
	margin-right: 7px;
	color: var(--family);
	content: "✓";
}

.wtc-control-details {
	max-width: 290px;
	text-align: left;
}

.wtc-control-details strong,
.wtc-control-details span {
	display: block;
	font-size: 10px;
}

.wtc-control-details span {
	margin-top: 5px;
	color: #8fa0b9;
}

.wtc-product-part-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 20px 0;
}

.wtc-live-thumbnail {
	display: grid;
	width: 88px;
	height: 74px;
	place-content: center;
	gap: 6px;
	border: 1px solid var(--wtc-line);
	border-radius: 11px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--family) 18%, #102039), #07101f);
}

.wtc-live-thumbnail span {
	display: block;
	width: 48px;
	height: 4px;
	border-radius: 99px;
	background: var(--family);
}

.wtc-live-thumbnail span:nth-child(2) { width: 35px; opacity: 0.6; }
.wtc-live-thumbnail span:nth-child(3) { width: 25px; opacity: 0.3; }

.wtc-part-purchase {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.wtc-part-purchase > strong {
	color: var(--family);
	font-size: 24px;
}

.wtc-part-purchase label {
	display: grid;
	gap: 5px;
	color: #8fa0b9;
	font-size: 8px;
	text-transform: uppercase;
}

.wtc-quantity {
	display: grid;
	grid-template-columns: 28px 30px 28px;
	align-items: center;
	border: 1px solid var(--wtc-line);
	border-radius: 8px;
	overflow: hidden;
}

.wtc-quantity button {
	min-height: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.04);
}

.wtc-quantity output {
	color: var(--wtc-text);
	font-size: 10px;
	text-align: center;
}

.wtc-live-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 5px 0 15px;
}

.wtc-live-price strong {
	color: var(--family);
	font-size: 32px;
}

.wtc-live-price small {
	color: #8fa0b9;
	font-size: 9px;
}

.wtc-built-card--pricing-card > ul {
	padding: 0;
	margin: 0 0 14px;
	color: #b6c3d6;
	font-size: 10px;
	line-height: 1.75;
	list-style: none;
}

.wtc-built-card--pricing-card > ul li::before {
	margin-right: 7px;
	color: var(--family);
	content: "✓";
}

.wtc-case-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	margin: 7px 0 12px;
}

.wtc-case-tabs button[aria-selected="true"] {
	background: var(--family);
	color: #fff;
}

.wtc-case-panel {
	padding: 13px;
	border: 1px solid var(--wtc-line);
	border-radius: 9px;
	background: rgba(0, 0, 0, 0.16);
}

.wtc-case-panel[hidden] {
	display: none;
}

.wtc-case-panel strong {
	color: var(--wtc-text);
	font-size: 11px;
}

.wtc-case-panel p {
	margin: 6px 0 0;
	font-size: 9px;
}

.wtc-standalone-part {
	--family: var(--wtc-blue);
	width: 100%;
}

.wtc-standalone-part .wtc-product-preview {
	border: 1px solid var(--wtc-line);
	border-radius: var(--wtc-radius);
	overflow: hidden;
}

.wtc-system-preview {
	min-height: 680px;
}

.wtc-system-canvas {
	justify-content: flex-start;
}

.wtc-system-description {
	max-width: 620px;
	margin-bottom: 22px;
}

.wtc-system-description h3 {
	font-size: clamp(22px, 2.5vw, 34px);
}

.wtc-built-system {
	width: 100%;
	margin-bottom: 24px;
	border: 1px solid color-mix(in srgb, var(--family) 32%, var(--wtc-line));
	border-radius: 16px;
	background: rgba(3, 9, 19, 0.68);
	overflow: hidden;
}

.wtc-built-section,
.wtc-built-kit {
	display: flex;
	min-height: 250px;
	flex-direction: column;
	justify-content: center;
	padding: 26px;
	color: var(--wtc-text);
}

.wtc-built-section h4,
.wtc-built-kit h4 {
	margin: 8px 0;
	color: var(--wtc-text);
	font-size: clamp(22px, 3vw, 34px);
	letter-spacing: -0.04em;
}

.wtc-built-section p,
.wtc-built-kit p {
	margin: 0 0 18px;
	color: #a9b7cc;
	font-size: 11px;
	line-height: 1.6;
}

.wtc-built-hero > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.wtc-built-hero a {
	color: #d9e4f5;
	font-size: 10px;
	font-weight: 800;
}

.wtc-built-section-head {
	margin-bottom: 14px;
}

.wtc-built-feature-grid,
.wtc-built-price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.wtc-built-price-grid {
	grid-template-columns: repeat(2, 1fr);
}

.wtc-built-feature-grid article,
.wtc-built-price-grid article {
	display: grid;
	gap: 6px;
	padding: 14px;
	border: 1px solid var(--wtc-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.025);
}

.wtc-built-feature-grid article > span:first-child {
	color: var(--family);
	font-family: ui-monospace, monospace;
	font-size: 9px;
}

.wtc-built-feature-grid strong,
.wtc-built-price-grid strong {
	color: var(--wtc-text);
	font-size: 13px;
}

.wtc-built-feature-grid small,
.wtc-built-price-grid small,
.wtc-built-price-grid span {
	color: #8fa0b9;
	font-size: 8px;
}

.wtc-built-contact {
	gap: 10px;
}

.wtc-built-contact label,
.wtc-built-filter label {
	display: grid;
	gap: 6px;
	color: #c5d1e2;
	font-size: 9px;
	font-weight: 700;
}

.wtc-built-contact input,
.wtc-built-filter select {
	width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 8px;
	outline: 0;
	background: #07111f;
	color: var(--wtc-text);
}

.wtc-built-header {
	display: flex;
	min-height: 68px;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--wtc-line);
	background: rgba(3, 8, 19, 0.94);
}

.wtc-built-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: auto;
	color: var(--wtc-text) !important;
}

.wtc-built-brand > span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid var(--family);
	border-radius: 8px 8px 3px 8px;
	color: var(--family);
}

.wtc-built-brand strong {
	font-size: 11px;
}

.wtc-built-header nav {
	display: flex;
	gap: 14px;
}

.wtc-built-header nav a,
.wtc-built-cta,
.wtc-built-mobile-menu a {
	color: #b7c5d9;
	font-size: 9px;
	font-weight: 700;
}

.wtc-built-header [data-wtc-demo-menu] {
	display: none;
}

.wtc-built-cta {
	padding: 8px 10px;
	border-radius: 7px;
	background: var(--family);
	color: white !important;
}

.wtc-built-mobile-menu {
	display: grid;
	gap: 0;
	padding: 6px 18px 14px;
	border-bottom: 1px solid var(--wtc-line);
	background: #07111f;
}

.wtc-built-mobile-menu[hidden] {
	display: none;
}

.wtc-built-mobile-menu a {
	padding: 10px 0;
	border-bottom: 1px solid var(--wtc-line);
}

.wtc-built-footer {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 20px;
	min-height: 230px;
	padding: 28px;
	background: linear-gradient(160deg, #081425, #030815);
}

.wtc-built-footer p {
	max-width: 260px;
	color: #8fa0b9;
	font-size: 9px;
	line-height: 1.6;
}

.wtc-built-footer nav {
	display: grid;
	align-content: start;
	gap: 9px;
}

.wtc-built-footer nav strong {
	color: var(--family);
	font-size: 9px;
	text-transform: uppercase;
}

.wtc-built-footer nav a {
	color: #b6c3d6;
	font-size: 9px;
}

.wtc-built-tab-navigation,
.wtc-built-filter {
	display: flex;
	min-height: 210px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 26px;
}

.wtc-built-tab-navigation button[aria-pressed="true"] {
	background: var(--family);
}

.wtc-built-tab-navigation output,
.wtc-built-filter output {
	flex-basis: 100%;
	color: #9fb0c9;
	font-size: 9px;
	text-align: center;
}

.wtc-built-navigation--mobile {
	width: min(330px, 100%);
	margin: 20px auto;
	border: 1px solid var(--wtc-line);
	border-radius: 14px;
	overflow: hidden;
}

.wtc-built-navigation--mobile .wtc-built-header [data-wtc-demo-menu] {
	display: inline-flex;
}

.wtc-built-kit-hero {
	padding: 28px;
}

.wtc-demo-note {
	min-height: 48px;
	margin: 0;
	color: #8fa0b9;
	font-size: 10px;
	line-height: 1.55;
}

.wtc-skin-switcher {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
}

.wtc-skin-switcher button {
	display: grid;
	width: 26px;
	height: 26px;
	min-height: 26px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 50%;
	background: #07111f;
	cursor: pointer;
}

.wtc-skin-switcher button[aria-pressed="true"] {
	border-color: var(--family);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--family) 15%, transparent);
}

.wtc-skin-switcher button > span {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--swatch);
}

.wtc-system-product-bar {
	display: grid;
	gap: 14px;
	padding: 20px;
	border-top: 1px solid var(--wtc-line);
	background: linear-gradient(180deg, rgba(13, 27, 47, 0.93), rgba(6, 15, 28, 0.98));
}

.wtc-system-specs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.wtc-system-specs > span,
.wtc-system-pricing > span {
	display: grid;
	align-content: start;
	gap: 4px;
	padding: 10px;
	border: 1px solid var(--wtc-line);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.02);
}

.wtc-system-specs small,
.wtc-system-pricing small {
	color: #7f90aa;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wtc-system-specs strong {
	color: #dce5f3;
	font-size: 9px;
	line-height: 1.4;
}

.wtc-system-product-bar > p {
	margin: 0;
	color: #9eacc1;
	font-size: 9px;
	line-height: 1.6;
}

.wtc-system-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.wtc-system-pricing > span {
	position: relative;
}

.wtc-system-pricing strong {
	color: var(--wtc-text);
	font-size: 18px;
}

.wtc-system-actions {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	gap: 8px;
}

.wtc-system-actions button,
.wtc-system-actions a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 9px 11px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.025);
	color: #dce5f3;
	font-size: 9px;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
}

.wtc-system-actions > :first-child {
	border-color: transparent;
	background: linear-gradient(135deg, var(--family), color-mix(in srgb, var(--family) 58%, #5b35f5));
	color: #fff;
}

.wtc-system-preview.wtc-rx-eligible .wtc-rx-price::after,
.wtc-built-form.wtc-rx-eligible .wtc-rx-price::after {
	display: none;
}

.wtc-system-preview.wtc-rx-eligible .wtc-rx-price strong,
.wtc-built-form.wtc-rx-eligible .wtc-rx-price strong {
	color: var(--wtc-green);
}

.wtc-built-form {
	--family: var(--wtc-blue);
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
	color: var(--wtc-text);
}

.wtc-built-form label {
	display: grid;
	gap: 7px;
	color: #c4d0e2;
	font-size: 10px;
	font-weight: 700;
}

.wtc-built-form input,
.wtc-built-form select {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--wtc-line-strong);
	border-radius: 8px;
	outline: 0;
	background: #07111f;
	color: var(--wtc-text);
}

.wtc-built-form > button[type="submit"] {
	min-height: 44px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--family), color-mix(in srgb, var(--family) 58%, #5b35f5));
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 1180px) {
	.wtc-site-header.e-con > .wtc-button {
		display: none;
	}

	.wtc-nav {
		gap: 15px;
	}

	.wtc-nav a {
		font-size: 11px;
	}

	.wtc-product-widget {
		width: calc(50% - 10px);
	}

	.wtc-family-grid > .elementor-element,
	.wtc-step-grid > .elementor-element {
		width: calc(33.333% - 14px);
	}
}

@media (max-width: 900px) {
	.admin-bar .wtc-site-header.e-con {
		top: 46px;
	}

	button.wtc-nav-toggle {
		display: block !important;
	}

	.wtc-nav {
		position: fixed;
		top: 82px;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100dvh - 82px);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 18px var(--wtc-gutter) 26px;
		border-bottom: 1px solid var(--wtc-line);
		background: rgba(3, 8, 22, 0.98);
		overflow-y: auto;
	}

	.admin-bar .wtc-nav {
		top: 128px;
	}

	.wtc-nav.is-open {
		display: flex;
	}

	.wtc-nav a {
		padding: 15px 0;
		border-bottom: 1px solid var(--wtc-line);
		font-size: 14px;
	}

	.wtc-mobile-plan {
		display: flex !important;
		width: 100% !important;
		min-height: 48px;
		align-items: center;
		justify-content: space-between;
		padding: 12px 0 !important;
		border: 0 !important;
		border-bottom: 1px solid var(--wtc-line) !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		color: var(--wtc-text) !important;
		font-size: 14px;
		font-weight: 700;
		text-align: left;
	}

	.wtc-mobile-plan strong {
		display: grid;
		width: 28px;
		height: 28px;
		place-items: center;
		border-radius: 50%;
		background: var(--wtc-blue);
		color: #fff;
		font-size: 11px;
	}

	.wtc-hero.e-con {
		min-height: 720px;
	}

	.wtc-hero::before {
		right: -130px;
		top: 68%;
	}

	.wtc-hero::after {
		right: 20px;
		top: 68%;
	}

	.wtc-hero > * {
		max-width: 760px !important;
		margin-left: 0 !important;
	}

	.wtc-form-showcase,
	.wtc-prescription-form .wtc-form-grid {
		grid-template-columns: 1fr;
	}

	.wtc-system-widget {
		width: 100%;
	}

	.wtc-metric-grid > .elementor-element,
	.wtc-pricing-grid > .elementor-element {
		width: calc(50% - 10px);
	}
}

@media (max-width: 680px) {
	:root {
		--wtc-gutter: 18px;
		--wtc-section: 68px;
	}

	.wtc-site-header.e-con {
		min-height: 70px;
		padding: 11px 16px;
	}

	.wtc-brand-mark {
		width: 34px;
		height: 34px;
	}

	.wtc-brand strong {
		font-size: 15px;
	}

	.wtc-brand small {
		display: none;
	}

	.wtc-nav {
		top: 70px;
	}

	.admin-bar .wtc-nav {
		top: 116px;
	}

	.wtc-hero.e-con {
		min-height: 660px;
		padding-top: 92px;
		padding-bottom: 92px;
	}

	.wtc-hero::before,
	.wtc-hero::after {
		opacity: 0.42;
	}

	.wtc-display .elementor-heading-title {
		font-size: clamp(40px, 11.4vw, 48px);
		line-height: 1;
	}

	.wtc-lead p {
		font-size: 16px;
		line-height: 1.6;
	}

	.wtc-actions.e-con {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.wtc-actions .elementor-widget-button,
	.wtc-actions .elementor-button {
		width: 100%;
	}

	.wtc-signal p {
		font-size: 10px;
	}

	.wtc-signal span {
		margin: 0 5px;
	}

	.wtc-filter {
		grid-template-columns: 1fr;
	}

	.wtc-filter output {
		grid-column: auto;
	}

	.wtc-product-widget,
	.wtc-family-grid > .elementor-element,
	.wtc-step-grid > .elementor-element,
	.wtc-metric-grid > .elementor-element,
	.wtc-pricing-grid > .elementor-element {
		width: 100%;
	}

	.wtc-product-card {
		min-height: 0;
	}

	.wtc-product-body {
		padding: 20px;
	}

	.wtc-card-actions {
		grid-template-columns: 1fr;
	}

	.wtc-card-actions > :first-child {
		grid-column: auto;
	}

	.wtc-split-panel.e-con {
		flex-direction: column;
	}

	.wtc-split-panel > .elementor-element {
		width: 100%;
		padding: 28px;
	}

	.wtc-split-panel > :first-child {
		border-radius: var(--wtc-radius) var(--wtc-radius) 0 0;
	}

	.wtc-split-panel > :last-child {
		border-top: 0;
		border-left: 1px solid var(--wtc-line);
		border-radius: 0 0 var(--wtc-radius) var(--wtc-radius);
	}

	.wtc-form-grid {
		grid-template-columns: 1fr;
	}

	.wtc-system-canvas {
		min-height: 320px;
		padding: 26px;
	}

	.wtc-browser-bar small {
		max-width: 170px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.wtc-plan-trigger {
		right: auto;
		bottom: 12px;
		left: 14px;
	}

	button.wtc-plan-trigger {
		display: none !important;
	}

	.wtc-plan-trigger span {
		display: none;
	}

	.wtc-plan-drawer {
		width: 100%;
		padding: 22px;
	}

	.wtc-toast {
		right: 16px;
		bottom: 148px;
		left: 16px;
	}

	.kodee-fab {
		bottom: 12px !important;
	}

	.kodee-fab__label {
		display: none !important;
	}

	.wtc-footer-links {
		flex-direction: column;
		gap: 14px;
	}

	.wtc-product-preview {
		min-height: 310px;
		padding: 50px 14px 18px;
	}

	.wtc-built-card {
		width: 100%;
	}

	.wtc-system-preview {
		min-height: 0;
	}

	.wtc-system-description h3 {
		font-size: 24px;
	}

	.wtc-built-section,
	.wtc-built-kit {
		padding: 18px;
	}

	.wtc-built-feature-grid,
	.wtc-built-price-grid,
	.wtc-built-footer,
	.wtc-system-specs,
	.wtc-system-pricing,
	.wtc-system-actions {
		grid-template-columns: 1fr;
	}

	.wtc-built-header nav,
	.wtc-built-header .wtc-built-cta {
		display: none;
	}

	.wtc-built-header [data-wtc-demo-menu] {
		display: inline-flex;
	}

	.wtc-built-footer {
		min-height: 0;
	}

	.wtc-built-hero > div {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
