/*
 * cphnano — theme styles, matching the HubSpot Growth theme in production.
 *
 * Colour, type, space and radius resolve to custom properties generated from
 * theme.json. Change tokens there; both the front end and the block editor move.
 */

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

/*
 * Page gutter is the space from the viewport edge to content on a narrow
 * screen. Page inset is that same edge on a wide screen, so full-bleed
 * sections line up with the header and footer.
 */
html {
	--cphnano-page-gutter: var(--wp--custom--page-gutter);
	--cphnano-page-inset: max(
		var(--cphnano-page-gutter),
		calc((100% - var(--wp--style--global--wide-size)) / 2 + var(--cphnano-page-gutter))
	);
}

body {
	margin: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

a:hover {
	color: var(--wp--preset--color--brand);
	text-decoration: underline;
}

/* ---------- focus ---------- */

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: var(--wp--custom--rule--accent-width) solid var(--wp--preset--color--brand);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: var(--wp--preset--spacing--20);
	z-index: 100;
	padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
}

.skip-link:focus {
	left: var(--wp--preset--spacing--20);
}

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

/* ---------- backdrop video (front page) ---------- */

.site-backdrop {
	position: fixed;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

body.home,
body.front-page {
	background: transparent;
}

/* ---------- layout shell ---------- */

.site-header,
.site-footer {
	width: 100%;
}

.site-header__inner,
.site-footer__inner {
	margin-inline: auto;
	max-width: var(--wp--style--global--wide-size);
	padding-inline: var(--cphnano-page-gutter);
	width: 100%;
}

.site-main {
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* ---------- header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(255 255 255 / 92%);
	backdrop-filter: saturate(1.2) blur(16px);
	border-bottom: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.admin-bar .site-header {
	top: 32px;
}

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

.site-header__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	min-height: 4.25rem;
	padding-block: 0.75rem;
}

.site-header__brand {
	display: flex;
	align-items: center;
	margin-right: auto;
}

.custom-logo-link {
	display: block;
	line-height: 0;
}

.custom-logo {
	display: block;
	width: auto;
	height: var(--wp--custom--logo-height);
}

.site-title {
	font-weight: 700;
	font-size: var(--wp--preset--font-size--lg);
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}

/* ---------- primary navigation ---------- */

.nav-button {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	margin-left: auto;
	padding: 0;
	border: 0;
	border-radius: var(--wp--custom--radius--card);
	background: transparent;
	appearance: none;
	cursor: pointer;
}

.nav-button:hover {
	background: var(--wp--preset--color--wash);
}

.nav-button__box {
	position: relative;
	display: block;
	width: 1.15rem;
	height: 0.75rem;
}

.nav-button__bar {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background: var(--wp--preset--color--ink);
	transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.nav-button__bar:nth-child(1) { top: 0; }
.nav-button__bar:nth-child(2) { top: 5px; }
.nav-button__bar:nth-child(3) { top: 10px; }

.nav-button[aria-expanded="true"] .nav-button__bar:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

.nav-button[aria-expanded="true"] .nav-button__bar:nth-child(2) {
	opacity: 0;
}

.nav-button[aria-expanded="true"] .nav-button__bar:nth-child(3) {
	top: 5px;
	transform: rotate(-45deg);
}

body.nav-open {
	overflow: hidden;
}

.nav {
	margin-left: 1.5rem;
}

.nav__list,
.nav__submenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.nav__item {
	max-width: none;
	position: relative;
}

.nav__item--top {
	display: flex;
	align-items: center;
}

.nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.85rem;
	border: 0;
	border-radius: var(--wp--custom--radius--card);
	background: transparent;
	font: inherit;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.2;
	color: var(--wp--preset--color--ink);
	text-decoration: none;
	appearance: none;
	cursor: pointer;
}

.nav__link:hover,
.nav__link:focus-visible {
	color: var(--wp--preset--color--brand);
	text-decoration: none;
	background: transparent;
}

.nav__item.current-menu-item > .nav__link,
.nav__item.current-menu-ancestor > .nav__link,
.nav__item.current-menu-parent > .nav__link {
	color: var(--wp--preset--color--brand);
}

.nav__link--parent::after,
.nav__toggle::after {
	content: "";
	width: 0.35rem;
	height: 0.35rem;
	margin-top: -0.15rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 200ms ease;
}

.nav__item.is-open > .nav__link--parent::after,
.nav__item.is-open > .nav__toggle::after,
.nav__item--parent:hover > .nav__link--parent::after,
.nav__item--parent:focus-within > .nav__link--parent::after {
	margin-top: 0.15rem;
	transform: rotate(-135deg);
}

.nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: var(--wp--custom--radius--card);
	background: none;
	color: inherit;
	cursor: pointer;
}

.nav__item--external {
	margin-left: 0.35rem;
}

.nav__external {
	flex-shrink: 0;
	opacity: 0.65;
}

.nav__item--external > .nav__link:hover .nav__external,
.nav__item--external > .nav__link:focus-visible .nav__external {
	opacity: 1;
}

.nav__item--cta > .nav__link,
.nav__item--cta.current-menu-item > .nav__link {
	margin-left: 0.25rem;
	padding: 0.5rem 1.15rem;
	border: var(--wp--custom--rule--width) solid var(--wp--preset--color--brand);
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
	font-weight: 600;
}

.nav__item--cta > .nav__link:hover,
.nav__item--cta > .nav__link:focus-visible {
	background: var(--wp--preset--color--brand-hot);
	border-color: var(--wp--preset--color--brand-hot);
	color: var(--wp--preset--color--surface);
	text-decoration: none;
}

.nav__submenu {
	display: flex;
	flex-direction: column;
}

.nav--enhanced .nav__submenu {
	position: absolute;
	top: calc(100% - 0.35rem);
	left: 0;
	z-index: 20;
	min-width: 17.5rem;
	padding: 0.5rem;
	padding-top: calc(0.5rem + 0.35rem);
	background: transparent;
	visibility: hidden;
	opacity: 0;
	transform: translateY(0.4rem);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav--enhanced .nav__submenu::before {
	content: "";
	position: absolute;
	inset: 0.85rem 0 0;
	background: var(--wp--preset--color--surface);
	border: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
	border-radius: 10px;
	box-shadow: var(--wp--custom--shadow--dropdown);
}

.nav--enhanced .nav__submenu .nav__item {
	position: relative;
	z-index: 1;
}

.nav--enhanced .nav__submenu .nav__link {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-weight: 400;
	color: var(--wp--preset--color--ink);
}

.nav--enhanced .nav__submenu .nav__link:hover,
.nav--enhanced .nav__submenu .nav__link:focus-visible {
	background: var(--wp--preset--color--wash);
	color: var(--wp--preset--color--brand);
}

.nav--enhanced .nav__item--parent:hover > .nav__submenu,
.nav--enhanced .nav__item--parent:focus-within > .nav__submenu,
.nav--enhanced .nav__item.is-open > .nav__submenu {
	visibility: visible;
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

@media (max-width: 60rem) {
	.nav {
		flex-basis: 100%;
		margin-left: 0;
	}

	.nav__list {
		flex-wrap: wrap;
	}

	.site-header.is-enhanced .nav-button {
		display: inline-flex;
	}

	.site-header.is-enhanced .nav {
		display: none;
		max-height: calc(100dvh - 4.25rem);
		overflow: auto;
		padding-bottom: var(--wp--preset--spacing--20);
	}

	.admin-bar .site-header.is-enhanced .nav {
		max-height: calc(100dvh - 4.25rem - 46px);
	}

	.site-header.is-enhanced .nav.is-open {
		display: block;
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
		padding-top: var(--wp--preset--spacing--20);
	}

	.nav__item--top {
		flex-wrap: wrap;
	}

	.nav__item--top > .nav__link,
	.nav__item--top > .nav__toggle {
		min-height: 2.75rem;
	}

	.nav__item--top > .nav__link {
		flex: 1;
		justify-content: space-between;
		padding-inline: 0.25rem;
		font-size: var(--wp--preset--font-size--md);
	}

	.nav__item--cta.nav__item--top {
		display: block;
	}

	.nav__item--external,
	.nav__item--cta {
		margin-left: 0;
		width: 100%;
	}

	.nav__item--external > .nav__link {
		flex: 1;
		justify-content: flex-start;
		margin-top: 0.35rem;
		padding-inline: 0.25rem;
	}

	.nav__item--cta > .nav__link,
	.nav__item--cta.current-menu-item > .nav__link {
		flex: none;
		width: 100%;
		justify-content: center;
		margin: 0.85rem 0 0;
		padding: 0.85rem 1.25rem;
	}

	.nav--enhanced .nav__submenu {
		position: static;
		flex-basis: 100%;
		min-width: 0;
		padding: 0 0 0.5rem 0.75rem;
		background: transparent;
		visibility: hidden;
		opacity: 1;
		transform: none;
		pointer-events: none;
		display: none;
		transition: none;
	}

	.nav--enhanced .nav__submenu::before {
		content: none;
	}

	.nav--enhanced .nav__item.is-open > .nav__submenu {
		display: flex;
		visibility: visible;
		pointer-events: auto;
	}

	.nav--enhanced .nav__item--parent:hover > .nav__submenu,
	.nav--enhanced .nav__item--parent:focus-within > .nav__submenu {
		display: none;
		visibility: hidden;
		pointer-events: none;
	}

	.nav--enhanced .nav__item.is-open:hover > .nav__submenu,
	.nav--enhanced .nav__item.is-open:focus-within > .nav__submenu {
		display: flex;
		visibility: visible;
		pointer-events: auto;
	}

	.nav--enhanced .nav__submenu .nav__link {
		padding-block: 0.7rem;
	}

	.nav__item.is-open > .nav__link--parent::after,
	.nav__item.is-open > .nav__toggle::after,
	.nav__item--parent:hover > .nav__link--parent::after,
	.nav__item--parent:focus-within > .nav__link--parent::after {
		margin-top: -0.15rem;
		transform: rotate(45deg);
	}

	.nav__item.is-open > .nav__link--parent::after,
	.nav__item.is-open > .nav__toggle::after {
		margin-top: 0.15rem;
		transform: rotate(-135deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nav-button__bar,
	.nav__link--parent::after,
	.nav__toggle::after,
	.nav--enhanced .nav__submenu {
		transition: none;
	}
}

/* ---------- footer ---------- */

.site-footer {
	background: var(--wp--preset--color--footer);
	color: var(--wp--preset--color--surface);
	font-size: var(--wp--preset--font-size--md);
	padding-block: var(--wp--preset--spacing--50);
}

.site-footer__columns {
	display: grid;
	grid-template-columns: minmax(16rem, 2fr) repeat(3, minmax(10rem, 1fr));
	gap: var(--wp--preset--spacing--40);
}

@media (max-width: 60rem) {
	.site-footer__columns {
		grid-template-columns: 1fr;
	}
}

.site-footer__brand {
	margin: 0 0 var(--wp--preset--spacing--20);
}

.site-footer__brand img {
	width: 225px;
	height: auto;
}

.site-footer__tagline,
.site-footer__award,
.site-footer__address,
.site-footer__registration {
	margin: 0 0 var(--wp--preset--spacing--20);
	font-style: normal;
	line-height: 1.4;
}

.site-footer__address,
.site-footer__registration {
	display: flex;
	flex-direction: column;
}

.site-footer__heading {
	margin: 0 0 0.35rem;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 900;
	letter-spacing: 1.06px;
	color: var(--wp--preset--color--surface);
}

.site-footer__list,
.site-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.site-footer__list li,
.site-footer__social li {
	max-width: none;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--wp--preset--color--surface);
	text-decoration: underline;
}

.site-footer__base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--wp--preset--spacing--20);
	margin-top: var(--wp--preset--spacing--40);
	padding-top: var(--wp--preset--spacing--20);
	border-top: var(--wp--custom--rule--accent-width) solid rgb(255 255 255 / 20%);
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__social {
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.site-footer__social-link:hover {
	color: var(--wp--preset--color--surface);
	text-decoration: none;
	opacity: 0.8;
}

.site-footer__social-link svg {
	display: block;
	width: 1.35rem;
	height: 1.35rem;
}

/* ---------- sections ---------- */

.section {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--30);
	width: 100%;
	max-width: none;
	margin: 0;
	padding: var(--wp--preset--spacing--50) var(--cphnano-page-inset);
}

.section--contained {
	max-width: var(--wp--style--global--wide-size);
	margin-inline: auto;
	padding-inline: var(--cphnano-page-gutter);
}

.section--align-center {
	text-align: center;
	align-items: center;
}

.section--align-center .section__heading,
.section--align-center .section__lede,
.section--align-center .section__eyebrow,
.section--align-center .rich-text,
.section--align-center .comparison__lede,
.section--align-center .hero__copy,
.section--align-center .section__actions {
	margin-inline: auto;
}

.section__heading {
	margin: 0;
	text-wrap: pretty;
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
}

.section__eyebrow {
	margin: 0;
	color: var(--wp--preset--color--brand);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section--align-center .hero__copy {
	align-items: center;
}

.section--align-center .section__eyebrow {
	color: var(--wp--preset--color--brand);
}

.section--align-center .section__actions {
	justify-content: center;
}

.section__lede {
	margin: 0;
	color: var(--wp--preset--color--ink);
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 300;
	max-width: 46rem;
}

.section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--10);
	max-width: none;
	margin: 0;
}

/* Surfaces — HubSpot sections are full-bleed coloured bands. */

.section--surface-default {
	background: var(--wp--preset--color--surface);
}

.section--surface-wash {
	background: var(--wp--preset--color--wash);
}

.section--surface-glass {
	background: rgb(255 255 255 / 50%);
}

.section--surface-transparent {
	background: transparent;
}

.section--surface-brand {
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
}

.section--surface-brand .section__heading,
.section--surface-brand .section__lede,
.section--surface-brand .section__eyebrow,
.section--surface-brand .cta-banner__body {
	color: var(--wp--preset--color--surface);
}

.section--surface-dark {
	background: var(--wp--preset--color--footer);
	color: var(--wp--preset--color--surface);
}

.section--surface-dark .media-text .section__heading,
.section--surface-dark .media-text .section__eyebrow {
	color: var(--wp--preset--color--surface);
}

.section--surface-dark .media-text__prose {
	color: rgb(255 255 255 / 82%);
}

.section--surface-dark .media-text__prose strong {
	color: var(--wp--preset--color--brand-hot);
}

.section--surface-mist {
	background: var(--wp--preset--color--wash);
}

.section--has-background {
	position: relative;
	isolation: isolate;
	background-image: var(--section-background);
	background-size: cover;
	background-position: center;
}

.section--has-background::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--wp--preset--color--surface);
	opacity: var(--section-scrim, 0.85);
}

.section--bg-wash { --section-scrim: 0.88; }
.section--bg-dim  { --section-scrim: 0.6; }
.section--bg-full { --section-scrim: 0; }

.section--bg-full .section__heading,
.section--bg-full .section__lede,
.section--bg-full .section__eyebrow {
	text-shadow: 0 1px 3px rgb(0 0 0 / 35%);
	color: var(--wp--preset--color--surface);
}

/* Lifestyle photo band: full-bleed image, copy on the left, subject visible
 * on the right — same left scrim as the product heroes. */
.section--rich-text.section--bg-full {
	min-height: min(26rem, 68vh);
	padding-block: 5.5rem 4.5rem;
	justify-content: center;
	background-position: 72% 38%;
}

.section--rich-text.section--bg-full::before {
	background: linear-gradient(
		105deg,
		rgb(20 16 16 / 78%) 0%,
		rgb(20 16 16 / 46%) 32%,
		rgb(20 16 16 / 12%) 58%,
		rgb(20 16 16 / 0%) 78%
	);
	opacity: 1;
	z-index: 0;
}

.section--rich-text.section--bg-full > * {
	position: relative;
	z-index: 1;
	max-width: 36rem;
}

.section--rich-text.section--bg-full .section__eyebrow {
	color: var(--wp--preset--color--brand-hot);
	text-shadow: none;
}

.section--rich-text.section--bg-full .section__heading {
	color: var(--wp--preset--color--surface);
	font-weight: 700;
	text-shadow: none;
}

.section--rich-text.section--bg-full .rich-text {
	color: rgb(255 255 255 / 88%);
	max-width: 36rem;
}

.section--rich-text.section--bg-full .rich-text strong {
	color: var(--wp--preset--color--brand-hot);
}

/* ---------- buttons ---------- */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 44px;
	border: 1px solid var(--wp--preset--color--ink);
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--surface);
	font-size: var(--wp--preset--font-size--md);
	font-weight: 800;
	text-decoration: none;
	transition: background-color var(--wp--custom--transition), border-color var(--wp--custom--transition), color var(--wp--custom--transition);
}

.button:hover {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
	text-decoration: none;
}

.button--ghost {
	background: transparent;
	border-color: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--ink);
	font-weight: 400;
}

.button--ghost:hover {
	background: transparent;
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--brand);
	font-weight: 800;
}

.section--surface-dark .button {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
}

.section--surface-dark .button:hover {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
}

.section--surface-dark .button--ghost {
	background: transparent;
	border-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--surface);
}

.button--small {
	font-size: var(--wp--preset--font-size--sm);
	padding: 12px 44px;
}

/* ---------- section: hero ---------- */

.section--hero {
	padding-block: var(--wp--preset--spacing--50);
}

.hero--split {
	display: grid;
	gap: var(--wp--preset--spacing--40);
	align-items: center;
	width: 100%;
}

@media (min-width: 48rem) {
	.hero--split {
		grid-template-columns: 1fr 1fr;
	}
}

.hero__copy {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--20);
	align-items: flex-start;
}

.hero__media {
	margin: 0;
}

.hero__media img {
	display: block;
	width: 100%;
	height: auto;
}

.section--hero .section__heading {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	line-height: 1.1;
}

/* Product pages: full-bleed lab photo. Title sits on the left, like
 * the homepage, so it does not cover the instrument. */
.section--hero.section--has-background {
	min-height: min(34rem, 72vh);
	padding-block: 7rem 5rem;
	justify-content: center;
	background-color: var(--wp--preset--color--wash);
	background-position: 70% 32%;
}

.section--hero.section--has-background::before {
	background: linear-gradient(
		105deg,
		rgb(20 16 16 / 78%) 0%,
		rgb(20 16 16 / 46%) 30%,
		rgb(20 16 16 / 12%) 56%,
		rgb(20 16 16 / 0%) 76%
	);
	opacity: 1;
	z-index: 0;
}

.section--hero.section--has-background > * {
	position: relative;
	z-index: 1;
}

.section--hero.section--has-background .hero {
	width: min(38rem, 100%);
}

.section--hero.section--has-background .hero__copy {
	gap: var(--wp--preset--spacing--30);
	max-width: 34rem;
}

.section--hero.section--has-background .section__eyebrow {
	color: var(--wp--preset--color--brand-hot);
}

.section--hero.section--has-background .section__heading {
	color: var(--wp--preset--color--surface);
	font-weight: 700;
}

.section--hero.section--has-background .hero__accent {
	color: var(--wp--preset--color--brand-hot);
}

.section--hero.section--has-background .section__lede {
	color: rgb(255 255 255 / 86%);
	text-shadow: none;
	max-width: 32rem;
}

.hero--split .button {
	background: transparent;
	border-color: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--ink);
	font-weight: 400;
}

.hero--split .button:hover {
	background: transparent;
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--brand);
	font-weight: 800;
}

.section--hero.section--surface-default .hero--split .button {
	background: var(--wp--preset--color--ink);
	border-color: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--surface);
	font-weight: 600;
}

.section--hero.section--surface-default .hero--split .button:hover {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
	font-weight: 600;
}

.section--hero.section--has-background .button {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
	font-weight: 800;
}

.section--hero.section--has-background .button:hover {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
	font-weight: 800;
}

.section--hero.section--has-background .button--ghost {
	background: rgb(255 255 255 / 10%);
	border-color: rgb(255 255 255 / 80%);
	color: var(--wp--preset--color--surface);
	font-weight: 500;
	backdrop-filter: blur(8px);
}

.section--hero.section--has-background .button--ghost:hover {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
	font-weight: 600;
}

/* Homepage hero sits on the looping video. Product pages do not. */
.home .section--hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100svh - 4.25rem);
	justify-content: center;
	padding-block: 8rem;
}

.home .section--hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgb(20 16 16 / 78%) 0%,
		rgb(20 16 16 / 48%) 34%,
		rgb(20 16 16 / 12%) 62%,
		rgb(20 16 16 / 0%) 82%
	);
}

.home .section--hero > * {
	position: relative;
	z-index: 1;
}

.home .section--hero .hero__copy {
	max-width: 40rem;
	gap: var(--wp--preset--spacing--40);
	padding-block: var(--wp--preset--spacing--20);
	padding-right: var(--wp--preset--spacing--40);
}

.home .section--hero .section__eyebrow {
	color: var(--wp--preset--color--brand-hot);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home .section--hero .section__heading {
	font-size: var(--wp--custom--hero-size);
	line-height: 1.05;
	font-weight: 900;
	color: var(--wp--preset--color--surface);
	text-shadow: none;
	max-width: none;
}

.home .section--hero .hero__accent {
	color: var(--wp--preset--color--brand-hot);
}

.home .section--hero .section__lede {
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 300;
	color: rgb(255 255 255 / 86%);
	text-shadow: none;
	max-width: 34rem;
}

.home .section--hero .section__actions {
	gap: var(--wp--preset--spacing--20);
	padding-top: var(--wp--preset--spacing--10);
}

.home .section--hero .button {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--surface);
	font-weight: 600;
}

.home .section--hero .button:hover {
	background: var(--wp--preset--color--brand-hot);
	border-color: var(--wp--preset--color--brand-hot);
	color: var(--wp--preset--color--surface);
}

.home .section--hero .button--ghost {
	background: rgb(255 255 255 / 8%);
	border-color: rgb(255 255 255 / 80%);
	color: var(--wp--preset--color--surface);
	font-weight: 500;
	backdrop-filter: blur(8px);
}

.home .section--hero .button--ghost:hover {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
	font-weight: 600;
}

@media (max-width: 48rem) {
	.home .section--hero {
		min-height: calc(100svh - 4.25rem);
		padding-block: 5rem 6rem;
		justify-content: center;
	}

	.home .section--hero::before {
		background: linear-gradient(
			180deg,
			rgb(20 16 16 / 18%) 0%,
			rgb(20 16 16 / 55%) 48%,
			rgb(20 16 16 / 82%) 100%
		);
	}

	.home .section--hero .hero__copy {
		padding-right: 0;
	}

	.home .section--hero .section__heading {
		font-size: clamp(2.5rem, 12vw, var(--wp--custom--hero-size));
	}
}

/* ---------- section: media-text ---------- */

.media-text {
	display: grid;
	gap: var(--wp--preset--spacing--40);
	align-items: center;
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
}

.media-text__media {
	margin: 0;
	order: 2;
	min-width: 0;
	width: 100%;
}

.media-text__media img {
	display: block;
	width: 100%;
	height: auto;
}

body.page .media-text__media {
	display: flex;
	align-items: center;
	justify-content: center;
}

body.page .media-text__media img {
	width: auto;
	max-width: 100%;
	max-height: 20rem;
}

body.page .section--media-diagram .media-text__media img,
body.page .section--media-feature .media-text__media img {
	width: 100%;
	max-height: none;
}

.section--media-diagram {
	background: var(--wp--preset--color--surface);
}

body.page .section--media-diagram .media-text__media,
body.page .section--media-diagram .media-text__media img {
	background: var(--wp--preset--color--surface);
}

body.page .section--media-feature .media-text {
	align-items: start;
}

.media-text__body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--wp--preset--spacing--20);
	order: 1;
	text-align: start;
	min-width: 0;
	width: 100%;
}

.media-text .section__eyebrow {
	color: var(--wp--preset--color--brand);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.media-text .section__heading {
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
	text-wrap: pretty;
}

.media-text__prose {
	font-size: var(--wp--preset--font-size--lg);
	line-height: 1.7;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--20);
}

.media-text__prose p {
	margin: 0;
}

.media-text__prose h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.media-text__prose ul {
	margin: 0;
	padding-left: 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.media-text__prose li {
	color: var(--wp--preset--color--ink);
}

.media-text__prose strong,
.rich-text strong {
	color: var(--wp--preset--color--brand);
	font-weight: 700;
}

.media-text__addons {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	width: 100%;
	margin-top: var(--wp--preset--spacing--10);
}

.media-text__addons-label {
	margin: 0;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

.media-text__actions {
	margin: 0;
	width: 100%;
	flex-direction: column;
	align-items: stretch;
}

.media-text__actions .button {
	width: 100%;
	justify-content: center;
	padding: 0.75rem 1.15rem;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
}

.media-text__actions .button--ghost {
	border-color: var(--wp--preset--color--line);
	background: var(--wp--preset--color--wash);
	color: var(--wp--preset--color--ink);
}

.media-text__actions .button--ghost:hover {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--brand);
	font-weight: 600;
}

.section--surface-wash .media-text__actions .button--ghost {
	background: var(--wp--preset--color--surface);
}

.section--surface-wash .media-text__actions .button--ghost:hover {
	background: var(--wp--preset--color--wash);
}

.media-text__resources {
	width: 100%;
	margin-top: var(--wp--preset--spacing--10);
	padding-top: var(--wp--preset--spacing--30);
	border-top: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.media-text__resources > p:first-child {
	margin: 0 0 var(--wp--preset--spacing--20);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

.media-text__resources .doc-links,
.media-text__prose .doc-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.media-text__resources .doc-links a {
	display: block;
	padding: 0.7rem 0;
	color: var(--wp--preset--color--ink);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.45;
	text-decoration: none;
	border-bottom: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.media-text__resources .doc-links li:first-child a {
	padding-top: 0;
}

.media-text__resources .doc-links a:hover {
	color: var(--wp--preset--color--brand);
	border-bottom-color: var(--wp--preset--color--brand);
	text-decoration: none;
}

.media-text__prose .equation,
.rich-text .equation {
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 400;
	color: var(--wp--preset--color--ink);
	letter-spacing: 0.01em;
}

.media-text__prose .split-pair,
.rich-text .split-pair {
	display: grid;
	gap: var(--wp--preset--spacing--50);
	grid-template-columns: 1fr;
	margin-top: 0;
	text-align: start;
}

@media (min-width: 48rem) {
	.media-text:has(.media-text__media) {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
		gap: var(--wp--preset--spacing--50);
	}

	body.page .media-text:has(.media-text__media) {
		grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr);
	}

	body.page .section--media-start .media-text:has(.media-text__media) {
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.25fr);
	}

	body.page .media-text__media img {
		max-height: 22rem;
	}

	body.page .section--media-diagram .media-text:has(.media-text__media) {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	}

	body.page .section--media-diagram .media-text__media img {
		width: 100%;
		max-height: none;
		background: var(--wp--preset--color--surface);
	}

	body.page .section--media-feature .media-text {
		align-items: start;
	}

	body.page .section--media-feature .media-text:has(.media-text__media) {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
		gap: var(--wp--preset--spacing--50);
	}

	body.page .section--media-feature .media-text__media img {
		width: 100%;
		max-height: none;
	}

	.media-text__body,
	.media-text__media {
		order: 0;
	}

	.section--media-end .media-text__media {
		order: 2;
	}

	.media-text__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.media-text__actions .button {
		width: auto;
		flex: 0 1 auto;
	}

	.media-text__prose .split-pair,
	.rich-text .split-pair {
		grid-template-columns: 1fr 1fr;
	}
}

.rich-text .split-pair img {
	display: block;
	width: 100%;
	max-width: 20rem;
	height: auto;
	margin: var(--wp--preset--spacing--20) 0;
}

.section--rich-text:has(.split-pair--apps) {
	gap: var(--wp--preset--spacing--40);
}

.rich-text .split-pair--apps {
	align-items: start;
	gap: var(--wp--preset--spacing--50);
}

.rich-text .split-pair--apps > div {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--20);
	min-width: 0;
}

.rich-text .split-pair--apps p {
	margin: 0;
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

@media (min-width: 48rem) {
	.rich-text .split-pair--apps {
		column-gap: clamp(2.5rem, 5vw, 4.5rem);
	}

	.rich-text .split-pair--apps > div + div {
		padding-left: clamp(2rem, 4vw, 3.5rem);
		border-left: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
	}
}

.rich-text .split-pair--apps h3,
.section--rich-text .rich-text .split-pair--apps h3 {
	margin: 0;
	text-align: start;
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.rich-text .split-pair--apps img {
	max-width: none;
	width: 100%;
	margin: 0;
	background: none;
}

.rich-text .split-pair--apps .app-label {
	font-size: var(--wp--preset--font-size--md);
	font-weight: 400;
	line-height: 1.45;
	color: var(--wp--preset--color--ink);
}

.rich-text .split-pair--apps .note {
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.55;
	color: var(--wp--preset--color--muted);
}

.rich-text .split-pair--apps + .cite {
	margin-top: var(--wp--preset--spacing--40);
}

.media-text__prose .cite,
.rich-text .cite {
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--muted);
}

/* ---------- section: product-grid ---------- */

.product-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
	gap: var(--wp--preset--spacing--30);
	width: 100%;
}

.product-grid__item {
	max-width: none;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--10);
	text-align: center;
}

.product-grid__media {
	margin: 0 0 var(--wp--preset--spacing--10);
}

.product-grid__media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 10rem;
	object-fit: contain;
	margin-inline: auto;
}

.product-grid__title {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.product-grid__title a {
	color: inherit;
	text-decoration: none;
}

.product-grid__title a:hover {
	color: var(--wp--preset--color--brand);
}

.product-grid__summary {
	margin: 0;
	color: var(--wp--preset--color--ink);
}

.section--products-family .product-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--40) var(--wp--preset--spacing--20);
}

@media (min-width: 48rem) {
	.section--products-family .product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.section--products-family .product-grid__media {
	margin: 0;
}

.section--products-family .product-grid__media img {
	width: 4.5rem;
	height: 4.5rem;
	max-height: none;
}

.section--products-family .product-grid__title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.section--products-family .product-grid__summary {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

.section--products-cards .product-grid {
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--40);
}

@media (min-width: 48rem) {
	.section--products-cards .product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: stretch;
	}
}

.section--products-cards .product-grid__item {
	align-items: center;
	text-align: center;
	gap: var(--wp--preset--spacing--20);
	height: 100%;
}

.section--products-cards .product-grid__media img {
	max-height: 16rem;
}

.section--products-cards .product-grid__title {
	font-size: clamp(1.25rem, 2vw, 1.625rem);
}

.section--products-cards .product-grid__summary {
	font-weight: 300;
	max-width: 22rem;
	margin-inline: auto;
}

.section--products-cards .product-grid__action {
	margin: auto 0 0;
}

/* ---------- section: feature-grid ---------- */

.feature-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--40) var(--wp--preset--spacing--30);
	width: 100%;
}

@media (min-width: 40rem) {
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.feature-grid:has(> :nth-child(3):last-child),
	.feature-grid:has(> :nth-child(6):last-child),
	.feature-grid:has(> :nth-child(9):last-child) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.feature-grid-split {
	display: grid;
	gap: var(--wp--preset--spacing--50);
	width: 100%;
	align-items: start;
	align-self: stretch;
}

.feature-grid__media {
	margin: 0;
	max-width: 16rem;
	justify-self: center;
}

.feature-grid__media img {
	display: block;
	width: 100%;
	max-width: 16rem;
	max-height: 28rem;
	height: auto;
	object-fit: contain;
}

@media (min-width: 56rem) {
	.feature-grid-split {
		grid-template-columns: 16rem minmax(0, 1fr);
		gap: var(--wp--preset--spacing--50);
	}

	.feature-grid__media {
		justify-self: start;
	}

	.section--features-split .feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.feature-grid__item {
	max-width: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--10);
	text-align: center;
}

.feature-grid__item:not(:has(.feature-grid__icon-wrap)) {
	align-items: start;
	text-align: start;
}

.section--features-split .feature-grid__item {
	align-items: start;
	text-align: start;
}

.feature-grid__icon-wrap {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: none;
}

.feature-grid__icon {
	width: 48px;
	height: 48px;
	padding: 0;
	object-fit: contain;
}

.feature-grid__photo-wrap {
	margin: 0;
	width: 100%;
	overflow: hidden;
	border-radius: var(--wp--custom--radius--card);
	background: var(--wp--preset--color--wash);
}

.feature-grid__photo {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.section--features-cards .feature-grid__item {
	align-items: start;
	text-align: start;
	gap: var(--wp--preset--spacing--20);
}

.section--features-cards .feature-grid__title {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	line-height: 1.3;
}

.section--features-cards .feature-grid__body {
	font-weight: 300;
}

.feature-grid__title {
	margin: 0;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
}

.feature-grid__body {
	margin: 0;
	color: var(--wp--preset--color--ink);
}

.section--features-list .feature-grid {
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--20);
}

.section--features-list.section--align-center .section__heading {
	max-width: 42rem;
}

.section--features-list.section--align-center .feature-grid {
	width: min(42rem, 100%);
	margin-inline: auto;
}

.section--features-list .feature-grid__item {
	flex-direction: row;
	align-items: flex-start;
	text-align: start;
	gap: var(--wp--preset--spacing--20);
}

.section--features-list .feature-grid__icon-wrap {
	width: 1.5rem;
	height: 1.5rem;
	margin-top: 0.2rem;
	background: none;
	border-radius: 0;
}

.section--features-list .feature-grid__icon {
	width: 1.5rem;
	height: 1.5rem;
	filter: none;
}

.section--features-list .feature-grid__title {
	font-size: var(--wp--preset--font-size--lg);
	text-transform: none;
	letter-spacing: 0;
}

.section--features-list .feature-grid__item:not(:has(.feature-grid__body)) .feature-grid__title {
	font-size: var(--wp--preset--font-size--md);
	font-weight: 400;
	line-height: 1.5;
	text-wrap: pretty;
}

/* ---------- section: rich-text ---------- */

.section--rich-text .section__heading {
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
	text-wrap: pretty;
}

.section--align-center.section--rich-text .section__heading,
.section--align-center.section--rich-text .rich-text__media,
.section--align-center.section--rich-text .rich-text__video {
	align-self: stretch;
	width: 100%;
	max-width: none;
}

.section--align-center.section--rich-text .rich-text {
	margin-inline: auto;
	text-align: center;
	color: var(--wp--preset--color--ink);
	font-weight: 400;
}

.section--rich-text:has(.split-pair) {
	gap: var(--wp--preset--spacing--20);
}

.section--rich-text .rich-text:has(.split-pair),
.section--align-center.section--rich-text .rich-text:has(.split-pair) {
	max-width: none;
	width: 100%;
	text-align: start;
}

.section--rich-text .rich-text h3 {
	margin: 0 0 var(--wp--preset--spacing--40);
	font-size: clamp(1.125rem, 2.2vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
	text-align: center;
}

.rich-text__video {
	width: 100%;
	max-width: 64rem;
	margin-inline: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--wp--preset--color--ink);
}

.rich-text__video iframe,
.rich-text__video video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.section--rich-text .rich-text {
	max-width: 40rem;
	font-size: var(--wp--preset--font-size--lg);
	line-height: 1.65;
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

.rich-text > :first-child { margin-top: 0; }
.rich-text > :last-child  { margin-bottom: 0; }

.rich-text strong {
	color: var(--wp--preset--color--brand);
	font-weight: 700;
}

.rich-text a {
	color: var(--wp--preset--color--ink);
}

.rich-text a:hover {
	color: var(--wp--preset--color--brand);
}

.rich-text .doc-links,
.rich-text ul.doc-links {
	list-style: none;
	margin: var(--wp--preset--spacing--20) 0 0;
	padding: 0;
	font-size: var(--wp--preset--font-size--xs);
	line-height: 2;
	text-align: start;
}

.rich-text__media {
	margin: 0;
	max-width: none;
	width: 100%;
}

.section--align-center .rich-text__media {
	margin-inline: auto;
}

.rich-text__media img {
	display: block;
	width: 100%;
	height: auto;
}

.downloads {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: var(--wp--preset--font-size--xs);
	line-height: 2;
	text-align: start;
	width: 100%;
}

.downloads__item {
	max-width: none;
}

.downloads__link {
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}

.downloads__link:hover {
	color: var(--wp--preset--color--brand);
	text-decoration: underline;
}

.downloads__meta {
	color: var(--wp--preset--color--muted);
	margin-left: var(--wp--preset--spacing--10);
}

/* ---------- section: steps ---------- */

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
	gap: var(--wp--preset--spacing--30);
	width: 100%;
}

.steps__item {
	max-width: none;
	counter-increment: step;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--10);
}

.steps__item::before {
	content: counter(step);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 900;
	color: var(--wp--preset--color--brand);
}

.steps__image {
	width: 100%;
	height: auto;
}

.steps__title {
	margin: 0;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 900;
}

.steps__body {
	margin: 0;
}

/* ---------- section: comparison ---------- */

.section--comparison .section__eyebrow {
	color: var(--wp--preset--color--brand);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section--comparison .section__heading {
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.section__heading--display {
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--ink);
}

.comparison__lede {
	max-width: 40rem;
	font-size: var(--wp--preset--font-size--lg);
	line-height: 1.7;
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

.comparison__lede strong {
	color: var(--wp--preset--color--ink);
	font-weight: 600;
}

.comparison {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--20);
	width: 100%;
	max-width: 64rem;
	margin-inline: auto;
	text-align: start;
}

.comparison__column {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--20);
	padding: 1.5rem 1.5rem 1.75rem;
	background: var(--wp--preset--color--surface);
	border: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
	border-radius: var(--wp--custom--radius--card);
}

.comparison__column--emphasis {
	border-color: var(--wp--preset--color--brand);
	box-shadow: inset 3px 0 0 var(--wp--preset--color--brand);
}

.comparison__media {
	margin: 0 0 var(--wp--preset--spacing--10);
}

.comparison__media img {
	display: block;
	width: 100%;
	max-height: 4.5rem;
	height: auto;
	object-fit: contain;
	object-position: start;
}

.comparison__title {
	margin: 0;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 700;
	letter-spacing: 0;
	color: var(--wp--preset--color--heading);
}

.comparison__column--emphasis .comparison__title {
	color: var(--wp--preset--color--brand);
}

.comparison__points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 400;
	letter-spacing: 0;
	color: var(--wp--preset--color--heading);
}

.comparison__column--emphasis .comparison__points {
	color: var(--wp--preset--color--ink);
}

.comparison__points li {
	display: grid;
	grid-template-columns: 1.15rem minmax(0, 1fr);
	gap: 0.7rem;
	align-items: start;
	max-width: none;
	line-height: 1.45;
}

.comparison__points li::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	margin-top: 0.45em;
	border-radius: 50%;
	background: var(--wp--preset--color--muted);
}

.comparison__column--emphasis .comparison__points li::before {
	width: 0.7rem;
	height: 0.4rem;
	margin-top: 0.4em;
	border-radius: 0;
	background: none;
	border-left: 2px solid var(--wp--preset--color--brand);
	border-bottom: 2px solid var(--wp--preset--color--brand);
	transform: rotate(-45deg);
	transform-origin: center;
}

@media (min-width: 48rem) {
	.comparison {
		grid-template-columns: 1fr 1fr;
		gap: var(--wp--preset--spacing--30);
		align-items: stretch;
	}
}

/* ---------- section: logo-wall ---------- */

.section--logo-wall .section__heading {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brand);
}

.section--logo-wall-marquee {
	overflow: hidden;
}

.logo-wall {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: 100%;
}

.logo-wall__item {
	max-width: none;
	flex: 0 1 calc(16.666% - 25px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-wall:has(> :nth-child(-n+5):last-child) .logo-wall__item {
	flex: 0 1 10rem;
}

.logo-wall__item a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-wall__image {
	display: block;
	width: auto;
	height: 3rem;
	max-width: 9.5rem;
	object-fit: contain;
}

.logo-wall--marquee {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--30);
	width: calc(100% + 2 * var(--cphnano-page-inset));
	margin-inline: calc(-1 * var(--cphnano-page-inset));
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 5%,
		#000 95%,
		transparent
	);
}

.logo-wall__marquee {
	display: flex;
	width: max-content;
	animation: logo-wall-scroll calc(var(--logo-wall-count, 6) * 4.5s) linear infinite;
}

.logo-wall__marquee--reverse {
	animation-direction: reverse;
	animation-duration: calc(var(--logo-wall-count, 6) * 5.5s);
}

.logo-wall--marquee:hover .logo-wall__marquee,
.logo-wall--marquee:focus-within .logo-wall__marquee {
	animation-play-state: paused;
}

.logo-wall--marquee .logo-wall__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 3.5rem;
	margin: 0;
	padding: 0 3.5rem 0 0;
	list-style: none;
}

.logo-wall--marquee .logo-wall__item {
	flex: 0 0 auto;
}

.logo-wall--marquee .logo-wall__image {
	height: 2.75rem;
	max-width: 8.5rem;
	opacity: 0.55;
	filter: grayscale(1);
	transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-wall--marquee .logo-wall__item:hover .logo-wall__image,
.logo-wall--marquee .logo-wall__item:focus-within .logo-wall__image {
	opacity: 1;
	filter: none;
	transform: scale(1.06);
}

@keyframes logo-wall-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.logo-wall__marquee {
		animation: none;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.logo-wall__marquee--reverse,
	.logo-wall--marquee .logo-wall__list[aria-hidden="true"] {
		display: none;
	}

	.logo-wall--marquee .logo-wall__list {
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		gap: var(--wp--preset--spacing--30) 3.5rem;
		width: 100%;
	}

	.logo-wall--marquee .logo-wall__image {
		opacity: 0.7;
	}
}

/* ---------- section: accordion ---------- */

.accordion {
	display: flex;
	flex-direction: column;
	border-top: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
	width: 100%;
	text-align: start;
}

.accordion__item {
	border-bottom: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.accordion__question {
	display: flex;
	align-items: baseline;
	gap: var(--wp--preset--spacing--20);
	padding: var(--wp--preset--spacing--20) 0;
	cursor: pointer;
	font-weight: 900;
	color: var(--wp--preset--color--ink);
	list-style: none;
}

.accordion__question::-webkit-details-marker {
	display: none;
}

.accordion__question::after {
	content: "";
	flex: none;
	margin-left: auto;
	width: 0.5rem;
	height: 0.5rem;
	border-right: var(--wp--custom--rule--accent-width) solid var(--wp--preset--color--brand);
	border-bottom: var(--wp--custom--rule--accent-width) solid var(--wp--preset--color--brand);
	transform: rotate(45deg);
	transform-origin: center;
	transition: transform var(--wp--custom--transition);
}

.accordion__item[open] .accordion__question::after {
	transform: rotate(-135deg);
}

.accordion__answer {
	padding-bottom: var(--wp--preset--spacing--30);
}

.accordion__answer > :first-child { margin-top: 0; }
.accordion__answer > :last-child  { margin-bottom: 0; }

/* ---------- section: stat-row ---------- */

.stat-row {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
	gap: var(--wp--preset--spacing--30);
	width: 100%;
}

.stat-row__value {
	font-size: var(--wp--preset--font-size--xxl);
	font-weight: 900;
	line-height: 1.1;
	color: var(--wp--preset--color--heading);
}

.stat-row__label {
	margin: var(--wp--preset--spacing--10) 0 0;
	color: var(--wp--preset--color--ink);
}

/* ---------- section: testimonial ---------- */

.section--testimonial .section__heading {
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.testimonial-videos {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--20);
	width: 100%;
}

.testimonial-videos__item {
	max-width: none;
	margin: 0;
	overflow: hidden;
	background: var(--wp--preset--color--ink);
}

.testimonial-videos__player {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
	background: var(--wp--preset--color--ink);
}

@media (min-width: 48rem) {
	.section--testimonial-row .testimonial-videos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--wp--preset--spacing--20);
	}
}

.testimonials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--wp--preset--spacing--40);
	width: 100%;
}

.section--testimonial-row .testimonials {
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.testimonials__item {
	max-width: none;
}

.testimonial {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--20);
	height: 100%;
	text-align: center;
}

.testimonial__label {
	margin: 0;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 900;
	letter-spacing: 1.06px;
	color: var(--wp--preset--color--heading);
	text-transform: uppercase;
}

.testimonial__quote {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: italic;
	color: var(--wp--preset--color--ink);
}

.testimonial__quote p {
	margin: 0;
}

.testimonial__quote strong {
	font-style: italic;
	font-weight: 700;
}

.testimonial__source {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--10);
	margin-top: auto;
}

.testimonial__portrait {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial__attribution {
	display: flex;
	flex-direction: column;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
}

.testimonial__name,
.testimonial__role {
	color: var(--wp--preset--color--ink);
}

/* ---------- section: cta-banner ---------- */

.cta-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	align-content: center;
	gap: var(--wp--preset--spacing--30);
	width: 100%;
}

.cta-banner__text {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--10);
	flex: 1 1 16rem;
}

.cta-banner__body {
	margin: 0;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

.cta-banner__action {
	margin: 0;
	max-width: none;
}

.section--cta-banner.section--align-center .cta-banner {
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: var(--wp--preset--spacing--20);
}

.section--cta-banner.section--align-center .cta-banner__text {
	flex: 0 0 auto;
	width: auto;
	max-width: 40rem;
}

.section--cta-banner.section--align-center {
	padding-block: 2.25rem;
	gap: var(--wp--preset--spacing--20);
}

.section--cta-banner.section--align-center .section__heading {
	font-weight: 700;
	color: var(--wp--preset--color--ink);
}

.section--cta-banner.section--align-center .button {
	width: auto;
	min-width: 12rem;
}

.section--cta-loud .cta-banner {
	max-width: var(--wp--style--global--wide-size);
	margin-inline: auto;
}

/* ---------- section: enquiry ---------- */

.section--enquiry .section__heading {
	font-size: clamp(1.625rem, 3.6vw, 2.375rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--ink);
}

.section--enquiry h1.section__heading {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	line-height: 1.1;
}

.section--enquiry .section__lede {
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 300;
	color: var(--wp--preset--color--heading);
}

.enquiry {
	width: min(40rem, 100%);
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--30);
}

.section--enquiry-split {
	text-align: start;
	align-items: stretch;
}

.section--enquiry-split .enquiry {
	width: 100%;
	max-width: none;
	align-self: stretch;
	text-align: start;
}

.section--enquiry-split .enquiry__intro .section__heading,
.section--enquiry-split .enquiry__intro .section__lede {
	margin-inline: 0;
	text-align: start;
}

.section--enquiry-split .enquiry__intro .section__lede {
	max-width: 28rem;
}

.section--enquiry-split .enquiry__intro {
	padding-block: 0.2rem;
}

@media (min-width: 48rem) {
	.section--enquiry-split .enquiry {
		display: grid;
		grid-template-columns: minmax(16rem, 0.85fr) minmax(22rem, 1.15fr);
		gap: var(--wp--preset--spacing--50);
		align-items: start;
	}

	.section--enquiry-split:has(.enquiry__media) .enquiry {
		grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1.05fr);
	}
}

.enquiry__media {
	margin: var(--wp--preset--spacing--20) 0 0;
	width: 100%;
	max-width: 26rem;
}

.enquiry__media img {
	display: block;
	width: 100%;
	height: auto;
}

.section--enquiry-split:has(.enquiry__media) .enquiry__form {
	padding: var(--wp--preset--spacing--40);
	background: var(--wp--preset--color--wash);
	border-radius: var(--wp--custom--radius--card);
}

.enquiry__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--wp--preset--spacing--20);
}

.enquiry__notice {
	margin: 0;
	font-weight: 700;
}

.enquiry__notice--ok {
	color: var(--wp--preset--color--heading);
}

.enquiry__notice--error {
	color: var(--wp--preset--color--brand);
}

.enquiry__hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.enquiry__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--20);
}

@media (min-width: 36rem) {
	.enquiry__form {
		grid-template-columns: 1fr 1fr;
	}

	.enquiry__hp,
	.enquiry__field:has(textarea),
	.enquiry__actions {
		grid-column: 1 / -1;
	}
}

.enquiry__field {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: start;
}

.enquiry__field label {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
	color: var(--wp--preset--color--heading);
}

.enquiry__field input,
.enquiry__field select,
.enquiry__field textarea {
	width: 100%;
	min-height: 3rem;
	padding: 12px 16px;
	border: 1px solid var(--wp--preset--color--line);
	border-radius: var(--wp--custom--radius--card);
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--ink);
	font: inherit;
}

.enquiry__field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23414141' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 2.5rem;
}

.enquiry__field textarea {
	min-height: 8.5rem;
	resize: vertical;
}

.enquiry__field input:focus,
.enquiry__field select:focus,
.enquiry__field textarea:focus {
	border-color: var(--wp--preset--color--ink);
	outline: none;
}

.enquiry__actions {
	margin: 0;
}

button.button {
	font: inherit;
	cursor: pointer;
}

/* ---------- instruments ---------- */

.instrument-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--20);
	align-items: flex-end;
	width: 100%;
}

.instrument-filters__field {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 10rem;
}

.instrument-filters__field label {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
}

.instrument-filters__field input,
.instrument-filters__field select {
	padding: 10px 12px;
	border: 1px solid var(--wp--preset--color--ink);
	border-radius: var(--wp--custom--radius--card);
	font: inherit;
}

.instrument-filters__actions {
	margin: 0;
}

.instrument-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.instrument-table {
	border-collapse: collapse;
	width: 100%;
	font-size: var(--wp--preset--font-size--xs);
	text-align: start;
}

.instrument-table th,
.instrument-table td {
	padding: 8px 10px;
	border-bottom: 1px solid var(--wp--preset--color--line);
	white-space: nowrap;
}

.instrument-table th {
	font-weight: 900;
	color: var(--wp--preset--color--heading);
	background: var(--wp--preset--color--wash);
	position: sticky;
	top: 0;
	z-index: 1;
}

.instrument-table tbody tr:hover {
	background: var(--wp--preset--color--wash);
}

.instrument-count {
	margin: 0;
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--muted);
}

/* ---------- knowledge base ---------- */

.kb {
	display: grid;
	grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
	gap: var(--wp--preset--spacing--40);
	width: 100%;
	max-width: var(--wp--style--global--wide-size);
	margin-inline: auto;
	padding: var(--wp--preset--spacing--50) var(--cphnano-page-gutter);
	align-items: start;
}

.kb__sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--30);
	position: sticky;
	top: var(--wp--preset--spacing--20);
}

.kb-search {
	display: flex;
	gap: var(--wp--preset--spacing--10);
}

.kb-search input {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid var(--wp--preset--color--ink);
	border-radius: var(--wp--custom--radius--card);
	font: inherit;
}

.kb-nav__home {
	margin: 0 0 var(--wp--preset--spacing--20);
	font-weight: 900;
}

.kb-nav__topics,
.kb-nav__topics ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kb-nav__topics > li {
	border-bottom: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.kb-nav__topics summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding-block: var(--wp--preset--spacing--10);
	font-weight: 700;
}

.kb-nav__topics summary a {
	flex: 1;
	text-decoration: none;
}

.kb-nav__topics ul {
	padding: 0 0 var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
}

.kb-nav__topics ul a {
	display: block;
	padding-block: 4px;
	font-size: var(--wp--preset--font-size--sm);
	text-decoration: none;
}

.kb-nav .is-current a {
	color: var(--wp--preset--color--brand);
	font-weight: 700;
}

.kb-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--muted);
}

.kb-crumbs a {
	text-decoration: none;
}

.kb-hub {
	list-style: none;
	margin: var(--wp--preset--spacing--30) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: var(--wp--preset--spacing--20);
}

.kb-hub__card {
	padding: var(--wp--preset--spacing--30);
	background: var(--wp--preset--color--wash);
	border-radius: var(--wp--custom--radius--card);
}

.kb-hub__card h2 {
	margin: 0 0 var(--wp--preset--spacing--10);
	font-size: var(--wp--preset--font-size--lg);
}

.kb-hub__card a {
	text-decoration: none;
}

.kb-hub__card p {
	margin: 0;
	font-size: var(--wp--preset--font-size--sm);
}

.kb-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kb-list li {
	padding-block: var(--wp--preset--spacing--10);
	border-bottom: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.kb-list a {
	font-weight: 700;
	text-decoration: none;
}

.kb-list p {
	margin: 6px 0 0;
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--muted);
}

.kb-group {
	margin-top: var(--wp--preset--spacing--40);
}

.kb-group h2 {
	margin: 0 0 var(--wp--preset--spacing--10);
	font-size: var(--wp--preset--font-size--lg);
}

.kb-group h2 a {
	text-decoration: none;
}

.kb-article__body {
	margin-top: var(--wp--preset--spacing--30);
}

.kb-article__body img {
	height: auto;
}

.kb-note {
	margin: var(--wp--preset--spacing--20) 0;
	padding: var(--wp--preset--spacing--20);
	background: var(--wp--preset--color--wash);
	border-left: var(--wp--custom--rule--accent-width) solid var(--wp--preset--color--brand);
}

.kb-note p {
	margin: 0;
}

.kb-related {
	margin-top: var(--wp--preset--spacing--50);
	padding-top: var(--wp--preset--spacing--30);
	border-top: var(--wp--custom--rule--width) solid var(--wp--preset--color--line);
}

.kb-related h2 {
	margin: 0 0 var(--wp--preset--spacing--20);
}

@media (max-width: 50rem) {
	.kb {
		grid-template-columns: 1fr;
	}

	.kb__sidebar {
		position: static;
	}
}

/* ---------- motion ---------- */

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

	.site-backdrop {
		display: none;
	}
}
