:root {
	--bg: #050505;
	--ink: #f7f7f4;
	--muted: #a7a39a;
	--line: rgba(255, 255, 255, 0.14);
	--panel: #101010;
	--panel-2: #171613;
	--gold: #c8a96a;
	--gold-2: #e3ca8c;
	--steel: #8a929c;
	--max: 1180px;
	--header-h: 76px;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

body.vektor-site {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

body.nav-open,
body.products-filter-open {
	overflow: hidden;
}

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

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

.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;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
	min-height: var(--header-h);
	padding: 14px clamp(18px, 4vw, 44px);
	background: rgba(5, 5, 5, 0.84);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 600;
	letter-spacing: 0;
}

.brand-symbol {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #050505;
	background: linear-gradient(135deg, var(--gold-2), var(--gold));
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	font-size: 14px;
	padding-top: 8px;
}

.brand-word {
	font-size: 20px;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 3vw, 34px);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
}

.primary-nav a {
	color: rgba(255, 255, 255, 0.86);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--gold-2);
}

.nav-group {
	position: relative;
}

.nav-panel {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	display: grid;
	min-width: 170px;
	padding: 12px;
	background: rgba(13, 13, 13, 0.96);
	border: 1px solid var(--line);
	transform: translateX(-50%) translateY(8px);
	opacity: 0;
	pointer-events: none;
	transition: 160ms ease;
}

.nav-panel a {
	padding: 8px 10px;
	text-transform: none;
	font-weight: 600;
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

@media (min-width: 1181px) {
	.nav-panel {
		left: -25px;
		transform: translateY(8px);
	}

	.nav-group:hover .nav-panel,
	.nav-group:focus-within .nav-panel {
		transform: translateY(0);
	}

	.nav-group::after {
		content: "";
		position: absolute;
		top: 100%;
		left: -18px;
		right: -18px;
		height: 36px;
	}
}

.header-search {
	display: grid;
	grid-template-columns: minmax(110px, 160px) 36px;
	align-items: center;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.06);
}

.header-search input {
	width: 100%;
	min-width: 0;
	height: 38px;
	padding: 0 12px;
	color: var(--ink);
	background: transparent;
	border: 0;
	outline: 0;
}

.header-search button {
	height: 38px;
	color: var(--gold-2);
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 20px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line);
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.site-main {
	min-height: 70vh;
}

.home-hero,
.page-hero,
.product-hero {
	position: relative;
	min-height: min(760px, calc(100vh - var(--header-h)));
	overflow: hidden;
	background: #030303;
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 480ms ease;
}

.home-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.home-hero__image,
.page-hero__image,
.page-hero__picture,
.page-hero__picture img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	opacity: 0.72;
}

.home-hero::after,
.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.72));
	pointer-events: none;
}

.home-hero__content,
.page-hero__content {
	position: absolute;
	z-index: 1;
	left: clamp(22px, 8vw, 110px);
	bottom: clamp(58px, 14vh, 150px);
	max-width: 740px;
}

.home-hero__content {
	bottom: clamp(42px, 9vh, 90px);
	max-width: 720px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 22px;
	font-size: clamp(42px, 7vw, 88px);
	line-height: 0.98;
	letter-spacing: 0;
}

.home-hero h1 {
	font-size: clamp(40px, 6vw, 74px);
	line-height: 1.05;
}

h2 {
	font-size: clamp(28px, 4vw, 46px);
	line-height: 1.04;
	letter-spacing: 0;
}

h3 {
	font-size: 20px;
	line-height: 1.18;
}

p {
	color: rgba(255, 255, 255, 0.74);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid transparent;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	cursor: pointer;
}

.btn--gold {
	color: #080808;
	background: var(--gold);
	border-color: var(--gold);
}

.btn--outline,
.btn--plain {
	color: var(--ink);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.32);
}

.btn--plain {
	min-height: 38px;
}

.carousel-dots {
	position: absolute;
	z-index: 2;
	right: clamp(20px, 5vw, 72px);
	bottom: 36px;
	display: flex;
	gap: 10px;
}

.carousel-dots button {
	width: 34px;
	height: 3px;
	padding: 0;
	background: rgba(255, 255, 255, 0.38);
	border: 0;
	cursor: pointer;
}

.carousel-dots button.is-active {
	background: var(--gold);
}

.section {
	width: min(100% - 36px, var(--max));
	margin: 0 auto;
	padding: clamp(72px, 9vw, 120px) 0;
}

.section--soft {
	width: 100%;
	padding-left: max(18px, calc((100vw - var(--max)) / 2));
	padding-right: max(18px, calc((100vw - var(--max)) / 2));
	background: #0c0c0b;
}

.section-intro {
	max-width: 720px;
	margin-bottom: 34px;
}

.trait-grid,
.product-grid,
.news-grid,
.console-grid,
.category-grid,
.feature-grid {
	display: grid;
	gap: 18px;
}

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

.traits-band {
	padding-top: 44px;
	padding-bottom: 44px;
}

.trait-card {
	padding: 30px;
	border-left: 1px solid var(--line);
}

.trait-card img {
	width: 46px;
	height: 46px;
	object-fit: contain;
	margin-bottom: 18px;
}

.trait-card h2 {
	font-size: 20px;
	margin-bottom: 8px;
}

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

.category-tile,
.product-card,
.news-card,
.console-card,
.feature-card {
	background: var(--panel);
	border: 1px solid var(--line);
	overflow: hidden;
}

.category-tile {
	position: relative;
	aspect-ratio: 4 / 5;
}

.category-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.category-tile span {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 1;
	font-weight: 600;
	text-transform: uppercase;
}

.category-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.category-tile:hover img {
	transform: scale(1.04);
}

.app-band,
.contact-cta {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	align-items: center;
	gap: clamp(26px, 5vw, 68px);
	padding: clamp(58px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
	background: linear-gradient(135deg, #111, #201d15);
}

.app-band__image,
.contact-cta__image {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

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

.product-card__media {
	display: grid;
	place-items: center;
	min-height: 240px;
	padding: 20px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02) 48%, transparent);
}

.product-card__media img {
	max-height: 220px;
	object-fit: contain;
	transition: transform 240ms ease;
}

.product-card:hover .product-card__media img {
	transform: translateY(-4px) scale(1.03);
}

.product-card__body,
.news-card__body,
.console-card {
	padding: 20px;
}

.product-card__body p,
.news-card__body p,
.sku {
	margin-bottom: 7px;
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.product-card__body span,
.news-card__body span {
	color: var(--muted);
	font-size: 14px;
}

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

.news-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.page-hero {
	min-height: 440px;
}

.page-hero__content {
	bottom: 72px;
}

.page-hero__content p:last-child {
	max-width: 640px;
	font-size: 18px;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.filter-bar button {
	min-height: 40px;
	padding: 0 15px;
	color: var(--ink);
	background: transparent;
	border: 1px solid var(--line);
	cursor: pointer;
	font-weight: 700;
}

.filter-bar button.is-active {
	color: #050505;
	background: var(--gold);
	border-color: var(--gold);
}

.product-card.is-hidden {
	display: none;
}

.product-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	gap: clamp(20px, 5vw, 70px);
	align-items: center;
	padding: clamp(70px, 9vw, 122px) max(18px, calc((100vw - var(--max)) / 2));
	min-height: 620px;
}

.product-hero__copy {
	max-width: 620px;
}

.product-hero__copy p:not(.eyebrow):not(.sku) {
	font-size: 18px;
}

.product-hero__media {
	display: grid;
	place-items: center;
	min-height: 440px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 46%, transparent);
}

.product-hero__media img {
	max-height: 560px;
	object-fit: contain;
}

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

.feature-card {
	min-height: 230px;
}

.feature-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.feature-card h3 {
	padding: 16px;
	font-size: 16px;
}

.product-feature-layout {
	display: grid;
	gap: 42px;
	padding: 52px 0 16px;
	background: #ffffff;
}

.product-feature-layout__lead {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 520px;
	background: #ffffff;
}

.product-feature-layout__lead img {
	max-height: 500px;
	object-fit: contain;
}

.product-feature-layout__lead h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(100% - 80px, 760px);
	margin: 0;
	padding: 18px 28px;
	color: #ffffff;
	background: rgba(50, 50, 50, 0.44);
	border-left: 8px solid #9f66bd;
	border-right: 8px solid #9f66bd;
	font-size: clamp(28px, 3.2vw, 46px);
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.18em;
	transform: translate(-50%, -50%);
}

.feature-grid--tab {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 74px 118px;
	width: min(100%, 1260px);
	margin: 0 auto;
}

.feature-grid--tab .feature-card {
	background: #ffffff;
}

.feature-grid--tab .feature-card img {
	aspect-ratio: 1 / 1;
	background: #e9edf2;
}

.tabs {
	width: min(100% - 36px, var(--max));
	margin: 0 auto;
}

.tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.tab-list button {
	min-height: 42px;
	padding: 0 16px;
	color: var(--ink);
	background: #0b0b0b;
	border: 1px solid var(--line);
	cursor: pointer;
	font-weight: 600;
}

.tab-list button.is-active {
	color: #050505;
	background: var(--gold);
	border-color: var(--gold);
}

.tab-panel {
	display: none;
}

.tab-panel.is-active {
	display: block;
}

.tab-panel>img {
	width: 100%;
	max-height: 760px;
	object-fit: contain;
	background: #0b0b0b;
	border: 1px solid var(--line);
}

.spec-layout,
.detail-tables,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.spec-layout>img {
	width: 100%;
	background: #0b0b0b;
	border: 1px solid var(--line);
}

.spec-table,
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: #0d0d0d;
	border: 1px solid var(--line);
}

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

.spec-table th,
.comparison-table th {
	width: 34%;
	color: var(--gold-2);
	font-size: 13px;
	text-transform: uppercase;
}

.comparison-wrap:not(.is-open) .comparison-table .is-extra {
	display: none;
}

.comparison-wrap .btn {
	margin-top: 18px;
}

.product-detail-hero,
.product-detail-tabs,
.product-app-panel,
.product-comparison-section,
.product-related-section {
	color: var(--ink);
	background: #ffffff;
}


.product-detail-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.54fr) minmax(360px, 0.46fr);
	gap: clamp(42px, 5.2vw, 92px);
	align-items: start;
	width: min(100% - 96px, 1380px);
	margin: 0 auto;
	padding: clamp(78px, 6.8vw, 132px) 0 clamp(56px, 5.3vw, 102px);
	background: transparent;
}


.product-detail-gallery {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	gap: clamp(18px, 2.2vw, 36px);
	align-items: center;
	min-width: 0;
}

.product-detail-gallery__rail {
	width: 126px;
	display: grid;
	align-content: start;
}

.product-detail-gallery__thumbs {
	display: grid;
	width: 126px;
	gap: 16px;
}

.product-detail-gallery__thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
}

.product-detail-gallery__thumb[hidden] {
	display: none !important;
}

.product-detail-gallery__thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: transparent;
}

.product-detail-gallery__thumb.is-active {
	border-color: var(--gold-2);
}

.product-detail-gallery__main {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 0;
	min-height: clamp(360px, 31vw, 560px);
}

.product-detail-hero__copy {
	padding-top: clamp(6px, 1vw, 18px);
}

.product-detail-hero__copy .breadcrumb {
	justify-content: flex-start;
	margin: 0 0 28px;
	color: #8a8a8a;
	font-size: 12px;
}

.product-detail-hero__copy h1 {
	margin: 0 0 18px;
	color: #151515;
	font-size: clamp(25px, 2.25vw, 36px);
	line-height: 1.12;
	font-weight: 800;
	text-transform: uppercase;
}

.product-detail-hero__copy p {
	max-width: 620px;
	margin: 0;
	color: #252525;
	font-size: clamp(14px, 1.04vw, 17px);
	line-height: 1.58;
	font-weight: 500;
}

.product-detail-meta {
	display: grid;
	gap: 9px;
	margin: clamp(36px, 3.5vw, 58px) 0 0;
	padding-top: 24px;
	border-top: 1px solid #d8d8d8;
}

.product-detail-meta div {
	display: flex;
	gap: 7px;
	color: #111111;
	font-size: 12px;
	font-weight: 700;
}

.product-detail-meta dt,
.product-detail-meta dd {
	margin: 0;
}

.product-detail-tabs {
	position: relative;
	width: min(100% - 96px, 1380px);
	margin: 0 auto;
	padding: 0 0 clamp(60px, 5.5vw, 106px);
	border-top: 0;
	scroll-margin-top: clamp(96px, 8vw, 132px);
}

.product-detail-tabs::before {
	content: "";
	display: block;
	width: min(100%, 1191px);
	margin: 0 auto;
	border-top: 1px solid #d5d5d5;
}

.product-detail-tab-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: clamp(44px, 4.4vw, 84px) 0 clamp(54px, 5vw, 96px);
}

.product-detail-tab-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(210px, 17.8vw, 342px);
	min-height: clamp(42px, 3.2vw, 62px);
	color: #151515;
	border-bottom: 2px solid #151515;
	font-size: clamp(13px, 0.98vw, 18px);
	font-weight: 700;
}

.product-detail-tab-list a.is-active {
	color: var(--gold-2);
	background: #10161d;
	border-bottom-color: var(--gold-2);
	font-weight: 300;
}

.product-detail-panel {
	display: none;
}

.product-detail-panel.is-active {
	display: block;
}

.product-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(48px, 5vw, 92px) clamp(52px, 6vw, 110px);
}

.product-feature-tile img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #eef0f3;
}

.product-feature-tile h2,
.product-feature-band h2,
.product-specs-table-wrap h2,
.product-related-section h2 {
	margin: 24px 0 10px;
	color: #151515;
	font-size: clamp(22px, 1.7vw, 32px);
	line-height: 1.15;
	font-weight: 800;
}

.product-feature-tile p,
.product-feature-band p {
	margin: 0;
	color: #333333;
	font-size: clamp(14px, 1vw, 17px);
	line-height: 1.5;
	font-weight: 500;
}

.product-feature-stack {
	display: grid;
	gap: 0;
}

.product-feature-band {
	display: grid;
	grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
	gap: clamp(42px, 5vw, 92px);
	align-items: center;
	min-height: clamp(420px, 34vw, 660px);
	padding: clamp(54px, 5.2vw, 96px) max(48px, calc((100vw - 1380px) / 2));
	background: #f6f7f8;
}

.product-feature-band:nth-child(even) {
	background: #eef2f6;
}

.product-feature-band--reverse img {
	order: 2;
}

.product-feature-band img {
	width: 100%;
	max-height: clamp(320px, 30vw, 580px);
	object-fit: contain;
}

.product-specs-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
	gap: clamp(42px, 5vw, 90px);
	align-items: start;
}

.product-specs-table-wrap h2 {
	margin-top: 0;
	font-size: clamp(18px, 1.35vw, 26px);
}

.product-specs-layout .spec-table {
	color: #151515;
	background: #ffffff;
	border: 0;
}

.product-specs-layout .spec-table th,
.product-specs-layout .spec-table td {
	padding: 11px 16px;
	border: 0;
	color: #151515;
	font-size: clamp(12px, 0.9vw, 15px);
}

.product-specs-layout .spec-table tr:nth-child(even) {
	background: #fbf0df;
}

.product-specs-layout .spec-table th {
	width: 48%;
	font-weight: 800;
	text-transform: none;
}

.product-specs-dimension img {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
}

.product-app-panel {
	display: grid;
	grid-template-columns: minmax(320px, 0.56fr) minmax(260px, 0.44fr);
	gap: clamp(32px, 4vw, 70px);
	align-items: center;
	width: min(100% - 96px, 1380px);
	margin: 0 auto clamp(70px, 6vw, 116px);
	padding: clamp(42px, 4.5vw, 82px);
	background: #f5f5f5;
}

.product-app-panel h2 {
	margin: 0 0 14px;
	color: #151515;
	font-size: clamp(22px, 1.9vw, 34px);
	font-weight: 800;
}

.product-app-panel p {
	max-width: 620px;
	color: #333333;
	font-size: clamp(14px, 1vw, 17px);
	line-height: 1.55;
	font-weight: 500;
}

.product-app-panel__qrs {
	display: flex;
	gap: 18px;
	margin: 24px 0 22px;
}

.product-app-panel__qrs img {
	width: clamp(86px, 7vw, 126px);
	height: clamp(86px, 7vw, 126px);
	object-fit: contain;
}

.product-app-panel__image {
	width: 100%;
	max-height: 420px;
	object-fit: contain;
}

.product-comparison-section {
	width: min(100% - 96px, 920px);
	margin: 0 auto clamp(70px, 6vw, 116px);
}

.product-comparison-section .comparison-table {
	color: #151515;
	background: #ffffff;
	border: 0;
}

.product-comparison-section .comparison-table th,
.product-comparison-section .comparison-table td {
	border-bottom: 1px solid #e2e2e2;
	color: #151515;
	font-size: clamp(12px, 0.9vw, 15px);
}

.product-related-section {
	width: min(100% - 96px, 1380px);
	margin: 0 auto;
	padding-bottom: clamp(78px, 7vw, 132px);
}

.product-related-section>h2 {
	margin-top: 0;
	margin-bottom: 34px;
}

.product-detail-hero,
.product-detail-tabs {
	width: min(100% - 144px, 1600px);
}

.product-detail-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.48fr) minmax(430px, 0.52fr);
	gap: clamp(58px, 5vw, 96px);
	padding: clamp(72px, 5.1vw, 98px) 0 clamp(58px, 4.3vw, 82px);
}

.product-detail-gallery {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	gap: clamp(30px, 2.4vw, 40px);
}

.product-detail-gallery__thumbs {
	width: 126px;
	gap: 16px;
}

.product-detail-gallery__thumbs img {
	width: 100%;
	background: transparent;
}

.product-detail-gallery__controls {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	width: 126px;
	margin-top: 14px;
}

.product-detail-gallery__controls button {
	display: grid;
	place-items: center;
	flex: 0 0 58px;
	width: 58px;
	min-width: 58px;
	height: 31px;
	padding: 0;
	border: 0;
	appearance: none;
	background: #f5f5f5;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
	color: transparent;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
}

.product-detail-gallery__controls button:disabled {
	opacity: 0.4;
	cursor: default;
}

.product-detail-gallery__controls button:first-child {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 11L9 6L14 11' fill='none' stroke='%23929292' stroke-width='2.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.product-detail-gallery__controls button:nth-child(2) {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7L9 12L14 7' fill='none' stroke='%23929292' stroke-width='2.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.product-detail-gallery__main {
	width: 100%;
	min-width: 0;
	min-height: clamp(360px, 30vw, 560px);
}


.product-detail-gallery__main-item {
	display: none;
	width: 100%;
	margin: 0;
}

.product-detail-gallery__main-item.is-active {
	display: grid;
	place-items: center;
}

.product-detail-gallery__main-item img {
	width: auto;
	height: auto;
	max-width: clamp(360px, 34vw, 560px);
	max-height: clamp(360px, 30vw, 560px);
}

.product-detail-hero__copy {
	padding-top: clamp(12px, 1.4vw, 26px);
}

.product-detail-hero__copy .breadcrumb {
	margin-bottom: 24px;
	font-size: 12px;
}

.product-detail-hero__copy h1 {
	margin-bottom: 18px;
	font-size: clamp(28px, 1.58vw, 30px);
	line-height: 1.16;
}

.product-detail-hero__copy p {
	max-width: 640px;
	color: #000000 !important;
	font-size: clamp(13px, 1.86vw, 17px);
	line-height: 1.58;
	font-weight: 300;
}

.product-detail-meta {
	margin-top: clamp(42px, 4.4vw, 84px);
	padding-top: 30px;
	border-top: 1px solid #000000;
}

.product-detail-meta div {
	font-size: 16px;
}

.product-detail-meta dt {
	font-weight: 600;
}

.product-detail-meta dd {
	font-weight: 300;
}

.product-detail-tabs {
	padding-bottom: 0;
	border-top: 0;
}

.product-detail-tab-list {
	padding: clamp(42px, 4.2vw, 80px) 0 clamp(50px, 4.8vw, 92px);
}

.product-detail-tab-list a {
	min-width: clamp(190px, 11.4vw, 220px);
	min-height: clamp(40px, 2.8vw, 54px);
	border-bottom: 0;
	font-size: 13px;
}

.product-feature-video {
	position: relative;
	width: min(100%, 760px);
	margin: 0 auto clamp(70px, 6vw, 116px);
	background: #f4f4f4;
}

.product-feature-video video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.product-feature-video figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 82%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	padding: 12px 24px;
	background: rgba(91, 62, 125, 0.62);
	color: #ffffff;
	font-size: clamp(24px, 2.3vw, 44px);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-align: center;
}

.product-feature-video__play {
	position: absolute;
	left: 50%;
	bottom: 68px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	transform: translateX(-50%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	padding: 10px 18px;
	background: rgba(16, 18, 22, 0.78);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	cursor: pointer;
	backdrop-filter: blur(8px);
}

.product-feature-video__play[hidden],
.product-feature-video.is-playing .product-feature-video__play {
	display: none;
}

.product-feature-video__play span {
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
}

.product-feature-video__play:hover,
.product-feature-video__play:focus-visible {
	background: rgba(16, 18, 22, 0.92);
}

.product-feature-grid {
	width: min(100%, 1460px);
	margin: 0 auto;
	gap: clamp(82px, 6.8vw, 132px) clamp(84px, 7.8vw, 150px);
}

.product-feature-tile h2,
.product-feature-band h2 {
	margin: 18px 0 8px;
	font-size: clamp(16px, 1.08vw, 21px);
	line-height: 1.18;
}

.product-feature-tile p,
.product-feature-band p {
	font-size: clamp(12px, 0.76vw, 14px);
	line-height: 1.42;
	color: #333333;
}

.product-feature-stack {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.product-feature-band {
	grid-template-columns: minmax(0, 0.5fr) minmax(330px, 0.5fr);
	gap: clamp(52px, 5.4vw, 104px);
	min-height: clamp(500px, 36.8vw, 706px);
	padding: clamp(76px, 5.8vw, 112px) max(80px, calc((100vw - 1520px) / 2 + 64px));
}

.product-feature-band img {
	max-height: clamp(310px, 28vw, 540px);
}

.product-feature-band>div {
	max-width: 520px;
}

.product-feature-band h2 {
	font-size: clamp(20px, 1.35vw, 26px);
}

.product-specs-layout {
	grid-template-columns: minmax(460px, 0.52fr) minmax(360px, 0.48fr);
	gap: clamp(54px, 5.4vw, 104px);
	align-items: center;
	width: min(100%, 1560px);
	margin: 0 auto;
}

.product-specs-layout .spec-table th,
.product-specs-layout .spec-table td {
	padding: 11px;
	font-size: 16px;
	line-height: 1.28;
}

.product-specs-layout .spec-table th {
	font-weight: 600;
}

.product-specs-layout .spec-table tr:nth-child(even) {
	background: transparent;
}

.product-specs-layout .spec-table tr:not(.spec-section):nth-child(odd) {
	background: #fff4e6;
}

.product-specs-layout .spec-table .spec-section th {
	padding: 48px 0 20px;
	background: #ffffff;
	border-bottom: 0;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
}

.product-specs-layout .spec-table .spec-section:first-child th {
	padding-top: 0;
}

.product-specs-dimension img {
	max-height: 100%;
}

.product-detail-tabs--fan-bike-trainer.product-detail-tabs--specs .product-specs-layout {
	align-items: start;
	width: min(100%, 1760px);
	gap: clamp(58px, 4.8vw, 92px);
}

.product-detail-tabs--fan-bike-trainer.product-detail-tabs--specs .product-specs-dimension {
	margin-top: clamp(176px, 13vw, 250px);
}

.product-app-panel {
	grid-template-columns: minmax(440px, 0.58fr) minmax(340px, 0.42fr);
	width: min(100% - 88px, 1760px);
	margin-bottom: clamp(76px, 6.2vw, 120px);
	padding: clamp(54px, 5.2vw, 100px) clamp(70px, 7vw, 134px);
}

.product-app-panel h2 {
	font-size: clamp(19px, 1.28vw, 25px);
}

.product-app-panel p {
	max-width: 560px;
	font-size: clamp(12px, 0.78vw, 15px);
}

.product-app-panel__qrs img {
	width: clamp(108px, 7.6vw, 146px);
	height: clamp(108px, 7.6vw, 146px);
}

.product-app-panel__image {
	max-height: clamp(300px, 27vw, 520px);
}

.product-app-panel .btn {
	min-height: clamp(44px, 3.1vw, 60px);
	padding: 0 clamp(24px, 2.2vw, 42px);
	border-radius: 999px;
	background: #ffd18b;
	border-color: #ffd18b;
	color: #111111;
	font-size: clamp(13px, 0.9vw, 17px);
	font-weight: 800;
	text-transform: none;
}

.product-comparison-section {
	width: min(100% - 280px, 1320px);
	margin-bottom: clamp(78px, 6.4vw, 124px);
}

.product-comparison-section h2 {
	margin: 0;
	padding: 15px 24px;
	background: #111111;
	color: var(--gold-2);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.product-comparison-section .comparison-table th,
.product-comparison-section .comparison-table td {
	padding: 62px 22px;
	font-size: 16px;
	line-height: 1.34;
}

.product-comparison-section .comparison-table .comparison-products th,
.product-comparison-section .comparison-table .comparison-products td {
	padding-top: 62px;
	padding-bottom: 62px;
	text-align: center;
}

.product-comparison-section .comparison-table .comparison-products td {
	text-align: start;
}

.comparison-products img {
	display: block;
	width: min(100%, 280px);
	height: 260px;
	margin: 0 auto 22px;
	object-fit: contain;
}

.comparison-products strong {
	font-size: 16px;
	font-weight: 700;
}

.product-comparison-section--ski-trainer.product-comparison-section--features .comparison-table th,
.product-comparison-section--ski-trainer.product-comparison-section--features .comparison-table td,
.product-comparison-section--power-ski-trainer.product-comparison-section--features .comparison-table th,
.product-comparison-section--power-ski-trainer.product-comparison-section--features .comparison-table td {
	padding-top: 34px;
	padding-bottom: 34px;
}

.product-comparison-section--ski-trainer.product-comparison-section--features .comparison-table .comparison-products th,
.product-comparison-section--ski-trainer.product-comparison-section--features .comparison-table .comparison-products td,
.product-comparison-section--power-ski-trainer.product-comparison-section--features .comparison-table .comparison-products th,
.product-comparison-section--power-ski-trainer.product-comparison-section--features .comparison-table .comparison-products td {
	padding-top: 64px;
	padding-bottom: 64px;
}

.product-comparison-section--ski-trainer.product-comparison-section--features .comparison-products img,
.product-comparison-section--power-ski-trainer.product-comparison-section--features .comparison-products img {
	width: min(100%, 250px);
	height: 220px;
	margin-bottom: 18px;
}

.product-comparison-section--air-bike.product-comparison-section--features .comparison-table th,
.product-comparison-section--air-bike.product-comparison-section--features .comparison-table td {
	padding-top: 50px;
	padding-bottom: 50px;
}

.product-comparison-section--air-bike.product-comparison-section--features .comparison-table .comparison-products th,
.product-comparison-section--air-bike.product-comparison-section--features .comparison-table .comparison-products td {
	padding-top: 72px;
	padding-bottom: 72px;
}

.product-comparison-section--air-bike.product-comparison-section--features .comparison-products img {
	width: min(100%, 268px);
	height: 242px;
}

.product-comparison-section--ski-trainer.product-comparison-section--specs .comparison-table th,
.product-comparison-section--ski-trainer.product-comparison-section--specs .comparison-table td,
.product-comparison-section--power-ski-trainer.product-comparison-section--specs .comparison-table th,
.product-comparison-section--power-ski-trainer.product-comparison-section--specs .comparison-table td,
.product-comparison-section--roxgear-ski.product-comparison-section--specs .comparison-table th,
.product-comparison-section--roxgear-ski.product-comparison-section--specs .comparison-table td {
	padding-top: 82px;
	padding-bottom: 82px;
}

.product-comparison-section .comparison-wrap .btn {
	display: block;
	margin: 28px auto 0;
	color: #161616;
	font-size: 12px;
}

.product-related-section {
	width: 100%;
	overflow: visible;
	padding: 0 clamp(24px, 5vw, 48px) clamp(76px, 6.6vw, 128px) clamp(24px, 5.4vw, 104px);
}

.product-related-section--air-bike.product-related-section--specs {
	padding-top: clamp(80px, 21vw, 400px);
}

.product-related-carousel {
	position: relative;
}

.product-related-carousel__header {
	display: block;
	margin-bottom: clamp(34px, 3.2vw, 62px);
}

.product-related-section>h2,
.product-related-carousel__header>h2 {
	margin-bottom: clamp(34px, 3.2vw, 62px);
	font-size: clamp(26px, 1.45vw, 28px);
	font-weight: 600;
}

.product-related-carousel__header>h2 {
	margin: 0;
}

.product-related-carousel__controls {
	display: none;
	gap: 12px;
	flex: 0 0 auto;
}

.product-related-carousel__controls .carousel-arrow {
	position: static;
	transform: none;
	width: 48px;
	height: 48px;
	color: #151515;
	background: #ffffff;
	border: 1px solid rgba(21, 21, 21, 0.14);
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(21, 21, 21, 0.08);
}

.product-related-carousel__controls .carousel-arrow::before {
	width: 12px;
	height: 12px;
}

.product-related-carousel__controls .carousel-arrow:disabled {
	opacity: 0.32;
	cursor: default;
}

.product-related-carousel__viewport {
	overflow-x: auto;
	overflow-y: visible;
	padding: 0 0 8px;
	scroll-snap-type: x mandatory;
	scroll-padding-left: 0;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.product-related-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.product-related-strip {
	display: flex;
	gap: clamp(24px, 4.8vw, 36px);
	width: max-content;
	padding-right: clamp(24px, 8vw, 56px);
	overflow: visible;
}

.product-related-card {
	width: clamp(210px, 72vw, 258px);
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.product-related-card a {
	display: block;
	color: inherit;
}

.product-related-card img {
	display: block;
	width: 100%;
	height: clamp(325px, 14vw, 270px);
	object-fit: contain;
}

.product-related-card h3 {
	margin: 18px 0 4px;
	color: #151515;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
}

.product-related-card p {
	margin: 0;
	color: #8a8a8a;
	font-size: 20px;
	line-height: 1.25;
}

body.vektor-route-product .product-related-carousel.is-auto-carousel .product-related-carousel__viewport {
	overflow: hidden;
	scroll-snap-type: none;
}

body.vektor-route-product .product-related-carousel.is-auto-carousel .product-related-strip {
	padding-right: 0;
	will-change: transform;
	transition: none;
}

body.vektor-route-product .product-related-carousel.is-auto-carousel .product-related-card {
	scroll-snap-align: none;
}

@media (min-width: 1181px) {
	body.vektor-route-product .product-related-section {
		padding-right: 0;
	}

	body.vektor-route-product .product-related-carousel {
		--related-gap: clamp(24px, 4.8vw, 36px);
		--related-peek: clamp(42px, 3vw, 56px);
		--related-card-width: clamp(210px, 13.4vw, 258px);
		width: 100%;
		overflow: visible;
	}

	body.vektor-route-product .product-related-carousel__header {
		padding-right: 0;
	}

	body.vektor-route-product .product-related-carousel__controls {
		display: none;
	}

	body.vektor-route-product .product-related-carousel.is-enhanced-desktop .product-related-carousel__viewport {
		width: 100%;
		margin-right: 0;
		padding-right: 0;
		overflow: hidden;
		scroll-snap-type: none;
	}

	body.vektor-route-product .product-related-carousel.is-enhanced-desktop .product-related-strip {
		gap: var(--related-gap);
		padding-right: 0;
		will-change: transform;
		transition: none;
	}

	body.vektor-route-product .product-related-carousel.is-enhanced-desktop .product-related-card {
		width: var(--related-card-width);
		scroll-snap-align: none;
	}

	body.vektor-route-product .product-detail-gallery__rail {
		width: 126px;
		transform: none;
	}

	body.vektor-route-product .product-detail-gallery__thumbs,
	body.vektor-route-product .product-detail-gallery__controls {
		transform: none;
	}

	@media (min-width: 1861px) {

		body.vektor-route-product .product-detail-gallery__thumbs,
		body.vektor-route-product .product-detail-gallery__controls {
			transform: translateX(-10px);
		}
	}

	body.vektor-route-product .product-detail-hero__copy .breadcrumb {
		font-size: 15px;
	}

	body.vektor-route-product .product-detail-hero__copy h1 {
		font-size: clamp(28px, 1.58vw, 30px);
		line-height: 1.16;
	}

	body.vektor-route-product .product-detail-hero__copy p {
		max-width: 740px;
		color: #000000 !important;
		font-size: clamp(13px, 1.86vw, 17px);
		font-weight: 300;
		line-height: 1.58;
	}

	body.vektor-route-product .product-detail-meta {
		margin-top: 54px;
		padding-top: 34px;
	}

	body.vektor-route-product .product-detail-meta div {
		font-size: 16px;
	}

	body.vektor-product-tab-features .product-feature-grid {
		row-gap: 120px;
		margin-bottom: 133px;
	}

	.product-detail-tabs--power-ski-trainer.product-detail-tabs--features .product-feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.vektor-product-tab-features .product-feature-stack {}

	body.vektor-product-tab-features .product-feature-band {
		min-height: 620px;
		height: 620px;
		padding-top: 0;
		padding-bottom: 0;
	}

	body.vektor-product-tab-features .product-feature-tile p,
	body.vektor-product-tab-features .product-feature-band p,
	body.vektor-route-product .product-app-panel p {
		color: #151515;
		font-weight: 400;
	}

	body.vektor-route-product .product-app-panel {
		min-height: 683px;
		padding-top: 0;
		padding-bottom: 0;
	}

	body.vektor-product-tab-features .product-app-panel {
		margin-top: 200px;
		margin-bottom: 200px;
	}

	body.vektor-route-product:is(.vektor-product-tab-features, .vektor-product-tab-specs) .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		margin-top: 72px;
		margin-bottom: 52px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		grid-template-columns: 530px minmax(0, 1fr);
		width: min(100% - 28px, 1413px);
		min-height: 452px;
		padding: clamp(38px, 3.2vw, 48px) clamp(40px, 4.4vw, 56px);
		column-gap: 0;
		background: #f5f5f5;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		min-height: 452px;
		padding-top: clamp(38px, 3.2vw, 48px);
		padding-bottom: clamp(38px, 3.2vw, 48px);
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) h2 {
		margin: 0 0 18px;
		font-size: clamp(24px, 1.8vw, 30px);
		font-weight: 700;
		line-height: 1.14;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) p {
		max-width: 440px;
		margin: 0;
		font-size: clamp(15px, 1vw, 17px);
		line-height: 1.36;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs {
		gap: 24px;
		margin: 28px 0 32px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs img {
		width: clamp(120px, 9.6vw, 140px);
		height: clamp(120px, 9.6vw, 140px);
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .btn {
		min-height: 62px;
		padding: 0 34px;
		font-size: 20px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__image {
		justify-self: start;
		width: min(100%, 470px);
		max-height: 400px;
	}

	@media (min-width: 1280px) {
		body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
			grid-template-columns: 530px minmax(0, 1fr);
			column-gap: 0;
			padding-left: 175px;
			padding-right: 175px;
		}

		body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__image {
			width: min(100%, 430px);
		}
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) {
		width: 1060px;
		margin-bottom: 116px;
		background: #fafafa;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) h2 {
		padding: 14px 24px;
		font-size: 22px;
		letter-spacing: 0.01em;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table {
		background: #fafafa;
		border: 0;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table th,
	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table td {
		padding: 28px 18px;
		background: #fafafa;
		border-bottom: 0;
		font-size: 16px;
		line-height: 1.36;
		vertical-align: top;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table thead th,
	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table thead td {
		border-bottom: 0;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table tbody tr {
		position: relative;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table tbody tr::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 966px;
		height: 1px;
		background: #d7d7d7;
		transform: translateX(-50%);
		pointer-events: none;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table tbody th {
		padding-left: 47px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table th {
		width: 30%;
		font-weight: 700;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table .comparison-products th,
	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table .comparison-products td {
		padding-top: 34px;
		padding-bottom: 30px;
		text-align: center;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table .comparison-products td {
		text-align: left;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-products img {
		width: 100%;
		height: 233px;
		margin: 0 0 14px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-products strong {
		font-size: 18px;
		font-weight: 700;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table td.is-highlight .comparison-value {
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table td.is-highlight .comparison-value::before {
		content: "";
		display: block;
		flex: 0 0 18px;
		width: 18px;
		height: 18px;
		background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.65625 4.3125C10.0125 4.09375 10.25 3.69687 10.25 3.25C10.25 2.55937 9.69063 2 9 2C8.30937 2 7.75 2.55937 7.75 3.25C7.75 3.7 7.9875 4.09375 8.34375 4.3125L6.55312 7.89375C6.26875 8.4625 5.53125 8.625 5.03438 8.22813L2.25 6C2.40625 5.79063 2.5 5.53125 2.5 5.25C2.5 4.55938 1.94062 4 1.25 4C0.559375 4 0 4.55938 0 5.25C0 5.94062 0.559375 6.5 1.25 6.5C1.25625 6.5 1.26562 6.5 1.27188 6.5L2.7 14.3562C2.87188 15.3062 3.7 16 4.66875 16H13.3313C14.2969 16 15.125 15.3094 15.3 14.3562L16.7281 6.5C16.7344 6.5 16.7437 6.5 16.75 6.5C17.4406 6.5 18 5.94062 18 5.25C18 4.55938 17.4406 4 16.75 4C16.0594 4 15.5 4.55938 15.5 5.25C15.5 5.53125 15.5938 5.79063 15.75 6L12.9656 8.22813C12.4688 8.625 11.7312 8.4625 11.4469 7.89375L9.65625 4.3125Z' fill='%23FECE8B'/%3E%3C/svg%3E") center / contain no-repeat;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap {
		padding-bottom: 48px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap .btn {
		margin: 34px auto 0;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
		width: 966px;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 16px;
		font-weight: 500;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap .btn::after {
		content: "";
		display: block;
		width: 12px;
		height: 8px;
		background: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6.25 6 1.75l4.5 4.5' fill='none' stroke='%23151515' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
		transition: transform 0.2s ease;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap .btn[aria-expanded="false"]::after {
		transform: rotate(180deg);
	}

	body.vektor-route-product .product-app-panel h2 {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.18;
	}

	body.vektor-route-product .product-app-panel p {
		max-width: 560px;
		font-size: 20px;
		line-height: 1.25;
	}

	body.vektor-route-product .product-app-panel__qrs {
		gap: 52px;
		margin: 48px 0 54px;
	}

	body.vektor-route-product .product-app-panel__qrs img {
		width: 200px;
		height: 200px;
	}

	body.vektor-route-product .product-app-panel .btn {
		min-height: 88px;
		padding: 0 70px;
		font-size: 28px;
	}

	body.vektor-product-tab-specs .product-detail-tabs--fan-bike-trainer.product-detail-tabs--specs .product-specs-layout {
		grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
		width: calc(100vw - 160px);
		margin-left: calc((100% - (100vw - 160px)) / 2);
		gap: 100px;
	}

	body.vektor-product-tab-specs .product-detail-tabs--fan-bike-trainer.product-detail-tabs--specs .product-specs-dimension {
		margin-top: 123px;
	}

	body.vektor-product-tab-specs .product-app-panel {
		margin-top: 82px;
	}

	body.vektor-product-tab-specs .product-related-section--specs {
		padding: 0 0 clamp(76px, 6.6vw, 128px) clamp(48px, 5.4vw, 104px);
	}
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(26px, 6vw, 72px);
	padding: 42px 0;
	border-bottom: 1px solid var(--line);
}

.split-feature--reverse img {
	order: 2;
}

.split-feature img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.contact-cta--compact {
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
}

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

.console-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	margin-bottom: 18px;
	background: #0a0a0a;
}

.console-card h2 {
	font-size: 20px;
}

.about-story {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
	gap: 42px;
	align-items: start;
}

.about-images {
	display: grid;
	gap: 14px;
}

.about-images img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.story-copy h2 {
	margin: 34px 0 12px;
	font-size: 26px;
}

.story-copy h2:first-child {
	margin-top: 0;
}

.article-body {
	width: min(100% - 36px, 860px);
	margin: 0 auto;
	padding: 80px 0 110px;
}

.article-body section {
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

.article-body h2 {
	font-size: 28px;
}

.article-layout {
	margin: 0 auto;
	padding: 80px 0 110px;
	background: #ffffff;
}

.article-layout__block,
.article-layout__media,
.article-layout__feature {
	margin: 0;
}

.article-layout__copy p {
	margin: 0;
}

.article-layout__copy p+p {
	margin-top: 18px;
}

.article-layout__copy h2 {
	margin: 0 0 24px;
}

.article-layout__gallery {
	display: grid;
	gap: 32px;
}

.article-layout__gallery--duo {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.article-layout__gallery--trio {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
}

.article-layout__media img,
.article-layout__feature img {
	display: block;
	width: 100%;
	height: auto;
}

.article-layout__feature {
	margin: 0 auto;
}

.article-layout__block--instruction {
	background-color: #f6f7fa;
	background-image: var(--article-step-bg, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.article-layout__instruction {
	width: min(100% - 132px, 1268px);
	--article-copy-col: minmax(214px, 304px);
	min-height: clamp(272px, 20vw, 384px);
	margin: 0 auto;
	padding: 42px 0;
	display: grid;
	grid-template-columns: var(--article-copy-col) minmax(0, 1fr);
	gap: clamp(40px, 5vw, 108px);
	align-items: center;
}

.article-layout__block--reverse .article-layout__instruction {
	grid-template-columns: minmax(0, 1fr) var(--article-copy-col);
}

.article-layout__block--reverse .article-layout__instruction-copy {
	order: 2;
	margin-left: auto;
}

.article-layout__block--reverse .article-layout__instruction-media {
	order: 1;
	justify-content: start;
}

.article-layout__instruction-copy,
.article-layout__instruction-body {
	max-width: 304px;
}

.article-layout__instruction-number {
	margin: 0 0 16px;
	color: #6d737b;
	font-size: clamp(64px, 5.2vw, 88px);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.04em;
}

.article-layout__instruction-body p {
	margin: 0;
	color: #151515;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.32;
}

.article-layout__instruction-body p+p {
	margin-top: 10px;
}

.article-layout__instruction-media {
	display: grid;
	justify-content: end;
	justify-items: center;
	align-items: center;
	gap: 18px;
}

.article-layout__instruction-media--single,
.article-layout__instruction-media--stack {
	grid-template-columns: 1fr;
}

.article-layout__instruction-media--stack {
	row-gap: 18px;
}

.article-layout__instruction-media--row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 18px;
	max-width: 100%;
}

.article-layout__block--reverse .article-layout__instruction-media--stack {
	justify-items: start;
}

.article-layout__block--reverse .article-layout__instruction-media--row {
	justify-content: flex-start;
}

.article-layout__instruction-shot {
	margin: 0;
	width: min(100%, var(--article-shot-width, 100%));
}

.article-layout__instruction-shot img {
	display: block;
	width: 100%;
	height: auto;
}

.article-hero--fitness-brasil-expo-2025-recap {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #0f1012;
}

.article-hero--fitness-brasil-expo-2025-recap .page-hero__picture,
.article-hero--fitness-brasil-expo-2025-recap .page-hero__picture img {
	opacity: 1;
	filter: brightness(1.08);
}

.article-hero--fitness-brasil-expo-2025-recap::after {
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.03), rgba(8, 8, 8, 0.03));
}

.article-hero--fitness-brasil-expo-2025-recap .page-hero__content {
	left: 50%;
	right: auto;
	top: 56%;
	bottom: auto;
	width: min(100% - 48px, 920px);
	max-width: none;
	transform: translate(-50%, -50%);
	text-align: center;
}

.article-hero--fitness-brasil-expo-2025-recap .page-hero__content .eyebrow,
.article-hero--fitness-brasil-expo-2025-recap .page-hero__content p:last-child {
	display: none;
}

.article-hero--fitness-brasil-expo-2025-recap .page-hero__content h1 {
	color: var(--gold-2);
	font-size: clamp(34px, 3.1vw, 58px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
}

.article-layout--fitness-brasil-expo-2025-recap {
	width: min(100% - 176px, 1278px);
	padding-top: 60px;
	padding-bottom: 96px;
	display: grid;
	gap: 74px;
	background: #ffffff;
}

.article-layout--fitness-brasil-expo-2025-recap .article-layout__copy {
	width: 100%;
}

.article-layout--fitness-brasil-expo-2025-recap .article-layout__copy p {
	color: #181818;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0;
}

.article-layout--fitness-brasil-expo-2025-recap .article-layout__gallery--duo {
	width: min(100%, 1240px);
	gap: 42px;
}

.article-layout--fitness-brasil-expo-2025-recap .article-layout__feature--narrow {
	width: min(100%, 493px);
}

.article-hero--fibo-2025-recap {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #101113;
}

.article-hero--fibo-2025-recap .page-hero__picture,
.article-hero--fibo-2025-recap .page-hero__picture img {
	opacity: 1;
	filter: brightness(1.04);
}

.article-hero--fibo-2025-recap::after {
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.06));
}

.article-hero--fibo-2025-recap .page-hero__content {
	left: 50%;
	right: auto;
	top: 55%;
	bottom: auto;
	width: min(100% - 48px, 720px);
	max-width: none;
	transform: translate(-50%, -50%);
	text-align: center;
}

.article-hero--fibo-2025-recap .page-hero__content .eyebrow,
.article-hero--fibo-2025-recap .page-hero__content p:last-child {
	display: none;
}

.article-hero--fibo-2025-recap .page-hero__content h1 {
	color: var(--gold-2);
	font-size: clamp(30px, 2.55vw, 46px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
}

.article-layout--fibo-2025-recap {
	width: min(100% - 176px, 1278px);
	padding-top: 54px;
	padding-bottom: 86px;
	display: grid;
	gap: 46px;
	background: #ffffff;
}

.article-layout--fibo-2025-recap .article-layout__copy p {
	color: #181818;
	font-size: 14px;
	line-height: 1.58;
	letter-spacing: 0;
}

.article-layout--fibo-2025-recap .article-layout__gallery--duo {
	width: min(100%, 1038px);
	margin: 0 auto;
	gap: 42px;
}

.article-layout--fibo-2025-recap .article-layout__gallery--trio {
	width: 100%;
	gap: 28px 40px;
}

.article-hero--ispo-2025-recap {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #101113;
}

.article-hero--ispo-2025-recap .page-hero__picture,
.article-hero--ispo-2025-recap .page-hero__picture img {
	opacity: 1;
	filter: brightness(1.03);
}

.article-hero--ispo-2025-recap::after {
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.06));
}

.article-hero--ispo-2025-recap .page-hero__content {
	left: 50%;
	right: auto;
	top: 55%;
	bottom: auto;
	width: min(100% - 48px, 760px);
	max-width: none;
	transform: translate(-50%, -50%);
	text-align: center;
}

.article-hero--ispo-2025-recap .page-hero__content .eyebrow,
.article-hero--ispo-2025-recap .page-hero__content p:last-child {
	display: none;
}

.article-hero--ispo-2025-recap .page-hero__content h1 {
	color: var(--gold-2);
	font-size: clamp(30px, 2.45vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
}

.article-layout--ispo-2025-recap {
	width: min(100% - 176px, 1278px);
	padding-top: 54px;
	padding-bottom: 86px;
	display: grid;
	gap: 46px;
	background: #ffffff;
}

.article-layout--ispo-2025-recap .article-layout__copy p {
	color: #181818;
	font-size: 14px;
	line-height: 1.58;
	letter-spacing: 0;
}

.article-layout--ispo-2025-recap .article-layout__gallery--duo {
	width: min(100%, 1038px);
	margin: 0 auto;
	gap: 42px;
}

.article-layout--ispo-2025-recap .article-layout__gallery--trio {
	width: 100%;
	gap: 28px 40px;
}

.article-hero--connecting-vektor-to-d-fit,
.article-hero--how-to-create-competitions-with-d-fit,
.article-hero--connecting-vektor-to-kinomap,
.article-hero--connecting-vektor-to-zwift,
.article-hero--connecting-vektor-to-exr {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #111111;
}

.page-hero.article-hero--connecting-vektor-to-d-fit::after,
.article-hero--how-to-create-competitions-with-d-fit::after,
.article-hero--connecting-vektor-to-kinomap::after,
.article-hero--connecting-vektor-to-zwift::after,
.article-hero--connecting-vektor-to-exr::after {
	display: none;
	background: none;
}

.article-hero--connecting-vektor-to-d-fit .page-hero__picture,
.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture,
.article-hero--connecting-vektor-to-kinomap .page-hero__picture,
.article-hero--connecting-vektor-to-zwift .page-hero__picture,
.article-hero--connecting-vektor-to-exr .page-hero__picture,
.article-hero--connecting-vektor-to-d-fit .page-hero__picture img,
.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture img,
.article-hero--connecting-vektor-to-kinomap .page-hero__picture img,
.article-hero--connecting-vektor-to-zwift .page-hero__picture img,
.article-hero--connecting-vektor-to-exr .page-hero__picture img {
	opacity: 1;
}

.article-hero--connecting-vektor-to-d-fit .page-hero__content,
.article-hero--how-to-create-competitions-with-d-fit .page-hero__content,
.article-hero--connecting-vektor-to-kinomap .page-hero__content,
.article-hero--connecting-vektor-to-zwift .page-hero__content,
.article-hero--connecting-vektor-to-exr .page-hero__content {
	display: none;
}

.article-hero--connecting-vektor-to-d-fit .page-hero__picture img {
	height: auto;
	min-height: 0;
	object-fit: contain;
	object-position: center;
	filter: none;
	clip-path: none;
	-webkit-mask-image: none;
	mask-image: none;
}

.article-layout--app-guide {
	width: 100%;
	padding: 0;
	display: grid;
	gap: 0;
	background: #ffffff;
}

.article-layout--app-guide .article-layout__block--text.article-layout__block--intro {
	width: min(100% - 132px, 1180px);
	margin: 0 auto;
	padding: 42px 0 46px;
}

.article-layout--app-guide .article-layout__copy {
	max-width: 1120px;
}

.article-layout--app-guide .article-layout__copy h2 {
	margin-bottom: 26px;
	color: #181818;
	font-size: clamp(25px, 2.25vw, 20px);
	font-weight: 600;
	line-height: 1.15;
}

.article-layout--app-guide .article-layout__copy p {
	color: #1d1d1d;
	font-size: 19px;
	font-weight: 300;
	line-height: 1.62;
}

.article-layout--app-guide .article-layout__block--intro .article-layout__copy p:last-child {
	margin-top: 28px;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction,
.article-layout--connecting-vektor-to-exr .article-layout__instruction {
	width: min(100% - 160px, 1036px);
	--article-copy-col: minmax(264px, 402px);
	min-height: clamp(322px, 23vw, 420px);
	padding: 44px 0;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-copy,
.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-body,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-copy,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-body,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-copy,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-body,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-copy,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-body {
	max-width: 402px;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-number,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-number,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-number,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-number {
	margin-bottom: 14px;
	color: #56585e;
	font-size: clamp(84px, 6vw, 86px);
	font-weight: 500;
	line-height: 0.88;
	letter-spacing: -0.05em;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-body p,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-body p,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-body p,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-body p {
	color: #2b2b2f;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.22;
	hyphens: none;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-media {
	align-items: center;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media--single,
.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media--stack,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media--single,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media--stack,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media--single,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media--stack,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-media--single,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-media--stack {
	width: 100%;
	justify-items: end;
}

.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media--row,
.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media--row,
.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media--row,
.article-layout--connecting-vektor-to-exr .article-layout__instruction-media--row {
	width: 100%;
	flex-wrap: nowrap;
	justify-content: flex-end;
	gap: 22px;
}

@media (min-width: 768px) {
	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction-media--single,
	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction-media--stack,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction-media--single,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction-media--stack,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction-media--single,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction-media--stack,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction-media--single,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction-media--stack {
		justify-items: start;
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction-media--row,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction-media--row,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction-media--row,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction-media--row {
		justify-content: flex-start;
	}
}

.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-body p + p {
	margin-top: 8px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.34;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__instruction {
	position: relative;
	z-index: 1;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction {
	position: relative;
	background: #eef1f6 url("../source/NEWS/Connecting VEKTOR to Kinomap/Section BG/Gray Blue.png") center / cover no-repeat;
	overflow: hidden;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	background: url("../source/NEWS/Connecting VEKTOR to Kinomap/Section BG/Kino BG.png") center / cover no-repeat;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction.article-layout__block--reverse::before {
	left: auto;
	right: 0;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-number {
	color: #e0b15b;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-body p {
	color: #ffffff;
}

.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction:last-child .article-layout__instruction-body p {
	color: #e0b15b;
}

@media (min-width: 768px) {
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction {
		width: 100%;
		min-height: clamp(322px, 23vw, 420px);
		padding: 44px 0;
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction {
		grid-template-columns: 1fr 1fr;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-body {
		max-width: 404px;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-copy {
		width: min(100% - 96px, 404px);
		margin-left: 0;
		justify-self: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-copy {
		margin-left: 0;
		justify-self: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-number {
		margin-bottom: 14px;
		font-size: clamp(84px, 6vw, 86px);
		font-weight: 500;
		line-height: 0.88;
		letter-spacing: -0.05em;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-body p {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.22;
		hyphens: none;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media {
		width: 100%;
		justify-content: center;
		justify-items: center;
		align-items: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media--single,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media--stack {
		width: 100%;
		justify-items: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media--row {
		width: 100%;
		flex-wrap: nowrap;
		justify-content: center;
		gap: 22px;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-media {
		justify-content: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-media--single,
	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-media--stack {
		justify-items: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-media--row {
		justify-content: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction:last-child .article-layout__instruction {
		align-items: center;
		padding-bottom: 44px;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction:last-child .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction:last-child .article-layout__instruction-media {
		align-self: center;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction:last-child .article-layout__instruction-media {
		justify-items: center;
	}
}

.article-hero--hfa-2025-recap {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #101113;
}

.article-hero--hfa-2025-recap .page-hero__picture,
.article-hero--hfa-2025-recap .page-hero__picture img {
	opacity: 1;
	filter: brightness(1.02);
}

.article-hero--hfa-2025-recap::after {
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.06));
}

.article-hero--hfa-2025-recap .page-hero__content {
	left: 50%;
	right: auto;
	top: 55%;
	bottom: auto;
	width: min(100% - 48px, 760px);
	max-width: none;
	transform: translate(-50%, -50%);
	text-align: center;
}

.article-hero--hfa-2025-recap .page-hero__content .eyebrow,
.article-hero--hfa-2025-recap .page-hero__content p:last-child {
	display: none;
}

.article-hero--hfa-2025-recap .page-hero__content h1 {
	color: var(--gold-2);
	font-size: clamp(30px, 2.45vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
}

.article-layout--hfa-2025-recap {
	width: min(100% - 176px, 1278px);
	padding-top: 54px;
	padding-bottom: 86px;
	display: grid;
	gap: 46px;
	background: #ffffff;
}

.article-layout--hfa-2025-recap .article-layout__copy p {
	color: #181818;
	font-size: 14px;
	line-height: 1.58;
	letter-spacing: 0;
}

.article-layout--hfa-2025-recap .article-layout__gallery--duo {
	width: min(100%, 1038px);
	margin: 0 auto;
	gap: 42px;
}

.article-layout--hfa-2025-recap .article-layout__gallery--portrait {
	width: min(100%, 676px);
	margin: 0 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 64px;
	align-items: start;
}

.article-layout--hfa-2025-recap .article-layout__feature--centered {
	width: min(100%, 486px);
	margin: 0 auto;
}

.article-hero--taispo-2025-recap {
	min-height: min(800px, 41.667vw);
	aspect-ratio: 1920 / 800;
	background: #101113;
}

.article-hero--taispo-2025-recap .page-hero__picture,
.article-hero--taispo-2025-recap .page-hero__picture img {
	opacity: 1;
	filter: brightness(1.02);
}

.article-hero--taispo-2025-recap::after {
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.08));
}

.article-hero--taispo-2025-recap .page-hero__content {
	left: 50%;
	right: auto;
	top: 55%;
	bottom: auto;
	width: min(100% - 48px, 760px);
	max-width: none;
	transform: translate(-50%, -50%);
	text-align: center;
}

.article-hero--taispo-2025-recap .page-hero__content .eyebrow,
.article-hero--taispo-2025-recap .page-hero__content p:last-child {
	display: none;
}

.article-hero--taispo-2025-recap .page-hero__content h1 {
	color: var(--gold-2);
	font-size: clamp(30px, 2.45vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
}

.article-layout--taispo-2025-recap {
	width: min(100% - 176px, 1278px);
	padding-top: 54px;
	padding-bottom: 86px;
	display: grid;
	gap: 46px;
	background: #ffffff;
}

.article-layout--taispo-2025-recap .article-layout__copy p {
	color: #181818;
	font-size: 14px;
	line-height: 1.58;
	letter-spacing: 0;
}

.article-layout--taispo-2025-recap .article-layout__feature--centered {
	width: min(100%, 472px);
	margin: 0 auto;
}

.article-layout--taispo-2025-recap .article-layout__gallery--duo {
	width: min(100%, 1038px);
	margin: 0 auto;
	gap: 42px;
}

.article-layout--taispo-2025-recap .article-layout__gallery--trio {
	width: 100%;
	gap: 28px 40px;
}

.faq-layout {
	display: grid;
	gap: 34px;
}

.faq-group h2 {
	margin-bottom: 14px;
	font-size: 28px;
	color: var(--gold-2);
}

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

.faq-item summary {
	padding: 20px 0;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

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

.faq-item p {
	padding-bottom: 22px;
	max-width: 860px;
}

.contact-info,
.contact-form {
	background: var(--panel);
	border: 1px solid var(--line);
	padding: 28px;
}

.contact-info img {
	width: 54px;
	height: 54px;
	object-fit: contain;
	margin-bottom: 18px;
}

.contact-info a {
	font-size: 24px;
	font-weight: 600;
	color: var(--gold-2);
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: #090909;
	border: 1px solid var(--line);
	border-radius: 0;
	font: inherit;
}

.form-success {
	padding: 14px 16px;
	color: #050505;
	background: var(--gold);
	font-weight: 600;
}

.search-results .section-intro:not(:first-child) {
	margin-top: 58px;
}

.search-empty {
	margin: 0;
	color: #4f4f4f;
}

.search-content-list {
	display: grid;
	gap: 16px;
}

.search-content-card {
	background: #ffffff;
	border: 1px solid #e0dad0;
}

.search-content-card a {
	display: block;
	padding: 22px 24px;
	color: var(--ink);
}

.search-content-card span {
	display: block;
	margin-bottom: 8px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.search-content-card h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.2;
}

.search-content-card p {
	margin: 0;
	color: #4f4f4f;
}

.not-found {
	min-height: 58vh;
	display: grid;
	align-content: center;
}

.site-footer {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(180px, auto);
	gap: 28px;
	align-items: center;
	padding: 44px clamp(18px, 4vw, 44px);
	background: #030303;
	border-top: 1px solid var(--line);
}

.site-footer p {
	margin: 10px 0 0;
	font-size: 14px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.footer-mail {
	color: var(--gold-2);
	font-weight: 600;
}

@media (max-width: 1100px) {
	.site-header {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav,
	.header-search {
		display: none;
	}

	.primary-nav.is-open,
	.header-search.is-open {
		display: grid;
		position: fixed;
		left: 0;
		right: 0;
		z-index: 60;
		background: rgba(5, 5, 5, 0.98);
	}

	.primary-nav.is-open {
		top: var(--header-h);
		min-height: calc(100vh - var(--header-h));
		align-content: start;
		justify-content: stretch;
		gap: 0;
		padding: 24px;
	}

	.primary-nav.is-open a {
		padding: 15px 0;
		border-bottom: 1px solid var(--line);
	}

	.nav-panel {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		border: 0;
		padding: 0 0 0 16px;
		background: transparent;
	}

	.header-search.is-open {
		top: calc(var(--header-h) + 280px);
		grid-template-columns: 1fr 44px;
		margin: 24px;
	}

	.trait-grid,
	.product-grid,
	.console-grid,
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.product-hero,
	.app-band,
	.contact-cta,
	.spec-layout,
	.detail-tables,
	.split-feature,
	.about-story,
	.contact-layout,
	.site-footer {
		grid-template-columns: 1fr;
	}

	.split-feature--reverse img {
		order: 0;
	}
}

@media (max-width: 640px) {
	:root {
		--header-h: 66px;
	}

	.site-header {
		padding: 12px 16px;
	}

	.brand-word {
		font-size: 17px;
	}

	.brand-symbol {
		width: 30px;
		height: 30px;
	}

	.home-hero,
	.product-hero {
		min-height: 610px;
	}

	.home-hero__content,
	.page-hero__content {
		left: 18px;
		right: 18px;
		bottom: 54px;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 30px;
	}

	.section {
		width: min(100% - 28px, var(--max));
		padding: 64px 0;
	}

	.trait-grid,
	.product-grid,
	.news-grid,
	.console-grid,
	.category-grid,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.category-tile {
		aspect-ratio: 16 / 10;
	}

	.app-band,
	.contact-cta,
	.product-hero {
		padding-left: 18px;
		padding-right: 18px;
	}

	.product-hero__media {
		min-height: 320px;
	}

	.spec-table,
	.comparison-table {
		font-size: 14px;
	}

	.spec-table th,
	.spec-table td,
	.comparison-table th,
	.comparison-table td {
		padding: 10px;
	}

	.contact-info a {
		font-size: 18px;
		overflow-wrap: anywhere;
	}
}

/* Figma parity pass: VEKTOR 2026 source mockups are white content pages with black global chrome. */
:root {
	--bg: #ffffff;
	--ink: #151515;
	--muted: #6f6f6f;
	--line: #e6e2da;
	--panel: #f6f4ef;
	--panel-2: #eeeeea;
	--gold: #c8a96a;
	--gold-2: #fece8b;
	--black: #151617;
	--footer: #151617;
	--max: 1488px;
	--header-h: 117px;
}

body.vektor-site {
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

body.vektor-site p {
	color: #919191;
}

.site-header {
	position: sticky;
	top: -32px;
	z-index: 100;
	display: block;
	min-height: var(--header-h);
	padding: 0;
	background: var(--black);
	border-bottom: 0;
	backdrop-filter: none;
}

.header-top,
.header-main {
	width: min(100% - 120px, 1800px);
	margin: 0 auto;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 32px;
	color: #cfcfd0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.header-top>a:first-child {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 32px;
	padding-right: 21px;
	color: #cfcfd0;
	font-size: 12px;
}

.header-top>a:first-child::after {
	content: "";
	position: absolute;
	right: 0;
	width: 1px;
	height: 25px;
	background: rgba(255, 255, 255, 0.9);
}

.header-top>a:first-child span {
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	font-size: 0;
	transform: rotate(45deg);
}

.header-top div {
	display: flex;
	gap: 28px;
	color: #cfcfd0;
	font-size: 12px;
}

.header-main {
	position: relative;
	display: grid;
	grid-template-columns: 540px 1fr 80px;
	align-items: center;
	height: 85px;
}

.header-main .brand-mark {
	transform: translateY(3px);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.brand-mark img {
	width: 200px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 104px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.22;
	text-transform: uppercase;
}

.primary-nav a,
.nav-trigger {
	color: rgba(255, 255, 255, 0.92);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.header-top a:hover,
.header-top a:focus-visible {
	color: var(--gold-2);
}

.nav-trigger {
	padding: 0;
	background: transparent;
	border: 0;
	font: inherit;
	text-transform: inherit;
	cursor: default;
}

.nav-panel {
	top: calc(100% + 26px);
	min-width: 186px;
	padding: 14px;
	background: rgba(5, 5, 5, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.header-search {
	position: relative;
	justify-self: end;
	display: grid;
	grid-template-columns: 1fr 42px;
	width: 42px;
	height: 42px;
	margin-right: 19px;
	overflow: visible;
	background: transparent;
	border: 0;
	transition: width 180ms ease;
}

.header-search:focus-within,
.header-search.is-open {
	width: 230px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-search input {
	height: 42px;
	padding: 0 12px;
	color: #ffffff;
	opacity: 0;
}

.header-search:focus-within input,
.header-search.is-open input {
	opacity: 1;
}

.header-search button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	overflow: visible;
	color: #ffffff;
	font-size: 0;
}

.search-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.search-icon::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 0;
	width: 9px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: left center;
}

.nav-toggle {
	border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle span {
	background: #ffffff;
}

.site-main {
	min-height: 70vh;
	background: #ffffff;
}

.home-hero,
.page-hero,
.product-hero {
	background: #000000;
}

.home-hero {
	aspect-ratio: 16 / 9;
	min-height: 0;
	height: auto;
	max-height: 1080px;
}

.home-hero__image,
.page-hero__image,
.page-hero__picture,
.page-hero__picture img,
.products-hero__image {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	opacity: 1;
}

.home-hero::after,
.page-hero::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15) 58%, rgba(0, 0, 0, 0.5));
}

.page-hero.article-hero::after {
	display: none;
	background: none;
}

.home-hero::after {
	display: none;
}

.home-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 82px;
	left: 11vw;
	top: 52.7%;
	bottom: auto;
	max-width: 760px;
	transform: translateY(-50%);
}

.home-hero__content h1,
.page-hero__content h1,
.products-hero h1 {
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0;
}

.home-hero__content h1 {
	max-width: 100%;
	margin: 0;
	font-size: clamp(28px, 2.5vw, 48px);
	line-height: 1.2;
	font-weight: 600;
}

.home-hero__content .eyebrow {
	display: none;
}

.home-hero__content .btn {
	min-height: 68px;
	padding: 0 44px;
	color: #ffffff;
	background: transparent;
	border: 2px solid #ffffff;
	border-radius: 100px;
	font-size: clamp(16px, 1.354vw, 26px);
	font-weight: 600;
	text-transform: uppercase;
}

.home-hero__slide--brand .home-hero__content .btn {
	text-transform: none;
}

.home-hero__slide--brand .home-hero__content {
	left: 11vw;
	top: auto;
	bottom: 178px;
	gap: 28px;
	max-width: 1008px;
	transform: none;
}

.home-hero__slide--brand .home-hero__content h1 {
	max-width: min(20.35em, 100%);
}

.home-hero__slide--roxgear .home-hero__content {
	left: 47.86vw;
	top: 37.7%;
	max-width: 715px;
}

.home-hero__slide--console .home-hero__content {
	left: 10.42vw;
	top: 37.8%;
	max-width: 577px;
}

.home-hero__slide--rower .home-hero__content {
	left: 10.42vw;
	top: 37.8%;
	max-width: 731px;
}

.eyebrow {
	color: var(--gold);
	letter-spacing: 0;
}

.btn {
	min-height: 46px;
	padding: 0 24px;
	border-radius: 0;
	font-size: 13px;
	letter-spacing: 0;
}

.btn--gold {
	color: #070707;
	background: var(--gold);
	border-color: var(--gold);
}

.btn--outline,
.btn--plain {
	color: #ffffff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.52);
}

.carousel-arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: grid;
	place-items: center;
	width: 72px;
	height: 112px;
	padding: 0;
	color: #ffffff;
	background: transparent;
	border: 0;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.carousel-arrow::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-color: currentColor;
	border-style: solid;
	border-width: 0;
}

.carousel-arrow--prev::before {
	border-left-width: 2px;
	border-bottom-width: 2px;
	transform: rotate(45deg);
}

.carousel-arrow--next::before {
	border-right-width: 2px;
	border-bottom-width: 2px;
	transform: rotate(-45deg);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
	color: var(--gold-2);
	outline: 0;
}

.carousel-arrow--prev {
	left: 18px;
}

.carousel-arrow--next {
	right: 18px;
}

.carousel-dots {
	right: max(64px, calc((100vw - var(--max)) / 2));
	bottom: 92px;
}

.home-hero .carousel-dots {
	display: none;
}

.traits-band {
	position: relative;
	z-index: 2;
	width: min(100% - 192px, 1728px);
	margin: -88px auto 0;
	padding: 0 0 80px;
	background: transparent;
}

.trait-panel {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	background: #ffffff;
	box-shadow: none;
}

.trait-card {
	position: relative;
	display: grid;
	justify-items: center;
	min-height: 300px;
	padding: 31px 42px 32px;
	text-align: center;
	border-left: 0;
}

.trait-card+.trait-card::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 219px;
	background: #e9e3d8;
	transform: translateY(-50%);
}

.trait-card img {
	width: 150px;
	height: 150px;
	margin-bottom: 5px;
	object-fit: contain;
}

.trait-card h2 {
	margin-bottom: 19px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 500;
}

body.vektor-site .trait-card p {
	max-width: 150px;
	margin: 0;
	color: #979797;
	font-size: 12px;
}

.section {
	width: min(100% - 96px, var(--max));
	padding: 92px 0;
}

.section-intro {
	max-width: 760px;
	margin: 0 0 38px;
}

.section-intro h2 {
	color: var(--ink);
	font-size: clamp(34px, 3.5vw, 56px);
	font-weight: 600;
}

.section-intro p {
	max-width: 620px;
	color: #5d5d5d;
}

.home-categories {
	width: min(100% - 226px, 1694px);
	padding-top: 0;
	padding-bottom: 135px;
}

.category-grid--home {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 42px;
}

.category-grid--home .category-tile {
	grid-column: span 2;
	aspect-ratio: 1.435 / 1;
}

.category-grid--home .category-tile:nth-child(4),
.category-grid--home .category-tile:nth-child(5) {
	grid-column: span 3;
}

.category-tile {
	background: #000000;
	border: 0;
}

.category-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-tile span {
	left: 50%;
	top: 50%;
	bottom: auto;
	color: var(--gold-2);
	font-size: clamp(24px, 2.15vw, 42px);
	font-weight: 600;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.category-tile::after {
	background: rgba(0, 0, 0, 0.34);
}

.app-band {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	min-height: 760px;
	padding: 104px max(64px, calc((100vw - var(--max)) / 2));
	background-color: #0b0b0b;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.app-band::before,
.contact-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12));
	pointer-events: none;
}

.app-band__copy,
.contact-cta>div {
	position: relative;
	z-index: 1;
	max-width: 520px;
	align-self: center;
}

.app-band h2,
.contact-cta h2 {
	color: #ffffff;
	font-size: clamp(38px, 4.2vw, 64px);
}

.app-band p,
.contact-cta p {
	color: rgba(255, 255, 255, 0.78);
}

.product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.product-card {
	background: #f4f2ec;
	border: 0;
}

.product-card__media {
	min-height: 285px;
	padding: 28px;
	background: #f4f2ec;
}

.product-card__media img {
	max-height: 250px;
}

.product-card__body {
	min-height: 148px;
	padding: 0 24px 28px;
	background: #f4f2ec;
}

.product-card__body p,
.news-card__body p,
.sku {
	color: var(--gold);
	letter-spacing: 0;
}

.product-card__body h3 {
	color: var(--ink);
	font-size: 18px;
	font-weight: 600;
}

.product-card__body span,
.news-card__body span {
	color: #707070;
}

.section--soft {
	width: 100%;
	padding-left: max(48px, calc((100vw - var(--max)) / 2));
	padding-right: max(48px, calc((100vw - var(--max)) / 2));
	background: #f4f2ec;
}

.news-card {
	background: #ffffff;
	border: 0;
}

.news-card__media img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.news-card__body {
	padding: 24px 0 0;
	background: transparent;
}

.news-card__body h3 {
	color: var(--ink);
	font-size: 20px;
	font-weight: 600;
}

.contact-cta {
	position: relative;
	display: grid;
	min-height: 420px;
	padding: 80px max(64px, calc((100vw - var(--max)) / 2));
	background-color: #080808;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.app-band--home {
	align-content: end;
	min-height: min(1356px, 70.625vw);
	padding-top: 0;
	padding-bottom: min(132px, 6.875vw);
	background-position: center;
}

.app-band--home::before {
	display: none;
}

.app-band--home .app-band__copy {
	align-self: end;
	justify-self: center;
	width: 100%;
	max-width: min(1060px, 74vw);
}

.app-band--home h2 {
	margin: 0 0 min(46px, 2.396vw);
	color: var(--gold-2);
	font-size: clamp(46px, 10.27vw, 82px);
	line-height: 0.95;
	font-weight: 600;
	text-transform: uppercase;
}

.app-band--home p {
	max-width: min(1020px, 72vw);
	margin: 0 0 min(58px, 3.021vw);
	color: var(--gold-2);
	font-size: clamp(16px, 1.511vw, 25px);
	line-height: 1.35;
}

.app-band--home .btn {
	min-height: min(68px, 3.542vw);
	padding: 0 min(42px, 2.188vw);
	color: #101010;
	background: var(--gold-2);
	border-color: var(--gold-2);
	border-radius: 999px;
	font-size: clamp(14px, 1.15vw, 22px);
	font-weight: 600;
}

.home-products {
	width: min(100% - 196px, 1726px);
	padding-top: min(112px, 5.833vw);
	padding-bottom: min(96px, 5vw);
}

.home-products .section-intro,
.home-news .section-intro {
	max-width: none;
	margin-bottom: min(42px, 2.188vw);
}

.home-products .section-intro h2,
.home-news .section-intro h2 {
	margin: 0;
	color: #24272b;
	font-size: clamp(38px, 3.49vw, 67px);
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

.home-products .product-grid {
	gap: min(28px, 1.458vw);
}

.home-product-card {
	display: flex;
	flex-direction: column;
	min-height: min(537px, 27.969vw);
	background: #f8f8f8;
}

.home-product-card__body {
	order: -1;
	min-height: 0;
	padding: min(31px, 1.615vw) min(31px, 1.615vw) 0;
	background: transparent;
}

.home-product-card__body h3 {
	margin: 0 0 8px;
	color: #1e2226;
	font-size: clamp(15px, 2.042vw, 20px);
	line-height: 1.2;
	font-weight: 600;
}

.home-product-card__body p {
	margin: 0;
	color: #777777;
	font-size: clamp(20px, 0.833vw, 16px);
	line-height: 1.2;
	font-weight: 400;
	text-transform: none;
}

.home-product-card__media {
	display: grid;
	flex: 1;
	place-items: start center;
	min-height: 0;
	padding: 50px min(31px, 1.615vw) min(28px, 1.458vw);
	background: transparent;
}

.home-product-card__media img {
	width: 100%;
	max-width: min(240px, 12.5vw);
	max-height: min(315px, 16.406vw);
	object-fit: contain;
}

.home-products .home-product-card:nth-child(1) img,
.home-products .home-product-card:nth-child(2) img {
	max-width: min(270px, 14.063vw);
	max-height: min(215px, 11.198vw);
}

.home-products .home-product-card:nth-child(8) img {
	max-width: min(350px, 18.229vw);
	max-height: min(350px, 18.229vw);
	margin-top: -24px;
}

.home-news {
	width: min(100% - 198px, 1722px);
	padding-top: 0;
	padding-bottom: min(104px, 5.417vw);
}

.home-news .section-intro {
	margin-bottom: min(132px, 6.875vw);
}

.home-news-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: min(34px, 1.771vw);
}

.home-news-card {
	position: relative;
	overflow: hidden;
	background: #111111;
}

.home-news-card a {
	position: relative;
	display: block;
	color: #ffffff;
}

.home-news-card img {
	display: block;
	width: 100%;
	aspect-ratio: 551 / 414;
	object-fit: cover;
}

.home-news-card a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.72) 100%);
}

.home-news-card__date {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	display: grid;
	place-items: center;
	width: min(84px, 4.375vw);
	height: min(108px, 5.625vw);
	color: #111111;
	background: var(--gold-2);
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.home-news-card__date strong {
	font-size: clamp(28px, 2.083vw, 40px);
}

.home-news-card__date span {
	font-size: clamp(12px, 0.833vw, 16px);
	font-weight: 400;
}

.home-news-card__title {
	position: absolute;
	z-index: 2;
	left: min(28px, 1.458vw);
	right: min(28px, 1.458vw);
	bottom: min(44px, 2.292vw);
	color: #ffffff;
	font-size: clamp(15px, 1.042vw, 20px);
	font-weight: 600;
	line-height: 1.25;
}

.contact-cta--home {
	align-content: center;
	min-height: min(600px, 31.25vw);
	padding-left: max(96px, calc((100vw - 1728px) / 2));
	padding-right: max(96px, calc((100vw - 1728px) / 2));
	padding-top: 0;
	padding-bottom: 0;
	background-position: center;
}

.contact-cta--home::before {
	background: rgba(0, 0, 0, 0.04);
}

.contact-cta--home>div {
	max-width: min(850px, 54vw);
}

.contact-cta--home h2 {
	margin: 0 0 min(46px, 2.396vw);
	color: #ffffff;
	font-size: clamp(46px, 4.27vw, 82px);
	line-height: 1.08;
	font-weight: 600;
}

.contact-cta--home .btn {
	min-height: min(68px, 3.542vw);
	padding: 0 min(42px, 2.188vw);
	color: #101010;
	background: var(--gold-2);
	border-color: var(--gold-2);
	border-radius: 999px;
	font-size: clamp(14px, 1.15vw, 22px);
	font-weight: 600;
	text-transform: uppercase;
}

.contact-cta--home p {
	margin: min(32px, 1.667vw) 0 0;
	color: #ffffff;
	font-size: clamp(16px, 1.25vw, 24px);
	line-height: 1.2;
	font-weight: 600;
}

.contact-cta--home p a {
	color: inherit;
}

body.vektor-site .app-band--home p {
	color: var(--gold-2);
}

body.vektor-site .contact-cta--home p,
body.vektor-site .contact-cta--home p a {
	color: #ffffff;
}

body.vektor-site .contact-cta--home p a {
	font-size: clamp(16px, 1.511vw, 25px);
}

.page-hero {
	min-height: 520px;
}

.page-hero--bare {
	min-height: 0;
	aspect-ratio: 1920 / 500;
}

.page-hero--bare::after {
	display: none;
}

.news-hero {
	height: calc(41.667vw + min(29px, 1.51vw));
	max-height: 829px;
	padding-top: 0px;
	aspect-ratio: auto;
	background: #15161700;
}

.news-hero .page-hero__picture,
.news-hero .page-hero__picture img {
	height: min(800px, 41.667vw);
	min-height: 0;
}

.news-index {
	padding: 144px 0 162px;
	background: #ffffff;
}

.news-index__list {
	display: grid;
	width: min(100% - 570px, 1350px);
	margin: 0 auto;
	gap: 82px;
}

.news-card__label {
	width: fit-content;
}

.news-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 18px;
	color: #b48046;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.news-card--index {
	display: grid;
	grid-template-columns: minmax(0, 750px) minmax(0, 1fr);
	align-items: center;
	min-height: 538px;
	overflow: visible;
	background: transparent;
}

.news-card--index .news-card__media {
	position: relative;
	z-index: 1;
	display: block;
}

.news-card--index .news-card__media img {
	width: 100%;
	aspect-ratio: 750 / 538;
	object-fit: cover;
}

.news-card--index .news-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 270px;
	margin-left: -42px;
	padding: 48px 78px 44px;
	background: #ffffff;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	text-align: center;
}

.news-card--index .news-card__body p,
.news-card--index .news-card__label {
	margin: 0 0 54px;
	padding: 5px 8px 4px;
	color: #f1c78a;
	background: #151617;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.news-card--index .news-card__body h3 {
	max-width: 470px;
	margin: 0 0 18px;
	color: #151515;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.news-card--index .news-card__body span,
.news-card--index .news-card__excerpt {
	display: block;
	max-width: 430px;
	color: #151515;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.22;
}

.news-card--index .news-card__link {
	margin-top: 18px;
	font-size: 12px;
	font-weight: 700;
}

.page-hero__content {
	left: max(64px, calc((100vw - var(--max)) / 2));
	bottom: 88px;
	max-width: 760px;
}

.page-hero__content h1 {
	font-size: clamp(48px, 6vw, 92px);
	text-transform: uppercase;
}

.page-hero__content p:last-child {
	color: rgba(255, 255, 255, 0.8);
}

.center-hero {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1920 / 800;
	overflow: hidden;
	background: #000000;
}

.center-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.08);
}

.center-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.center-hero__picture {
	position: absolute;
	inset: 0;
	display: block;
}

.center-hero__picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.center-hero h1 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #f0bf7f;
	font-size: clamp(30px, 3.2vw, 54px);
	font-weight: 600;
	text-transform: uppercase;
}

.products-hero {
	position: relative;
	min-height: 654px;
	overflow: hidden;
	background: #000000;
}

.products-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.products-hero__content {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: grid;
	align-content: center;
	justify-items: center;
	padding: 130px 48px 64px;
}

.products-hero h1 {
	color: #f1c78a;
	margin: 0 0 74px;
	font-size: clamp(42px, 3.15vw, 60px);
	line-height: 1;
	text-transform: uppercase;
}

.products-hero__categories {
	display: grid;
	grid-template-columns: repeat(5, max-content);
	align-items: center;
	justify-content: space-between;
	width: min(68.03vw, 1306px);
	gap: 18px;
	background: transparent;
	border: 0;
}

.products-hero__categories a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 56px;
	padding: 0;
	color: #ffffff;
	font-size: clamp(15px, 1.25vw, 24px);
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	border: 0;
}

.products-hero__categories img {
	width: clamp(46px, 5.55vw, 68px);
	height: clamp(46px, 5.55vw, 68px);
	object-fit: contain;
}

.products-shell {
	--products-shell-gutter-left: max(clamp(48px, 4.83vw, 92px), calc((100vw - var(--max)) / 2));
	--products-shell-gutter-right: max(clamp(54px, 5.245vw, 100px), calc((100vw - var(--max)) / 2));
	display: grid;
	grid-template-columns: 286px minmax(0, 1fr);
	gap: 52px;
	width: auto;
	max-width: var(--max);
	margin: 0 var(--products-shell-gutter-right) 0 var(--products-shell-gutter-left);
	padding: 96px 0 118px;
}

.products-sidebar {
	position: sticky;
	top: calc(var(--header-h) + 32px);
	align-self: start;
	margin-top: clamp(16px, 1.354vw, 26px);
}

.products-sidebar__head {
	display: contents;
}

.products-filter-toggle,
.products-sidebar__close,
.products-filter-backdrop {
	display: none;
}

.products-sidebar h2 {
	margin: 0 0 clamp(34px, 2.08vw, 40px);
	color: var(--ink);
	font-size: clamp(18.9px, 1.304vw, 25px);
	line-height: 1.14;
	font-weight: 600;
	white-space: nowrap;
}

.products-sidebar button[data-filter] {
	display: grid;
	align-items: center;
	grid-template-columns: clamp(194px, 13.45vw, 230px) max-content;
	justify-content: start;
	width: 100%;
	min-height: clamp(48px, 3.229vw, 62px);
	padding: 0;
	color: #151515;
	background: transparent;
	border: 0;
	font: inherit;
	font-size: clamp(18.9px, 1.304vw, 25px);
	line-height: 1.12;
	font-weight: 400;
	text-align: left;
	cursor: pointer;
}

.products-sidebar__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: clamp(35px, 2.344vw, 45px);
	height: clamp(29px, 1.927vw, 37px);
	color: #8e8e8e;
	border: 1px solid #9b9b9b;
	border-radius: 999px;
	font-size: clamp(18px, 1.25vw, 24px);
	line-height: 1;
	font-weight: 400;
}

.products-sidebar button[data-filter].is-active,
.products-sidebar button[data-filter]:hover {
	color: var(--gold);
}

.products-sidebar button[data-filter].is-active .products-sidebar__count,
.products-sidebar button[data-filter]:hover .products-sidebar__count {
	color: currentColor;
	border-color: currentColor;
}

@media (min-width: 1600px) {
	.products-sidebar {
		transform: translateX(-126px);
	}
}

.products-toolbar {
	display: grid;
	grid-template-columns: max-content max-content max-content minmax(80px, 1fr);
	align-items: center;
	justify-content: start;
	width: calc(100% + clamp(38px, 2.97vw, 57px));
	margin-left: clamp(-57px, -2.97vw, -38px);
	margin-bottom: clamp(32px, 4.35vw, 63px);
	font-size: clamp(16px, 1.25vw, 24px);
	font-weight: 500;
	text-transform: uppercase;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #151515;
	text-transform: none;
}

.breadcrumb strong {
	color: var(--ink);
	font-weight: 600;
}

.products-show-tools {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: clamp(90px, 8.8vw, 169px);
	color: #151515;
	font-weight: 300;
	text-transform: none;
}

.pagination a {
	display: grid;
	place-items: center;
	width: clamp(28px, 2.188vw, 42px);
	height: clamp(28px, 2.188vw, 42px);
	color: #151515;
	background: transparent;
	border: 0;
	font: inherit;
	font-size: clamp(16px, 1.25vw, 24px);
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.pagination a.is-active {
	color: #f1c78a;
	background: #151617;
	border-color: #151617;
}

.products-show-tools button {
	padding: 0;
	color: #151515;
	background: transparent;
	border: 0;
	font: inherit;
	font-weight: 300;
	cursor: pointer;
}

.products-show-tools button.is-active {
	font-weight: 600;
}

.view-icons {
	display: inline-flex;
	align-items: center;
	gap: clamp(26px, 2.4vw, 46px);
	margin-left: clamp(42px, 4.9vw, 94px);
	color: #151515;
}

.view-icon {
	appearance: none;
	position: relative;
	display: block;
	width: clamp(18px, 1.35vw, 26px);
	height: clamp(18px, 1.35vw, 26px);
	padding: 0;
	color: #151515;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
}

.view-icon.is-active {
	color: #f1c78a;
}

.view-icon:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 5px;
}

.view-icon--list::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

.view-icon--grid::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 4px;
	height: 4px;
	background: currentColor;
	box-shadow:
		8px 0 0 currentColor,
		16px 0 0 currentColor,
		0 8px 0 currentColor,
		8px 8px 0 currentColor,
		16px 8px 0 currentColor,
		0 16px 0 currentColor,
		8px 16px 0 currentColor,
		16px 16px 0 currentColor;
}

.products-toolbar-line {
	display: block;
	align-self: end;
	justify-self: stretch;
	height: 1px;
	margin-left: clamp(48px, 5vw, 96px);
	margin-right: calc(0px - var(--products-shell-gutter-right));
	background: #f7f7f7;
}

.products-main .product-grid {
	--products-card-w: clamp(200px, 15.416vw, 296px);
	--products-card-gap: clamp(116px, 8.958vw, 172px);
	grid-template-columns: repeat(3, var(--products-card-w));
	gap: clamp(48px, 4.01vw, 77px) var(--products-card-gap);
	width: max-content;
	margin-left: -36px;
}

.products-main .product-grid.is-list-view {
	--products-list-media-w: clamp(160px, 13vw, 250px);
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(24px, 2.1vw, 40px);
	width: 100%;
	margin-left: 0;
}

.products-main .product-grid.is-list-view .product-card {
	display: grid;
	grid-template-columns: var(--products-list-media-w) minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(24px, 3.1vw, 60px);
}

.products-main .product-grid.is-list-view .product-card__media {
	aspect-ratio: 296 / 220;
}

.products-main .product-grid.is-list-view .product-card__body {
	align-items: flex-start;
	padding: 0;
	text-align: left;
}

@media (min-width: 1181px) and (max-width: 1599px) {
	.products-main .product-grid {
		margin-left: 8px;
	}
}

.products-main .product-card {
	background: transparent;
	overflow: visible;
}

.products-main .product-card__media {
	--products-media-pad: clamp(14px, 1.04vw, 20px);
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	min-height: 0;
	aspect-ratio: 296 / 340;
	padding: 0;
	background: #f5f5f5;
}

.products-main .product-card__media img {
	position: absolute;
	inset: var(--products-media-pad);
	width: calc(100% - (var(--products-media-pad) * 2));
	height: calc(100% - (var(--products-media-pad) * 2));
	max-width: none;
	max-height: none;
	object-fit: contain;
}

.products-main .product-card:hover .product-card__media img {
	transform: none;
}

.products-main .product-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 0;
	padding: clamp(17px, 1.3vw, 25px) 0 0;
	background: transparent;
	text-align: center;
}

.products-main .product-card__body h3 {
	order: 1;
	margin: 0 0 clamp(8px, 0.73vw, 14px);
	color: #151515;
	font-size: clamp(18px, 1.25vw, 24px);
	line-height: 1.2;
	font-weight: 700;
}

.products-main .product-card__body p {
	order: 2;
	margin: 0;
	color: #9b9b9b;
	font-size: clamp(16px, 1.25vw, 24px);
	line-height: 1.25;
	font-weight: 500;
	text-transform: none;
}

.products-main .product-card__body span {
	display: none;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: clamp(1px, 0.104vw, 2px);
	margin-top: clamp(108px, 8.7vw, 167px);
	transform: translateX(clamp(4px, 0.313vw, 6px));
}

.pagination[hidden],
.pagination a[hidden] {
	display: none !important;
}

.product-card.is-hidden {
	display: none;
}

.product-hero {
	grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
	min-height: 680px;
	padding: 90px max(48px, calc((100vw - var(--max)) / 2));
	background: #f4f2ec;
}

.product-hero__copy h1 {
	color: var(--ink);
	font-size: clamp(44px, 4.4vw, 72px);
}

.product-hero__copy p:not(.eyebrow):not(.sku) {
	color: #4f4f4f;
}

.product-hero__media {
	background: transparent;
}

.feature-card,
.console-card {
	background: #f4f2ec;
	border: 0;
}

.tab-list button {
	color: var(--ink);
	background: #ffffff;
	border: 1px solid #ddd7cd;
}

.tab-list button.is-active {
	color: #ffffff;
	background: var(--gold);
}

.tab-panel>img,
.spec-layout>img,
.console-card img {
	background: #f4f2ec;
	border: 0;
}

.spec-table,
.comparison-table {
	color: var(--ink);
	background: #ffffff;
	border: 1px solid #e0dad0;
}

.spec-table th,
.spec-table td,
.comparison-table th,
.comparison-table td {
	border-bottom: 1px solid #e0dad0;
}

.spec-table th,
.comparison-table th {
	color: var(--gold);
}

.split-feature {
	border-bottom: 1px solid #e0dad0;
}

.split-feature h2,
.console-card h2,
.story-copy h2,
.article-body h2,
.faq-group h2 {
	color: var(--ink);
}

.console-card p,
.story-copy p,
.article-body p,
.faq-item p {
	color: #4f4f4f;
}

body.vektor-route-consoles,
body.vektor-route-console {
	background: #ffffff;
	color: #151515;
}

body.vektor-route-consoles .site-main {
	padding-top: 0;
	background: #ffffff;
}

body.vektor-route-console .site-main {
	padding-top: 0;
	background: #ffffff;
}

body.vektor-route-consoles .console-hero {
	height: 830px;
	min-height: 0;
	aspect-ratio: auto;
	background: #151617;
}

body.vektor-route-console .console-hero {
	height: min(800px, 41.6667vw);
	min-height: 0;
	aspect-ratio: auto;
	background: #151617;
}

body.vektor-route-consoles .console-hero .page-hero__picture,
body.vektor-route-consoles .console-hero .page-hero__picture img,
body.vektor-route-console .console-hero .page-hero__picture,
body.vektor-route-console .console-hero .page-hero__picture img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	opacity: 1;
}

.console-hero__title {
	position: absolute;
	z-index: 2;
	top: clamp(354px, calc(315px + 3.125vw), 375px);
	left: 50%;
	margin: 0;
	color: #ffffff;
	font-size: 63px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.console-detail-hero .console-hero__title {
	top: clamp(209px, 17.7083vw, 340px);
	font-size: clamp(40px, 2.96875vw, 57px);
}

.console-index {
	--console-card-w: clamp(340px, 24.2708vw, 466px);
	--console-card-h: clamp(395px, 28.2292vw, 542px);
	--console-index-row-gap: clamp(72px, 5.2604vw, 101px);
	--console-index-col-gap: clamp(48px, 4.6354vw, 89px);
	padding: clamp(96px, 9.0104vw, 173px) 0 clamp(96px, 8.4375vw, 162px);
	background: #ffffff;
}

.console-index__grid {
	display: grid;
	grid-template-columns: repeat(3, var(--console-card-w));
	justify-content: center;
	gap: var(--console-index-row-gap) var(--console-index-col-gap);
}

.console-index-card {
	display: grid;
	justify-items: center;
	color: #151515;
	text-align: center;
}

.console-index-card__media {
	display: block;
	width: var(--console-card-w);
	height: var(--console-card-h);
	background: #e9ebee;
	overflow: hidden;
}

.console-index-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.console-index-card__title {
	display: grid;
	gap: 6px;
	margin-top: clamp(24px, 1.6667vw, 32px);
	color: #151515;
	font-size: clamp(16px, 1.0417vw, 20px);
	line-height: 1.22;
}

.console-index-card__title strong {
	font-weight: 700;
}

.console-index-card__title span {
	color: #919191;
	font-weight: 400;
}

.console-detail {
	width: min(100% - clamp(72px, 12.5vw, 240px), 1680px);
	margin: 0 auto;
	padding: clamp(96px, 6.7708vw, 130px) 0 clamp(128px, 10.4167vw, 200px);
	background: #ffffff;
}

.console-detail__media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 4.1667vw, 80px);
	margin: 0 0 clamp(72px, 5.5729vw, 107px);
}

.console-detail__media {
	width: 100%;
	height: auto;
	aspect-ratio: 10 / 7;
	margin: 0;
	background: #e9ebee;
	overflow: hidden;
}

.console-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.console-detail__copy {
	color: #151515;
	padding: 0 22px;
}

.console-detail__copy h1 {
	margin: 0 0 51px;
	color: #151515;
	font-size: 26px;
	line-height: 1.12;
	font-weight: 700;
}

body.vektor-site .console-detail__copy p {
	max-width: 1600px;
	margin: 0;
	color: #151515;
	font-size: 20px;
	line-height: 1.8;
	font-weight: 400;
}

.console-detail__toggles {
	display: grid;
	gap: 50px;
	width: min(1260px, 65.625vw);
	margin: 117px auto 0;
}

.console-toggle {
	color: #151515;
	background: #ffffff;
	border: 1px solid #9f9f9f;
}

.console-toggle[open]+.console-toggle {
	margin-top: clamp(36px, 3.9063vw, 75px);
}

.console-toggle summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 94px;
	padding: 0 clamp(24px, 2.1354vw, 41px);
	color: #151515;
	font-size: clamp(22px, 1.5625vw, 30px);
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	list-style: none;
	cursor: pointer;
}

.console-toggle summary::-webkit-details-marker {
	display: none;
}

.console-toggle summary::after {
	content: "";
	width: 14px;
	height: 14px;
	border-right: 3px solid #151515;
	border-bottom: 3px solid #151515;
	transform: translateY(-4px) rotate(45deg);
	transition: transform 160ms ease;
}

.console-toggle[open] summary::after {
	transform: translateY(4px) rotate(225deg);
}

.console-toggle__content {
	padding: 35px clamp(24px, 2.1354vw, 41px) 25px;
	color: #151515;
}

.console-toggle__content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.console-toggle__content li {
	position: relative;
	padding-left: 30px;
	color: #151515;
	font-size: clamp(18px, 1.25vw, 24px);
	line-height: 1.35;
	font-weight: 400;
}

.console-toggle__content li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #151515;
	transform: translateY(-50%);
}

.console-toggle__content li+li {
	margin-top: 32px;
}

.console-toggle:nth-child(2) .console-toggle__content li+li {
	margin-top: 35.5px;
}

.console-detail:has(.console-toggle[open]) {
	padding-bottom: 85px;
}

.console-toggle__content strong {
	color: #151515;
	font-weight: 700;
}

@media (max-width: 1180px) {

	body.vektor-route-consoles .console-hero,
	body.vektor-route-console .console-hero {
		height: 800px;
	}

	.console-hero__title {
		top: 354px;
		font-size: clamp(46px, 6.04vw, 70px);
	}

	.console-detail-hero .console-hero__title {
		top: 354px;
		font-size: clamp(40px, 5.18vw, 60px);
	}

	.console-index {
		padding: 96px 24px 132px;
	}

	.console-index__grid {
		grid-template-columns: repeat(2, minmax(260px, 1fr));
		gap: 72px 36px;
	}

	.console-index-card__media {
		width: 100%;
		height: auto;
		aspect-ratio: 466 / 542;
	}

	.console-detail {
		width: min(100% - 48px, 840px);
		padding: 88px 0 128px;
	}

	.console-detail__media-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 72px;
	}

	.console-detail__media {
		width: 100%;
		height: auto;
		aspect-ratio: 10 / 7;
	}

	.console-detail__toggles {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.console-hero__title {
		top: 356px;
		font-size: clamp(30px, 11.5vw, 46px);
	}

	body.vektor-route-consoles .console-hero__title {
		top: 346px;
	}

	.console-index {
		padding: 64px 18px 96px;
	}

	.console-index__grid {
		grid-template-columns: 1fr;
	}

	.console-index-card__title {
		font-size: 18px;
	}

	.console-detail {
		width: min(100% - 36px, 100%);
		padding: 64px 0 96px;
	}

	.console-detail__copy h1 {
		font-size: 24px;
	}

	body.vektor-site .console-detail__copy p {
		font-size: 16px;
		line-height: 1.65;
	}

	.console-toggle summary {
		min-height: 74px;
		padding: 0 22px;
		font-size: 18px;
	}

	.console-toggle__content {
		padding: 0 22px 38px;
	}

	.console-toggle__content li {
		font-size: 16px;
	}

	.console-toggle__content li+li,
	.console-toggle:nth-child(2) .console-toggle__content li+li {
		margin-top: 18px;
	}

	.console-toggle[open]+.console-toggle {
		margin-top: 24px;
	}
}

.article-body section {
	border-bottom: 1px solid #e0dad0;
}

.faq-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 72px;
	align-items: start;
}

.faq-sidebar {
	padding: 18px 20px 22px;
	border: 1px solid #e4c99f;
}

.faq-sidebar h2 {
	margin: 0 0 18px;
	color: #e3ad75;
	font-size: 18px;
}

.faq-sidebar a {
	display: block;
	margin: 0 0 13px;
	color: #303030;
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
}

.faq-sidebar a:hover,
.faq-sidebar a:focus-visible {
	color: var(--gold);
}

.faq-content {
	display: grid;
	gap: 44px;
}

.faq-group h2 {
	margin: 0 0 18px;
	color: var(--ink);
	font-size: 24px;
	font-weight: 600;
}

.faq-item {
	margin-bottom: 12px;
	background: #ffffff;
	border: 1px solid #d9d9d9;
}

.faq-item summary {
	position: relative;
	padding: 18px 54px 18px 24px;
	color: #1f1f1f;
	font-size: 16px;
	font-weight: 600;
}

.faq-item summary::after {
	content: "⌄";
	position: absolute;
	top: 50%;
	right: 22px;
	color: #222222;
	font-size: 22px;
	line-height: 1;
	transform: translateY(-50%);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
	max-width: none;
	padding: 0 24px 20px;
	color: #4f4f4f;
}

.contact-layout {
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 86px;
	padding-top: 112px;
	padding-bottom: 124px;
}

.contact-info,
.contact-form {
	background: #ffffff;
	border: 0;
	padding: 0;
}

.contact-info h2,
.contact-form h2 {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	gap: 24px;
	margin: 0 0 34px;
	color: var(--ink);
	font-size: 26px;
	font-weight: 600;
}

.contact-info h2::after,
.contact-form h2::after {
	content: "";
	height: 1px;
	background: #dedede;
}

.contact-info a {
	color: #6b6b75;
	font-size: 30px;
	font-weight: 600;
}

.contact-form label {
	display: grid;
	gap: 10px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 600;
}

.contact-form .field-label {
	display: inline-block;
}

.contact-form .field-label span {
	color: #e05c50;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 34px;
}

.contact-form input,
.contact-form textarea {
	color: var(--ink);
	background: #ffffff;
	border: 1px solid #cfcfcf;
	border-radius: 22px;
}

.contact-form input {
	height: 44px;
}

.contact-form textarea {
	min-height: 300px;
	padding: 20px 22px;
	border-radius: 32px;
}

.contact-form .btn {
	justify-self: start;
	min-width: 254px;
	min-height: 68px;
	margin-top: 8px;
	border-radius: 999px;
	font-size: 17px;
}

.contact-email-row {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-top: 44px;
}

.contact-email-row img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.site-footer {
	display: grid;
	grid-template-columns:
		min(13.021vw, 250px) min(2.865vw, 55px) min(26.667vw, 512px) min(4.219vw, 81px) min(9.375vw, 180px) min(8.438vw, 162px) min(9.375vw, 180px) min(8.438vw, 162px) min(9.375vw, 180px);
	gap: 0;
	align-items: start;
	justify-content: center;
	min-height: min(31.302vw, 601px);
	padding: 0 min(2.917vw, 56px);
	background: var(--footer);
	border-top: 0;
}

.footer-brand-block {
	grid-column: 1;
	margin-top: min(15.26vw, 293px);
}

.footer-brand img {
	width: min(13.021vw, 250px);
	height: auto;
}

.footer-news {
	grid-column: 3;
	margin-top: min(3.802vw, 73px);
}

.footer-links:nth-of-type(1) {
	grid-column: 5;
}

.footer-links:nth-of-type(2) {
	grid-column: 7;
}

.footer-links:nth-of-type(3) {
	grid-column: 9;
}

.footer-links {
	margin-top: min(3.802vw, 73px);
}

.site-footer h2 {
	margin: 0 0 min(2.083vw, 40px);
	color: var(--gold-2);
	font-size: clamp(18px, 1.302vw, 25px);
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
}

.site-footer p {
	max-width: 310px;
	color: rgba(255, 255, 255, 0.64);
	font-size: clamp(12px, 0.729vw, 14px);
}

.footer-links {
	display: grid;
	gap: 35px;
	font-size: clamp(18px, 1.002vw, 25px);
	line-height: 1;
	font-weight: 400;
	text-transform: none;
}

.footer-links a {
	color: #808080;
}

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

.footer-post {
	display: grid;
	grid-template-columns: min(8.958vw, 172px) 1fr;
	gap: min(1.042vw, 20px);
	align-items: center;
	min-height: min(7.344vw, 141px);
	color: #ffffff;
	font-size: clamp(14px, 0.938vw, 18px);
	line-height: 1.35;
	font-weight: 700;
}

.footer-post:not(:last-child) {
	padding-bottom: min(1.719vw, 33px);
	margin-bottom: min(1.719vw, 33px);
	border-bottom: 1px solid #808080;
}

.footer-post img {
	width: min(8.958vw, 172px);
	height: min(7.344vw, 141px);
	object-fit: cover;
}

.footer-post__copy {
	display: grid;
	gap: min(1.667vw, 32px);
}

.footer-post__copy strong {
	font-size: clamp(14px, 0.938vw, 18px);
	line-height: 1.35;
	font-weight: 700;
}

.footer-post__copy time {
	color: #808080;
	font-size: clamp(14px, 0.938vw, 18px);
	line-height: 1.35;
	font-weight: 400;
}

body.vektor-route-apps .site-main {
	background: var(--footer);
}

.apps-hero {
	position: relative;
	height: min(830px, 43.229vw);
	min-height: 420px;
	overflow: hidden;
	background: #030303;
}

.apps-hero__image,
.apps-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
}

.apps-hero__image img {
	object-fit: cover;
}

.apps-hero h1 {
	position: absolute;
	top: 48.35%;
	left: 50%;
	margin: 0;
	color: var(--gold-2);
	font-size: clamp(30px, 2.24vw, 43px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.apps-intro {
	display: grid;
	grid-template-columns: 52.35% 47.65%;
	height: 755px;
	background: #ffffff;
	overflow: hidden;
}

.apps-intro__copy {
	align-self: center;
	justify-self: center;
	width: min(540px, 72%);
	transform: translateY(-4px);
}

.apps-intro h2 {
	margin: 0 0 35px;
	color: var(--ink);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
}

.apps-intro p {
	max-width: 520px;
	margin: 0 0 62px;
	color: var(--ink);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.apps-intro__qrs {
	display: flex;
	gap: 48px;
	align-items: flex-start;
}

.apps-intro__qr {
	display: block;
	width: 204px;
	height: 204px;
	object-fit: contain;
}

.apps-intro__media,
.apps-intro__image {
	width: 100%;
	height: 100%;
}

.apps-intro__media {
	background-image: var(--apps-intro-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.apps-intro__image {
	display: none;
}

.apps-feature-stack {
	background: #0b0b1d;
}

.apps-feature {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 560px;
	overflow: hidden;
	background-color: #12102a;
	background-image: var(--apps-feature-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.apps-feature__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	background-image: var(--apps-feature-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: min(100%, 957px) 480px;
}

.apps-feature__image {
	display: none;
}

.apps-feature__copy {
	align-self: center;
	justify-self: start;
	width: min(600px, calc(100% - 230px));
	margin-left: 200px;
	transform: translateY(3px);
}

.apps-feature--reverse .apps-feature__media {
	grid-column: 2;
	grid-row: 1;
}

.apps-feature--reverse .apps-feature__copy {
	grid-column: 1;
	grid-row: 1;
}

.apps-feature h2,
.apps-support h2 {
	margin: 0 0 28px;
	color: var(--gold-2);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.apps-feature p,
.apps-support p {
	max-width: 600px;
	margin: 0;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.btn--apps {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	min-height: 80px;
	margin-top: 44px;
	padding: 0 42px;
	color: #151515;
	background: var(--gold-2);
	border-color: var(--gold-2);
	border-radius: 999px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.apps-support {
	position: relative;
	height: 788px;
	overflow: hidden;
	background: #0f1450;
	background-image: var(--apps-support-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.apps-support__image {
	display: none;
}

.apps-support__copy {
	position: absolute;
	z-index: 1;
	top: 306px;
	left: 200px;
	width: min(560px, calc(100% - 400px));
}

.apps-support h2 {
	margin-bottom: 30px;
}

.apps-support p {
	margin-bottom: 42px;
}

.apps-support .btn--apps {
	margin-top: 0;
}

@media (max-width: 1700px) and (min-width: 1181px) {
	.header-main {
		grid-template-columns: minmax(390px, 30vw) 1fr 80px;
	}

	.primary-nav {
		gap: clamp(44px, 5.8vw, 88px);
		color: #cfcfd0 !important;
		font-size: 14px;
	}

	.header-search:focus-within,
	.header-search.is-open {
		width: clamp(120px, 11vw, 190px);
	}

	.primary-nav a,
	.primary-nav .nav-trigger {
		color: #cfcfd0 !important;
	}

	.news-index {
		padding: clamp(110px, 7.5vw, 144px) 0 clamp(124px, 8.438vw, 162px);
	}

	.news-index__list {
		width: min(100% - 96px, 70.3125vw);
		gap: clamp(62px, 4.271vw, 82px);
	}

	.news-card--index {
		grid-template-columns: minmax(0, 55.5556%) minmax(0, 44.4444%);
		min-height: 0;
	}

	.news-card--index .news-card__body {
		min-height: clamp(204px, 14.063vw, 270px);
		margin-left: clamp(-42px, -2.188vw, -26px);
		padding: clamp(36px, 2.5vw, 48px) clamp(48px, 4.063vw, 78px) clamp(34px, 2.292vw, 44px);
	}

	.news-card--index .news-card__body p,
	.news-card--index .news-card__label {
		margin-bottom: clamp(40px, 2.813vw, 54px);
	}

	.news-card--index .news-card__body h3 {
		margin-bottom: clamp(14px, 0.938vw, 18px);
		font-size: clamp(18px, 1.042vw, 20px);
	}

	.news-card--index .news-card__body span,
	.news-card--index .news-card__excerpt {
		max-width: min(100%, 430px);
		font-size: clamp(12px, 0.677vw, 13px);
	}
}

@media (max-width: 1400px) and (min-width: 1181px) {
	.header-search:focus-within,
	.header-search.is-open {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		z-index: 130;
		width: min(320px, calc(100vw - 120px));
		background: rgba(5, 5, 5, 0.96);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
	}
}

@media (max-width: 1180px) {
	:root {
		--header-h: 92px;
	}

	.header-top {
		display: none;
	}

	.site-header {
		top: 0;
	}

	.header-main {
		width: min(100% - 36px, 100%);
		grid-template-columns: minmax(170px, 260px) auto;
		height: 92px;
	}

	.brand-mark img {
		width: min(260px, 52vw);
		height: auto;
	}

	.nav-toggle {
		display: block;
		justify-self: end;
	}

	.primary-nav,
	.header-search {
		display: none;
	}

	.header-search {
		margin-right: 0;
	}

	.primary-nav.is-open,
	.header-search.is-open {
		display: grid;
		position: fixed;
		left: 0;
		right: 0;
		z-index: 120;
		background: #050505;
	}

	.primary-nav.is-open {
		top: var(--header-h);
		min-height: calc(100vh - var(--header-h));
		max-height: calc(100vh - var(--header-h));
		align-content: start;
		justify-content: stretch;
		gap: 0;
		padding: 112px clamp(28px, 7vw, 48px) 40px;
		overflow-y: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.primary-nav.is-open .nav-group,
	.primary-nav.is-open > a {
		width: 100%;
	}

	.primary-nav.is-open > a,
	.primary-nav.is-open .nav-group > a,
	.primary-nav.is-open .nav-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 58px;
		padding: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		color: rgba(255, 255, 255, 0.94);
		font-size: clamp(20px, 5.6vw, 24px);
		font-weight: 500;
		line-height: 1;
	}

	.primary-nav.is-open .nav-trigger {
		width: 100%;
		text-align: left;
		cursor: pointer;
	}

	.primary-nav.is-open .nav-group > a::after,
	.primary-nav.is-open .nav-trigger::after {
		content: "";
		width: 9px;
		height: 9px;
		margin-left: 20px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 180ms ease;
	}

	.primary-nav.is-open .nav-group.is-submenu-active > a::after,
	.primary-nav.is-open .nav-group.is-submenu-active > .nav-trigger::after {
		transform: rotate(-135deg) translate(-2px, -1px);
	}

	.nav-panel {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		border: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.primary-nav.is-open .nav-group > .nav-panel {
		display: none;
	}

	.primary-nav.is-open .nav-group.is-submenu-active > .nav-panel {
		display: grid;
		gap: 0;
		left: auto;
		right: auto;
		padding: 8px 0 14px clamp(16px, 4vw, 24px);
		transform: none;
	}

	.primary-nav.is-open .nav-panel a {
		display: flex;
		align-items: center;
		min-height: 46px;
		padding: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		color: rgba(255, 255, 255, 0.82);
		font-size: clamp(16px, 4.5vw, 18px);
		font-weight: 600;
		line-height: 1.1;
		text-transform: none;
	}

	.primary-nav.is-open .nav-panel a:last-child {
		border-bottom-color: rgba(255, 255, 255, 0.08);
	}

	.primary-nav.is-open .nav-group.is-submenu-active > a,
	.primary-nav.is-open .nav-group.is-submenu-active > .nav-trigger {
		color: var(--gold-2);
	}

	.header-search.is-open {
		top: calc(var(--header-h) + 24px);
		bottom: auto;
		left: clamp(24px, 7vw, 48px);
		right: auto;
		z-index: 130;
		grid-template-columns: 1fr 48px;
		width: calc(100vw - clamp(48px, 14vw, 96px));
		height: 50px;
		margin: 0;
		border: 1px solid rgba(255, 255, 255, 0.18);
	}

	.header-search.is-open input {
		height: 48px;
		font-size: 16px;
		opacity: 1;
	}

	.header-search.is-open button {
		width: 48px;
		height: 48px;
	}

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

	.traits-band,
	.section,
	.products-shell {
		width: min(100% - 36px, var(--max));
	}

	.products-shell {
		--products-shell-gutter-left: 18px;
		--products-shell-gutter-right: 18px;
	}

	.product-grid,
	.products-main .product-grid,
	.console-grid,
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.products-main .product-grid {
		width: 100%;
		margin-left: 0;
		gap: 48px 26px;
	}

	.home-products .product-grid {
		gap: 24px;
	}

	.home-product-card {
		min-height: clamp(360px, 52vw, 430px);
	}

	.home-product-card__body {
		padding: clamp(24px, 3vw, 31px) clamp(24px, 3vw, 31px) 0;
	}

	.home-product-card__media {
		padding: clamp(36px, 5vw, 54px) clamp(24px, 3vw, 31px) clamp(30px, 4vw, 44px);
	}

	.home-product-card__media img {
		max-width: min(68%, 260px);
		max-height: clamp(210px, 28vw, 280px);
	}

	.home-products .home-product-card:nth-child(1) img,
	.home-products .home-product-card:nth-child(2) img {
		max-width: min(76%, 300px);
		max-height: clamp(160px, 22vw, 210px);
	}

	.home-products .home-product-card:nth-child(8) img {
		max-width: min(78%, 320px);
		max-height: clamp(240px, 32vw, 320px);
		margin-top: 0;
	}

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

	.news-hero {
		height: auto;
		max-height: none;
		padding-top: 0;
		aspect-ratio: 840 / 800;
	}

	.news-hero .page-hero__picture,
	.news-hero .page-hero__picture img {
		height: 100%;
		min-height: inherit;
	}

	.news-index {
		padding: 96px 0 110px;
	}

	.news-index__list {
		width: min(100% - 72px, 920px);
		gap: 70px;
	}

	.news-card--index {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.news-card--index .news-card__body {
		min-height: 0;
		margin-top: -1px;
		margin-left: 0;
		padding: 36px 28px 34px;
	}

	.products-shell,
	.product-hero,
	.spec-layout,
	.detail-tables,
	.faq-layout,
	.contact-layout,
	.about-story,
	.site-footer {
		grid-template-columns: 1fr;
	}

	.site-footer {
		min-height: 0;
		padding: 64px 36px;
		row-gap: 44px;
	}

	.footer-brand-block,
	.footer-news,
	.footer-links:nth-of-type(1),
	.footer-links:nth-of-type(2),
	.footer-links:nth-of-type(3) {
		grid-column: 1;
		margin-top: 0;
	}

	.footer-brand-block {
		margin-bottom: 40px;
	}

	.products-sidebar {
		position: static;
		margin-top: 0;
		transform: none;
	}

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

	.products-sidebar h2 {
		grid-column: 1 / -1;
	}

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

	.category-grid--home .category-tile,
	.category-grid--home .category-tile:nth-child(4),
	.category-grid--home .category-tile:nth-child(5) {
		grid-column: auto;
	}
}

@media (max-width: 720px) {
	:root {
		--header-h: 76px;
	}

	.header-main {
		height: 76px;
	}

	.home-hero {
		min-height: 560px;
		aspect-ratio: auto;
	}

	.home-hero__slide--brand .home-hero__image {
		position: absolute;
		top: 0;
		left: 50%;
		width: auto;
		max-width: none;
		height: 100%;
		min-height: 0;
		object-fit: cover;
		transform: translateX(-50%);
	}

	.home-hero__content,
	.page-hero__content {
		left: 24px;
		right: 24px;
		bottom: 74px;
	}

	.article-hero--fitness-brasil-expo-2025-recap {
		min-height: 500px;
		aspect-ratio: auto;
	}

	.article-hero--fitness-brasil-expo-2025-recap .page-hero__content {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 34px;
		width: calc(100% - 48px);
		transform: translateX(-50%);
		text-align: left;
	}

	.article-hero--fitness-brasil-expo-2025-recap .page-hero__content h1 {
		font-size: clamp(28px, 7.8vw, 40px);
		line-height: 1.06;
	}

	.article-layout--fitness-brasil-expo-2025-recap {
		width: calc(100% - 48px);
		padding-top: 40px;
		padding-bottom: 72px;
		gap: 48px;
	}

	.article-layout--fitness-brasil-expo-2025-recap .article-layout__copy p {
		font-size: 15px;
		line-height: 1.62;
	}

	.article-layout--fitness-brasil-expo-2025-recap .article-layout__gallery--duo {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.article-hero--fibo-2025-recap {
		min-height: 500px;
		aspect-ratio: auto;
	}

	.article-hero--fibo-2025-recap .page-hero__content {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 34px;
		width: calc(100% - 48px);
		transform: translateX(-50%);
		text-align: left;
	}

	.article-hero--fibo-2025-recap .page-hero__content h1 {
		font-size: clamp(26px, 7.6vw, 38px);
		line-height: 1.08;
	}

	.article-layout--fibo-2025-recap {
		width: calc(100% - 48px);
		padding-top: 40px;
		padding-bottom: 72px;
		gap: 38px;
	}

	.article-layout--fibo-2025-recap .article-layout__copy p {
		font-size: 15px;
		line-height: 1.62;
	}

	.article-layout--fibo-2025-recap .article-layout__gallery--duo,
	.article-layout--fibo-2025-recap .article-layout__gallery--trio {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 24px;
	}

	.article-hero--connecting-vektor-to-d-fit,
	.article-hero--how-to-create-competitions-with-d-fit,
	.article-hero--connecting-vektor-to-kinomap,
	.article-hero--connecting-vektor-to-zwift,
	.article-hero--connecting-vektor-to-exr {
		min-height: 420px;
		aspect-ratio: auto;
	}

	.article-layout--app-guide {
		padding-bottom: 0;
	}

	.article-layout--app-guide .article-layout__block--text.article-layout__block--intro {
		width: calc(100% - 48px);
		padding: 32px 0 34px;
	}

	.article-layout--app-guide .article-layout__copy h2 {
		font-size: clamp(25px, 2.25vw, 20px);
		font-weight: 600;
	}

	.article-layout--app-guide .article-layout__copy p {
		font-size: 19px;
		font-weight: 300;
		line-height: 1.62;
	}

	.article-layout__instruction {
		width: calc(100% - 48px);
		min-height: 0;
		padding: 34px 0;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.article-layout__instruction-copy {
		max-width: none;
		order: 1 !important;
		margin-left: 0;
	}

	.article-layout__instruction-number {
		margin-bottom: 14px;
		font-size: clamp(48px, 14vw, 60px);
	}

	.article-layout__instruction-body p {
		font-size: 16px;
		line-height: 1.34;
	}

	.article-layout__instruction-media {
		display: grid;
		order: 2 !important;
		justify-content: center !important;
		grid-auto-flow: row;
		grid-template-columns: 1fr;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction {
		background: #111111 url("../source/NEWS/Connecting VEKTOR to Kinomap/Section BG/Kino BG.png") center / cover no-repeat;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__block--instruction::before {
		display: none;
	}

	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media {
		padding: 22px;
		background: rgba(244, 247, 251, 0.96);
		justify-items: center;
	}

	.article-hero--ispo-2025-recap {
		min-height: 500px;
		aspect-ratio: auto;
	}

	.article-hero--ispo-2025-recap .page-hero__content {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 34px;
		width: calc(100% - 48px);
		transform: translateX(-50%);
		text-align: left;
	}

	.article-hero--ispo-2025-recap .page-hero__content h1 {
		font-size: clamp(26px, 7.4vw, 38px);
		line-height: 1.08;
	}

	.article-layout--ispo-2025-recap {
		width: calc(100% - 48px);
		padding-top: 40px;
		padding-bottom: 72px;
		gap: 38px;
	}

	.article-layout--ispo-2025-recap .article-layout__copy p {
		font-size: 15px;
		line-height: 1.62;
	}

	.article-layout--ispo-2025-recap .article-layout__gallery--duo,
	.article-layout--ispo-2025-recap .article-layout__gallery--trio {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 24px;
	}

	.article-hero--hfa-2025-recap {
		min-height: 500px;
		aspect-ratio: auto;
	}

	.article-hero--hfa-2025-recap .page-hero__content {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 34px;
		width: calc(100% - 48px);
		transform: translateX(-50%);
		text-align: left;
	}

	.article-hero--hfa-2025-recap .page-hero__content h1 {
		font-size: clamp(26px, 7.4vw, 38px);
		line-height: 1.08;
	}

	.article-layout--hfa-2025-recap {
		width: calc(100% - 48px);
		padding-top: 40px;
		padding-bottom: 72px;
		gap: 38px;
	}

	.article-layout--hfa-2025-recap .article-layout__copy p {
		font-size: 15px;
		line-height: 1.62;
	}

	.article-layout--hfa-2025-recap .article-layout__gallery--duo,
	.article-layout--hfa-2025-recap .article-layout__gallery--portrait {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 24px;
	}

	.article-layout--hfa-2025-recap .article-layout__feature--centered {
		width: 100%;
	}

	.article-hero--taispo-2025-recap {
		min-height: 500px;
		aspect-ratio: auto;
	}

	.article-hero--taispo-2025-recap .page-hero__content {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 34px;
		width: calc(100% - 48px);
		transform: translateX(-50%);
		text-align: left;
	}

	.article-hero--taispo-2025-recap .page-hero__content h1 {
		font-size: clamp(26px, 7.4vw, 38px);
		line-height: 1.08;
	}

	.article-layout--taispo-2025-recap {
		width: calc(100% - 48px);
		padding-top: 40px;
		padding-bottom: 72px;
		gap: 38px;
	}

	.article-layout--taispo-2025-recap .article-layout__copy p {
		font-size: 15px;
		line-height: 1.62;
	}

	.article-layout--taispo-2025-recap .article-layout__feature--centered,
	.article-layout--taispo-2025-recap .article-layout__gallery--duo,
	.article-layout--taispo-2025-recap .article-layout__gallery--trio {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 24px;
	}

	.home-hero__content,
	.home-hero__slide--brand .home-hero__content,
	.home-hero__slide--roxgear .home-hero__content,
	.home-hero__slide--console .home-hero__content,
	.home-hero__slide--rower .home-hero__content {
		top: auto;
		bottom: 72px;
		left: 24px;
		right: 24px;
		max-width: none;
		gap: 22px;
		transform: none;
	}

	.home-hero__content h1 {
		font-size: clamp(25px, 7.4vw, 30px);
		line-height: 1.14;
	}

	.home-hero__slide--brand .home-hero__content h1 {
		max-width: none;
	}

	.home-hero__content .btn {
		min-height: 48px;
		padding: 0 22px;
		font-size: 14px;
	}

	.carousel-arrow {
		display: none;
	}

	.carousel-dots {
		left: 24px;
		right: auto;
		bottom: 34px;
	}

	.traits-band {
		margin-top: 0;
		padding-bottom: 44px;
	}

	.trait-panel,
	.product-grid,
	.products-main .product-grid,
	.news-grid,
	.console-grid,
	.feature-grid,
	.category-grid--home,
	.products-hero__categories,
	.faq-layout,
	.products-sidebar {
		grid-template-columns: 1fr;
	}

	.products-main .product-grid {
		width: 100%;
		margin-left: 0;
		gap: 38px;
	}

	.products-main .product-grid.is-list-view {
		--products-list-media-w: clamp(124px, 30vw, 164px);
		gap: 24px;
	}

	.products-main .product-grid.is-list-view .product-card {
		grid-template-columns: var(--products-list-media-w) minmax(0, 1fr);
		column-gap: 18px;
	}

	.products-main .product-grid.is-list-view .product-card__media {
		aspect-ratio: 296 / 220;
	}

	.products-main .product-grid.is-list-view .product-card__body {
		align-items: flex-start;
		padding: 0;
		text-align: left;
	}

	.home-products .product-grid {
		gap: 18px;
	}

	.home-product-card {
		min-height: clamp(360px, 92vw, 460px);
	}

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

	.home-product-card__media {
		padding: 32px 24px 34px;
	}

	.home-product-card__media img {
		max-width: min(72%, 290px);
		max-height: clamp(220px, 58vw, 320px);
	}

	.home-products .home-product-card:nth-child(1) img,
	.home-products .home-product-card:nth-child(2) img {
		max-width: min(80%, 320px);
		max-height: clamp(170px, 48vw, 240px);
	}

	.home-products .home-product-card:nth-child(8) img {
		max-width: min(82%, 340px);
		max-height: clamp(250px, 70vw, 340px);
	}

	.news-hero {
		height: auto;
		max-height: none;
		padding-top: 0;
		aspect-ratio: 360 / 800;
	}

	.news-hero .page-hero__picture,
	.news-hero .page-hero__picture img {
		height: 100%;
		min-height: inherit;
	}

	.news-index {
		padding: 64px 0 80px;
	}

	.news-index__list {
		width: min(100% - 28px, 520px);
		gap: 46px;
	}

	.news-card--index .news-card__body {
		padding: 30px 22px;
	}

	.news-card--index .news-card__body p,
	.news-card--index .news-card__label {
		margin-bottom: 24px;
	}

	.news-card--index .news-card__body h3 {
		font-size: 20px;
	}

	.trait-card {
		border-left: 0;
		border-top: 1px solid #e9e3d8;
	}

	.trait-card+.trait-card::before {
		display: none;
	}

	.trait-card:first-child {
		border-top: 0;
	}

	.section {
		width: min(100% - 28px, var(--max));
		padding: 64px 0;
	}

	.home-categories {
		width: min(100% - 36px, var(--max));
	}

	.category-grid--home {
		gap: 16px;
	}

	.category-tile {
		aspect-ratio: 16 / 10;
	}

	.app-band,
	.contact-cta {
		min-height: 560px;
		padding-left: 24px;
		padding-right: 24px;
	}

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

	.products-hero h1 {
		margin-bottom: 34px;
		font-size: 48px;
	}

	.products-hero__categories {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		width: min(100%, 430px);
		gap: 18px 10px;
	}

	.products-hero__categories a {
		display: grid;
		grid-column: span 2;
		justify-items: center;
		align-content: start;
		gap: 8px;
		min-height: 0;
		border: 0;
		font-size: clamp(12px, 3.1vw, 14px);
		line-height: 1.15;
	}

	.products-hero__categories a:nth-child(4) {
		grid-column: 2 / span 2;
	}

	.products-hero__categories a:nth-child(5) {
		grid-column: 4 / span 2;
	}

	.products-hero__categories img {
		width: clamp(34px, 10vw, 46px);
		height: clamp(34px, 10vw, 46px);
	}

	.products-shell {
		gap: 34px;
		padding: 64px 0 82px;
	}

	.products-filter-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: max-content;
		min-height: 44px;
		padding: 0 20px;
		color: #151515;
		background: transparent;
		border: 1px solid #151515;
		border-radius: 999px;
		font: inherit;
		font-size: 15px;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		cursor: pointer;
	}

	.products-filter-backdrop {
		position: fixed;
		top: var(--header-h);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 80;
		display: block;
		background: rgba(5, 5, 5, 0.58);
		opacity: 0;
		pointer-events: none;
		transition: opacity 180ms ease;
	}

	body.products-filter-open .products-filter-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.products-sidebar {
		position: fixed;
		top: var(--header-h);
		bottom: 0;
		left: 0;
		z-index: 90;
		display: grid;
		align-content: start;
		grid-template-columns: 1fr;
		gap: 0;
		width: min(86vw, 338px);
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		margin: 0;
		padding: 28px 24px 34px;
		overflow-y: auto;
		color: #151515;
		background: #f7f7f4;
		box-shadow: 22px 0 44px rgba(0, 0, 0, 0.24);
		visibility: hidden;
		opacity: 0;
		transform: translateX(calc(-100% - 24px));
		transition:
			transform 220ms ease,
			opacity 180ms ease,
			visibility 0s linear 220ms;
		pointer-events: none;
	}

	body.products-filter-open .products-sidebar {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
		transition:
			transform 220ms ease,
			opacity 180ms ease;
		pointer-events: auto;
	}

	.products-sidebar__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		margin-bottom: 16px;
	}

	.products-sidebar h2 {
		margin: 0;
		color: #151515;
		font-size: clamp(20px, 5.4vw, 24px);
		line-height: 1.08;
		white-space: normal;
	}

	.products-sidebar__close {
		position: relative;
		display: grid;
		place-items: center;
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
		padding: 0;
		color: #151515;
		background: transparent;
		border: 1px solid rgba(21, 21, 21, 0.24);
		border-radius: 999px;
		cursor: pointer;
	}

	.products-sidebar__close span,
	.products-sidebar__close span::before,
	.products-sidebar__close span::after {
		display: block;
		width: 16px;
		height: 2px;
		background: currentColor;
	}

	.products-sidebar__close span {
		position: relative;
		background: transparent;
	}

	.products-sidebar__close span::before,
	.products-sidebar__close span::after {
		position: absolute;
		top: 50%;
		left: 0;
		content: "";
	}

	.products-sidebar__close span::before {
		transform: rotate(45deg);
	}

	.products-sidebar__close span::after {
		transform: rotate(-45deg);
	}

	.products-sidebar button[data-filter] {
		grid-template-columns: minmax(0, 1fr) max-content;
		gap: 14px;
		min-height: 54px;
		padding: 0;
		color: #151515;
		border-bottom: 1px solid rgba(21, 21, 21, 0.12);
		font-size: clamp(18px, 5.2vw, 22px);
	}

	.products-sidebar button[data-filter]:last-child {
		border-bottom: 0;
	}

	.products-sidebar__count {
		width: 40px;
		height: 34px;
		font-size: 18px;
	}

	.products-toolbar {
		grid-template-columns: 1fr;
		gap: 14px;
		align-items: flex-start;
		width: 100%;
		margin-left: 0;
	}

	.products-show-tools,
	.view-icons,
	.products-toolbar-line {
		margin-left: 0;
	}

	.products-toolbar-line {
		display: none;
	}

	.pagination {
		margin-top: 64px;
		transform: none;
	}

	.faq-sidebar {
		display: none;
	}

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

	.contact-email-row {
		gap: 18px;
		align-items: flex-start;
	}

	.contact-email-row img {
		width: 48px;
		height: 48px;
	}

	.contact-info a {
		font-size: 24px;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.product-hero {
		grid-template-columns: 1fr;
		padding: 58px 22px;
	}

	.site-footer {
		padding: 56px 24px;
		row-gap: 34px;
	}

	.site-footer h2 {
		margin-bottom: 24px;
	}

	.footer-post {
		grid-template-columns: 64px minmax(0, 1fr);
		column-gap: 16px;
	}

	.footer-post img {
		width: 64px;
		height: 48px;
	}

	.footer-post__copy {
		min-width: 0;
	}

	.footer-links {
		gap: 22px;
	}
}

.about-mission-hero {
	min-height: 0;
	aspect-ratio: 1920 / 800;
}

.about-mission-hero::after {
	background: rgba(0, 0, 0, 0.54);
}

@media (max-width: 900px) {

	.product-detail-hero,
	.product-specs-layout,
	.product-app-panel,
	.product-feature-band {
		grid-template-columns: 1fr;
	}

	.product-detail-hero,
	.product-detail-tabs,
	.product-app-panel,
	.product-comparison-section,
	.product-related-section {
		width: min(100% - 44px, 680px);
	}

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

	.product-feature-band {
		width: 100%;
		padding-left: 22px;
		padding-right: 22px;
	}

	.product-feature-band--reverse img {
		order: 0;
	}

	body.vektor-route-product:is(.vektor-product-tab-features, .vektor-product-tab-specs) .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		margin-top: 56px;
		margin-bottom: 40px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		grid-template-columns: 1fr;
		width: min(100% - 44px, 680px);
		min-height: 0;
		padding: 36px 28px;
		row-gap: 28px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) h2 {
		font-size: 24px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) p {
		max-width: none;
		font-size: 16px;
		line-height: 1.42;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs {
		gap: 18px;
		margin: 24px 0 24px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs img {
		width: 112px;
		height: 112px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .btn {
		min-height: 56px;
		padding: 0 28px;
		font-size: 18px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__image {
		width: min(100%, 320px);
		max-height: 280px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) {
		max-width: calc(100vw - 44px);
		overflow: hidden;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap {
		max-width: 100%;
		overflow: visible;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table-scroll {
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table {
		min-width: 760px;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-table th {
		width: 30%;
	}

	body.vektor-route-product .product-comparison-section:is(.product-comparison-section--features, .product-comparison-section--specs) .comparison-wrap .btn {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.product-detail-gallery {
		grid-template-columns: 1fr;
	}

	.product-detail-gallery__rail {
		order: 2;
		width: 100%;
	}

	.product-detail-gallery__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
	}

	.product-detail-gallery__controls {
		width: 100%;
		justify-content: flex-end;
	}

	body.vektor-route-product .product-detail-gallery__main-item img {
		max-width: 100%;
	}

	.product-detail-tab-list {
		padding-top: 34px;
		padding-bottom: 40px;
	}

	.product-detail-tab-list a {
		min-width: 50%;
		padding: 0 10px;
	}

	.product-feature-grid {
		grid-template-columns: 1fr;
	}

	.product-app-panel {
		padding: 32px 22px;
	}

	body.vektor-route-product .product-app-panel__qrs {
		justify-content: center;
	}

	body.vektor-route-product .product-app-panel .btn {
		display: flex;
		width: fit-content;
		margin-right: auto;
		margin-left: auto;
	}

	body.vektor-route-product .product-app-panel__image {
		justify-self: center;
		margin-right: auto;
		margin-left: auto;
	}

	body.vektor-route-product:is(.vektor-product-tab-features, .vektor-product-tab-specs) .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		margin-top: 44px;
		margin-bottom: 32px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) {
		padding: 28px 22px;
		row-gap: 24px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) h2 {
		font-size: 20px;
		margin-bottom: 14px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) p {
		font-size: 15px;
		line-height: 1.4;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs {
		gap: 14px;
		margin: 18px 0 20px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__qrs img {
		width: 92px;
		height: 92px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .btn {
		min-height: 50px;
		padding: 0 24px;
		font-size: 16px;
	}

	body.vektor-route-product .product-app-panel:is(.product-app-panel--features, .product-app-panel--specs) .product-app-panel__image {
		width: min(100%, 260px);
		max-height: 228px;
	}
}

.about-mission-hero__content {
	position: absolute;
	z-index: 1;
	top: 47.8%;
	left: 50%;
	width: min(100% - 96px, 1500px);
	color: var(--gold-2);
	text-align: center;
	transform: translate(-50%, -50%);
}

body.vektor-site .about-mission-hero__content p {
	margin: 0 0 14px;
	color: var(--gold-2);
	font-size: clamp(28px, 2.45vw, 47px);
	line-height: 1.08;
	font-weight: 700;
	text-transform: uppercase;
}

.about-mission-hero__content h1 {
	max-width: 1450px;
	margin: 0 auto;
	color: var(--gold-2);
	font-size: clamp(34px, 3.08vw, 59px);
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.about-layout {
	width: 100%;
	background: #ffffff;
}

.about-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	min-height: min(35.417vw, 680px);
}

.about-panel__media {
	min-height: inherit;
	background: #111111;
}

.about-panel--reverse .about-panel__copy {
	order: -1;
}

.about-panel__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-panel__copy {
	display: flex;
	align-items: center;
	min-height: inherit;
	padding: clamp(56px, 5vw, 96px) clamp(64px, 8.542vw, 164px);
	color: #222222;
}

.about-panel__copy--cream {
	background: #f6ecdf;
}

.about-panel__copy--sand {
	background: #d5b784;
}

.about-panel__copy--mist {
	background: #e5e8ec;
}

.about-panel__copy--blue {
	background: #aec2ce;
}

.about-panel__copy--white {
	background: #f4f4f4;
}

.about-panel__copy--gold {
	background: #fac983;
}

.about-panel__text {
	width: 100%;
	max-width: 540px;
}

.about-panel__text h2 {
	margin: 0 0 24px;
	color: #202225;
	font-size: clamp(18px, 1.05vw, 20px);
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: 0;
}

body.vektor-site .about-panel__text p {
	margin: 0 0 14px;
	color: #202225;
	font-size: clamp(12px, 0.729vw, 14px);
	line-height: 1.48;
	font-weight: 400;
	letter-spacing: 0;
}

body.vektor-site .about-panel__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.about-mission-hero {
		aspect-ratio: auto;
		min-height: 800px;
	}

	.about-mission-hero__content {
		top: auto;
		bottom: 78px;
		left: 24px;
		right: 24px;
		width: auto;
		text-align: left;
		transform: none;
	}

	body.vektor-site .about-mission-hero__content p {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.about-mission-hero__content h1 {
		font-size: 32px;
		line-height: 1.12;
	}

	.about-panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.about-panel__media,
	.about-panel__copy {
		min-height: 0;
	}

	.about-panel__media {
		order: 0;
	}

	.about-panel__copy,
	.about-panel--reverse .about-panel__copy {
		order: 1;
	}

	.about-panel__media {
		aspect-ratio: 960 / 680;
	}

	.about-panel__copy {
		padding: 46px 24px 54px;
	}

	.about-panel__text {
		max-width: none;
	}

	.about-panel__text h2 {
		margin-bottom: 18px;
		font-size: 20px;
	}

	body.vektor-site .about-panel__text p {
		font-size: 13px;
		line-height: 1.55;
	}
}

@media (max-width: 420px) {
	.about-mission-hero {
		min-height: 720px;
	}

	.about-mission-hero__content h1 {
		font-size: 28px;
	}
}

/* FAQ page parity against the supplied 1920px mockups. */
body.vektor-route-faq .faq-group.is-hidden {
	display: none;
}

@media (min-width: 1181px) {
	body.vektor-route-faq .center-hero {
		height: calc(41.667vw + min(30px, 1.5625vw));
		max-height: 830px;
		min-height: 0;
		aspect-ratio: auto;
	}

	body.vektor-route-faq .center-hero h1 {
		font-size: clamp(32px, 2.8125vw, 54px);
		transform: translateY(max(-15px, -0.78125vw));
	}

	body.vektor-route-faq .faq-layout {
		width: min(90.885vw, 1745px);
		grid-template-columns: minmax(0, min(20.833vw, 400px)) minmax(0, min(65.521vw, 1258px));
		gap: min(4.531vw, 87px);
		padding-top: min(5.156vw, 99px);
		padding-bottom: 101px;
	}

	body.vektor-route-faq .faq-layout.is-filtered {
		padding-bottom: 17px;
	}

	body.vektor-route-faq .faq-sidebar {
		position: sticky;
		top: calc(var(--header-h) + min(1.667vw, 32px));
		align-self: start;
		max-height: calc(100vh - var(--header-h) - min(3.333vw, 64px));
		overflow-y: auto;
		min-height: min(25.208vw, 484px);
		padding: min(1.198vw, 23px) min(1.198vw, 23px) min(1.563vw, 30px);
		border-color: #edc9aa;
	}

	body.vektor-route-faq .faq-sidebar h2 {
		margin: 0 0 min(1.146vw, 22px);
		padding-bottom: min(0.885vw, 17px);
		border-bottom: 1px solid #e8cfb7;
		color: #f0bf7f;
		font-size: clamp(24px, 1.667vw, 32px);
		font-weight: 700;
		line-height: 1.08;
	}

	body.vektor-route-faq .faq-sidebar a {
		margin-bottom: min(1.667vw, 32px);
		color: #1f1f1f;
		font-size: clamp(17px, 1.25vw, 24px);
		font-weight: 700;
		line-height: 1.18;
	}

	body.vektor-route-faq .faq-sidebar a.is-active {
		color: #c58f5e;
	}

	body.vektor-route-faq .faq-content {
		gap: min(3.333vw, 64px);
	}

	body.vektor-route-faq .faq-group h2 {
		margin-bottom: min(1.927vw, 37px);
		color: #1e1e1e;
		font-size: clamp(27px, 1.875vw, 36px);
		font-weight: 700;
		line-height: 1.1;
	}

	body.vektor-route-faq .faq-group {
		scroll-margin-top: calc(var(--header-h) + min(2.604vw, 50px));
	}

	body.vektor-route-faq .faq-item {
		margin-bottom: min(1.042vw, 20px);
		border-color: #c9c9c9;
	}

	body.vektor-route-faq .faq-item:last-child {
		margin-bottom: 0;
	}

	body.vektor-route-faq .faq-item summary {
		display: flex;
		align-items: center;
		min-height: min(4.896vw, 94px);
		padding: 0 min(4.167vw, 80px) 0 min(2.083vw, 40px);
		color: #202020;
		font-size: clamp(20px, 1.458vw, 28px);
		font-weight: 700;
		line-height: 1.18;
	}

	body.vektor-route-faq .faq-item summary::after {
		right: min(1.979vw, 38px);
		width: min(0.729vw, 14px);
		height: min(0.729vw, 14px);
		border: solid #202020;
		border-width: 0 2px 2px 0;
		content: "";
		font-size: 0;
		transform: translateY(-65%) rotate(45deg);
	}

	body.vektor-route-faq .faq-item[open] summary {
		border-bottom: 1px solid #c9c9c9;
	}

	body.vektor-route-faq .faq-item[open] summary::after {
		transform: translateY(-35%) rotate(-135deg);
	}

	body.vektor-route-faq .faq-item p {
		min-height: min(12.24vw, 235px);
		padding: min(1.667vw, 32px) min(2.083vw, 40px) min(1.458vw, 28px);
		margin: 0;
		color: #202020;
		font-size: clamp(17px, 1.198vw, 23px);
		line-height: 1.26;
	}
}

@media (max-width: 1180px) and (min-width: 721px) {

	.products-hero__categories {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		width: min(100%, calc(100vw - 72px));
		gap: clamp(10px, 1.8vw, 16px);
	}

	.products-hero__categories a {
		min-width: 0;
		gap: clamp(8px, 1.2vw, 12px);
		font-size: clamp(14px, 1.9vw, 18px);
	}

	.products-hero__categories img {
		width: clamp(42px, 5vw, 58px);
		height: clamp(42px, 5vw, 58px);
	}

	.products-toolbar {
		width: 100%;
		margin-left: 0;
	}

	.products-show-tools {
		margin-left: clamp(36px, 6vw, 64px);
	}

	.view-icons {
		gap: clamp(20px, 3vw, 32px);
		margin-left: clamp(28px, 4vw, 44px);
	}

	.products-toolbar-line {
		margin-left: clamp(28px, 4vw, 48px);
		margin-right: 0;
	}

	.article-hero--connecting-vektor-to-d-fit,
	.article-hero--how-to-create-competitions-with-d-fit,
	.article-hero--connecting-vektor-to-kinomap,
	.article-hero--connecting-vektor-to-zwift,
	.article-hero--connecting-vektor-to-exr {
		width: 100%;
		max-width: 100%;
		min-height: 0;
		aspect-ratio: 840 / 800;
	}

	.article-hero--connecting-vektor-to-d-fit .page-hero__picture,
	.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture,
	.article-hero--connecting-vektor-to-kinomap .page-hero__picture,
	.article-hero--connecting-vektor-to-zwift .page-hero__picture,
	.article-hero--connecting-vektor-to-exr .page-hero__picture {
		display: block;
		width: 100%;
		max-width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.article-hero--connecting-vektor-to-d-fit .page-hero__picture img,
	.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture img,
	.article-hero--connecting-vektor-to-kinomap .page-hero__picture img,
	.article-hero--connecting-vektor-to-zwift .page-hero__picture img,
	.article-hero--connecting-vektor-to-exr .page-hero__picture img {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 0;
		object-fit: cover;
	}
}

@media (max-width: 1180px) and (min-width: 721px) {
	body.vektor-route-faq .center-hero {
		height: min(95.238vw, 800px);
		aspect-ratio: auto;
	}
}

@media (max-width: 720px) {
	.article-hero--connecting-vektor-to-d-fit,
	.article-hero--how-to-create-competitions-with-d-fit,
	.article-hero--connecting-vektor-to-kinomap,
	.article-hero--connecting-vektor-to-zwift,
	.article-hero--connecting-vektor-to-exr {
		width: 100%;
		max-width: 100%;
		min-height: 0;
		aspect-ratio: 360 / 800;
	}

	.article-hero--connecting-vektor-to-d-fit .page-hero__picture,
	.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture,
	.article-hero--connecting-vektor-to-kinomap .page-hero__picture,
	.article-hero--connecting-vektor-to-zwift .page-hero__picture,
	.article-hero--connecting-vektor-to-exr .page-hero__picture,
	.article-hero--connecting-vektor-to-d-fit .page-hero__picture img,
	.article-hero--how-to-create-competitions-with-d-fit .page-hero__picture img,
	.article-hero--connecting-vektor-to-kinomap .page-hero__picture img,
	.article-hero--connecting-vektor-to-zwift .page-hero__picture img,
	.article-hero--connecting-vektor-to-exr .page-hero__picture img {
		display: block;
		width: 100%;
		max-width: 100%;
		height: 100%;
		min-height: 0;
		object-fit: cover;
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction,
	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction,
	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction {
		width: calc(100% - 48px);
		--article-copy-col: minmax(0, 1fr);
		min-height: 0;
		padding: 34px 0;
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-body,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-copy,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-body,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-body,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction-body,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction-body,
	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction-copy,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction-copy,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction-copy {
		width: 100%;
		max-width: none;
		order: 1 !important;
		margin-left: 0;
		justify-self: stretch;
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-d-fit .article-layout__block--reverse .article-layout__instruction-media,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__block--reverse .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-kinomap .article-layout__block--reverse .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-zwift .article-layout__block--reverse .article-layout__instruction-media,
	.article-layout--connecting-vektor-to-exr .article-layout__block--reverse .article-layout__instruction-media {
		width: 100%;
		max-width: 100%;
		order: 2 !important;
		justify-content: center !important;
		justify-items: center !important;
		grid-template-columns: minmax(0, 1fr);
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-media--row,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-media--row,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-media--row,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction-media--row,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction-media--row {
		display: grid;
		flex-wrap: initial;
		justify-content: center;
		justify-items: center;
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.article-layout--connecting-vektor-to-d-fit .article-layout__instruction-shot,
	.article-layout--how-to-create-competitions-with-d-fit .article-layout__instruction-shot,
	.article-layout--connecting-vektor-to-kinomap .article-layout__instruction-shot,
	.article-layout--connecting-vektor-to-zwift .article-layout__instruction-shot,
	.article-layout--connecting-vektor-to-exr .article-layout__instruction-shot {
		max-width: 100%;
		justify-self: center;
	}

	body.vektor-route-faq .center-hero {
		aspect-ratio: 360 / 800;
	}
}

/* Contact page parity against the supplied 1920px mockup. */
body.vektor-route-contact .center-hero::after {
	display: none;
}

body.vektor-route-contact .contact-form .btn {
	background: var(--gold-2);
	border-color: var(--gold-2);
}

@media (min-width: 1181px) {
	body.vektor-route-contact .center-hero {
		height: calc(41.667vw + min(30px, 1.5625vw));
		max-height: 830px;
		min-height: 0;
		aspect-ratio: auto;
	}

	body.vektor-route-contact .center-hero h1 {
		font-size: clamp(32px, 2.8125vw, 54px);
		transform: translateY(max(-15px, -0.78125vw));
	}

	body.vektor-route-contact .contact-layout {
		width: min(calc(100% - 96px), 72.083vw, 1384px);
		grid-template-columns: minmax(0, min(35vw, 672px)) minmax(0, min(31.406vw, 603px));
		gap: min(5.677vw, 109px);
		padding-top: min(6.771vw, 130px);
		padding-bottom: min(6.667vw, 128px);
	}

	body.vektor-route-contact .contact-info h2,
	body.vektor-route-contact .contact-form h2 {
		gap: min(1.25vw, 24px);
		margin-bottom: min(0.521vw, 10px);
		font-size: clamp(20px, 1.354vw, 26px);
	}

	body.vektor-route-contact .contact-info h2::after,
	body.vektor-route-contact .contact-form h2::after {
		height: 2px;
	}

	body.vektor-route-contact .contact-form__grid {
		grid-template-columns: repeat(2, minmax(0, min(16.51vw, 317px)));
		gap: min(1.719vw, 33px) min(1.979vw, 38px);
	}

	body.vektor-route-contact .contact-form label {
		gap: min(0.521vw, 10px);
		font-size: clamp(12px, 0.729vw, 14px);
	}

	body.vektor-route-contact .contact-form input {
		height: clamp(34px, 2.292vw, 44px);
	}

	body.vektor-route-contact .contact-form textarea {
		min-height: clamp(220px, 15.625vw, 300px);
	}

	body.vektor-route-contact .contact-form>label {
		margin-top: min(1.25vw, 24px);
	}

	body.vektor-route-contact .contact-form .btn {
		min-width: clamp(180px, 13.438vw, 258px);
		min-height: clamp(54px, 3.958vw, 76px);
		margin-top: min(1.146vw, 22px);
		font-size: clamp(14px, 0.885vw, 17px);
	}

	body.vektor-route-contact .contact-email-row {
		gap: min(1.979vw, 38px);
		margin-top: min(2.656vw, 51px);
		margin-left: min(2.552vw, 49px);
	}

	body.vektor-route-contact .contact-email-row img {
		width: clamp(46px, 3.385vw, 65px);
		height: clamp(46px, 3.385vw, 65px);
	}

	body.vektor-route-contact .contact-info a {
		font-size: clamp(22px, 1.5625vw, 30px);
	}
}

@media (max-width: 1180px) and (min-width: 721px) {
	body.vektor-route-contact .center-hero {
		height: min(95.238vw, 800px);
		aspect-ratio: auto;
	}
}

@media (max-width: 720px) {
	body.vektor-route-contact .center-hero {
		aspect-ratio: 360 / 800;
	}
}

@media (max-width: 1180px) {
	.apps-hero {
		height: min(72vw, 720px);
		min-height: 360px;
	}

	.apps-intro {
		grid-template-columns: 1fr;
		height: auto;
	}

	.apps-intro__copy {
		width: min(100% - 48px, 560px);
		padding: 72px 0;
		transform: none;
	}

	.apps-intro__media {
		height: min(83.425vw, 755px);
	}

	.apps-feature {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 720px;
		padding: 56px 24px 64px;
		gap: 34px;
	}

	.apps-feature__media,
	.apps-feature--reverse .apps-feature__media,
	.apps-feature__copy,
	.apps-feature--reverse .apps-feature__copy {
		grid-column: 1;
		grid-row: auto;
	}

	.apps-feature__media {
		min-height: min(50vw, 480px);
		background-size: contain;
	}

	.apps-feature__copy {
		width: min(100%, 620px);
		margin: 0 auto;
		transform: none;
	}

	.apps-support {
		height: 620px;
		background-image: var(--apps-support-bg-tablet, var(--apps-support-bg));
	}

	.apps-support__copy {
		top: auto;
		bottom: 72px;
		left: 24px;
		width: min(100% - 48px, 560px);
	}
}

@media (max-width: 720px) {
	.apps-hero {
		height: 520px;
	}

	.apps-hero__image img {
		object-position: center top;
	}

	.apps-hero h1 {
		font-size: 32px;
	}

	.apps-intro h2 {
		font-size: 24px;
	}

	.apps-intro p {
		font-size: 16px;
	}

	.apps-intro__media {
		background-position: 72% center;
	}

	.apps-intro__qrs {
		gap: 22px;
	}

	.apps-intro__qr {
		width: min(42vw, 156px);
		height: min(42vw, 156px);
	}

	.apps-feature {
		min-height: 620px;
	}

	.apps-feature h2,
	.apps-support h2 {
		font-size: 18px;
	}

	.apps-support {
		height: auto;
		padding: clamp(300px, 88vw, 350px) 24px 56px;
		background-image: none;
		background-color: #131b5d;
	}

	.apps-support::before {
		content: "";
		position: absolute;
		z-index: 0;
		top: 0;
		right: 0;
		left: 0;
		height: clamp(300px, 88vw, 350px);
		background-image: var(--apps-support-bg-mobile, var(--apps-support-bg-tablet, var(--apps-support-bg)));
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100% auto;
		pointer-events: none;
	}

	.apps-support__copy {
		position: relative;
		top: auto;
		left: auto;
		bottom: auto;
		width: min(100%, 360px);
	}

	.btn--apps {
		min-width: 190px;
		min-height: 58px;
		padding: 0 30px;
		font-size: 16px;
	}
}
