/*!
 * ZYZX Nova — theme stylesheet
 * Every colour, radius, font and width below reads from a CSS custom property
 * that the Customizer writes, so the whole site repaints without touching CSS.
 */

/* ============================================================ 1. Base ==== */

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

/* Author display rules below would otherwise beat the UA [hidden] rule, which
   would leave the modal, quick-view and spinner layers invisible but covering
   the page. This keeps the hidden attribute authoritative. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
	background: var(--zx-bg);
	color: var(--zx-text);
	font-family: var(--zx-font-body);
	font-size: calc(16px * var(--zx-scale, 1));
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
	font-family: var(--zx-font-head);
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); }

p { margin: 0 0 1.1em; }

a { color: var(--zx-accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--zx-accent-2); }

code, kbd, pre { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }

:focus-visible {
	outline: 2px solid var(--zx-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--zx-accent); color: var(--zx-on-accent, #04060d); }

.zx-wrap {
	width: min(100% - 40px, var(--zx-container));
	margin-inline: auto;
}
.zx-wrap--narrow { width: min(100% - 40px, 780px); }
.zx-center { text-align: center; }
.zx-dot { opacity: .4; }
.zx-flip { transform: rotate(180deg); }

.zx-section { padding: clamp(56px, 7vw, 104px) 0; position: relative; }

.zx-icon { flex: none; vertical-align: middle; }

/* ======================================================= 2. Ambience ==== */

.zx-mesh {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: .55;
}
.zx-mesh span {
	position: absolute;
	width: 46vw;
	height: 46vw;
	border-radius: 50%;
	filter: blur(90px);
	will-change: transform;
}
.zx-mesh span:nth-child(1) { background: rgba(var(--zx-accent-rgb), .22); top: -14vw; left: -10vw; animation: zx-drift1 26s ease-in-out infinite; }
.zx-mesh span:nth-child(2) { background: rgba(var(--zx-accent-2-rgb), .20); top: 26vw; right: -14vw; animation: zx-drift2 32s ease-in-out infinite; }
.zx-mesh span:nth-child(3) { background: rgba(var(--zx-accent-3-rgb), .14); bottom: -18vw; left: 22vw; animation: zx-drift3 38s ease-in-out infinite; }

[data-theme="light"] .zx-mesh { opacity: .38; }

@keyframes zx-drift1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(6vw,4vw,0) scale(1.12); } }
@keyframes zx-drift2 { 0%,100% { transform: translate3d(0,0,0) scale(1.05); } 50% { transform: translate3d(-7vw,-3vw,0) scale(.92); } }
@keyframes zx-drift3 { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(4vw,-6vw,0); } }

.zx-grain {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: .035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

.zx-cursor {
	position: fixed;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 2;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(var(--zx-accent-rgb), .10), transparent 62%);
	opacity: 0;
	transition: opacity .4s ease;
}
.zx-cursor.is-on { opacity: 1; }

.zx-page { position: relative; z-index: 3; }

.zx-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--zx-bg);
	display: grid;
	place-content: center;
	gap: 18px;
	justify-items: center;
	transition: opacity .5s ease, visibility .5s;
}
.zx-preloader.is-done { opacity: 0; visibility: hidden; }
.zx-preloader__mark { color: var(--zx-accent); animation: zx-pulse 1.3s ease-in-out infinite; }
.zx-preloader__bar { width: 170px; height: 3px; background: var(--zx-border); border-radius: 3px; overflow: hidden; }
.zx-preloader__bar i { display: block; height: 100%; width: 40%; background: var(--zx-accent); animation: zx-slide 1.1s ease-in-out infinite; }
@keyframes zx-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.18); opacity: .6; } }
@keyframes zx-slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

.zx-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 3px;
	z-index: 999;
	pointer-events: none;
}
.zx-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--zx-accent), var(--zx-accent-2), var(--zx-accent-3));
	transition: width .1s linear;
}

/* ========================================================= 3. Header ==== */

.zx-header {
	position: relative;
	z-index: 500;
	padding: 16px 0;
	transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.zx-sticky .zx-header { position: sticky; top: 0; }
.zx-header.is-stuck {
	padding: 10px 0;
	background: rgba(var(--zx-bg-rgb), .78);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 var(--zx-border), 0 18px 40px -30px rgba(0,0,0,.9);
}
.zx-header-solid .zx-header.is-stuck { background: var(--zx-bg); backdrop-filter: none; }

.zx-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
}
.zx-header__brand { flex: none; }
.zx-nav { margin-inline: auto; }
.zx-header__tools { display: flex; align-items: center; gap: 8px; flex: none; }

.zx-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--zx-font-head);
	font-weight: 700;
	font-size: 1.22rem;
	letter-spacing: -.03em;
	color: var(--zx-text);
}
.zx-wordmark:hover { color: var(--zx-text); }
.zx-wordmark__mark {
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	border-radius: 10px;
	color: var(--zx-on-accent, #04060d);
	background: linear-gradient(135deg, var(--zx-accent), var(--zx-accent-2));
	box-shadow: 0 6px 20px -6px rgba(var(--zx-accent-rgb), .8);
}
/* The wordmark runs a slow colour sweep across the full name. */
.zx-wordmark__accent,
.zx-wordmark__rest {
	background: linear-gradient(
		100deg,
		var(--zx-accent) 0%,
		var(--zx-accent-2) 25%,
		var(--zx-accent-3) 50%,
		var(--zx-accent-2) 75%,
		var(--zx-accent) 100%
	);
	background-size: 260% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: zx-sweep 7s linear infinite;
}
.zx-wordmark__rest { font-weight: 500; margin-left: 2px; animation-delay: -1.4s; }
.zx-wordmark__mark { animation: zx-markglow 7s ease-in-out infinite; }

@keyframes zx-sweep {
	0%   { background-position: 130% 50%; }
	100% { background-position: -130% 50%; }
}
@keyframes zx-markglow {
	0%, 100% { box-shadow: 0 6px 20px -6px rgba(var(--zx-accent-rgb), .8); }
	50%      { box-shadow: 0 6px 24px -5px rgba(var(--zx-accent-3-rgb), .85); }
}

/* Nothing sweeps for visitors who asked for less motion. */
@media (prefers-reduced-motion: reduce) {
	.zx-wordmark__accent,
	.zx-wordmark__rest,
	.zx-wordmark__mark { animation: none; }
	.zx-wordmark__rest { color: var(--zx-text); -webkit-text-fill-color: currentColor; }
}
.custom-logo { max-height: 48px; width: auto; }

.zx-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.zx-menu__item { position: relative; }
.zx-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 9px 13px;
	border-radius: var(--zx-radius-sm);
	color: var(--zx-text);
	font-size: .94rem;
	font-weight: 500;
	opacity: .82;
	transition: opacity .18s, background .18s;
}
.zx-menu__link:hover { opacity: 1; background: rgba(var(--zx-text-rgb), .06); color: var(--zx-text); }
.current-menu-item > .zx-menu__link { opacity: 1; color: var(--zx-accent); }
.zx-menu__toggle { display: none; }

.zx-submenu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: 8px;
	background: var(--zx-surface);
	border: 1px solid var(--zx-border);
	border-radius: var(--zx-radius);
	box-shadow: var(--zx-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	z-index: 40;
}
.zx-menu__item:hover > .zx-submenu,
.zx-menu__item:focus-within > .zx-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.zx-submenu .zx-menu__link { width: 100%; }
.zx-submenu .zx-submenu { top: -8px; left: calc(100% + 6px); }

.zx-iconbtn {
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border-radius: var(--zx-radius-sm);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .5);
	color: var(--zx-text);
	cursor: pointer;
	transition: background .18s, border-color .18s, transform .18s;
}
.zx-iconbtn:hover { background: rgba(var(--zx-text-rgb), .08); border-color: var(--zx-accent); transform: translateY(-1px); }
.zx-iconbtn--accent { background: var(--zx-accent); border-color: transparent; color: var(--zx-on-accent, #04060d); }

.zx-mode { position: relative; overflow: hidden; }
.zx-mode__sun, .zx-mode__moon { position: absolute; display: grid; place-items: center; inset: 0; transition: transform .35s cubic-bezier(.6,-.3,.3,1.4), opacity .3s; }
[data-theme="dark"] .zx-mode__sun { transform: translateY(120%); opacity: 0; }
[data-theme="light"] .zx-mode__moon { transform: translateY(-120%); opacity: 0; }

.zx-burger { display: none; flex-direction: column; gap: 4px; }
.zx-burger span { width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s, opacity .25s; }
.zx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.zx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.zx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Slide-down search panel */
.zx-searchpanel {
	position: absolute;
	top: 100%; left: 0; right: 0;
	background: rgba(var(--zx-bg-rgb), .96);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--zx-border);
	padding: 26px 0 30px;
	transform: translateY(-14px);
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
}
.zx-searchpanel.is-open { opacity: 1; transform: translateY(0); }
.zx-searchpanel__form { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--zx-border); padding-bottom: 12px; color: var(--zx-muted); }
.zx-searchpanel__form input {
	flex: 1;
	background: none;
	border: 0;
	color: var(--zx-text);
	font-size: 1.35rem;
	font-family: var(--zx-font-head);
	padding: 6px 0;
}
.zx-searchpanel__form input:focus { outline: none; }
.zx-searchpanel__quick { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 16px; color: var(--zx-muted); font-size: .88rem; }
.zx-searchpanel__results { margin-top: 14px; display: grid; gap: 6px; }
.zx-liveitem {
	display: flex; align-items: center; gap: 12px;
	padding: 10px 12px;
	border-radius: var(--zx-radius-sm);
	color: var(--zx-text);
	transition: background .16s;
}
.zx-liveitem:hover { background: rgba(var(--zx-text-rgb), .06); color: var(--zx-text); }
.zx-liveitem strong { font-weight: 600; }
.zx-liveitem span { color: var(--zx-muted); font-size: .86rem; margin-left: auto; }

/* Drawer */
.zx-drawer { position: fixed; inset: 0; z-index: 900; }
.zx-drawer__scrim { position: absolute; inset: 0; background: rgba(2,4,10,.62); opacity: 0; transition: opacity .3s; }
.zx-drawer__panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(88vw, 380px);
	background: var(--zx-bg-alt);
	border-left: 1px solid var(--zx-border);
	padding: 22px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .34s cubic-bezier(.22,1,.36,1);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.zx-drawer.is-open .zx-drawer__scrim { opacity: 1; }
.zx-drawer.is-open .zx-drawer__panel { transform: translateX(0); }
.zx-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.zx-drawer__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--zx-border); display: grid; gap: 12px; }

.zx-menu--drawer { flex-direction: column; align-items: stretch; gap: 2px; }
.zx-menu--drawer .zx-menu__item { position: static; }
.zx-menu--drawer .zx-menu__link { font-size: 1.05rem; padding: 12px 10px; justify-content: space-between; }
.zx-menu--drawer .zx-menu__caret { display: none; }
.zx-menu--drawer .zx-menu__toggle {
	display: grid; place-items: center;
	position: absolute; right: 6px; top: 6px;
	width: 34px; height: 34px;
	border: 0; background: none; color: var(--zx-muted); cursor: pointer;
	transform: rotate(90deg);
	transition: transform .24s;
}
.zx-menu--drawer .zx-menu__item { position: relative; }
.zx-menu--drawer .zx-menu__toggle[aria-expanded="true"] { transform: rotate(270deg); }
.zx-menu--drawer .zx-submenu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	background: rgba(var(--zx-text-rgb), .04);
	border: 0;
	display: none;
	margin: 2px 0 6px;
}
.zx-menu--drawer .zx-submenu.is-open { display: block; }

/* =================================================== 4. Buttons/pills === */

.zx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--zx-font-head);
	font-size: .94rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .18s ease, box-shadow .22s ease, background .18s, color .18s, border-color .18s;
}
.zx-btn--sm { padding: 8px 15px; font-size: .86rem; }
.zx-btn--lg { padding: 14px 26px; font-size: 1rem; }
.zx-btn--block { width: 100%; }

.zx-btn--primary {
	background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2));
	color: var(--zx-on-accent, #04060d);
	box-shadow: 0 12px 30px -14px rgba(var(--zx-accent-rgb), .9);
}
.zx-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(var(--zx-accent-rgb), 1); color: var(--zx-on-accent, #04060d); }

.zx-btn--ghost {
	background: rgba(var(--zx-surface-rgb), .6);
	border-color: var(--zx-border);
	color: var(--zx-text);
}
.zx-btn--ghost:hover { border-color: var(--zx-accent); color: var(--zx-text); transform: translateY(-2px); }

.zx-btn[disabled], .zx-btn.is-busy { opacity: .6; pointer-events: none; }

.zx-textlink {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: .93rem;
}
.zx-textlink .zx-icon { transition: transform .2s; }
.zx-textlink:hover .zx-icon { transform: translateX(3px); }

.zx-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 15px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .5);
	color: var(--zx-muted);
	font-size: .88rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .18s;
}
.zx-pill em { font-style: normal; opacity: .55; font-size: .8em; }
.zx-pill:hover { color: var(--zx-text); border-color: var(--zx-accent); }
.zx-pill.is-active {
	background: rgba(var(--zx-accent-rgb), .14);
	border-color: var(--zx-accent);
	color: var(--zx-accent);
}
.zx-pill--sm { padding: 5px 11px; font-size: .8rem; }

.zx-chip {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(var(--zx-accent-rgb), .12);
	color: var(--zx-accent);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
}
.zx-chip--accent { background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2)); color: var(--zx-on-accent, #04060d); }

.zx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--zx-accent);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.zx-grad {
	background: linear-gradient(100deg, var(--zx-accent), var(--zx-accent-2) 55%, var(--zx-accent-3));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ============================================================ 5. Hero === */

.zx-hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.zx-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.zx-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.zx-orb--1 { width: 360px; height: 360px; background: rgba(var(--zx-accent-rgb), .20); top: -80px; right: 12%; }
.zx-orb--2 { width: 300px; height: 300px; background: rgba(var(--zx-accent-2-rgb), .18); bottom: -60px; left: 6%; }
.zx-orb--3 { width: 220px; height: 220px; background: rgba(var(--zx-accent-3-rgb), .14); top: 42%; right: 44%; }
.zx-gridlines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(var(--zx-text-rgb), .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--zx-text-rgb), .05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
}

.zx-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.zx-hero--center .zx-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.zx-hero--center .zx-hero__visual { display: none; }
.zx-hero--minimal .zx-hero__inner { grid-template-columns: 1fr; max-width: 780px; }

.zx-hero__title { margin-bottom: 18px; }
.zx-hero__text { font-size: 1.12rem; color: var(--zx-muted); max-width: 54ch; }
.zx-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.zx-hero__stats { display: flex; flex-wrap: wrap; gap: 34px; padding-top: 22px; border-top: 1px solid var(--zx-border); }
.zx-hero__stat strong { display: block; font-family: var(--zx-font-head); font-size: 1.7rem; }
.zx-hero__stat span { font-size: .84rem; color: var(--zx-muted); }

.zx-hero__visual { position: relative; }
.zx-hero__img { border-radius: var(--zx-radius-lg); border: 1px solid var(--zx-border); box-shadow: var(--zx-shadow); }

.zx-codepanel {
	position: relative;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: linear-gradient(170deg, rgba(var(--zx-surface-rgb), .95), rgba(var(--zx-surface-rgb), .72));
	box-shadow: var(--zx-shadow);
	overflow: hidden;
	backdrop-filter: blur(10px);
}
.zx-codepanel__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 13px 16px;
	border-bottom: 1px solid var(--zx-border);
	background: rgba(var(--zx-text-rgb), .03);
}
.zx-codepanel__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--zx-border); }
.zx-codepanel__bar span:nth-child(1) { background: var(--zx-accent-3); }
.zx-codepanel__bar span:nth-child(2) { background: var(--zx-warning); }
.zx-codepanel__bar span:nth-child(3) { background: var(--zx-success); }
.zx-codepanel__bar em { margin-left: 8px; font-style: normal; font-size: .78rem; color: var(--zx-muted); font-family: 'JetBrains Mono', monospace; }
.zx-codepanel__code { margin: 0; padding: 20px 22px 26px; font-size: .82rem; line-height: 1.75; overflow-x: auto; color: var(--zx-muted); }
.zx-codepanel__code .c1 { color: var(--zx-accent-3); }
.zx-codepanel__code .c2 { color: var(--zx-muted); opacity: .7; }
.zx-codepanel__code .c3 { color: var(--zx-accent-2); }
.zx-codepanel__code .c4 { color: var(--zx-success); }
.zx-codepanel__code .c5 { color: var(--zx-accent); }
.zx-codepanel__code .c6 { color: var(--zx-warning); }
.zx-codepanel__code .c7 { color: var(--zx-accent-3); }
.zx-codepanel__glow {
	position: absolute;
	inset: -40% -10% auto;
	height: 60%;
	background: radial-gradient(ellipse at 50% 0, rgba(var(--zx-accent-rgb), .22), transparent 70%);
	pointer-events: none;
}

.zx-floatcard {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 16px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .92);
	backdrop-filter: blur(12px);
	box-shadow: var(--zx-shadow);
	color: var(--zx-accent);
	animation: zx-float 6s ease-in-out infinite;
}
.zx-floatcard div { display: flex; flex-direction: column; }
.zx-floatcard strong { color: var(--zx-text); font-size: .88rem; }
.zx-floatcard span { color: var(--zx-muted); font-size: .76rem; }
.zx-floatcard--1 { bottom: -22px; left: -26px; }
.zx-floatcard--2 { top: -26px; right: -18px; animation-delay: -3s; color: var(--zx-accent-2); }
@keyframes zx-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===================================================== 6. Section head == */

.zx-sechead { max-width: 660px; margin: 0 auto clamp(30px, 4vw, 54px); text-align: center; }
.zx-sechead--left { margin-left: 0; text-align: left; }
.zx-sechead__title { margin-bottom: 12px; }
.zx-sechead__sub { color: var(--zx-muted); font-size: 1.04rem; margin: 0; }

/* ========================================================= 7. Grids ===== */

.zx-grid { display: grid; gap: 22px; }
.zx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.zx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.zx-grid--4 { grid-template-columns: repeat(4, 1fr); }

.zx-empty {
	grid-column: 1 / -1;
	padding: 40px;
	text-align: center;
	color: var(--zx-muted);
	border: 1px dashed var(--zx-border);
	border-radius: var(--zx-radius);
}
.zx-empty--big { display: grid; justify-items: center; gap: 12px; padding: 70px 30px; color: var(--zx-muted); }
.zx-empty--big h2 { color: var(--zx-text); margin: 6px 0 0; }

/* ======================================================= 8. Features ==== */

.zx-feature {
	padding: 26px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: linear-gradient(160deg, rgba(var(--zx-surface-rgb), .9), rgba(var(--zx-surface-rgb), .55));
	transition: border-color .24s, transform .24s, box-shadow .24s;
	position: relative;
	overflow: hidden;
}
.zx-feature::after {
	content: '';
	position: absolute;
	inset: -1px -1px auto;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--zx-accent), transparent);
	opacity: 0;
	transition: opacity .3s;
}
.zx-feature:hover { border-color: rgba(var(--zx-accent-rgb), .5); transform: translateY(-4px); box-shadow: var(--zx-shadow); }
.zx-feature:hover::after { opacity: 1; }
.zx-feature h3 { margin-bottom: 8px; }
.zx-feature p { color: var(--zx-muted); margin: 0; font-size: .95rem; }

.zx-feature__icon {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 14px;
	margin-bottom: 18px;
	color: var(--zx-accent);
	background: rgba(var(--zx-accent-rgb), .12);
	border: 1px solid rgba(var(--zx-accent-rgb), .22);
}

/* ==================================================== 9. Product cards == */

.zx-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .72);
	overflow: hidden;
	transition: transform .26s ease, border-color .26s, box-shadow .26s;
}
.zx-card:hover { transform: translateY(-5px); border-color: rgba(var(--zx-accent-rgb), .45); box-shadow: var(--zx-shadow); }

.zx-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(140deg, rgba(var(--zx-accent-rgb), .12), rgba(var(--zx-accent-2-rgb), .10));
	overflow: hidden;
}
.zx-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.zx-card:hover .zx-card__media img { transform: scale(1.05); }
.zx-card__glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--zx-accent); opacity: .75; }

.zx-badge {
	position: absolute;
	top: 12px; left: 12px;
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--zx-accent-3);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.zx-badge--inline { position: static; }

.zx-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.zx-card__cats { display: flex; flex-wrap: wrap; gap: 6px; }
.zx-card__title { margin: 0; font-size: 1.12rem; }
.zx-card__title a { color: var(--zx-text); }
.zx-card__title a:hover { color: var(--zx-accent); }
.zx-card__text { color: var(--zx-muted); font-size: .92rem; margin: 0; flex: 1; }
.zx-card__meta { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--zx-muted); }
.zx-card__ver { margin-left: auto; font-family: 'JetBrains Mono', monospace; }
.zx-card__foot {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding-top: 14px;
	border-top: 1px solid var(--zx-border);
}
.zx-card__actions { display: flex; gap: 6px; }
.zx-card__actions .zx-btn--ghost { padding: 8px 10px; }

.zx-card--list { flex-direction: row; }
.zx-card--list .zx-card__media { width: 240px; flex: none; aspect-ratio: auto; }
.zx-card--list .zx-card__body { flex: 1; }

.zx-price { display: flex; flex-direction: column; line-height: 1.25; }
.zx-price__now { font-family: var(--zx-font-head); font-size: 1.22rem; font-weight: 700; }
.zx-price__old { color: var(--zx-muted); font-size: .85rem; opacity: .65; }
.zx-price__note { font-size: .72rem; color: var(--zx-muted); }

.zx-stars { display: inline-flex; gap: 2px; color: var(--zx-border); }
.zx-star.is-on { color: var(--zx-warning); }
.zx-stars__count { font-size: .78rem; color: var(--zx-muted); margin-left: 4px; }

/* ===================================================== 10. Catalog UI === */

.zx-catalog { padding-bottom: 80px; }

.zx-filters {
	position: sticky;
	top: 76px;
	z-index: 200;
	margin-bottom: 20px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-bg-rgb), .9);
	backdrop-filter: blur(14px);
}
.zx-filters__top { display: flex; align-items: center; gap: 12px; padding: 12px 14px; flex-wrap: wrap; }
.zx-filters__search {
	display: flex; align-items: center; gap: 10px;
	flex: 1; min-width: 220px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
	color: var(--zx-muted);
}
.zx-filters__search input { flex: 1; border: 0; background: none; color: var(--zx-text); font-size: .95rem; }
.zx-filters__search input:focus { outline: none; }
.zx-filters__clear { border: 0; background: none; color: var(--zx-muted); cursor: pointer; display: none; }
.zx-filters__search.has-value .zx-filters__clear { display: block; }
.zx-filters__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.zx-filters__count {
	display: inline-grid; place-items: center;
	min-width: 20px; height: 20px; padding: 0 6px;
	border-radius: 999px;
	background: var(--zx-accent);
	color: var(--zx-on-accent, #04060d);
	font-size: .72rem; font-weight: 700;
}

.zx-select select {
	appearance: none;
	padding: 9px 34px 9px 14px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M12 16 5 9h14z'/%3E%3C/svg%3E") no-repeat right 13px center;
	color: var(--zx-text);
	font-size: .88rem;
	cursor: pointer;
}

.zx-layout-toggle { display: flex; border: 1px solid var(--zx-border); border-radius: 999px; overflow: hidden; }
.zx-layout-toggle button {
	display: grid; place-items: center;
	width: 36px; height: 36px;
	border: 0; background: none; color: var(--zx-muted); cursor: pointer;
	transition: background .18s, color .18s;
}
.zx-layout-toggle button.is-active { background: rgba(var(--zx-accent-rgb), .16); color: var(--zx-accent); }

.zx-filterpanel { border-top: 1px solid var(--zx-border); overflow: hidden; }
.zx-filterpanel__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 22px;
	padding: 20px 18px;
}
.zx-filtergroup h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--zx-muted); margin-bottom: 10px; }
.zx-checks { display: grid; gap: 7px; max-height: 190px; overflow-y: auto; }
.zx-check { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: .9rem; color: var(--zx-muted); }
.zx-check:hover { color: var(--zx-text); }
.zx-check input { accent-color: var(--zx-accent); width: 15px; height: 15px; }
.zx-check em { font-style: normal; opacity: .5; font-size: .78em; }
.zx-tagcloud { display: flex; flex-wrap: wrap; gap: 6px; }
.zx-filterpanel__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; padding-top: 6px; border-top: 1px solid var(--zx-border); }
.zx-filters__summary { font-size: .84rem; color: var(--zx-muted); }

.zx-catalog__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.zx-catalog__count { font-size: .88rem; color: var(--zx-muted); }
.zx-catalog__active { display: flex; flex-wrap: wrap; gap: 6px; }
.zx-catalog__results.is-loading { opacity: .45; transition: opacity .2s; }
.zx-catalog__results[data-layout="list"] { grid-template-columns: 1fr; }

.zx-catalog__foot { display: grid; justify-items: center; gap: 14px; margin-top: 34px; }

.zx-spinner { display: flex; gap: 6px; }
.zx-spinner span { width: 9px; height: 9px; border-radius: 50%; background: var(--zx-accent); animation: zx-bounce 1s ease-in-out infinite; }
.zx-spinner span:nth-child(2) { animation-delay: .15s; }
.zx-spinner span:nth-child(3) { animation-delay: .3s; }
@keyframes zx-bounce { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-8px); opacity: 1; } }

.zx-catbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 26px; }
.zx-catbar__search {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
	color: var(--zx-muted);
	min-width: 260px;
}
.zx-catbar__search input { border: 0; background: none; color: var(--zx-text); flex: 1; }
.zx-catbar__search input:focus { outline: none; }
.zx-catbar__filters { display: flex; flex-wrap: wrap; gap: 7px; margin-left: auto; }

.zx-suggest { margin: 18px 0; display: grid; gap: 10px; justify-items: center; }
.zx-suggest__label { display: flex; align-items: center; gap: 7px; color: var(--zx-accent); font-size: .85rem; margin: 0; }
.zx-suggest__items { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

/* ================================================== 11. Sliding panels == */

.zx-showcase__stack { display: grid; gap: 26px; }
.zx-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: clamp(26px, 4vw, 48px);
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: linear-gradient(140deg, rgba(var(--zx-surface-rgb), .9), rgba(var(--zx-surface-rgb), .45));
	overflow: hidden;
}
.zx-panel--rev .zx-panel__copy { order: 2; }
.zx-panel__icon {
	display: grid; place-items: center;
	width: 56px; height: 56px;
	border-radius: 16px;
	margin-bottom: 18px;
	color: var(--zx-on-accent, #04060d);
	background: linear-gradient(135deg, var(--zx-accent), var(--zx-accent-2));
}
.zx-panel__copy p { color: var(--zx-muted); }
.zx-panel__visual {
	display: grid;
	place-items: center;
	min-height: 220px;
	border-radius: var(--zx-radius);
	background: radial-gradient(circle at 50% 40%, rgba(var(--zx-accent-rgb), .16), transparent 68%);
	border: 1px solid var(--zx-border);
	overflow: hidden;
}
.zx-panel__visual img { width: 100%; height: 100%; object-fit: cover; }
.zx-panel__glyph { color: var(--zx-accent); opacity: .55; }

/* Scroll reveal: the "slide-in" behaviour */
.zx-reveal-on .zx-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
	transition-delay: var(--zx-d, 0ms);
}
.zx-reveal-on .zx-reveal.is-in { opacity: 1; transform: none; }
.zx-reveal-on .zx-panel--fwd.zx-reveal { transform: translateX(-40px); }
.zx-reveal-on .zx-panel--rev.zx-reveal { transform: translateX(40px); }
.zx-reveal-on .zx-panel.is-in { transform: none; }

/* ========================================================= 12. Stats ==== */

.zx-statsband {
	padding: clamp(40px, 5vw, 70px) 0;
	border-top: 1px solid var(--zx-border);
	border-bottom: 1px solid var(--zx-border);
	background: linear-gradient(180deg, rgba(var(--zx-accent-rgb), .05), transparent);
}
.zx-statsband__title { text-align: center; margin-bottom: 34px; }
.zx-statsband__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 26px; text-align: center; }
.zx-stat__num, .zx-stat__suffix {
	font-family: var(--zx-font-head);
	font-size: clamp(2rem, 1.2rem + 2.4vw, 3.1rem);
	font-weight: 700;
	background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.zx-stat__label { display: block; margin-top: 6px; color: var(--zx-muted); font-size: .9rem; }

/* ======================================================= 13. Pricing ==== */

.zx-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; align-items: start; }
.zx-tier {
	position: relative;
	padding: 30px 26px;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .72);
	transition: transform .26s, border-color .26s, box-shadow .26s;
}
.zx-tier:hover { transform: translateY(-4px); box-shadow: var(--zx-shadow); }
.zx-tier.is-featured {
	border-color: rgba(var(--zx-accent-rgb), .6);
	background: linear-gradient(170deg, rgba(var(--zx-accent-rgb), .10), rgba(var(--zx-surface-rgb), .8));
	box-shadow: 0 0 0 1px rgba(var(--zx-accent-rgb), .3), var(--zx-shadow);
}
.zx-tier__badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	padding: 5px 14px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2));
	color: var(--zx-on-accent, #04060d);
	font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
	white-space: nowrap;
}
.zx-tier__name { font-size: 1.1rem; margin-bottom: 6px; }
.zx-tier__price { display: flex; align-items: flex-start; gap: 2px; }
.zx-tier__cur { font-size: 1.1rem; color: var(--zx-muted); margin-top: 6px; }
.zx-tier__amt { font-family: var(--zx-font-head); font-size: 3rem; font-weight: 700; line-height: 1; }
.zx-tier__period { color: var(--zx-muted); font-size: .88rem; margin: 6px 0 18px; }
.zx-tier__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; }
.zx-tier__list li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: var(--zx-muted); }
.zx-tier__list .zx-icon { color: var(--zx-success); margin-top: 3px; }
.zx-pricing__note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 26px; color: var(--zx-muted); font-size: .88rem; }

.zx-explainers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	margin-bottom: 34px;
}
.zx-explainer {
	display: flex;
	gap: 13px;
	padding: 18px 20px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .55);
}
.zx-explainer__icon {
	display: grid; place-items: center;
	width: 38px; height: 38px; flex: none;
	border-radius: 11px;
	color: var(--zx-accent);
	background: rgba(var(--zx-accent-rgb), .12);
}
.zx-explainer strong { display: block; font-family: var(--zx-font-head); font-size: .96rem; margin-bottom: 5px; }
.zx-explainer p { margin: 0; color: var(--zx-muted); font-size: .89rem; line-height: 1.6; }

.zx-renewal {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	max-width: 760px;
	margin: 30px auto 0;
	padding: 18px 22px;
	border-radius: var(--zx-radius);
	border: 1px solid rgba(var(--zx-accent-rgb), .3);
	background: rgba(var(--zx-accent-rgb), .07);
}
.zx-renewal__icon { color: var(--zx-accent); flex: none; margin-top: 2px; }
.zx-renewal p { margin: 0; color: var(--zx-muted); font-size: .92rem; }
.zx-renewal strong { display: block; color: var(--zx-text); font-family: var(--zx-font-head); margin-bottom: 4px; }

/* ================================================== 14. Testimonials ==== */

.zx-drag { overflow: hidden; cursor: grab; margin-inline: -4px; }
.zx-drag.is-dragging { cursor: grabbing; user-select: none; }
.zx-drag__track { display: flex; gap: 18px; padding: 4px; }
.zx-drag__hint { text-align: center; color: var(--zx-muted); font-size: .8rem; margin-top: 14px; }

.zx-quote {
	flex: 0 0 min(400px, 82vw);
	margin: 0;
	padding: 26px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .7);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.zx-quote__mark { color: var(--zx-accent); opacity: .5; }
.zx-quote blockquote { margin: 0; font-size: 1.02rem; }
.zx-quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--zx-border); }
.zx-quote figcaption img, .zx-quote__initial {
	width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--zx-accent), var(--zx-accent-2));
	color: var(--zx-on-accent, #04060d); font-weight: 700;
}
.zx-quote figcaption strong { display: block; font-size: .92rem; }
.zx-quote figcaption em { font-style: normal; font-size: .8rem; color: var(--zx-muted); }

/* ============================================================ 15. FAQ === */

.zx-accordion { display: grid; gap: 10px; }
.zx-acc {
	border: 1px solid var(--zx-border);
	border-radius: var(--zx-radius);
	background: rgba(var(--zx-surface-rgb), .6);
	overflow: hidden;
	transition: border-color .22s;
}
.zx-acc[open] { border-color: rgba(var(--zx-accent-rgb), .45); }
.zx-acc summary {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 17px 20px;
	cursor: pointer;
	font-family: var(--zx-font-head);
	font-weight: 600;
	list-style: none;
}
.zx-acc summary::-webkit-details-marker { display: none; }
.zx-acc__plus { position: relative; width: 16px; height: 16px; flex: none; }
.zx-acc__plus::before, .zx-acc__plus::after {
	content: ''; position: absolute; background: var(--zx-accent); border-radius: 2px;
	transition: transform .24s ease;
}
.zx-acc__plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.zx-acc__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.zx-acc[open] .zx-acc__plus::after { transform: rotate(90deg); }
.zx-acc__body { padding: 0 20px 18px; color: var(--zx-muted); }
.zx-acc__body p { margin: 0; }

/* ============================================================ 16. CTA === */

.zx-ctaband { padding: clamp(40px, 5vw, 64px) 0; }
.zx-ctaband__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--zx-radius-lg);
	background: linear-gradient(120deg, rgba(var(--zx-accent-rgb), .16), rgba(var(--zx-accent-2-rgb), .14));
	border: 1px solid rgba(var(--zx-accent-rgb), .3);
	position: relative;
	overflow: hidden;
}
.zx-ctaband__inner::after {
	content: '';
	position: absolute; inset: auto -10% -60% auto;
	width: 420px; height: 420px; border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--zx-accent-rgb), .22), transparent 65%);
}
.zx-ctaband h2 { margin-bottom: 8px; }
.zx-ctaband p { color: var(--zx-muted); margin: 0; max-width: 54ch; }
.zx-ctaband .zx-btn { position: relative; z-index: 1; }

/* ========================================================= 17. Logos ==== */

.zx-logos { padding: 34px 0; }
.zx-logos__title { text-align: center; color: var(--zx-muted); font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.zx-logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 38px; }
.zx-logos__item { opacity: .55; transition: opacity .22s, filter .22s; filter: grayscale(1); color: var(--zx-text); font-family: var(--zx-font-head); font-weight: 600; font-size: 1.1rem; }
.zx-logos__item:hover { opacity: 1; filter: none; color: var(--zx-text); }
.zx-logos__item img { max-height: 34px; width: auto; }

/* ======================================================= 18. Contact ==== */

.zx-contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.zx-contact__info p { color: var(--zx-muted); }

.zx-contactlist { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 13px; }
.zx-contactlist li { display: flex; align-items: flex-start; gap: 11px; color: var(--zx-muted); font-size: .94rem; }
.zx-contactlist .zx-icon { color: var(--zx-accent); margin-top: 3px; }
.zx-contactlist a { color: var(--zx-text); }
.zx-contactlist a:hover { color: var(--zx-accent); }

.zx-social { display: flex; gap: 8px; flex-wrap: wrap; }
.zx-social__link {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border-radius: 11px;
	border: 1px solid var(--zx-border);
	color: var(--zx-muted);
	transition: all .2s;
}
.zx-social__link:hover { color: var(--zx-on-accent, #04060d); background: var(--zx-accent); border-color: transparent; transform: translateY(-2px); }

.zx-form { display: grid; gap: 15px; }
.zx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.zx-field { display: grid; gap: 7px; }
.zx-field > span { font-size: .85rem; color: var(--zx-muted); font-weight: 500; }
.zx-field input, .zx-field select, .zx-field textarea {
	width: 100%;
	padding: 12px 15px;
	border-radius: var(--zx-radius-sm);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
	color: var(--zx-text);
	font-family: inherit;
	font-size: .95rem;
	transition: border-color .2s, box-shadow .2s;
}
.zx-field input:focus, .zx-field select:focus, .zx-field textarea:focus {
	outline: none;
	border-color: var(--zx-accent);
	box-shadow: 0 0 0 3px rgba(var(--zx-accent-rgb), .18);
}
.zx-field textarea { resize: vertical; }
.zx-hp { position: absolute; left: -9999px; }

.zx-captcha__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 6px 6px 16px;
	border-radius: var(--zx-radius-sm);
	border: 1px dashed var(--zx-border);
	background: rgba(var(--zx-accent-rgb), .06);
}
.zx-captcha__q {
	font-family: var(--zx-font-head);
	font-weight: 600;
	white-space: nowrap;
	color: var(--zx-text);
}
.zx-captcha__row input {
	width: 110px;
	flex: none;
	margin-left: auto;
	text-align: center;
	font-family: var(--zx-font-head);
	font-weight: 700;
}
.zx-form__status { font-size: .88rem; margin: 0; min-height: 1.2em; }
.zx-form__status.is-ok { color: var(--zx-success); }
.zx-form__status.is-error { color: var(--zx-accent-3); }

.zx-contact__form {
	padding: clamp(22px, 3vw, 34px);
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .72);
}

.zx-map { border-radius: var(--zx-radius-lg); overflow: hidden; border: 1px solid var(--zx-border); }
.zx-map iframe { display: block; filter: grayscale(.4) contrast(1.05); }
[data-theme="dark"] .zx-map iframe { filter: grayscale(.6) invert(.92) hue-rotate(180deg); }

/* ==================================================== 19. Newsletter ==== */

.zx-news {
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
	padding: clamp(24px, 3vw, 38px);
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: linear-gradient(120deg, rgba(var(--zx-accent-2-rgb), .10), rgba(var(--zx-surface-rgb), .7));
}
.zx-news__copy h3 { margin-bottom: 6px; }
.zx-news__copy p { color: var(--zx-muted); margin: 0; max-width: 46ch; }
.zx-news__form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; position: relative; }
.zx-news__form input {
	padding: 12px 16px;
	min-width: 250px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-bg-rgb), .6);
	color: var(--zx-text);
}
.zx-news__form input:focus { outline: none; border-color: var(--zx-accent); }
.zx-news__form .zx-form__status { flex-basis: 100%; }

/* ======================================================= 20. Products === */

.zx-producthero { padding: clamp(28px, 4vw, 56px) 0; }
.zx-producthero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.zx-producthero__title { margin: 10px 0 12px; }
.zx-producthero__short { font-size: 1.1rem; color: var(--zx-muted); }
.zx-producthero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 18px 0; font-size: .88rem; color: var(--zx-muted); }
.zx-meta__item { display: inline-flex; align-items: center; gap: 6px; }
.zx-producthero__links { display: flex; flex-wrap: wrap; gap: 18px; }

.zx-gallery { border-radius: var(--zx-radius-lg); overflow: hidden; border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .6); }
.zx-gallery__stage { position: relative; aspect-ratio: 16 / 9; }
.zx-gallery__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .4s ease; }
.zx-gallery__slide.is-active { opacity: 1; }
.zx-gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.zx-gallery__thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; }
.zx-gallery__thumb { flex: none; width: 74px; border: 1px solid var(--zx-border); border-radius: 8px; overflow: hidden; background: none; cursor: pointer; padding: 0; opacity: .6; transition: opacity .2s, border-color .2s; }
.zx-gallery__thumb.is-active { opacity: 1; border-color: var(--zx-accent); }
.zx-gallery__thumb img { width: 100%; height: 52px; object-fit: cover; display: block; }

.zx-product__glyph { display: grid; place-items: center; min-height: 320px; border-radius: var(--zx-radius-lg); border: 1px solid var(--zx-border); color: var(--zx-accent); background: radial-gradient(circle at 50% 45%, rgba(var(--zx-accent-rgb), .18), transparent 68%); }
.zx-video { border-radius: var(--zx-radius-lg); overflow: hidden; border: 1px solid var(--zx-border); aspect-ratio: 16/9; }
.zx-video iframe { width: 100%; height: 100%; border: 0; }

.zx-layout { display: grid; gap: 44px; padding-bottom: 60px; }
.zx-layout--sidebar, .zx-layout--product { grid-template-columns: minmax(0, 1fr) 330px; }
.zx-layout__aside { display: grid; gap: 18px; align-content: start; }
.zx-sticky { position: sticky; top: 92px; }

.zx-product__block { margin-bottom: 44px; }
.zx-product__block h2 { margin-bottom: 20px; }

.zx-featlist { display: grid; gap: 16px; }
.zx-featlist__item { display: flex; gap: 13px; align-items: flex-start; }
.zx-featlist__check {
	display: grid; place-items: center;
	width: 26px; height: 26px; flex: none;
	border-radius: 8px;
	color: var(--zx-success);
	background: rgba(46, 230, 168, .12);
}
.zx-featlist__item strong { display: block; }
.zx-featlist__item p { color: var(--zx-muted); margin: 3px 0 0; font-size: .94rem; }

.zx-spectable { width: 100%; border-collapse: collapse; }
.zx-spectable th, .zx-spectable td { padding: 12px 14px; border-bottom: 1px solid var(--zx-border); text-align: left; font-size: .94rem; }
.zx-spectable th { color: var(--zx-muted); font-weight: 500; width: 40%; }

.zx-changelog { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.zx-changelog li { display: flex; gap: 14px; padding-left: 18px; border-left: 2px solid var(--zx-border); position: relative; }
.zx-changelog li::before { content: ''; position: absolute; left: -5px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--zx-accent); }
.zx-changelog__ver { font-family: 'JetBrains Mono', monospace; color: var(--zx-accent); font-size: .86rem; flex: none; min-width: 60px; }
.zx-changelog__text { color: var(--zx-muted); font-size: .94rem; }

.zx-buybox {
	padding: 24px;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .85);
	display: grid;
	gap: 16px;
}
.zx-buybox__price .zx-price__now { font-size: 2rem; }
.zx-buybox__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.zx-buybox__list li { display: flex; justify-content: space-between; gap: 10px; font-size: .88rem; }
.zx-buybox__list span { color: var(--zx-muted); }
.zx-buybox__trust { display: grid; gap: 7px; padding-top: 14px; border-top: 1px solid var(--zx-border); }
.zx-buybox__trust span { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--zx-muted); }
.zx-buybox__trust .zx-icon { color: var(--zx-success); }

.zx-aside-block {
	padding: 22px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
}
.zx-aside-block h3 { font-size: 1rem; margin-bottom: 12px; }
.zx-aside-block--accent { background: linear-gradient(150deg, rgba(var(--zx-accent-rgb), .12), rgba(var(--zx-surface-rgb), .7)); border-color: rgba(var(--zx-accent-rgb), .3); }
.zx-aside-block--accent p { color: var(--zx-muted); font-size: .92rem; }

.zx-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.zx-share__label { font-size: .8rem; color: var(--zx-muted); }
.zx-share__link {
	display: grid; place-items: center;
	width: 32px; height: 32px;
	border-radius: 9px;
	border: 1px solid var(--zx-border);
	background: none;
	color: var(--zx-muted);
	cursor: pointer;
	transition: all .2s;
}
.zx-share__link:hover { color: var(--zx-accent); border-color: var(--zx-accent); }

/* ===================================================== 21. Blog/prose === */

.zx-pagehead { padding: clamp(34px, 5vw, 64px) 0 clamp(20px, 3vw, 34px); }
.zx-pagehead--hero { padding-bottom: clamp(30px, 4vw, 50px); }
.zx-pagehead__title { margin-bottom: 10px; }
.zx-pagehead__sub { color: var(--zx-muted); max-width: 64ch; }
.zx-pagehead__sub p { margin: 0; }

.zx-crumbs { padding: 14px 0 0; font-size: .84rem; color: var(--zx-muted); }
.zx-crumbs a { color: var(--zx-muted); }
.zx-crumbs a:hover { color: var(--zx-accent); }
.zx-crumbs__sep { margin: 0 8px; opacity: .4; }

.zx-prose { font-size: 1.04rem; }
.zx-prose h2 { margin-top: 1.8em; }
.zx-prose h3 { margin-top: 1.5em; }
.zx-prose img, .zx-prose figure { border-radius: var(--zx-radius); margin: 1.8em 0; }
.zx-prose blockquote {
	margin: 1.8em 0;
	padding: 18px 24px;
	border-left: 3px solid var(--zx-accent);
	background: rgba(var(--zx-accent-rgb), .07);
	border-radius: 0 var(--zx-radius) var(--zx-radius) 0;
	color: var(--zx-muted);
}
.zx-prose ul, .zx-prose ol { padding-left: 1.3em; }
.zx-prose li { margin-bottom: .5em; }
.zx-prose code { background: rgba(var(--zx-text-rgb), .08); padding: 2px 6px; border-radius: 5px; font-size: .9em; }
.zx-prose pre {
	background: rgba(var(--zx-text-rgb), .06);
	border: 1px solid var(--zx-border);
	border-radius: var(--zx-radius);
	padding: 18px 20px;
	overflow-x: auto;
}
.zx-prose pre code { background: none; padding: 0; }
.zx-prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; }
.zx-prose th, .zx-prose td { padding: 11px 14px; border: 1px solid var(--zx-border); text-align: left; }
.zx-prose--page { padding: 30px 0; }

.zx-featured { margin: 0 0 30px; border-radius: var(--zx-radius-lg); overflow: hidden; border: 1px solid var(--zx-border); }
.zx-featured--wide img { width: 100%; }

.zx-posthead { padding: clamp(30px, 4vw, 54px) 0 26px; text-align: center; }
.zx-posthead .zx-card__cats { justify-content: center; }
.zx-posthead__meta { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--zx-muted); font-size: .88rem; }
.zx-avatar { border-radius: 50%; }

.zx-tldr {
	display: flex;
	gap: 14px;
	padding: 18px 20px;
	margin-bottom: 30px;
	border-radius: var(--zx-radius);
	border: 1px solid rgba(var(--zx-accent-rgb), .3);
	background: linear-gradient(120deg, rgba(var(--zx-accent-rgb), .09), rgba(var(--zx-accent-2-rgb), .06));
}
.zx-tldr__icon { color: var(--zx-accent); flex: none; }
.zx-tldr strong { display: block; font-family: var(--zx-font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--zx-accent); margin-bottom: 4px; }
.zx-tldr p { margin: 0; color: var(--zx-muted); font-size: .96rem; }

.zx-post__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin: 34px 0; padding-top: 22px; border-top: 1px solid var(--zx-border); }

.zx-authorbox { display: flex; gap: 16px; padding: 22px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .6); margin-bottom: 30px; }
.zx-authorbox p { color: var(--zx-muted); font-size: .94rem; margin: 5px 0 0; }

.zx-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.zx-postnav a { display: block; padding: 18px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); color: var(--zx-text); font-family: var(--zx-font-head); font-weight: 600; transition: border-color .2s; }
.zx-postnav a:hover { border-color: var(--zx-accent); color: var(--zx-text); }
.zx-postnav span { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--zx-muted); font-weight: 500; margin-bottom: 5px; }
.zx-postnav .nav-next { text-align: right; }

.zx-postcard {
	display: flex; flex-direction: column;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
	overflow: hidden;
	transition: transform .24s, border-color .24s;
}
.zx-postcard:hover { transform: translateY(-4px); border-color: rgba(var(--zx-accent-rgb), .4); }
.zx-postcard__media { display: block; aspect-ratio: 16/9; position: relative; background: linear-gradient(140deg, rgba(var(--zx-accent-2-rgb), .14), rgba(var(--zx-accent-rgb), .08)); }
.zx-postcard__media img { width: 100%; height: 100%; object-fit: cover; }
.zx-postcard__glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--zx-accent); opacity: .6; }
.zx-postcard__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.zx-postcard__meta { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--zx-muted); flex-wrap: wrap; }
.zx-postcard__title { font-size: 1.1rem; margin: 0; }
.zx-postcard__title a { color: var(--zx-text); }
.zx-postcard__title a:hover { color: var(--zx-accent); }
.zx-postcard__excerpt { color: var(--zx-muted); font-size: .92rem; margin: 0; flex: 1; }

.zx-blogfilter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.zx-featurepost {
	display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
	padding: clamp(20px, 3vw, 30px);
	margin-bottom: 34px;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: linear-gradient(140deg, rgba(var(--zx-surface-rgb), .85), rgba(var(--zx-surface-rgb), .45));
}
.zx-featurepost__media { display: block; border-radius: var(--zx-radius); overflow: hidden; aspect-ratio: 16/10; position: relative; background: linear-gradient(140deg, rgba(var(--zx-accent-rgb), .16), transparent); }
.zx-featurepost__media img { width: 100%; height: 100%; object-fit: cover; }
.zx-featurepost__glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--zx-accent); }
.zx-featurepost__body { display: grid; gap: 12px; justify-items: start; }
.zx-featurepost h2 { margin: 0; }
.zx-featurepost h2 a { color: var(--zx-text); }
.zx-featurepost h2 a:hover { color: var(--zx-accent); }
.zx-featurepost p { color: var(--zx-muted); margin: 0; }

.zx-results { display: grid; gap: 14px; }
.zx-result { padding: 20px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); }
.zx-result h3 { margin: 0 0 6px; font-size: 1.08rem; }
.zx-result p { color: var(--zx-muted); margin: 0 0 6px; font-size: .94rem; }
.zx-result__url { font-size: .8rem; color: var(--zx-accent); font-family: 'JetBrains Mono', monospace; }

.zx-searchform { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 16px; border-radius: 999px; border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .6); color: var(--zx-muted); }
.zx-searchform__input { flex: 1; border: 0; background: none; color: var(--zx-text); }
.zx-searchform__input:focus { outline: none; }

.zx-pagination { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin: 36px 0; }
.zx-pagination .page-numbers {
	display: inline-grid; place-items: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border-radius: 11px;
	border: 1px solid var(--zx-border);
	color: var(--zx-muted);
	font-size: .9rem;
}
.zx-pagination .page-numbers:hover { border-color: var(--zx-accent); color: var(--zx-text); }
.zx-pagination .current { background: var(--zx-accent); border-color: transparent; color: var(--zx-on-accent, #04060d); font-weight: 700; }

.zx-widget { margin-bottom: 24px; padding: 22px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .6); }
.zx-widget__title { font-size: 1rem; margin-bottom: 12px; }
.zx-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.zx-widget a { color: var(--zx-muted); }
.zx-widget a:hover { color: var(--zx-accent); }

.zx-comments { margin: 44px 0; }
.zx-comments__title { font-size: 1.3rem; margin-bottom: 20px; }
.zx-commentlist { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 18px; }
.zx-commentlist .children { list-style: none; padding-left: 26px; margin-top: 18px; display: grid; gap: 18px; }
.zx-commentlist .comment-body { padding: 20px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .5); }
.zx-commentlist .comment-author img { border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.zx-commentlist .comment-meta { font-size: .82rem; color: var(--zx-muted); margin-bottom: 8px; }

/* ==================================================== 22. About/misc ==== */

.zx-aboutgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.zx-aboutcard { padding: 28px; border-radius: var(--zx-radius-lg); border: 1px solid var(--zx-border); background: rgba(var(--zx-surface-rgb), .7); }
.zx-aboutcard p { color: var(--zx-muted); margin: 0; }

.zx-infogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.zx-infogrid__item { padding: 20px; border-radius: var(--zx-radius); border: 1px solid var(--zx-border); }
.zx-infogrid__item span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--zx-muted); margin-bottom: 6px; }
.zx-infogrid__item strong { font-family: var(--zx-font-head); font-size: 1.05rem; }

.zx-404 { text-align: center; padding: clamp(50px, 8vw, 100px) 0; }
.zx-404__code {
	font-family: var(--zx-font-head);
	font-size: clamp(6rem, 16vw, 12rem);
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2), var(--zx-accent-3));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	opacity: .85;
}
.zx-404__text { color: var(--zx-muted); max-width: 52ch; margin-inline: auto; }
.zx-404__search { max-width: 460px; margin: 26px auto; }
.zx-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.zx-404__grid { margin-top: 60px; text-align: left; }
.zx-404__grid h2 { text-align: center; margin-bottom: 26px; }

.zx-thanks { padding: clamp(50px, 7vw, 90px) 0; }
.zx-thanks__card {
	padding: clamp(28px, 4vw, 46px);
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .78);
	text-align: center;
	display: grid;
	gap: 18px;
	justify-items: center;
}
.zx-thanks__tick { color: var(--zx-success); }
.zx-thanks__sub { color: var(--zx-muted); margin: 0; }
.zx-thanks__license {
	display: grid; gap: 8px; justify-items: center;
	width: 100%;
	padding: 18px;
	border-radius: var(--zx-radius);
	border: 1px dashed var(--zx-border);
	background: rgba(var(--zx-bg-rgb), .5);
}
.zx-thanks__license span { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--zx-muted); }
.zx-thanks__license code { font-size: 1.05rem; color: var(--zx-accent); letter-spacing: .06em; }
.zx-thanks__fine { font-size: .84rem; color: var(--zx-muted); margin: 0; }
.zx-thanks__next { text-align: center; margin-top: 24px; }
.zx-thanks__state { display: grid; gap: 14px; justify-items: center; }

.zx-lookup { display: grid; gap: 22px; }
.zx-lookup__form {
	padding: clamp(20px, 3vw, 30px);
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .7);
}
.zx-licenserow {
	display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	padding: 18px 20px;
	border-radius: var(--zx-radius);
	border: 1px solid var(--zx-border);
	margin-bottom: 12px;
}
.zx-licenserow strong { display: block; }
.zx-licenserow small { color: var(--zx-muted); }
.zx-licenserow code { color: var(--zx-accent); font-size: .85rem; }

/* ======================================================== 23. Footer ==== */

.zx-footer {
	margin-top: 60px;
	padding: clamp(40px, 5vw, 70px) 0 30px;
	border-top: 1px solid var(--zx-border);
	background: linear-gradient(180deg, transparent, rgba(var(--zx-accent-rgb), .04));
}
.zx-footer__top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 44px; }
.zx-footer__about { color: var(--zx-muted); font-size: .94rem; margin: 16px 0; max-width: 42ch; }
.zx-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; }
.zx-footer__coltitle { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--zx-muted); margin-bottom: 14px; }
.zx-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.zx-footer__list a { color: var(--zx-text); opacity: .75; font-size: .93rem; }
.zx-footer__list a:hover { opacity: 1; color: var(--zx-accent); }
.zx-footer__widgets { margin-top: 34px; }
.zx-footer__bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
	margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--zx-border);
	font-size: .85rem; color: var(--zx-muted);
}
.zx-footer__copy { margin: 0; }
.zx-footer__legal { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.zx-footer__legal a { color: var(--zx-muted); font-size: .85rem; }
.zx-footer__legal a:hover { color: var(--zx-accent); }
.zx-footer__badges { display: flex; gap: 16px; flex-wrap: wrap; }
.zx-trust { display: inline-flex; align-items: center; gap: 6px; }
.zx-trust .zx-icon { color: var(--zx-success); }
.zx-footer__note { margin-top: 18px; font-size: .8rem; color: var(--zx-muted); opacity: .7; }

.zx-totop {
	position: fixed;
	right: 24px; bottom: 24px;
	z-index: 600;
	display: grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .9);
	backdrop-filter: blur(10px);
	color: var(--zx-text);
	cursor: pointer;
	transform: translateY(18px) rotate(-90deg);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.zx-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(-90deg); }
.zx-assist--right ~ .zx-totop { bottom: 88px; }

/* ================================================= 24. Slide-over/modal = */

.zx-slideover { position: fixed; inset: 0; z-index: 950; }
.zx-slideover__scrim { position: absolute; inset: 0; background: rgba(2,4,10,.6); opacity: 0; transition: opacity .3s; }
.zx-slideover__panel {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: min(94vw, 460px);
	background: var(--zx-bg-alt);
	border-left: 1px solid var(--zx-border);
	padding: 26px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .36s cubic-bezier(.22,1,.36,1);
}
.zx-slideover.is-open .zx-slideover__scrim { opacity: 1; }
.zx-slideover.is-open .zx-slideover__panel { transform: translateX(0); }
.zx-slideover__close { position: absolute; top: 18px; right: 18px; }
.zx-qv { display: grid; gap: 18px; }
.zx-qv__glyph { display: grid; place-items: center; height: 150px; border-radius: var(--zx-radius); color: var(--zx-accent); background: radial-gradient(circle, rgba(var(--zx-accent-rgb), .16), transparent 70%); }
.zx-qv__img { border-radius: var(--zx-radius); width: 100%; }
.zx-qv h3 { margin: 0; }
.zx-qv__short { color: var(--zx-muted); margin: 0; }
.zx-qv__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.zx-qv__list li { display: flex; gap: 9px; font-size: .92rem; color: var(--zx-muted); }
.zx-qv__list .zx-icon { color: var(--zx-success); flex: none; margin-top: 3px; }
.zx-qv__meta { display: flex; gap: 14px; font-size: .84rem; color: var(--zx-muted); flex-wrap: wrap; }

.zx-modal { position: fixed; inset: 0; z-index: 980; display: grid; place-items: center; }
.zx-modal__scrim { position: absolute; inset: 0; background: rgba(2,4,10,.66); opacity: 0; transition: opacity .25s; }
.zx-modal__panel {
	position: relative;
	width: min(94vw, 430px);
	padding: 32px 28px 26px;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: var(--zx-bg-alt);
	box-shadow: var(--zx-shadow);
	transform: scale(.94) translateY(14px);
	opacity: 0;
	transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .25s;
}
.zx-modal.is-open .zx-modal__scrim { opacity: 1; }
.zx-modal.is-open .zx-modal__panel { transform: none; opacity: 1; }
.zx-modal__close { position: absolute; top: 14px; right: 14px; }
.zx-modal__title { margin-bottom: 6px; }
.zx-modal__text { color: var(--zx-muted); font-size: .92rem; }
.zx-modal__fine { font-size: .78rem; color: var(--zx-muted); text-align: center; margin: 0; }

/* ===================================================== 25. AI assistant = */

.zx-assist { position: fixed; bottom: 24px; z-index: 940; }
.zx-assist--right { right: 24px; }
.zx-assist--left { left: 24px; }

.zx-assist__launch {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 12px 20px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--zx-accent), var(--zx-accent-2));
	color: var(--zx-on-accent, #04060d);
	font-family: var(--zx-font-head);
	font-weight: 700;
	font-size: .92rem;
	cursor: pointer;
	box-shadow: 0 14px 34px -12px rgba(var(--zx-accent-rgb), .9);
	transition: transform .2s, box-shadow .2s;
}
.zx-assist__launch:hover { transform: translateY(-2px); }
.zx-assist.is-open .zx-assist__launch { opacity: 0; pointer-events: none; }

.zx-assist__panel {
	position: absolute;
	bottom: 0;
	width: min(92vw, 380px);
	max-height: min(76vh, 560px);
	display: flex;
	flex-direction: column;
	border-radius: var(--zx-radius-lg);
	border: 1px solid var(--zx-border);
	background: var(--zx-bg-alt);
	box-shadow: var(--zx-shadow);
	overflow: hidden;
	transform: translateY(18px) scale(.96);
	opacity: 0;
	transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .25s;
}
.zx-assist--right .zx-assist__panel { right: 0; }
.zx-assist--left .zx-assist__panel { left: 0; }
.zx-assist.is-open .zx-assist__panel { transform: none; opacity: 1; }

.zx-assist__head { display: flex; align-items: center; gap: 11px; padding: 15px 16px; border-bottom: 1px solid var(--zx-border); }
.zx-assist__head strong { display: block; font-size: .95rem; }
.zx-assist__head em { font-style: normal; font-size: .76rem; color: var(--zx-muted); }
.zx-assist__head .zx-iconbtn { margin-left: auto; width: 32px; height: 32px; }
.zx-assist__avatar {
	display: grid; place-items: center;
	width: 36px; height: 36px; border-radius: 11px;
	background: linear-gradient(135deg, var(--zx-accent), var(--zx-accent-2));
	color: var(--zx-on-accent, #04060d);
}

.zx-assist__log { flex: 1; overflow-y: auto; padding: 16px; display: grid; gap: 12px; align-content: start; }
.zx-assist__msg { padding: 12px 14px; border-radius: 14px; font-size: .92rem; max-width: 88%; }
.zx-assist__msg p { margin: 0 0 .6em; }
.zx-assist__msg p:last-child { margin: 0; }
.zx-assist__msg--bot { background: rgba(var(--zx-text-rgb), .06); border-bottom-left-radius: 5px; }
.zx-assist__msg--user { background: rgba(var(--zx-accent-rgb), .16); margin-left: auto; border-bottom-right-radius: 5px; }
.zx-assist__msg--error { background: rgba(255, 61, 129, .12); color: var(--zx-accent-3); }
.zx-assist__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.zx-assist__links { display: grid; gap: 6px; }
.zx-assist__link {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 9px 12px;
	border-radius: 11px;
	border: 1px solid var(--zx-border);
	font-size: .88rem;
	color: var(--zx-text);
}
.zx-assist__link:hover { border-color: var(--zx-accent); color: var(--zx-text); }
.zx-assist__link em { font-style: normal; color: var(--zx-accent); }

.zx-assist__form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--zx-border); }
.zx-assist__form input {
	flex: 1;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid var(--zx-border);
	background: rgba(var(--zx-surface-rgb), .6);
	color: var(--zx-text);
	font-size: .92rem;
}
.zx-assist__form input:focus { outline: none; border-color: var(--zx-accent); }
.zx-assist__fine { margin: 0; padding: 0 14px 12px; font-size: .7rem; color: var(--zx-muted); text-align: center; }

.zx-typing { display: inline-flex; gap: 4px; }
.zx-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--zx-muted); animation: zx-bounce 1s ease-in-out infinite; }
.zx-typing span:nth-child(2) { animation-delay: .15s; }
.zx-typing span:nth-child(3) { animation-delay: .3s; }

/* ============================================ 25b. Light-mode polish ==== */

/* The dark theme leans on glow and transparency. On a pale background those
   read as washed-out, so light mode gets firmer surfaces, real borders and a
   calmer background instead. */

[data-theme="light"] body { background: var(--zx-bg); }

[data-theme="light"] .zx-mesh { opacity: .22; }
[data-theme="light"] .zx-grain { opacity: .018; }
[data-theme="light"] .zx-cursor { display: none; }

[data-theme="light"] .zx-orb--1 { background: rgba(var(--zx-accent-rgb), .12); }
[data-theme="light"] .zx-orb--2 { background: rgba(var(--zx-accent-2-rgb), .10); }
[data-theme="light"] .zx-orb--3 { background: rgba(var(--zx-accent-3-rgb), .07); }
[data-theme="light"] .zx-gridlines { background-image:
	linear-gradient(rgba(var(--zx-text-rgb), .045) 1px, transparent 1px),
	linear-gradient(90deg, rgba(var(--zx-text-rgb), .045) 1px, transparent 1px); }

/* Cards and panels: solid white on a tinted page, with a visible edge. */
[data-theme="light"] .zx-card,
[data-theme="light"] .zx-feature,
[data-theme="light"] .zx-tier,
[data-theme="light"] .zx-quote,
[data-theme="light"] .zx-acc,
[data-theme="light"] .zx-aside-block,
[data-theme="light"] .zx-buybox,
[data-theme="light"] .zx-postcard,
[data-theme="light"] .zx-widget,
[data-theme="light"] .zx-contact__form,
[data-theme="light"] .zx-result,
[data-theme="light"] .zx-aboutcard,
[data-theme="light"] .zx-infogrid__item,
[data-theme="light"] .zx-thanks__card,
[data-theme="light"] .zx-lookup__form,
[data-theme="light"] .zx-featurepost,
[data-theme="light"] .zx-panel {
	background: var(--zx-surface);
	border-color: var(--zx-border);
	box-shadow: 0 1px 2px rgba(15, 25, 60, .04);
}
[data-theme="light"] .zx-card:hover,
[data-theme="light"] .zx-feature:hover,
[data-theme="light"] .zx-tier:hover,
[data-theme="light"] .zx-postcard:hover { box-shadow: 0 12px 32px -14px rgba(15, 25, 60, .28); }

/* Inputs need a visible field, not a transparent one. */
[data-theme="light"] .zx-field input,
[data-theme="light"] .zx-field select,
[data-theme="light"] .zx-field textarea,
[data-theme="light"] .zx-filters__search,
[data-theme="light"] .zx-catbar__search,
[data-theme="light"] .zx-searchform,
[data-theme="light"] .zx-news__form input,
[data-theme="light"] .zx-select select,
[data-theme="light"] .zx-assist__form input {
	background: #fff;
	border-color: var(--zx-border);
}

[data-theme="light"] .zx-filters,
[data-theme="light"] .zx-header.is-stuck {
	background: rgba(255, 255, 255, .88);
}

[data-theme="light"] .zx-iconbtn { background: #fff; }
[data-theme="light"] .zx-pill { background: #fff; }
[data-theme="light"] .zx-chip { background: rgba(var(--zx-accent-rgb), .10); }

/* The card media wells and glyphs need more presence on white. */
[data-theme="light"] .zx-card__media,
[data-theme="light"] .zx-postcard__media {
	background: linear-gradient(140deg, rgba(var(--zx-accent-rgb), .10), rgba(var(--zx-accent-2-rgb), .08));
}
[data-theme="light"] .zx-card__glyph,
[data-theme="light"] .zx-postcard__glyph,
[data-theme="light"] .zx-panel__glyph,
[data-theme="light"] .zx-product__glyph { opacity: .9; }

/* The code panel stays dark in light mode — a light-on-light terminal is
   harder to read than a dark one, and it keeps the hero anchored. */
[data-theme="light"] .zx-codepanel {
	background: linear-gradient(170deg, #10131f, #0a0c16);
	border-color: #1e2438;
}
[data-theme="light"] .zx-codepanel__bar { background: rgba(255, 255, 255, .04); border-bottom-color: #1e2438; }
[data-theme="light"] .zx-codepanel__bar em { color: #8c96b5; }
[data-theme="light"] .zx-codepanel__code { color: #b9c2dc; }
[data-theme="light"] .zx-codepanel__code .c2 { color: #7d87a6; }
[data-theme="light"] .zx-codepanel__code .c3 { color: #b48cff; }
[data-theme="light"] .zx-codepanel__code .c4 { color: #52e3ab; }
[data-theme="light"] .zx-codepanel__code .c6 { color: #ffc46b; }
[data-theme="light"] .zx-codepanel__code .c7 { color: #ff7ba8; }

[data-theme="light"] .zx-statsband { background: linear-gradient(180deg, rgba(var(--zx-accent-rgb), .07), transparent); }
[data-theme="light"] .zx-footer { background: linear-gradient(180deg, transparent, rgba(var(--zx-accent-rgb), .05)); }
[data-theme="light"] .zx-tldr { background: linear-gradient(120deg, rgba(var(--zx-accent-rgb), .07), rgba(var(--zx-accent-2-rgb), .05)); }
[data-theme="light"] .zx-featlist__check { background: rgba(4, 120, 87, .10); }
[data-theme="light"] .zx-drawer__scrim,
[data-theme="light"] .zx-slideover__scrim,
[data-theme="light"] .zx-modal__scrim { background: rgba(10, 16, 32, .42); }
[data-theme="light"] .zx-prose code { background: rgba(10, 16, 32, .06); }
[data-theme="light"] .zx-logos__item { opacity: .7; }

/* ==================================================== 26. Responsive ==== */

@media (max-width: 1080px) {
	.zx-layout--sidebar, .zx-layout--product { grid-template-columns: 1fr; }
	.zx-layout__aside { order: 2; }
	.zx-sticky { position: static; }
	.zx-hero__inner, .zx-producthero__inner, .zx-contact__grid, .zx-footer__top { grid-template-columns: 1fr; }
	.zx-hero__visual { margin-top: 24px; }
	.zx-floatcard { display: none; }
	.zx-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.zx-nav { display: none; }
	.zx-burger { display: inline-flex; }
	.zx-header__cta span { display: none; }
	.zx-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.zx-panel { grid-template-columns: 1fr; }
	.zx-panel--rev .zx-panel__copy { order: 0; }
	.zx-featurepost { grid-template-columns: 1fr; }
	.zx-filters { position: static; }
}

@media (max-width: 640px) {
	.zx-grid--2, .zx-grid--3, .zx-grid--4 { grid-template-columns: 1fr; }
	.zx-form__row { grid-template-columns: 1fr; }
	.zx-card--list { flex-direction: column; }
	.zx-card--list .zx-card__media { width: 100%; aspect-ratio: 16/10; }
	.zx-postnav { grid-template-columns: 1fr; }
	.zx-footer__bottom { flex-direction: column; align-items: flex-start; }
	.zx-hero__stats { gap: 20px; }
	.zx-assist { right: 14px; left: auto; bottom: 14px; }
	.zx-totop { right: 14px; bottom: 74px; }
	.zx-filters__right { width: 100%; }
}

/* ================================================== 27. Motion safety === */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.zx-reveal-on .zx-reveal { opacity: 1 !important; transform: none !important; }
	.zx-mesh, .zx-cursor { display: none; }
}

/* Print */
@media print {
	.zx-header, .zx-footer, .zx-assist, .zx-totop, .zx-mesh, .zx-grain, .zx-cursor, .zx-drawer { display: none !important; }
	body { background: #fff; color: #000; }
}
