:root {
	--bg: #0b1014;
	--surface: #11191f;
	--surface-2: #172128;
	--line: #26333b;
	--text: #f4f7f8;
	--muted: #9aabb4;
	--amber: #f0a33a;
	--amber-2: #ffc66d;
	--cyan: #59c7bd;
	--radius: 18px;
	--shell: min(1180px, calc(100% - 36px));
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	color-scheme: dark;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-size: 16px;
	line-height: 1.65;
}
body:before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(
			circle at 82% 8%,
			rgba(89, 199, 189, 0.08),
			transparent 30%
		),
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
	background-size:
		auto,
		48px 48px,
		48px 48px;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
}
.shell {
	width: var(--shell);
	margin-inline: auto;
}
.sr-only,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	background: var(--amber);
	color: #111;
	padding: 8px 14px;
	border-radius: 8px;
}
.icon {
	width: 20px;
	height: 20px;
	flex: none;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(11, 16, 20, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}
.header-inner {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand img {
	width: 190px;
}
.desktop-nav {
	display: flex;
	gap: 8px;
}
.desktop-nav a,
.mobile-nav a {
	padding: 9px 14px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
	color: var(--text);
	background: var(--surface-2);
	border-radius: 9px;
}
.menu-button {
	display: none;
	color: var(--text);
	background: none;
	border: 0;
	padding: 10px;
}
.mobile-nav {
	padding: 8px 18px 18px;
	border-top: 1px solid var(--line);
}
.mobile-nav a {
	display: block;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-block: 24px;
	color: var(--muted);
	font-size: 0.8rem;
	white-space: nowrap;
	overflow: hidden;
}
.breadcrumbs a:hover {
	color: var(--amber);
}
.breadcrumbs .icon {
	width: 14px;
}
.breadcrumbs span {
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
	gap: 52px;
	align-items: center;
	padding-block: 28px 64px;
}
.eyebrow {
	margin: 0 0 10px;
	color: var(--amber);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.product-copy h1,
.home-hero h1 {
	margin: 0;
	max-width: 800px;
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
}
.lead {
	max-width: 720px;
	color: #b6c2c8;
	font-size: clamp(1rem, 2vw, 1.17rem);
}
.meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 18px;
	margin: 22px 0;
	color: var(--muted);
	font-size: 0.82rem;
}
.meta-row span {
	display: flex;
	align-items: center;
	gap: 7px;
}
.meta-row .icon {
	color: var(--cyan);
}
.tag {
	border: 1px solid var(--line);
	border-radius: 99px;
	padding: 2px 10px;
}
.download-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}
.button {
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-weight: 800;
	cursor: pointer;
}
.button span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.25;
}
.button small {
	font-size: 0.7rem;
	font-weight: 600;
	opacity: 0.7;
}
.button-primary {
	background: var(--amber);
	color: #15100a;
	box-shadow: 0 10px 32px rgba(240, 163, 58, 0.18);
}
.button-primary:hover {
	background: var(--amber-2);
	transform: translateY(-1px);
}
.button-secondary,
.button-quiet {
	background: var(--surface-2);
	border-color: var(--line);
	color: var(--text);
}
.button-secondary:hover,
.button-quiet:hover {
	border-color: var(--cyan);
}
.cover {
	position: relative;
	padding: 0;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: zoom-in;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
	transform: rotate(1.5deg);
}
.cover:before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	border-radius: inherit;
}
.cover img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.cover span {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	padding: 6px 10px;
	background: rgba(11, 16, 20, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: white;
	font-size: 0.72rem;
}
.gallery-section,
.related-section {
	padding-block: 56px;
	border-top: 1px solid var(--line);
}
.section-heading {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	margin-bottom: 24px;
}
.section-heading .eyebrow {
	grid-column: 1;
}
.section-heading h2 {
	grid-column: 1;
	margin: 0;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	line-height: 1;
}
.section-heading > a {
	grid-column: 2;
	grid-row: 1/3;
	color: var(--cyan);
	font-weight: 700;
}
.gallery-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(320px, 78vw);
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
}
.gallery-strip button {
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--surface);
	cursor: zoom-in;
	scroll-snap-align: start;
}
.gallery-strip img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	transition: 0.25s;
}
.gallery-strip button:hover img {
	transform: scale(1.025);
}
.reading-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
	padding-block: 64px;
}
.article-card,
.side-card {
	background: linear-gradient(
		145deg,
		rgba(23, 33, 40, 0.88),
		rgba(17, 25, 31, 0.84)
	);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.article-card {
	padding: clamp(24px, 5vw, 56px);
}
.side-card {
	position: sticky;
	top: 100px;
	padding: 24px;
}
.side-card h2 {
	margin: 0;
	font-size: 1.3rem;
}
.side-card > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 0.9rem;
}
.side-card .button {
	width: 100%;
	margin-top: 10px;
}
.side-divider {
	height: 1px;
	margin: 24px 0;
	background: var(--line);
}
.side-note {
	margin: 0;
}
.prose {
	color: #c1ccd1;
}
.prose > *:first-child {
	margin-top: 0;
}
.prose > *:last-child {
	margin-bottom: 0;
}
.prose h2,
.prose h3,
.prose h4 {
	margin: 2em 0 0.65em;
	color: var(--text);
	line-height: 1.2;
	letter-spacing: -0.025em;
}
.prose h2 {
	font-size: 2rem;
}
.prose h3,
.prose .h4 {
	font-size: 1.5rem;
}
.prose p {
	margin: 0 0 1.2em;
}
.prose ul,
.prose ol {
	padding-left: 1.25rem;
}
.prose li + li {
	margin-top: 0.5em;
}
.prose b,
.prose strong {
	color: var(--text);
}
.nk-gap,
.nk-gap-1,
.nk-gap-2 {
	height: 12px;
}
.nk-post-img {
	margin: 24px 0;
}
.nk-post-img img {
	border-radius: 12px;
}
.nk-post-categories {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}
.nk-post-categories span {
	padding: 4px 8px;
	background: var(--surface-2);
	border-radius: 5px;
	font-size: 0.75rem;
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.build-card {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
	transition: 0.2s;
}
.build-card:hover {
	border-color: #465962;
	transform: translateY(-3px);
}
.build-card > img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	background: #0f171c;
}
.build-card > span {
	display: block;
	padding: 16px;
}
.build-card strong {
	display: block;
	min-height: 3em;
	line-height: 1.35;
}
.build-card small {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-top: 9px;
	color: var(--cyan);
}
.build-card small .icon {
	width: 14px;
}
.related-section {
	padding-bottom: 80px;
}
.site-footer {
	padding: 46px 0;
	background: #080c0f;
	border-top: 1px solid var(--line);
	color: var(--muted);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: start;
}
.footer-grid p {
	margin: 0.7rem 0 0;
}
.footer-links {
	display: flex;
	gap: 20px;
}
.footer-links a:hover {
	color: var(--amber);
}
.copyright {
	grid-column: 1/-1;
	padding-top: 22px;
	border-top: 1px solid #1d272d;
	font-size: 0.78rem;
}
.lightbox {
	max-width: min(1200px, 94vw);
	max-height: 92vh;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: #050708;
	box-shadow: 0 30px 100px #000;
}
.lightbox::backdrop {
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(4px);
}
.lightbox img {
	max-height: 88vh;
}
.lightbox button {
	position: fixed;
	top: 18px;
	right: 18px;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid #465159;
	border-radius: 50%;
	background: #12191e;
	color: white;
	cursor: pointer;
}
.home-hero {
	position: relative;
	min-height: 680px;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}
.home-hero:after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(
			90deg,
			#0b1014 3%,
			rgba(11, 16, 20, 0.94) 38%,
			rgba(11, 16, 20, 0.25) 72%
		),
		url("/assets/images/hero-tactical.webp") center/cover no-repeat;
}
.home-hero-content {
	padding-block: 90px;
}
.home-hero h1 {
	max-width: 720px;
}
.home-hero .lead {
	max-width: 570px;
}
.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}
.stat-row {
	display: flex;
	gap: 32px;
	margin-top: 48px;
}
.stat-row strong {
	display: block;
	font-size: 1.5rem;
	color: var(--text);
}
.stat-row span {
	color: var(--muted);
	font-size: 0.78rem;
}
.home-section {
	padding-block: 82px;
}
.home-section + .home-section {
	border-top: 1px solid var(--line);
}
.language-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}
.language-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-weight: 700;
}
.language-card:hover {
	border-color: var(--cyan);
}
.language-card img {
	width: 24px;
	height: 18px;
	object-fit: cover;
	border-radius: 2px;
}
.catalog-intro {
	padding: 72px 0 40px;
}
.catalog-intro h1 {
	margin: 0;
	font-size: clamp(2rem, 7vw, 2.5rem);
	line-height: 1;
}
.catalog-tools {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin: 25px 0;
}
.search-input {
	width: min(420px, 100%);
	padding: 14px 16px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--text);
	font: inherit;
}
.search-input:focus {
	outline: 2px solid var(--cyan);
	outline-offset: 2px;
}
.empty-state {
	display: none;
	padding: 40px;
	color: var(--muted);
	text-align: center;
}
@media (max-width: 900px) {
	.desktop-nav {
		display: none;
	}
	.menu-button {
		display: grid;
	}
	.product-hero {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.cover {
		order: -1;
		transform: none;
	}
	.reading-layout {
		grid-template-columns: 1fr;
	}
	.side-card {
		position: static;
	}
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.language-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 580px) {
	:root {
		--shell: min(100% - 24px, 1180px);
	}
	.header-inner {
		height: 66px;
	}
	.brand img {
		width: 166px;
	}
	.product-hero {
		padding-bottom: 44px;
	}
	.product-copy h1,
	.home-hero h1 {
		font-size: 2rem;
	}
	.download-grid,
	.download-grid .button,
	.hero-actions,
	.hero-actions .button {
		width: 100%;
	}
	.card-grid {
		grid-template-columns: 1fr;
	}
	.language-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.footer-links {
		flex-wrap: wrap;
	}
	.home-hero {
		min-height: 620px;
	}
	.stat-row {
		gap: 18px;
	}
	.gallery-section,
	.related-section,
	.home-section {
		padding-block: 50px;
	}
	.article-card {
		border-radius: 12px;
	}
	.catalog-tools {
		align-items: stretch;
		flex-direction: column;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*:before,
	*:after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
.flush-layout {
	padding: 0;
}

/* Classic homepage and site controls */
html {
	scrollbar-width: thin;
	scrollbar-color: var(--amber) #10171c;
}
::-webkit-scrollbar {
	width: 11px;
	height: 11px;
}
::-webkit-scrollbar-track {
	background: #10171c;
}
::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--amber), #b96f20);
	border: 3px solid #10171c;
	border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--amber-2);
}
.desktop-nav {
	align-items: center;
}
.language-toggle,
.mobile-nav button {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--muted);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
}
.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
	background: var(--surface-2);
	color: var(--text);
}
.language-toggle .icon,
.mobile-nav button .icon {
	width: 15px;
	transition: transform 0.2s;
}
.language-toggle[aria-expanded="true"] .icon,
.mobile-nav button[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}
.language-panel {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: min(720px, calc(100vh - 76px));
	overflow: auto;
	background: rgba(11, 16, 20, 0.985);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid #34434c;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}
.language-panel[hidden] {
	display: none;
}
.language-panel-inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 36px;
	padding-block: 28px 34px;
}
.language-panel-heading span {
	display: block;
	color: var(--text);
	font-size: 1.1rem;
	font-weight: 800;
}
.language-panel-heading small {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	line-height: 1.45;
}
.language-panel-groups {
	display: grid;
	gap: 18px;
}
.language-panel-group h3 {
	margin: 0 0 8px;
	color: #8b9aa3;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.language-panel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 7px;
}
.language-panel-grid a {
	display: grid;
	grid-template-columns: 24px 1fr auto;
	align-items: center;
	gap: 9px;
	padding: 9px 10px;
	border: 1px solid transparent;
	border-radius: 9px;
	color: #c5d0d5;
	font-size: 0.84rem;
	font-weight: 700;
}
.language-panel-grid a:hover {
	background: var(--surface-2);
	border-color: var(--line);
	color: var(--text);
}
.language-panel-grid img {
	width: 24px;
	height: 18px;
	object-fit: cover;
	border-radius: 2px;
}
.language-panel-grid small {
	color: #64757e;
	font-size: 0.62rem;
	letter-spacing: 0.08em;
}
.mobile-nav button {
	width: 100%;
	justify-content: space-between;
	text-align: left;
}
.classic-masthead {
	position: relative;
	padding: 70px 0 58px;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}
.classic-masthead:after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		radial-gradient(
			circle at 84% 35%,
			rgba(89, 199, 189, 0.12),
			transparent 30%
		),
		linear-gradient(110deg, rgba(240, 163, 58, 0.06), transparent 45%);
}
.classic-masthead h1 {
	max-width: 970px;
	margin: 0;
	font-size: clamp(2.8rem, 6vw, 5.35rem);
	line-height: 0.98;
	letter-spacing: -0.055em;
}
.classic-masthead .lead {
	max-width: 800px;
	margin-top: 24px;
}
.classic-meta {
	margin-bottom: 0;
}
.home-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
	padding-block: 34px 76px;
}
.classic-article {
	overflow: hidden;
	background: linear-gradient(
		145deg,
		rgba(23, 33, 40, 0.9),
		rgba(14, 21, 26, 0.9)
	);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.classic-article > section {
	padding: clamp(28px, 5vw, 58px);
}
.classic-article > section + section {
	border-top: 1px solid var(--line);
}
.classic-article h2 {
	max-width: 720px;
	margin: 0.12em 0 0.8em;
	font-size: clamp(1.9rem, 4vw, 3.15rem);
	line-height: 1.04;
}
.classic-article p {
	max-width: 760px;
}
.classic-cover {
	position: relative;
	width: 100%;
	padding: 0;
	overflow: hidden;
	background: #070b0d;
	border: 0;
	border-bottom: 1px solid var(--line);
	cursor: zoom-in;
}
.classic-cover img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.classic-cover:after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7));
}
.classic-cover > span {
	position: absolute;
	left: 20px;
	bottom: 17px;
	z-index: 2;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(7, 11, 13, 0.82);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.feature-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	margin-top: 30px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 13px;
	overflow: hidden;
}
.feature-list > div {
	position: relative;
	padding: 25px;
	background: var(--surface);
}
.feature-list > div > span {
	color: var(--amber);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}
.feature-list h3 {
	margin: 8px 0 7px;
	font-size: 1.05rem;
}
.feature-list p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
}
.classic-gallery .gallery-strip {
	margin-top: 28px;
}
.classic-gallery .gallery-strip button:first-child {
	display: none;
}
.install-steps {
	display: grid;
	gap: 0;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}
.install-steps li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
}
.install-steps li > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid #664b27;
	border-radius: 50%;
	color: var(--amber);
	font-size: 0.8rem;
	font-weight: 900;
}
.install-steps strong {
	color: var(--text);
	font-size: 1.02rem;
}
.install-steps p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
}
.faq-list {
	border-top: 1px solid var(--line);
}
.faq-list details {
	border-bottom: 1px solid var(--line);
}
.faq-list summary {
	padding: 18px 34px 18px 0;
	color: var(--text);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}
.faq-list summary::-webkit-details-marker {
	display: none;
}
.faq-list summary:after {
	float: right;
	content: "+";
	color: var(--amber);
	font-size: 1.3rem;
}
.faq-list details[open] summary:after {
	content: "−";
}
.faq-list details p {
	padding: 0 0 18px;
	margin: 0;
	color: var(--muted);
}
.home-sidebar {
	position: sticky;
	top: 100px;
	display: grid;
	gap: 14px;
}
.info-card {
	padding: 23px;
	background: linear-gradient(145deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: 14px;
}
.info-card h2 {
	margin: 0 0 16px;
	font-size: 1.25rem;
	line-height: 1.2;
}
.download-card .button {
	width: 100%;
	margin-top: 9px;
}
.download-note,
.requirements-note {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 0.75rem;
	line-height: 1.45;
}
.spec-card dl {
	margin: 0;
}
.spec-card dl div {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding: 9px 0;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
}
.spec-card dt {
	color: var(--muted);
}
.spec-card dd {
	margin: 0;
	color: var(--text);
	font-weight: 800;
	text-align: right;
}
.requirements-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.requirements-card li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-top: 1px solid var(--line);
	font-size: 0.78rem;
}
.requirements-card li span {
	color: var(--muted);
}
.requirements-card li strong {
	max-width: 175px;
	color: var(--text);
	text-align: right;
}
.classic-article > .requirements-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
	gap: clamp(30px, 5vw, 56px);
	align-items: start;
	background: linear-gradient(
		135deg,
		rgba(240, 163, 58, 0.075),
		transparent 48%
	);
}
.requirements-intro h2 {
	margin-bottom: 18px;
}
.requirements-intro > p:last-child {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}
.requirements-details {
	padding: 20px 22px;
	background: rgba(8, 13, 16, 0.55);
	border: 1px solid var(--line);
	border-radius: 12px;
}
.requirements-section li {
	padding: 11px 0;
	font-size: 0.84rem;
}
.requirements-section li:first-child {
	border-top: 0;
}
.requirements-section .requirements-note {
	padding-top: 14px;
	border-top: 1px solid var(--line);
}
.social-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
}
.social-grid a,
.social-grid button {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 10px;
	background: #0d1418;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--muted);
	font: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	cursor: pointer;
}
.social-grid a:hover,
.social-grid button:hover {
	border-color: var(--cyan);
	color: var(--text);
}
.social-grid b {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--surface-2);
	color: var(--cyan);
	font-size: 0.65rem;
}
.social-grid button {
	grid-column: 1/-1;
	justify-content: center;
}
.social-grid button .icon {
	width: 16px;
}
.home-builds {
	border-top: 1px solid var(--line);
}
.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 13px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	background: var(--amber);
	border: 0;
	border-radius: 10px;
	color: #15100a;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
	transition: 0.2s;
}
.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.back-to-top:hover {
	background: var(--amber-2);
	transform: translateY(-2px);
}
.back-to-top .icon {
	width: 16px;
}
@media (max-width: 1000px) {
	.language-panel-inner {
		grid-template-columns: 1fr;
	}
	.language-panel-heading {
		display: none;
	}
	.language-panel-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.home-product-layout {
		grid-template-columns: 1fr;
	}
	.home-sidebar {
		position: static;
		grid-template-columns: 1fr 1fr;
	}
	.download-card,
	.share-card {
		grid-column: auto;
	}
}
@media (max-width: 900px) {
	.language-panel {
		max-height: calc(100vh - 66px);
	}
	.classic-masthead {
		padding: 54px 0 45px;
	}
	.classic-masthead h1 {
		font-size: clamp(2.5rem, 10vw, 4.5rem);
	}
}
@media (max-width: 650px) {
	.language-panel-grid {
		grid-template-columns: 1fr 1fr;
	}
	.language-panel-inner {
		padding-block: 14px 20px;
	}
	.home-product-layout {
		padding-top: 18px;
	}
	.home-sidebar {
		grid-template-columns: 1fr;
	}
	.feature-list {
		grid-template-columns: 1fr;
	}
	.classic-article > section {
		padding: 28px 22px;
	}
	.classic-article > .requirements-section {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.requirements-details {
		padding: 16px;
	}
	.classic-gallery .gallery-strip button:first-child {
		display: block;
	}
	.back-to-top {
		right: 14px;
		bottom: 14px;
	}
	.classic-meta {
		gap: 9px;
	}
	.classic-meta span {
		width: calc(50% - 5px);
	}
}

/* Independently scrollable desktop sidebar */
.home-sidebar {
	max-height: calc(100vh - 116px);
	padding-inline-end: 8px;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: #765426 transparent;
	scrollbar-gutter: stable;
}
.home-sidebar::-webkit-scrollbar {
	width: 7px;
}
.home-sidebar::-webkit-scrollbar-track {
	background: transparent;
}
.home-sidebar::-webkit-scrollbar-thumb {
	background: #765426;
	border: 2px solid transparent;
	background-clip: padding-box;
	border-radius: 99px;
}
.home-sidebar:hover::-webkit-scrollbar-thumb {
	background: var(--amber);
	background-clip: padding-box;
}

/* Navigable screenshot viewer */
.lightbox[open] {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: min(1200px, 94vw);
	overflow: visible;
}
.lightbox figure {
	grid-column: 2;
	margin: 0;
	min-width: 0;
}
.lightbox figure img {
	width: auto;
	max-width: 100%;
	max-height: 86vh;
	margin: auto;
	object-fit: contain;
}
.lightbox figcaption {
	position: fixed;
	left: 50%;
	bottom: 20px;
	z-index: 2;
	transform: translateX(-50%);
	padding: 5px 10px;
	border: 1px solid #3b4951;
	border-radius: 99px;
	background: rgba(11, 16, 20, 0.88);
	color: #c7d1d6;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.lightbox .lightbox-close {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 3;
}
.lightbox .lightbox-arrow {
	position: fixed;
	top: 50%;
	z-index: 3;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	background: rgba(17, 25, 31, 0.9);
	border-color: #52616a;
}
.lightbox .lightbox-arrow:hover {
	border-color: var(--amber);
	color: var(--amber);
}
.lightbox .lightbox-prev {
	left: 22px;
	right: auto;
}
.lightbox .lightbox-prev .icon {
	transform: rotate(180deg);
}
.lightbox .lightbox-next {
	right: 22px;
	left: auto;
}

/* Ready for Arabic, Hebrew and other right-to-left editions */
html[dir="rtl"] {
	font-family:
		"Segoe UI",
		Tahoma,
		"Noto Sans Arabic",
		"Noto Sans Hebrew",
		system-ui,
		sans-serif;
}
html[dir="rtl"] body {
	text-align: right;
}
html[dir="rtl"] .breadcrumbs .icon,
html[dir="rtl"] .build-card small .icon {
	transform: rotate(180deg);
}
html[dir="rtl"] .cover {
	transform: rotate(-1.5deg);
}
html[dir="rtl"] .cover span {
	right: auto;
	left: 12px;
}
html[dir="rtl"] .classic-cover > span {
	left: auto;
	right: 20px;
}
html[dir="rtl"] .prose ul,
html[dir="rtl"] .prose ol {
	padding-right: 1.25rem;
	padding-left: 0;
}
html[dir="rtl"] .faq-list summary {
	padding-right: 0;
	padding-left: 34px;
}
html[dir="rtl"] .faq-list summary:after {
	float: left;
}
html[dir="rtl"] .spec-card dd,
html[dir="rtl"] .requirements-card li strong {
	text-align: left;
}
html[dir="rtl"] .back-to-top {
	right: auto;
	left: 22px;
}
html[dir="rtl"] .lightbox .lightbox-close {
	right: auto;
	left: 18px;
}
html[dir="rtl"] .lightbox .lightbox-prev {
	right: 22px;
	left: auto;
}
html[dir="rtl"] .lightbox .lightbox-prev .icon {
	transform: none;
}
html[dir="rtl"] .lightbox .lightbox-next {
	right: auto;
	left: 22px;
}
html[dir="rtl"] .lightbox .lightbox-next .icon {
	transform: rotate(180deg);
}
@media (max-width: 1000px) {
	.home-sidebar {
		max-height: none;
		padding-inline-end: 0;
		overflow: visible;
		scrollbar-gutter: auto;
	}
}
@media (max-width: 650px) {
	.lightbox .lightbox-arrow {
		top: auto;
		bottom: 18px;
		transform: none;
	}
	.lightbox .lightbox-prev {
		left: 14px;
	}
	.lightbox .lightbox-next {
		right: 14px;
	}
	.lightbox figcaption {
		bottom: 27px;
	}
	html[dir="rtl"] .back-to-top {
		left: 14px;
	}
	html[dir="rtl"] .lightbox .lightbox-prev {
		right: 14px;
	}
	html[dir="rtl"] .lightbox .lightbox-next {
		left: 14px;
	}
}

/* Natural heading measure: use the available column before wrapping */
.classic-masthead h1 {
	max-width: none;
	font-size: 2.5rem;
	line-height: 1.06;
	letter-spacing: -0.035em;
	text-wrap: pretty;
}
.classic-article h2 {
	max-width: none;
	font-size: 1.7rem;
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: pretty;
}
.product-copy h1 {
	max-width: none;
	font-size: clamp(2rem, 4.5vw, 2.5rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	text-wrap: pretty;
}
.section-heading h2 {
	font-size: 1.7rem;
	line-height: 1.08;
	text-wrap: pretty;
}
@media (max-width: 650px) {
	.classic-masthead h1 {
		font-size: clamp(2.25rem, 11vw, 3rem);
	}
	.classic-article h2,
	.section-heading h2 {
		font-size: clamp(1.7rem, 8vw, 2rem);
	}
}

/* Branded 404 page */
.not-found-page {
	display: grid;
	align-items: center;
	min-height: calc(100vh - 76px);
	padding: 70px 0;
}
.not-found-layout {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 1fr);
	gap: clamp(42px, 8vw, 110px);
	align-items: center;
}
.not-found-code {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(244, 247, 248, 0.08);
	font-size: clamp(7rem, 17vw, 13rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.09em;
	user-select: none;
}
.not-found-code i {
	position: relative;
	width: clamp(105px, 14vw, 170px);
	aspect-ratio: 1;
	margin-inline: -0.08em;
	border: clamp(8px, 1vw, 13px) solid var(--amber);
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(240, 163, 58, 0.2),
		0 0 70px rgba(240, 163, 58, 0.12);
}
.not-found-code i:before,
.not-found-code i:after {
	position: absolute;
	content: "";
	background: var(--cyan);
}
.not-found-code i:before {
	top: 50%;
	left: -22%;
	width: 144%;
	height: 2px;
}
.not-found-code i:after {
	top: -22%;
	left: 50%;
	width: 2px;
	height: 144%;
}
.not-found-code b {
	position: absolute;
	inset: 36%;
	border: 2px solid var(--cyan);
	border-radius: 50%;
	box-shadow: 0 0 24px rgba(89, 199, 189, 0.45);
}
.not-found-copy {
	max-width: 570px;
}
.not-found-copy h1 {
	max-width: none;
	margin: 0.05em 0 0.45em;
	font-size: clamp(2.35rem, 5vw, 4.3rem);
	line-height: 1;
	letter-spacing: -0.045em;
}
.not-found-copy > p:not(.eyebrow) {
	margin: 0;
	color: #b6c2c8;
	font-size: 1.05rem;
}
.not-found-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}
.not-found-actions .button-primary .icon {
	transform: rotate(180deg);
}
.not-found-copy > small {
	display: block;
	margin-top: 32px;
	color: #63737c;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
html[dir="rtl"] .not-found-actions .button-primary .icon {
	transform: none;
}
@media (max-width: 800px) {
	.not-found-page {
		padding: 48px 0;
	}
	.not-found-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.not-found-code {
		justify-content: flex-start;
		font-size: clamp(6rem, 30vw, 10rem);
	}
	.not-found-code i {
		width: clamp(90px, 25vw, 140px);
	}
}
@media (max-width: 520px) {
	.not-found-page {
		min-height: calc(100vh - 66px);
	}
	.not-found-actions,
	.not-found-actions .button {
		width: 100%;
	}
	.not-found-copy h1 {
		font-size: 2.5rem;
	}
}
