/*
 * Flux — site chrome.
 *
 * Derived from the shared skin stylesheet, which is token-driven and carries
 * structural work worth keeping: the focus-ring flip on dark bands, the
 * alignwide geometry fix, wide-table overflow containment, the honeypot and the
 * print rules.
 *
 * What changes is form. Flux is the only skin in the family that is dark all
 * the way down -- chrome, inventory, vehicle page, footer -- so the usual
 * light-ground assumptions in the inherited rules are re-pointed rather than
 * inherited. Where a band would normally be "the dark one", here it is the
 * ground; where a panel would be white, here it is a lifted violet.
 *
 * The contrast hazard on a dark skin is not colour, which is easy here -- cyan
 * reads 12.76:1 on a card. It is GRADIENT and GLOW, both of which vary the
 * luminance under a string of text. So every gradient below is confined to a
 * band no text sits on, and every glow is a box-shadow outside its element or a
 * text-shadow on the glyphs themselves, never a wash across them.
 *
 * Flux-specific rules live in the block at the end of the file.
 */

/* ------------------------------------------------------------------ */
/* Reset + base                                                       */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--zst-paper);
	color: var(--zst-ink);
	font-family: var(--zst-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--zst-accent-deep); }

h1, h2, h3, h4 {
	font-family: var(--zst-font-display);
	font-weight: 600;
	line-height: 1.08;
	/* A neo-grotesque at display size wants real negative tracking. */
	letter-spacing: -.028em;
	margin: 0;
	text-wrap: balance;
}

p { margin: 0 0 1em; }

hr { border: 0; border-top: 1px solid var(--zst-line); margin: 2.5rem 0; }

::selection { background: var(--zst-accent); color: #fff; }

/* ------------------------------------------------------------------ */
/* Accessibility                                                      */
/* ------------------------------------------------------------------ */

/* One focus treatment everywhere. --zst-focus flips to a light green inside
   .zst-on-dark (see inc/dynamic-css.php) so the ring never drops below 3:1. */
:focus-visible {
	outline: 2px solid var(--zst-focus);
	outline-offset: 2px;
	border-radius: 2px;
}

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

.zst-skip {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 999;
	padding: .8rem 1.2rem;
	background: var(--zst-brand);
	color: var(--zst-brand-ink);
	font-weight: 600;
	text-decoration: none;
}
.zst-skip:focus {
	inset-inline-start: 1rem;
	top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* ------------------------------------------------------------------ */
/* Layout primitives                                                  */
/* ------------------------------------------------------------------ */
.zst-wrap {
	width: 100%;
	max-width: var(--zst-maxw);
	margin-inline: auto;
	padding-inline: var(--zst-gutter);
}

/* The shop page runs wider so the plugin's results grid can breathe. */
.zst-wrap--shop { max-width: 1520px; }

/* .zs-main is the plugin's content wrapper (contract §3) — the theme owns its
   styling on every page, plugin-rendered or not. */
.zs-main {
	display: block;
	min-height: 40vh;
}

.zst-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.zst-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-bottom: .9rem;
	margin-bottom: 1.8rem;
	border-bottom: 1px solid var(--zst-ink);
}

.zst-section__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0;
}

.zst-section__intro {
	max-width: 62ch;
	color: var(--zst-ink-soft);
	margin-top: -.8rem;
	margin-bottom: 1.8rem;
}

.zst-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--zst-accent-deep);
	white-space: nowrap;
}
.zst-link-arrow .zst-ic { width: 17px; height: 17px; transition: transform .18s ease; }
.zst-link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.zst-link-arrow:hover .zst-ic { transform: translateX(3px); }

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */
.zst-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	font: inherit;
	font-weight: 600;
	line-height: 1.15;
	padding: .78em 1.35em;
	border: 1px solid transparent;
	border-radius: var(--zst-radius);
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.zst-btn--lg { padding: .95em 1.7em; font-size: 1.02rem; }
.zst-btn--block { width: 100%; }

.zst-btn--primary {
	background: var(--zst-brand);
	color: var(--zst-brand-ink);
	border-color: var(--zst-brand);
}
.zst-btn--primary:hover {
	background: var(--zst-brand-hover);
	border-color: var(--zst-brand-hover);
}

.zst-btn--ghost {
	background: transparent;
	color: var(--zst-ink);
	border-color: var(--zst-line);
}
.zst-btn--ghost:hover { border-color: var(--zst-accent-deep); color: var(--zst-accent-deep); }

/* For use on dark bands. */
.zst-btn--invert {
	background: var(--zst-on-dark);
	color: var(--zst-brand);
	border-color: var(--zst-on-dark);
}
.zst-btn--invert:hover { background: #fff; border-color: #fff; }

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.zst-topbar {
	background: var(--zst-brand);
	color: var(--zst-on-dark);
	font-size: .82rem;
	letter-spacing: .04em;
	text-align: center;
	padding: .55rem 0;
}

.zst-header {
	background: var(--zst-paper);
	border-bottom: 1px solid var(--zst-line);
	position: sticky;
	top: 0;
	z-index: 60;
}

.zst-header__in {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 76px;
}

.zst-header__brand { flex: 0 0 auto; }
.zst-header__brand img { max-height: 46px; width: auto; }

.zst-header__name {
	font-family: var(--zst-font-display);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--zst-ink);
	text-decoration: none;
}

/* Header search */
.zst-hsearch {
	position: relative;
	flex: 1 1 auto;
	max-width: 380px;
	display: flex;
	align-items: center;
}
.zst-hsearch__ic {
	position: absolute;
	inset-inline-start: .7rem;
	display: flex;
	color: var(--zst-ink-faint);
	pointer-events: none;
}
.zst-hsearch__ic .zst-ic { width: 17px; height: 17px; }
.zst-hsearch input {
	width: 100%;
	font: inherit;
	font-size: .92rem;
	padding-block: .58em;
	padding-inline: 2.3rem .8em;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	background: var(--zst-surface);
	color: var(--zst-ink);
}
.zst-hsearch input::placeholder { color: var(--zst-ink-faint); }
.zst-hsearch input:focus { border-color: var(--zst-accent-deep); }

/* Nav */
.zst-nav {
	flex: 0 1 auto;
	margin-inline-start: auto;
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.zst-menu {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.zst-menu a {
	font-size: .88rem;
	white-space: nowrap;
	font-weight: 500;
	letter-spacing: .01em;
	color: var(--zst-ink);
	text-decoration: none;
	padding-block: .3rem;
	border-bottom: 1px solid transparent;
}
.zst-menu a:hover { border-bottom-color: var(--zst-ink); }
.zst-menu .current-menu-item > a { border-bottom-color: var(--zst-accent-deep); }
.zst-menu .sub-menu { display: none; }

.zst-nav__cta { display: flex; align-items: center; gap: 1rem; }

.zst-header__phone {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	font-size: .88rem;
	font-weight: 600;
	color: var(--zst-ink);
	text-decoration: none;
	white-space: nowrap;
}
.zst-header__phone .zst-ic { width: 17px; height: 17px; }
.zst-header__phone:hover { color: var(--zst-accent-deep); }

.zst-navtoggle {
	display: none;
	background: none;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	padding: .55rem .6rem;
	cursor: pointer;
	margin-inline-start: auto;
}
.zst-navtoggle__bars { display: block; width: 20px; }
.zst-navtoggle__bars span {
	display: block;
	height: 1.5px;
	background: var(--zst-ink);
	margin: 4px 0;
}

/* ------------------------------------------------------------------ */
/* Quick-filter chips                                                 */
/* ------------------------------------------------------------------ */
.zst-chips {
	background: var(--zst-paper);
	border-bottom: 1px solid var(--zst-line-soft);
}
.zst-chips__in {
	display: flex;
	gap: .5rem;
	overflow-x: auto;
	padding-block: .8rem;
	scrollbar-width: thin;
}
.zst-chip {
	flex: 0 0 auto;
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .02em;
	padding: .42em .9em;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	background: var(--zst-surface);
	color: var(--zst-ink);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .15s ease, color .15s ease;
}
.zst-chip:hover { border-color: var(--zst-accent-deep); color: var(--zst-accent-deep); }
.zst-chip--primary { background: var(--zst-ink); border-color: var(--zst-ink); color: var(--zst-paper); }
.zst-chip--primary:hover { background: var(--zst-brand); border-color: var(--zst-brand); color: var(--zst-brand-ink); }

/* ------------------------------------------------------------------ */
/* Breadcrumbs                                                        */
/* ------------------------------------------------------------------ */
.zst-crumbs {
	font-size: .8rem;
	color: var(--zst-ink-faint);
	padding-block: .9rem;
	border-bottom: 1px solid var(--zst-line-soft);
}
.zst-crumbs a { color: var(--zst-ink-soft); text-decoration: none; }
.zst-crumbs a:hover { color: var(--zst-accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.zst-crumbs__sep { margin-inline: .5em; opacity: .5; }
.zst-crumbs__cur { color: var(--zst-ink); }

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.zst-hero {
	border-bottom: 1px solid var(--zst-line);
	padding-block: clamp(3rem, 8vw, 6.5rem);
}
.zst-hero--photo { background-color: var(--zst-surface-2); }

.zst-hero__in {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: end;
}

/* A ch-based cap here would resolve against the 17px body size, not the
   display size, and crush the headline into a narrow column. Cap in px. */
.zst-hero__lede { max-width: 41rem; }

.zst-hero__eyebrow {
	font-size: .76rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
	margin: 0 0 1.2rem;
}

.zst-hero__h1 {
	font-size: clamp(2.6rem, 7vw, 4.6rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -.028em;
	margin: 0;
}
.zst-hero__em {
	font-style: italic;
	font-weight: 400;
	color: var(--zst-accent-deep);
}

.zst-hero__sub {
	max-width: 44ch;
	margin-top: 1.4rem;
	font-size: 1.06rem;
	color: var(--zst-ink-soft);
}

.zst-hero__actions {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

/* Stats as a ruled column — the editorial answer to a stat row. */
.zst-hero__stats {
	margin: 0;
	display: grid;
	gap: 1rem;
	min-width: 200px;
}
.zst-hero__stat {
	border-top: 1px solid var(--zst-ink);
	padding-top: .7rem;
}
.zst-hero__stat-l {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
}
.zst-hero__stat-v {
	font-family: var(--zst-font-display);
	font-size: 2.1rem;
	font-weight: 600;
	letter-spacing: -.02em;
	margin: .1rem 0 0;
}

/* Inverted hero over a dark photo wash. */
.zst-hero--invert .zst-hero__h1,
.zst-hero--invert .zst-hero__stat-v { color: var(--zst-on-dark); }
.zst-hero--invert .zst-hero__sub { color: var(--zst-on-dark-soft); }
.zst-hero--invert .zst-hero__eyebrow,
.zst-hero--invert .zst-hero__stat-l { color: var(--zst-on-dark-soft); }
.zst-hero--invert .zst-hero__stat { border-top-color: var(--zst-on-dark-soft); }
.zst-hero--invert .zst-hero__em { color: var(--zst-on-dark); }
.zst-hero--invert .zst-link-arrow { color: var(--zst-on-dark); }

/* ------------------------------------------------------------------ */
/* Hero search panel                                                  */
/* ------------------------------------------------------------------ */
.zst-searchband {
	margin-top: -1px;
	padding-block: 0;
}
.zst-herosearch {
	background: var(--zst-surface);
	border: 1px solid var(--zst-line);
	border-top: 0;
	padding: 1.4rem var(--zst-gutter);
	margin-inline: calc(var(--zst-gutter) * -1);
}
.zst-herosearch__row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	gap: 1rem;
	align-items: end;
}
.zst-field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.zst-field__label {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
}
.zst-field select {
	font: inherit;
	font-size: .94rem;
	padding: .6em .7em;
	border: 0;
	border-bottom: 1px solid var(--zst-ink);
	border-radius: 0;
	background: transparent;
	color: var(--zst-ink);
	cursor: pointer;
}
.zst-herosearch__go { align-self: end; }
.zst-herosearch__kw { margin-top: 1rem; }
.zst-herosearch__kw input {
	width: 100%;
	font: inherit;
	font-size: .94rem;
	padding: .6em .8em;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	background: var(--zst-paper);
	color: var(--zst-ink);
}
.zst-herosearch__kw input::placeholder { color: var(--zst-ink-faint); }

/* ------------------------------------------------------------------ */
/* Trust strip                                                        */
/* ------------------------------------------------------------------ */
.zst-trust { padding-block: 2.2rem; border-bottom: 1px solid var(--zst-line-soft); }
.zst-trust__heading { font-size: 1.2rem; margin-bottom: 1.2rem; }
.zst-trust__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.6rem 2rem;
}
.zst-trust__item { display: flex; gap: .8rem; align-items: flex-start; }
.zst-trust__ic { color: var(--zst-accent-deep); flex: 0 0 auto; margin-top: .1rem; }
.zst-trust__txt { display: flex; flex-direction: column; gap: .15rem; }
.zst-trust__txt strong { font-size: .95rem; font-weight: 600; }
.zst-trust__txt span { font-size: .86rem; color: var(--zst-ink-soft); }

/* ------------------------------------------------------------------ */
/* Value propositions — numbered, rule-separated                      */
/* ------------------------------------------------------------------ */
.zst-values {
	background: var(--zst-surface-2);
	border-block: 1px solid var(--zst-line);
	padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
.zst-values__title { margin-bottom: 2.2rem; }
.zst-values__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 0;
}
.zst-value {
	padding: 0 1.8rem;
	border-inline-start: 1px solid var(--zst-line);
}
.zst-value:first-child { padding-inline-start: 0; border-inline-start: 0; }
.zst-value__n {
	display: block;
	font-family: var(--zst-font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--zst-accent-deep);
	margin-bottom: .7rem;
}
.zst-value__t { font-size: 1.16rem; margin-bottom: .5rem; }
.zst-value__p { font-size: .92rem; color: var(--zst-ink-soft); margin: 0; }

/* ------------------------------------------------------------------ */
/* Locations                                                          */
/* ------------------------------------------------------------------ */
.zst-stores {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1px;
	background: var(--zst-line);
	border: 1px solid var(--zst-line);
}
.zst-store { background: var(--zst-surface); padding: 1.6rem; }
.zst-store__name { font-size: 1.2rem; margin-bottom: .3rem; }
.zst-store__name a { color: var(--zst-ink); text-decoration: none; }
.zst-store__name a:hover { color: var(--zst-accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.zst-store__city { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--zst-ink-faint); margin: 0 0 .6rem; }
.zst-store__desc { font-size: .9rem; color: var(--zst-ink-soft); }
.zst-store__phone { font-weight: 600; font-size: .92rem; color: var(--zst-accent-deep); text-decoration: none; }
.zst-store__phone:hover { text-decoration: underline; text-underline-offset: 3px; }

.zst-socials { display: flex; gap: .6rem; margin-top: .9rem; }
.zst-soc { color: var(--zst-ink-faint); }
.zst-soc:hover { color: var(--zst-accent-deep); }

/* ------------------------------------------------------------------ */
/* Finance band                                                       */
/* ------------------------------------------------------------------ */
.zst-financeband {
	background: var(--zst-brand);
	color: var(--zst-on-dark);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.zst-financeband__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.zst-financeband__h { font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--zst-on-dark); max-width: 20ch; }
.zst-financeband__p { margin: .8rem 0 0; max-width: 52ch; color: var(--zst-on-dark-soft); }

/* ------------------------------------------------------------------ */
/* Entity blurb + FAQs                                                */
/* ------------------------------------------------------------------ */
.zst-entity__text {
	max-width: 68ch;
	font-family: var(--zst-font-display);
	font-size: clamp(1.15rem, 2.4vw, 1.45rem);
	line-height: 1.45;
	color: var(--zst-ink-soft);
	margin: 0;
}

.zst-faq__list { margin: 0; }
.zst-faq__item { border-top: 1px solid var(--zst-line); padding-block: 1.4rem; }
.zst-faq__item:last-child { border-bottom: 1px solid var(--zst-line); }
.zst-faq__q {
	font-family: var(--zst-font-display);
	font-size: 1.14rem;
	font-weight: 600;
	margin-bottom: .45rem;
}
.zst-faq__a { margin: 0; color: var(--zst-ink-soft); max-width: 72ch; font-size: .96rem; }

/* ------------------------------------------------------------------ */
/* Pages, prose, forms                                                */
/* ------------------------------------------------------------------ */
.zst-page { padding-block: clamp(2.5rem, 5vw, 4rem); }
.zst-page__head { margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--zst-ink); }
.zst-page__eyebrow {
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
	margin: 0 0 .7rem;
}
.zst-page__title { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.025em; }

.zst-prose { max-width: 68ch; }
.zst-prose--lead { font-size: 1.1rem; color: var(--zst-ink-soft); }
.zst-prose h2 { font-size: 1.6rem; margin: 2.2rem 0 .8rem; }
.zst-prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.zst-prose ul, .zst-prose ol { padding-inline-start: 1.3rem; }
.zst-prose li { margin-bottom: .4rem; }
.zst-prose blockquote {
	margin: 1.8rem 0;
	padding-inline-start: 1.4rem;
	border-inline-start: 2px solid var(--zst-accent-deep);
	font-family: var(--zst-font-display);
	font-size: 1.16rem;
	font-style: italic;
	color: var(--zst-ink-soft);
}

.zst-split {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.zst-aside {
	background: var(--zst-surface);
	border: 1px solid var(--zst-line);
	padding: 1.6rem;
	position: sticky;
	top: 96px;
}
.zst-aside__h { font-size: 1.05rem; margin-bottom: .8rem; }
.zst-aside__h + * { margin-top: 0; }
.zst-aside__phone { font-family: var(--zst-font-display); font-size: 1.5rem; font-weight: 600; text-decoration: none; }
.zst-aside__store { display: flex; flex-direction: column; gap: .1rem; font-size: .9rem; margin-bottom: 1.1rem; }
.zst-aside__store span { color: var(--zst-ink-soft); }

.zst-steps { padding-inline-start: 1.2rem; margin: 0 0 1.4rem; font-size: .93rem; color: var(--zst-ink-soft); }
.zst-steps li { margin-bottom: .5rem; }

/* Forms */
.zst-form { max-width: 42rem; margin-top: 1.6rem; }
.zst-fieldset { border: 0; border-top: 1px solid var(--zst-line); padding: 1.6rem 0 0; margin: 0 0 1.8rem; }
.zst-legend {
	font-family: var(--zst-font-display);
	font-size: 1.2rem;
	font-weight: 600;
	padding: 0 .7rem 0 0;
}
.zst-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.zst-form__row--3 { grid-template-columns: repeat(3, 1fr); }
.zst-form__field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; min-width: 0; }
.zst-form__label {
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
}
.zst-req { color: var(--zst-danger); }
.zst-form__hint { font-size: .88rem; color: var(--zst-ink-soft); margin-top: -.4rem; }
.zst-form__count { font-size: .78rem; color: var(--zst-ink-faint); }

.zst-form input[type="text"],
.zst-form input[type="email"],
.zst-form input[type="tel"],
.zst-form input[type="search"],
.zst-form select,
.zst-form textarea {
	font: inherit;
	font-size: .96rem;
	width: 100%;
	padding: .68em .8em;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	background: var(--zst-surface);
	color: var(--zst-ink);
}
.zst-form textarea { resize: vertical; }
.zst-form input:focus, .zst-form select:focus, .zst-form textarea:focus {
	border-color: var(--zst-accent-deep);
}
.zst-form input[type="file"] { border: 1px dashed var(--zst-line); padding: .7em; background: var(--zst-paper); }

.zst-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--zst-ink-soft); margin-bottom: 1.4rem; }
.zst-check input { margin-top: .25rem; flex: 0 0 auto; }

.zst-form__msg { margin-top: .9rem; font-size: .92rem; min-height: 1.4em; }
.zst-form__msg.is-ok { color: var(--zst-trust); }
.zst-form__msg.is-err { color: var(--zst-danger); }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.zst-hp { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ */
/* Shop page                                                          */
/* ------------------------------------------------------------------ */
.zst-shop__intro { padding-block: 1.4rem; }
.zst-shop__foot { padding-block: 2.5rem; border-top: 1px solid var(--zst-line); margin-top: 2rem; }
.zst-notice { padding: 2rem 0; color: var(--zst-ink-soft); }

/* ------------------------------------------------------------------ */
/* Blog fallback                                                      */
/* ------------------------------------------------------------------ */
.zst-postlist { display: grid; gap: 0; }
.zst-postcard { border-top: 1px solid var(--zst-line); padding-block: 1.6rem; }
.zst-postcard:last-child { border-bottom: 1px solid var(--zst-line); }
.zst-postcard__title { font-size: 1.4rem; margin-bottom: .3rem; }
.zst-postcard__title a { color: var(--zst-ink); text-decoration: none; }
.zst-postcard__title a:hover { color: var(--zst-accent-deep); }
.zst-postcard__meta { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--zst-ink-faint); margin-bottom: .6rem; }
.zst-postcard__excerpt { color: var(--zst-ink-soft); max-width: 70ch; }

.zst-pagination { margin-top: 2.5rem; font-size: .9rem; }
.zst-pagination .page-numbers {
	display: inline-block;
	padding: .4em .75em;
	border: 1px solid var(--zst-line);
	margin-inline-end: .3rem;
	text-decoration: none;
	color: var(--zst-ink);
}
.zst-pagination .current { background: var(--zst-ink); border-color: var(--zst-ink); color: var(--zst-paper); }

.zst-404 { text-align: start; max-width: 46rem; }
.zst-404__p { font-size: 1.1rem; color: var(--zst-ink-soft); max-width: 52ch; }
.zst-404__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.8rem; }

.zst-searchform { display: flex; gap: .6rem; }
.zst-searchform input {
	font: inherit;
	flex: 1;
	padding: .6em .8em;
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	background: var(--zst-surface);
}

.zst-empty { color: var(--zst-ink-soft); }

/* ------------------------------------------------------------------ */
/* Plugin SEO footer block (.zs-seofooter — required by contract §3)  */
/* ------------------------------------------------------------------ */
.zs-seofooter {
	padding-block: 2.5rem;
	border-top: 1px solid var(--zst-line);
	font-size: .88rem;
}
.zs-seofooter a { color: var(--zst-ink-soft); text-decoration: none; }
.zs-seofooter a:hover { color: var(--zst-accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.zst-footer {
	background: var(--zst-brand);
	color: var(--zst-on-dark);
	padding-top: clamp(2.5rem, 5vw, 4rem);
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
.zst-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}
.zst-footer__name {
	font-family: var(--zst-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -.02em;
}
.zst-footer__logo { margin-bottom: .8rem; }
.zst-footer__about { margin-top: .9rem; font-size: .92rem; color: var(--zst-on-dark-soft); max-width: 40ch; }
.zst-footer__social { display: flex; gap: 1rem; margin-top: 1.1rem; font-size: .86rem; }
.zst-footer__social a { color: var(--zst-on-dark-soft); text-decoration: none; }
.zst-footer__social a:hover { color: var(--zst-on-dark); text-decoration: underline; text-underline-offset: 3px; }

.zst-footer__h {
	font-family: var(--zst-font-body);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--zst-on-dark-soft);
	margin-bottom: 1rem;
}
.zst-footer__links { display: flex; flex-direction: column; gap: .55rem; }
.zst-footer__links a { font-size: .92rem; color: var(--zst-on-dark); text-decoration: none; }
.zst-footer__links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.zst-footer__links li { list-style: none; }
.zst-footer__links ul { margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }

.zst-footer__legal {
	border-top: 1px solid color-mix(in srgb, var(--zst-on-dark) 22%, transparent);
	padding-block: 1.4rem;
	font-size: .82rem;
	color: var(--zst-on-dark-soft);
}

/* ------------------------------------------------------------------ */
/* Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 1180px) {
	.zst-hsearch { max-width: 240px; }
	.zst-menu { gap: 1rem; }
	.zst-herosearch__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.zst-herosearch__go { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
	.zst-navtoggle { display: block; order: 3; }
	.zst-hsearch { order: 4; max-width: none; flex-basis: 100%; }
	.zst-header__in { flex-wrap: wrap; padding-block: .9rem; min-height: 0; }
	.zst-header__brand { margin-inline-end: auto; }

	.zst-nav {
		display: none;
		position: fixed;
		top: var(--zst-nav-top, 76px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--zst-paper);
		border-top: 1px solid var(--zst-line);
		border-bottom: 1px solid var(--zst-line);
		padding: 1rem var(--zst-gutter) 1.6rem;
		overflow-y: auto;
		z-index: 55;
	}
	.zst-nav.is-open { display: flex; }
	.zst-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.zst-menu a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--zst-line-soft); }
	.zst-menu a:hover { border-bottom-color: var(--zst-line-soft); }
	.zst-nav__cta { flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1.2rem; }
	.zst-header__cta { justify-content: center; }

	.zst-hero__in { grid-template-columns: 1fr; align-items: start; }
	.zst-hero__lede { max-width: none; }
	.zst-hero__stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

	.zst-split { grid-template-columns: 1fr; }
	.zst-aside { position: static; }

	.zst-value { border-inline-start: 0; border-top: 1px solid var(--zst-line); padding: 1.4rem 0 0; }
	.zst-value:first-child { border-top: 0; padding-top: 0; }

	.zst-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	:root { --zst-gutter: 20px; }
	.zst-herosearch__row { grid-template-columns: 1fr; }
	.zst-form__row, .zst-form__row--3 { grid-template-columns: 1fr; }
	.zst-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.zst-financeband__in { flex-direction: column; align-items: flex-start; }
	.zst-section__head { border-bottom-width: 1px; }
}

/* ------------------------------------------------------------------ */
/* Block content                                                      */
/*                                                                    */
/* functions.php declares align-wide, so the theme owes wide and full */
/* alignment real CSS.                                                */
/*                                                                    */
/* Geometry: .zst-prose is a fixed measure sitting at the START edge of */
/* .zst-wrap, not centred in it. A `left:50%; translateX(-50%)` breakout*/
/* therefore centres on the *column*, not the page, and spills off the */
/* start edge — which scrollWidth does not report, so it fails silently*/
/* Instead, wide content simply starts where the column starts and     */
/* runs to the wrap's far edge, and full content backs out to the      */
/* viewport with a guarded calc that can never go positive.            */
/* ------------------------------------------------------------------ */
.zst-prose > .alignwide {
	/* The wrap's inner width, but never wider than the viewport allows. */
	width: min(
		calc(var(--zst-maxw) - var(--zst-gutter) * 2),
		calc(100vw - var(--zst-gutter) * 2)
	);
	max-width: none;
	margin-inline: 0;
}

.zst-prose > .alignfull {
	width: 100vw;
	max-width: 100vw;
	/* Distance from the column's start edge back to the viewport edge:
	   the wrap's own gutter, plus half of whatever the wrap is centred by. */
	margin-inline-start: calc(-1 * (var(--zst-gutter) + max(0px, (100vw - var(--zst-maxw)) / 2)));
	margin-inline-end: 0;
}

.zst-prose > .alignleft {
	float: inline-start;
	margin-inline-end: 1.6rem;
	margin-block: .4rem 1rem;
	max-width: 45%;
}
.zst-prose > .alignright {
	float: inline-end;
	margin-inline-start: 1.6rem;
	margin-block: .4rem 1rem;
	max-width: 45%;
}
.zst-prose > .aligncenter { margin-inline: auto; }
.zst-prose::after { content: ""; display: block; clear: both; }

.zst-prose figure { margin: 2rem 0; }
.zst-prose figcaption {
	margin-top: .6rem;
	font-size: .84rem;
	color: var(--zst-ink-faint);
}
.zst-prose img { border-radius: var(--zst-radius); }

.zst-prose .wp-block-pullquote,
.zst-prose .wp-block-quote {
	border-inline-start: 2px solid var(--zst-accent-deep);
	padding-inline-start: 1.4rem;
	font-family: var(--zst-font-display);
	font-style: italic;
	color: var(--zst-ink-soft);
}
.zst-prose .wp-block-separator {
	border: 0;
	border-top: 1px solid var(--zst-line);
	margin-block: 2.5rem;
}
.zst-prose .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: .94rem;
}
.zst-prose .wp-block-table th,
.zst-prose .wp-block-table td {
	border-bottom: 1px solid var(--zst-line);
	padding: .7em .8em;
	text-align: start;
}
.zst-prose .wp-block-table th { font-weight: 600; }
/* Wide tables scroll inside their own box rather than pushing the page. */
.zst-prose .wp-block-table { overflow-x: auto; }

.zst-prose .wp-block-button__link {
	background: var(--zst-brand);
	color: var(--zst-brand-ink);
	border-radius: var(--zst-radius);
	font-weight: 600;
	padding: .78em 1.35em;
}
.zst-prose .wp-block-code,
.zst-prose pre {
	background: var(--zst-surface-2);
	border: 1px solid var(--zst-line);
	border-radius: var(--zst-radius);
	padding: 1rem 1.2rem;
	overflow-x: auto;
	font-size: .88rem;
}

/* ------------------------------------------------------------------ */
/* Single post, post navigation, comments                             */
/* ------------------------------------------------------------------ */
.zst-single__meta {
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
	margin: .6rem 0 0;
}
.zst-single__media { margin: 0 0 2rem; }
.zst-single__media img { width: 100%; border-radius: var(--zst-radius); }
.zst-single__tags { margin-top: 2rem; font-size: .86rem; color: var(--zst-ink-faint); }

.zst-postnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--zst-line);
	border: 1px solid var(--zst-line);
	margin-top: 3rem;
}
.zst-postnav__link {
	background: var(--zst-surface);
	padding: 1.2rem 1.4rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: .3rem;
}
.zst-postnav__link span {
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--zst-ink-faint);
}
.zst-postnav__link strong {
	font-family: var(--zst-font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--zst-ink);
}
.zst-postnav__link:hover strong { color: var(--zst-accent-deep); }
.zst-postnav__link--next { text-align: end; align-items: flex-end; }

.zst-comments { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--zst-ink); }
.zst-comments__title { font-size: 1.4rem; margin-bottom: 1.4rem; }
.zst-comments__list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.zst-comments__list .comment-body { border-top: 1px solid var(--zst-line); padding: 1.2rem 0; }
.zst-comments__list .children { list-style: none; margin: 0; padding-inline-start: 1.6rem; }
.zst-comments__list .fn { font-weight: 600; font-style: normal; }
.zst-comments__list .comment-metadata { font-size: .78rem; color: var(--zst-ink-faint); }
.zst-comments__closed { color: var(--zst-ink-soft); font-size: .9rem; }
.zst-commentform .comment-form-cookies-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; }

.zst-searchaside {
	margin-top: 3rem;
	padding: 1.6rem;
	background: var(--zst-surface);
	border: 1px solid var(--zst-line);
	max-width: 42rem;
}
.zst-searchaside p { color: var(--zst-ink-soft); font-size: .94rem; }

.zst-linkpages { margin-top: 1.5rem; font-size: .9rem; }

/* ------------------------------------------------------------------ */
/* Print                                                              */
/*                                                                    */
/* Shoppers print vehicle detail pages to take to the bank or their    */
/* mechanic, so the VDP is what this is really for: drop the chrome,   */
/* keep the specs, and show link targets.                             */
/* ------------------------------------------------------------------ */
@media print {
	.zst-topbar, .zst-header, .zst-chips, .zst-nav, .zst-navtoggle, .zst-hsearch,
	.zst-footer, .zs-seofooter, .zst-skip, .zst-financeband,
	.zs-rail__actions, .zs-mprice__actions, .zs-lead, .zs-subscribe,
	.zs-compare-tray, .zs-viewed, .zs-reviews, .zs-share, .zs-fav,
	.zs-gallery__thumbs, .zs-showmore, .zs-toolbar {
		display: none !important;
	}
	body { background: #fff; color: #000; font-size: 11pt; }
	.zst-wrap, .zs-wrap { max-width: none; padding-inline: 0; }
	a { text-decoration: underline; }
	.zst-prose a[href^="http"]::after,
	.zs-detail a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: .82em;
		color: #444;
		word-break: break-all;
	}
	.zs-card, .zs-specs--boxed, .zst-aside { break-inside: avoid; border-color: #999; }
	h1, h2, h3 { break-after: avoid; }
	img { max-width: 100% !important; }
}

/* ================================================================== */
/* FLUX — form overrides                                              */
/* ================================================================== */

/*
 * Flux's own ladder. Not core tokens -- dynamic-css does not emit these and no
 * plugin component reads them -- so :root is the right home, which it would not
 * be for a --zs-* token.
 */
:root {
	--flux-void:     #070510;
	--flux-panel:    #100C1F;
	--flux-panel-2:  #251C42;
	--flux-cyan:     #29E7FF;
	--flux-cyan-hi:  #7FF2FF;
	--flux-mag:      #FF3DBE;
	--flux-mag-hi:   #FF7BD3;
	--flux-hair:     rgba(255,255,255,.10);
	--flux-glow-c:   rgba(41,231,255,.34);
	--flux-glow-m:   rgba(255,61,190,.30);
	--flux-ink:      #F2EEFF;
	--flux-ink-soft: #B9B0D4;
	--flux-ink-faint:#9A90B8;
}

/* ---- Ground -------------------------------------------------------- */
/*
 * The page itself is the dark band. Every "on-dark" rule the shared stylesheet
 * carries is therefore the normal case here, not the exception.
 */
body {
	background: var(--flux-void);
	color: var(--flux-ink);
}
::selection { background: var(--flux-mag); color: #0B0212; }

hr { border-top-color: var(--flux-hair); }

/* ---- Shared devices ------------------------------------------------- */

/* A rule that fades from cyan to magenta. Decorative only -- no text sits on
   it, which is the rule that keeps gradients safe on a dark theme. */
.flux-rule {
	height: 1px;
	border: 0;
	margin: 0 0 26px;
	background: linear-gradient(90deg, var(--flux-cyan) 0%, var(--flux-mag) 42%, transparent 100%);
	opacity: .85;
}

.flux-label {
	display: block;
	font-family: var(--zst-font-display);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--flux-cyan);
	margin: 0 0 8px;
}

/* ---- Chrome --------------------------------------------------------- */

.zst-topbar {
	background: #04030B;
	color: var(--flux-ink-soft);
	border-bottom: 1px solid var(--flux-hair);
	font-size: 12.5px;
}
.zst-topbar a { color: var(--flux-ink-soft); }
.zst-topbar a:hover { color: var(--flux-cyan); }

.zst-header {
	background: rgba(7,5,16,.86);
	border-bottom: 1px solid var(--flux-hair);
	color: var(--flux-ink);
	backdrop-filter: blur(10px);
}
.zst-header__name {
	font-family: var(--zst-font-display);
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--flux-ink);
}
.zst-menu a {
	color: var(--flux-ink-soft);
	font-family: var(--zst-font-display);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .05em;
}
.zst-menu a:hover, .zst-menu .current-menu-item > a { color: var(--flux-cyan); }
.zst-header__phone { color: var(--flux-ink); }
.zst-header__phone:hover { color: var(--flux-cyan); }
.zst-navtoggle { color: var(--flux-ink); border-color: var(--flux-hair); }
.zst-navtoggle__bars span { background: var(--flux-ink); }
.zst-header :focus-visible, .zst-topbar :focus-visible { outline-color: var(--flux-cyan); }

/* ---- Buttons -------------------------------------------------------- */
.zst-btn {
	font-family: var(--zst-font-display);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: .04em;
	border-radius: 9px;
	min-height: 48px;
	transition: background-color .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}
.zst-btn--primary {
	background: var(--flux-cyan);
	color: #04020A;
	border: 0;
	box-shadow: 0 0 26px var(--flux-glow-c);
}
.zst-btn--primary:hover { background: var(--flux-cyan-hi); color: #04020A; box-shadow: 0 0 40px var(--flux-glow-c); }
.zst-btn--ghost {
	background: transparent;
	border: 1px solid rgba(255,255,255,.22);
	color: var(--flux-ink);
}
.zst-btn--ghost:hover { border-color: var(--flux-mag); color: var(--flux-mag); background: transparent; }
.zst-btn--invert { background: var(--flux-ink); color: var(--flux-void); border: 0; }

/* ---- The hero ------------------------------------------------------- */

.flux-hero {
	position: relative;
	overflow: hidden;
	background: var(--flux-void);
	padding: clamp(58px, 8vw, 108px) 0 clamp(44px, 6vw, 78px);
	isolation: isolate;
}

/*
 * The aurora: two soft radial washes, cyan from the top-left and magenta from
 * the lower-right. They are BEHIND the content (z-index -1 inside an isolated
 * stacking context) and are deliberately shallow -- the brightest point of
 * either wash is still dark enough that white text over it clears AA, which is
 * checked rather than assumed.
 */
.flux-hero::before {
	content: '';
	position: absolute;
	inset: -20% -10% auto -25%;
	height: 130%;
	z-index: -1;
	background:
		radial-gradient(46% 52% at 18% 22%, rgba(41,231,255,.20) 0%, transparent 68%),
		radial-gradient(44% 50% at 82% 78%, rgba(255,61,190,.17) 0%, transparent 66%);
	pointer-events: none;
}

/*
 * The featured vehicle, if inventory supplied one. It is a background image on
 * its own layer with a heavy scrim over it, so the photo reads as atmosphere
 * and the headline keeps a flat dark ground underneath.
 */
.flux-hero__photo {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-position: center right;
	background-size: cover;
	opacity: .38;
	pointer-events: none;
}
.flux-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(90deg, var(--flux-void) 0%, rgba(7,5,16,.94) 42%, rgba(7,5,16,.55) 100%),
		linear-gradient(0deg, var(--flux-void) 0%, transparent 40%);
}

.flux-hero__in { position: relative; z-index: 1; }

.flux-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--zst-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--flux-cyan);
	margin: 0 0 20px;
	padding: 7px 14px 7px 12px;
	border: 1px solid rgba(41,231,255,.34);
	border-radius: 999px;
	background: rgba(41,231,255,.07);
}
.flux-hero__eyebrow::before {
	content: '';
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--flux-cyan);
	box-shadow: 0 0 10px var(--flux-cyan);
	flex: 0 0 7px;
}

.flux-hero__h1 {
	font-family: var(--zst-font-display);
	font-weight: 700;
	/* Capped in rem. A ch measure on a wrapper resolves against the wrapper's
	   own font-size and collapses a hero to a ~190px column. */
	font-size: clamp(38px, 6.6vw, 92px);
	line-height: .98;
	letter-spacing: -.022em;
	margin: 0;
	max-width: 17em;
	text-wrap: balance;
	color: var(--flux-ink);
}
/*
 * The highlighted word. A gradient CLIPPED TO THE GLYPHS, not a wash behind
 * them -- the text is the gradient, so there is no varying ground under it. The
 * fallback colour matters: if background-clip is unsupported the word simply
 * renders cyan at 13.45:1 rather than disappearing.
 */
.flux-hero__h1 em {
	font-style: normal;
	color: var(--flux-cyan);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
	.flux-hero__h1 em {
		background: linear-gradient(96deg, var(--flux-cyan) 12%, var(--flux-mag) 88%);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
	}
}

.flux-hero__sub {
	color: var(--flux-ink-soft);
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.6;
	max-width: 44rem;
	margin: 22px 0 0;
}
.flux-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 0; }

/* ---- Live figures --------------------------------------------------- */
.flux-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 40px 0 0;
}
.flux-stat {
	flex: 1 1 170px;
	min-width: 0;
	background: rgba(255,255,255,.035);
	border: 1px solid var(--flux-hair);
	border-radius: 14px;
	padding: 16px 18px;
}
.flux-stat__v {
	display: block;
	font-family: var(--zst-font-display);
	font-weight: 700;
	font-size: clamp(22px, 2.5vw, 32px);
	line-height: 1.05;
	color: var(--flux-cyan);
	overflow-wrap: anywhere;
}
.flux-stat__l {
	display: block;
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--flux-ink-faint);
	margin: 8px 0 0;
}

/* ---- Search panel ---------------------------------------------------- */
.flux-searchband { padding: 0 0 clamp(30px, 4vw, 52px); background: var(--flux-void); }
.flux-searchband__panel {
	background: var(--flux-panel);
	border: 1px solid var(--flux-hair);
	border-radius: 16px;
	padding: clamp(20px, 2.6vw, 30px);
	box-shadow: 0 0 60px rgba(41,231,255,.07);
}

/* ---- Sections -------------------------------------------------------- */
.flux-sec { padding-block: clamp(46px, 6vw, 82px); }
.flux-sec--tint { background: #0A0716; }

.flux-sec__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; flex-wrap: wrap; margin: 0 0 24px;
}
.flux-sec__h2 {
	font-family: var(--zst-font-display);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.02;
	letter-spacing: -.02em;
	margin: 0;
	color: var(--flux-ink);
}
.flux-sec__more {
	font-family: var(--zst-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--flux-cyan);
	text-decoration: none;
	border-bottom: 1px solid rgba(41,231,255,.4);
	padding-bottom: 2px;
}
.flux-sec__more:hover { border-bottom-color: var(--flux-cyan); }

/* ---- Category tiles --------------------------------------------------- */
.flux-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 12px; }
.flux-tile {
	display: block;
	position: relative;
	background: var(--flux-panel);
	border: 1px solid var(--flux-hair);
	border-radius: 14px;
	padding: 22px 18px;
	text-decoration: none;
	color: var(--flux-ink);
	overflow: hidden;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.flux-tile:hover {
	transform: translateY(-3px);
	border-color: var(--flux-cyan);
	box-shadow: 0 12px 40px var(--flux-glow-c);
}
.flux-tile__t {
	font-family: var(--zst-font-display);
	font-weight: 600;
	font-size: 17px;
	display: block;
}
.flux-tile__n { display: block; font-size: 11.5px; letter-spacing: .12em; color: var(--flux-ink-faint); margin: 0 0 9px; }

/* ---- Steps ------------------------------------------------------------ */
.flux-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); gap: 14px; }
.flux-step {
	background: var(--flux-panel);
	border: 1px solid var(--flux-hair);
	border-radius: 14px;
	padding: 24px;
}
.flux-step__n {
	display: inline-block;
	font-family: var(--zst-font-display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
	color: var(--flux-cyan);
	background: rgba(41,231,255,.10);
	border-radius: 6px;
	padding: 4px 9px;
	margin: 0 0 12px;
}
.flux-step__t { font-family: var(--zst-font-display); font-weight: 600; font-size: 18px; margin: 0 0 8px; color: var(--flux-ink); }
.flux-step__p { color: var(--flux-ink-soft); font-size: 15px; margin: 0; }

/* ---- Finance band ------------------------------------------------------ */
.zst-financeband {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #0C0A22 0%, #140A26 52%, #1A0B22 100%);
	border-block: 1px solid var(--flux-hair);
}
.zst-financeband::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(52% 120% at 88% 50%, rgba(255,61,190,.18) 0%, transparent 70%);
}
.zst-financeband > * { position: relative; z-index: 1; }

/* ---- Trust, stores, values --------------------------------------------- */
.zst-trust { background: var(--flux-panel); border-block: 1px solid var(--flux-hair); }
.zst-store { background: var(--flux-panel); border: 1px solid var(--flux-hair); border-radius: 14px; }
.zst-value__t { font-family: var(--zst-font-display); font-weight: 600; color: var(--flux-ink); }
.zst-entity__text { color: var(--flux-ink-soft); }

/* ---- Chips -------------------------------------------------------------- */
.zst-chips a, .zst-chip {
	border-radius: 999px;
	font-size: 13px;
	background: var(--flux-panel);
	border-color: var(--flux-hair);
	color: var(--flux-ink-soft);
}
.zst-chips a:hover { color: var(--flux-cyan); border-color: var(--flux-cyan); }

/* ---- Prose, pages, forms ------------------------------------------------ */
.zst-prose { color: var(--flux-ink-soft); }
.zst-prose h1, .zst-prose h2, .zst-prose h3, .zst-prose h4 { color: var(--flux-ink); }
.zst-prose a { color: var(--flux-cyan); }
.zst-page { background: var(--flux-void); }
.zst-form input, .zst-form select, .zst-form textarea {
	background: var(--flux-panel);
	color: var(--flux-ink);
	border-color: var(--flux-hair);
	caret-color: var(--flux-cyan);
}
.zst-card, .zst-panel { background: var(--flux-panel); border-color: var(--flux-hair); }

/* ---- Breadcrumbs -------------------------------------------------------- */
.zst-crumbs { color: var(--flux-ink-faint); }
.zst-crumbs a { color: var(--flux-ink-soft); }
.zst-crumbs a:hover { color: var(--flux-cyan); }

/* ---- Footer ------------------------------------------------------------- */
.zst-footer {
	background: #04030B;
	color: var(--flux-ink-soft);
	border-top: 1px solid var(--flux-hair);
}
.zst-footer__name { font-family: var(--zst-font-display); font-weight: 700; color: var(--flux-ink); }
.zst-footer h2, .zst-footer h3, .zst-footer__heading, .zst-footer__h {
	color: var(--flux-ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.zst-footer__about, .zst-footer__legal { color: var(--flux-ink-soft); }
.zst-footer a, .zst-footer__links a, .zst-footer__social a, .zst-footer__legal a {
	color: var(--flux-ink-soft);
	text-decoration: none;
}
.zst-footer a:hover, .zst-footer__links a:hover,
.zst-footer__social a:hover, .zst-footer__legal a:hover { color: var(--flux-cyan); }
.zst-footer__legal { border-top-color: var(--flux-hair); }
.zst-footer :focus-visible { outline-color: var(--flux-cyan); }

/* ---- Focus -------------------------------------------------------------- */
/* The whole page is a dark band, so the ring is cyan everywhere rather than
   flipping per-section. 13.45:1 on the ground. */
:focus-visible { outline-color: var(--flux-cyan); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
	.flux-stat { flex: 1 1 46%; }
}
@media (max-width: 600px) {
	.flux-hero__actions .zst-btn { flex: 1 1 100%; justify-content: center; }
	.flux-stat { flex: 1 1 100%; }
	/* The hero photo is a right-side atmosphere on a wide screen and just noise
	   behind the headline on a phone. */
	.flux-hero__photo { opacity: .2; }
}

@media (prefers-reduced-motion: reduce) {
	.flux-tile, .zst-btn { transition: none; }
}

/* ---- Print --------------------------------------------------------------- */
@media print {
	body, .zst-header, .flux-hero, .zst-footer, .zst-financeband,
	.flux-sec--tint, .zst-page { background: #fff !important; color: #000 !important; }
	.flux-hero::before, .flux-hero__photo, .flux-hero__scrim,
	.zst-financeband::after { display: none !important; }
	.flux-hero__h1, .flux-hero__h1 em, .flux-sec__h2, .zst-footer__name,
	.zst-header__name, .flux-stat__v, .flux-stat__l, .zst-footer a, .zst-prose {
		color: #000 !important;
		-webkit-text-fill-color: #000 !important;
		background: none !important;
	}
}
