/* ==========================================================================
   Markital theme. Design direction: "Markital Growth Signal"
   ========================================================================== */

@font-face {
	font-family: "Unbounded";
	src: url("../fonts/unbounded-var.woff2") format("woff2");
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-var.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg: #0A0F0B;
	--surface: #111913;
	--surface-2: #17221A;
	--line: #23312A;
	--ink: #F2F6F1;
	--muted: #9AA89E;
	--accent: #7CE02A;
	--accent-deep: #1E9E2F;
	--accent-ink: #0A0F0B;

	--font-display: "Unbounded", "Arial Black", sans-serif;
	--font-body: "Manrope", "Segoe UI", sans-serif;

	--r-sm: 8px;
	--r-md: 16px;
	--r-pill: 999px;

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 40px);
	--header-h: 84px;
	--ease: cubic-bezier(.22, .8, .24, 1);
}

/* Reset (zero specificity so components always win) */
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(html) { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote) { margin: 0; }
:where(ul, ol) { padding: 0; list-style: none; }
:where(img, svg) { display: block; max-width: 100%; }
:where(button) { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:where(a) { color: inherit; text-decoration: none; }

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	left: 16px; top: -60px;
	z-index: 100;
	padding: 10px 16px;
	background: var(--accent);
	color: var(--accent-ink);
	border-radius: var(--r-sm);
	font-weight: 700;
}
.skip-link:focus { top: 16px; }

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

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 0 24px;
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .01em;
	white-space: nowrap;
	transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn svg {
	width: 18px; height: 18px;
	fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
	transition: transform .25s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn--primary {
	background: var(--accent);
	color: var(--accent-ink);
	box-shadow: 0 8px 28px -10px rgba(124, 224, 42, .55);
}
.btn--primary:hover { background: #8FEA45; box-shadow: 0 12px 34px -10px rgba(124, 224, 42, .7); }
.btn--ghost {
	color: var(--ink);
	border: 1px solid #3A4B40;
	background: rgba(17, 25, 19, .5);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 16px; }

.icon-btn {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	color: var(--ink);
	transition: border-color .2s, color .2s, background-color .2s;
}
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	height: var(--header-h);
	transition: background-color .35s, border-color .35s, height .35s var(--ease), backdrop-filter .35s;
	border-bottom: 1px solid transparent;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled {
	--header-h: 70px;
	background: rgba(10, 15, 11, .78);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	border-color: rgba(35, 49, 42, .9);
}
.site-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.brand__mark { width: 48px; height: auto; transition: transform .4s var(--ease); }
.brand__word { width: 148px; height: auto; }
.brand:hover .brand__mark { transform: translateY(-2px) rotate(-3deg); }

.nav { margin-left: auto; }
.nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 42px;
	padding: 0 16px;
	border-radius: var(--r-pill);
	font-size: 15px;
	font-weight: 600;
	color: #C9D3CC;
	transition: color .2s, background-color .2s;
}
.nav__list a::after {
	content: "";
	position: absolute;
	left: 16px; right: 16px; bottom: 7px;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after,
.nav__list .current-menu-item > a::after { transform: scaleX(1); }
.nav__list .current-menu-item > a { color: var(--ink); }
.nav__cta-mobile { display: none; }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: rgba(17, 25, 19, .6);
	place-items: center;
}
.nav-toggle__bars { display: grid; gap: 6px; width: 20px; }
.nav-toggle__bars span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform .3s var(--ease), width .3s var(--ease);
}
.nav-toggle__bars span:last-child { width: 13px; justify-self: end; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:last-child { width: 20px; transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	padding-top: calc(var(--header-h) + 24px);
	overflow: hidden;
	isolation: isolate;
}
.hero__glow {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(60% 55% at 78% 38%, rgba(124, 224, 42, .16), transparent 70%),
		radial-gradient(40% 45% at 8% 100%, rgba(30, 158, 47, .18), transparent 70%),
		linear-gradient(180deg, #0A0F0B 0%, #0C130E 100%);
}
.hero__glow::after {
	content: "";
	position: absolute;
	right: -12%;
	top: -30%;
	width: 70vw;
	height: 70vw;
	max-width: 980px;
	max-height: 980px;
	border-radius: 50%;
	border: 1px solid rgba(124, 224, 42, .08);
	box-shadow: inset 0 0 0 90px rgba(124, 224, 42, .015), inset 0 0 0 180px rgba(124, 224, 42, .012);
}

.hero__grid {
	flex: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
	padding-block: clamp(24px, 4vh, 56px);
}

.hero__slides { display: grid; }
.hero__slide {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s var(--ease), visibility 0s linear .6s;
}
.hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity .6s var(--ease), visibility 0s;
}
.hero__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(2rem, 3.05vw, 2.85rem);
	line-height: 1.12;
	letter-spacing: -.03em;
	max-width: 22ch;
	text-wrap: balance;
	padding-bottom: .08em;
}
.hero__title em {
	font-style: normal;
	color: var(--accent);
	background: linear-gradient(95deg, #A8F060 0%, var(--accent) 45%, #3FBF33 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero__text {
	margin-top: 22px;
	max-width: 46ch;
	font-size: clamp(1rem, 1.15vw, 1.15rem);
	line-height: 1.65;
	color: var(--muted);
}

/* Slide text rise */
.js .hero__slide .hero__title,
.js .hero__slide .hero__text {
	transform: translateY(18px);
	transition: transform .8s var(--ease);
}
.js .hero__slide.is-active .hero__title { transform: none; }
.js .hero__slide.is-active .hero__text { transform: none; transition-delay: .08s; }

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.hero__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: clamp(32px, 6vh, 56px);
	max-width: 560px;
}
.hero__tabs { display: flex; gap: 18px; flex: 1; }
.hero__tab {
	flex: 1;
	text-align: left;
	padding: 6px 0;
	color: var(--muted);
	transition: color .2s;
}
.hero__tab-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 10px;
}
.hero__tab-bar {
	display: block;
	height: 3px;
	border-radius: 3px;
	background: var(--line);
	overflow: hidden;
}
.hero__tab-bar span {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
}
.hero__tab:hover,
.hero__tab.is-active { color: var(--ink); }
.hero__tab.is-active .hero__tab-bar span { animation: mk-progress var(--slide-ms, 6500ms) linear forwards; }
.hero__tab.is-done .hero__tab-bar span { transform: scaleX(1); }
[data-slider].is-paused .hero__tab.is-active .hero__tab-bar span { animation-play-state: paused; }
.hero__arrows { display: flex; gap: 10px; }

@keyframes mk-progress { to { transform: scaleX(1); } }

/* ---------- Journey visual: Google > Social > AI > Everywhere ---------- */
.hero__visual { position: relative; }
.journey__caption {
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	margin: 0 0 6px 4%;
}
.journey {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin-left: auto;
	aspect-ratio: 1;
}
.journey__svg { width: 100%; height: 100%; overflow: visible; }

.journey__bar {
	transform-box: fill-box;
	transform-origin: bottom;
	opacity: .9;
}
.journey__track { fill: none; stroke: var(--line); stroke-width: 2; stroke-dasharray: 2 8; stroke-linecap: round; }
.journey__glow { fill: none; stroke: var(--accent); stroke-width: 10; opacity: .28; }
.journey__line { fill: none; stroke: url(#mk-line); stroke-width: 6; stroke-linecap: round; }
.journey__head path { fill: var(--accent); }
.journey__spark { fill: #EFFFD9; filter: drop-shadow(0 0 6px rgba(124, 224, 42, .95)); }
.journey__ring { fill: rgba(124, 224, 42, .1); stroke: rgba(124, 224, 42, .5); stroke-width: 1.5; }
.journey__dot { fill: var(--bg); stroke: var(--accent); stroke-width: 3; }
.journey__node { transform-box: fill-box; transform-origin: center; }

.journey__list { position: absolute; inset: 0; pointer-events: none; }
.chip {
	position: absolute;
	left: var(--x);
	top: var(--y);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px 10px 10px;
	border-radius: var(--r-md);
	background: rgba(17, 25, 19, .82);
	border: 1px solid var(--line);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	white-space: nowrap;
	pointer-events: auto;
	transition: border-color .3s, transform .3s var(--ease);
}
.chip:hover { border-color: rgba(124, 224, 42, .6); }
.chip__icon {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--surface-2);
	color: var(--accent);
	flex-shrink: 0;
}
.chip__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chip__body { display: grid; line-height: 1.2; }
.chip strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.chip small { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Chip placement relative to each node: alternate sides of the path */
.chip--google     { transform: translate(34px, 8px); }
.chip--social     { transform: translate(30px, 10px); }
.chip--ai         { transform: translate(calc(-100% - 30px), -110%); }
.chip--everywhere { transform: translate(calc(-100% - 30px), -115%); }
.chip--everywhere {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--accent-ink);
	box-shadow: 0 18px 40px -16px rgba(124, 224, 42, .6);
}
.chip--everywhere .chip__icon { background: rgba(10, 15, 11, .14); color: var(--accent-ink); }
.chip--everywhere small { color: rgba(10, 15, 11, .72); }

/* Journey entrance (JS adds .is-in). Without JS everything is visible. */
.js [data-journey] .journey__line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js [data-journey] .journey__glow,
.js [data-journey] .journey__head,
.js [data-journey] .journey__spark { opacity: 0; }
.js [data-journey] .journey__bar { transform: scaleY(0); }
.js [data-journey] .journey__node { opacity: 0; transform: scale(.4); }
.js [data-journey] .chip { opacity: 0; }

.js [data-journey].is-in .journey__line { stroke-dashoffset: 0; transition: stroke-dashoffset 1.8s var(--ease) .2s; }
.js [data-journey].is-in .journey__glow { opacity: .28; transition: opacity 1s 1.2s; }
.js [data-journey].is-in .journey__head { opacity: 1; transition: opacity .4s 1.7s; }
.js [data-journey].is-in .journey__spark { opacity: 1; transition: opacity .6s 2.2s; }
.js [data-journey].is-in .journey__bar { transform: scaleY(1); transition: transform 1.1s var(--ease) calc(.35s + var(--i) * .38s); }
.js [data-journey].is-in .journey__node { opacity: 1; transform: none; transition: opacity .4s, transform .6s cubic-bezier(.3, 1.6, .5, 1); transition-delay: calc(.45s + var(--i) * .38s); }
.js [data-journey].is-in .chip { opacity: 1; transition: opacity .6s var(--ease), border-color .3s; transition-delay: calc(.6s + var(--i) * .38s); }

/* Active channel pulse, cycled by JS */
.journey__node.is-pulse .journey__ring { animation: mk-ring 1.4s var(--ease); }
.chip.is-pulse { border-color: rgba(124, 224, 42, .75); }
@keyframes mk-ring {
	0% { r: 16; opacity: 1; }
	100% { r: 34; opacity: 0; }
}

/* ---------- Rail: Google > Social > AI > Everywhere ---------- */
.hero__rail {
	border-top: 1px solid var(--line);
	background: rgba(17, 25, 19, .55);
}
.hero__rail-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 96px;
}
.rail__step {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.1rem, 2.6vw, 2.25rem);
	letter-spacing: -.02em;
	color: transparent;
	-webkit-text-stroke: 1px #56685B;
	transition: color .5s, -webkit-text-stroke-color .5s;
}
.rail__step.is-lit { color: var(--ink); -webkit-text-stroke-color: transparent; }
.rail__step--end.is-lit { color: var(--accent); }
.rail__arrow { color: var(--accent); flex-shrink: 0; }
.rail__arrow svg { width: clamp(20px, 2.4vw, 34px); height: auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Clients marquee ---------- */
.clients {
	padding: clamp(64px, 9vw, 112px) 0;
	overflow: hidden;
}
.clients__head {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 12px;
	margin-bottom: clamp(32px, 5vw, 56px);
}
.clients__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	line-height: 1.12;
	letter-spacing: -.025em;
	max-width: 24ch;
	text-wrap: balance;
}
.clients__sub {
	max-width: 52ch;
	color: var(--muted);
	font-size: clamp(.98rem, 1.1vw, 1.08rem);
}
.clients__rows { display: grid; gap: 18px; }
.marquee {
	--gap: 18px;
	--speed: 38s;
	display: flex;
	gap: var(--gap);
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
	display: flex;
	flex-shrink: 0;
	gap: var(--gap);
	min-width: 100%;
	justify-content: space-around;
	animation: mk-marquee var(--speed) linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 44s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes mk-marquee {
	to { transform: translateX(calc(-100% - var(--gap))); }
}
.logo-tile {
	flex-shrink: 0;
	width: 210px;
	height: 90px;
	border-radius: var(--r-md);
	background: #F2F6F1;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(10, 15, 11, .06);
	transition: transform .35s var(--ease), box-shadow .35s;
}
.logo-tile img { width: 100%; height: 100%; object-fit: contain; }
.logo-tile:hover {
	transform: translateY(-3px);
	box-shadow: inset 0 0 0 1px rgba(10, 15, 11, .06), 0 14px 30px -14px rgba(124, 224, 42, .55);
}

@media (max-width: 600px) {
	.clients__rows { gap: 12px; }
	.marquee { --gap: 12px; }
	.logo-tile { width: 150px; height: 64px; border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
	.marquee { -webkit-mask-image: none; mask-image: none; }
	.marquee__track { flex-wrap: wrap; justify-content: center; min-width: 0; width: 100%; }
	.marquee__track + .marquee__track, .marquee--reverse { display: none; }
}

/* ---------- Generic pages ---------- */
.page-shell { padding: calc(var(--header-h) + 64px) 0 96px; min-height: 70vh; }
.prose { max-width: 820px; }
.page-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 32px; }
.entry + .entry { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.entry__title { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
.entry__title a:hover { color: var(--accent); }
.entry__content > * + * { margin-top: 1.1em; }
.entry__content a { color: var(--accent); text-decoration: underline; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.nav__list a { padding: 0 11px; }
	.site-header__inner { gap: 20px; }
}

@media (max-width: 960px) {
	:root { --header-h: 72px; }
	.site-header.is-scrolled { --header-h: 64px; }
	.nav-toggle { display: grid; }
	.site-header__cta { display: none; }
	.brand__mark { width: 40px; }
	.brand__word { width: 124px; }

	.nav {
		position: fixed;
		inset: 0;
		z-index: -1;
		margin: 0;
		padding: calc(var(--header-h) + 32px) var(--gutter) 32px;
		display: flex;
		flex-direction: column;
		gap: 28px;
		background:
			radial-gradient(70% 50% at 100% 0%, rgba(124, 224, 42, .14), transparent 70%),
			var(--bg);
		opacity: 0;
		visibility: hidden;
		transition: opacity .35s var(--ease), visibility 0s linear .35s;
	}
	.nav-open .nav { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav__list li { border-bottom: 1px solid var(--line); }
	.nav__list a {
		height: auto;
		padding: 18px 0;
		border-radius: 0;
		font-family: var(--font-display);
		font-size: 26px;
		font-weight: 600;
		color: var(--ink);
	}
	.nav__list a::after { display: none; }
	.nav__list a:hover { color: var(--accent); }
	.nav__cta-mobile { display: inline-flex; align-self: flex-start; height: 54px; }
	.nav-open .site-header { background: transparent; border-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }

	.hero { padding-top: calc(var(--header-h) + 12px); }
	.hero__grid { grid-template-columns: 1fr; gap: 28px; padding-block: 28px 12px; }
	.hero__title { max-width: 20ch; }
	.site-header__actions { margin-left: auto; }
	.hero__controls { max-width: none; }
	.hero__visual { max-width: 520px; width: 100%; margin-inline: auto; }
	.journey { margin-inline: auto; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
	body { font-size: 16px; }
	.hero__title { font-size: clamp(1.6rem, 7.4vw, 2.1rem); }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { width: 100%; }
	.hero__arrows { display: none; }
	.hero__tabs { gap: 12px; }

	.journey__caption { margin-left: 0; }
	.chip { padding: 7px 11px 7px 7px; gap: 8px; border-radius: 12px; }
	.chip__icon { width: 30px; height: 30px; border-radius: 8px; }
	.chip__icon svg { width: 17px; height: 17px; }
	.chip strong { font-size: 12.5px; }
	.chip small { display: none; }
	.chip--google { transform: translate(18px, 6px); }
	.chip--social { transform: translate(16px, 8px); }
	.chip--ai { transform: translate(calc(-100% - 16px), -105%); }
	.chip--everywhere { transform: translate(calc(-100% - 16px), -110%); }

	.hero__rail-inner { min-height: 72px; gap: 6px; }
	.rail__step { font-size: 3.5vw; letter-spacing: -.03em; }
	.rail__arrow svg { width: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.js [data-journey] .journey__line { stroke-dashoffset: 0; }
	.js [data-journey] .journey__glow { opacity: .28; }
	.js [data-journey] .journey__head,
	.js [data-journey] .chip { opacity: 1; }
	.js [data-journey] .journey__node { opacity: 1; transform: none; }
	.js [data-journey] .journey__bar { transform: none; }
	.js [data-journey] .journey__spark { display: none; }
	.hero__tab.is-active .hero__tab-bar span { transform: scaleX(1); }
	.rail__step { color: var(--ink); -webkit-text-stroke-color: transparent; }
	.rail__step--end { color: var(--accent); }
}
