:root {
	color-scheme: light dark;
	--manuco-blue: #0630dc;
	--manuco-link: #0630dc;
	--manuco-azure: #0079f8;
	--manuco-ink: #080808;
	--manuco-text: #232323;
	--manuco-muted: #656565;
	--manuco-line: #e4e4e4;
	--manuco-soft: #f6f6f6;
	--manuco-surface: #ffffff;
	--manuco-page: #ffffff;
	--manuco-dark: #050505;
	--manuco-dark-card: #0b0b0b;
	--manuco-display: "Space Grotesk", system-ui, sans-serif;
	--manuco-body: "IBM Plex Sans", system-ui, sans-serif;
	--manuco-mono: "IBM Plex Mono", ui-monospace, monospace;
	--manuco-wrap: min(100% - 48px, 1180px);
	--manuco-radius: 10px;
	--manuco-shadow: 0 18px 46px rgba(8, 8, 8, 0.08);
}

:root[data-manuco-theme="light"] {
	color-scheme: light;
}

:root[data-manuco-theme="dark"] {
	color-scheme: dark;
	--manuco-link: #8dafff;
	--manuco-ink: #f4f4f6;
	--manuco-text: #d6d6da;
	--manuco-muted: #9a9aa2;
	--manuco-line: #292a31;
	--manuco-soft: #0c0d11;
	--manuco-surface: #111218;
	--manuco-page: #08090d;
	--manuco-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.manuco-site {
	margin: 0;
	background: var(--manuco-page);
	color: var(--manuco-text);
	font-family: var(--manuco-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	transition: background-color 180ms ease, color 180ms ease;
}

.manuco-site :where(h1, h2, h3, h4, p, ul, ol, figure, blockquote) {
	margin-top: 0;
}

.manuco-site :where(h1, h2, h3, h4) {
	color: var(--manuco-ink);
	font-family: var(--manuco-display);
	letter-spacing: -0.025em;
}

/* Keep the author's sentence case, including when Astra applies title case. */
body.manuco-site :is(.manuco-header, .manuco-main, .manuco-footer),
body.manuco-site :is(.manuco-header, .manuco-main, .manuco-footer) * {
	text-transform: none !important;
	font-variant-caps: normal !important;
}

.manuco-site :is(.manuco-eyebrow, .manuco-meta-label, .manuco-filter-bar__label, .manuco-post-card__meta, .manuco-article-meta, .manuco-footer__bottom),
.manuco-site .manuco-footer h2 {
	letter-spacing: 0.03em;
}

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

.manuco-site img,
.manuco-site svg {
	display: block;
	max-width: 100%;
}

.manuco-main {
	width: 100%;
	min-height: 70vh;
	background: var(--manuco-page);
}

.manuco-wrap {
	width: var(--manuco-wrap);
	margin-inline: auto;
}

.manuco-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	transform: translateY(-160%);
	border-radius: 6px;
	background: var(--manuco-surface);
	color: var(--manuco-link);
	padding: 10px 14px;
	font-weight: 700;
}

.manuco-skip-link:focus {
	transform: translateY(0);
}

.manuco-site :focus-visible {
	outline: 3px solid var(--manuco-link);
	outline-offset: 3px;
	box-shadow: 0 0 0 3px var(--manuco-surface);
}

.manuco-site :where(a, button, input, select, textarea, summary, [tabindex]) {
	scroll-margin-block: 150px 24px;
}

.manuco-site :where(.manuco-content, .manuco-article-content, .entry-content) a {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

/* Header */
.manuco-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--manuco-line);
	background: color-mix(in srgb, var(--manuco-surface) 94%, transparent);
	backdrop-filter: blur(18px);
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manuco-header.is-scrolled {
	box-shadow: 0 14px 35px rgba(8, 8, 8, 0.07);
}

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

.manuco-header__inner {
	width: min(100% - 44px, 1280px);
	min-height: 96px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-block: 12px;
}

.manuco-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	align-self: center;
	line-height: 1;
}

.manuco-logo__asset {
	width: 206px;
	height: auto;
	aspect-ratio: 3940 / 1116;
	object-fit: contain;
	object-position: left center;
}

.manuco-site .manuco-logo__asset--dark {
	display: none;
}

.manuco-logo--dark .manuco-logo__asset--light,
.manuco-footer .manuco-logo__asset--light,
.manuco-consultation-mode .manuco-header .manuco-logo__asset--light {
	display: none;
}

.manuco-logo--dark .manuco-logo__asset--dark,
.manuco-footer .manuco-logo__asset--dark,
.manuco-consultation-mode .manuco-header .manuco-logo__asset--dark {
	display: block;
}

.manuco-nav {
	flex: 1;
	min-width: 0;
	display: grid;
	justify-items: end;
	gap: 8px;
}

.manuco-header__contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	min-height: 22px;
}

.manuco-header__contact a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 10px;
	letter-spacing: 0.025em;
	white-space: nowrap;
	transition: color 160ms ease;
}

.manuco-header__contact a:hover {
	color: var(--manuco-link);
}

.manuco-header__contact span {
	color: var(--manuco-muted);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.manuco-nav__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.manuco-nav__list,
.manuco-language-switcher {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.manuco-nav__list a {
	position: relative;
	display: block;
	color: var(--manuco-ink);
	font-size: 13px;
	font-weight: 600;
}

.manuco-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--manuco-blue);
	transition: transform 160ms ease;
}

.manuco-nav__list a:hover::after,
.manuco-nav__list .current-menu-item > a::after,
.manuco-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.manuco-language-switcher {
	gap: 5px;
}

.manuco-language-switcher a {
	display: grid;
	min-width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid var(--manuco-line);
	border-radius: 50%;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 9px;
}

.manuco-language-switcher .is-active a {
	border-color: var(--manuco-link);
	color: var(--manuco-link);
}

.manuco-theme-toggle {
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	place-items: center;
	border: 1px solid var(--manuco-line);
	border-radius: 50%;
	background: color-mix(in srgb, var(--manuco-surface) 88%, transparent);
	color: var(--manuco-ink);
	padding: 0;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.manuco-theme-toggle:hover {
	transform: rotate(8deg);
	border-color: color-mix(in srgb, var(--manuco-blue) 55%, var(--manuco-line));
	color: var(--manuco-link);
}

.manuco-theme-toggle svg {
	grid-area: 1 / 1;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.manuco-theme-toggle__sun {
	display: none !important;
}

:root[data-manuco-theme="dark"] .manuco-theme-toggle__sun {
	display: block !important;
}

:root[data-manuco-theme="dark"] .manuco-theme-toggle__moon {
	display: none;
}

.manuco-nav-toggle {
	display: none;
}

.manuco-nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

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

.manuco-nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Buttons and shared typography */
.manuco-button,
.manuco-button:visited {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 1px solid var(--manuco-blue);
	border-radius: 8px;
	background: var(--manuco-blue);
	color: #ffffff !important;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 16px 30px -16px rgba(6, 48, 220, 0.85);
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.manuco-button:hover {
	transform: translateY(-2px);
	background: #005fc5;
	border-color: var(--manuco-azure);
	box-shadow: 0 20px 38px -17px rgba(0, 121, 248, 0.9);
}

.manuco-button--nav {
	min-height: 44px;
	padding-inline: 21px;
	font-size: 13px;
}

.manuco-button--secondary,
.manuco-button--secondary:visited {
	border-color: var(--manuco-line);
	background: transparent;
	color: var(--manuco-ink) !important;
	box-shadow: none;
}

.manuco-button--secondary:hover {
	border-color: var(--manuco-link);
	background: transparent;
	color: var(--manuco-link) !important;
}

.manuco-button--bright {
	border-color: var(--manuco-azure);
	background: #005fc5;
}

.manuco-button__arrow {
	font-family: var(--manuco-mono);
	font-size: 12px;
	opacity: 0.78;
}

.manuco-text-link,
.manuco-text-link:visited {
	color: var(--manuco-link);
	font-size: 13px;
	font-weight: 700;
}

.manuco-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--manuco-link);
	font-family: var(--manuco-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.23em;
	line-height: 1.5;
	text-transform: uppercase;
}

.manuco-eyebrow::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--manuco-blue);
}

.manuco-eyebrow b {
	font: inherit;
}

.manuco-eyebrow i {
	width: 160px;
	height: 1px;
	background: var(--manuco-line);
}

.manuco-eyebrow span {
	color: var(--manuco-muted);
}

.manuco-meta-label {
	display: block;
	color: var(--manuco-link);
	font-family: var(--manuco-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.manuco-section {
	padding: clamp(68px, 7vw, 96px) 0;
	background: var(--manuco-page);
}

.manuco-section--soft {
	background: var(--manuco-soft);
}

.manuco-section--compact {
	border-top: 1px solid var(--manuco-line);
	padding-block: 70px;
}

.manuco-section h2,
.manuco-final-cta h2,
.manuco-case-cta h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 600;
	line-height: 1.08;
}

.manuco-section__intro {
	max-width: 860px;
	margin-bottom: 40px;
}

.manuco-section__intro p {
	margin: 0;
	color: var(--manuco-muted);
	font-size: 16px;
}

.manuco-section__row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 42px;
}

.manuco-section__row .manuco-eyebrow {
	margin-bottom: 16px;
}

.manuco-section__row h2 {
	max-width: 720px;
	margin-bottom: 0;
}

/* Placeholder treatment */
.manuco-media-placeholder {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: var(--media-ratio, 16 / 9);
	min-height: 220px;
	place-items: center;
	overflow: hidden;
	border: 1px dashed color-mix(in srgb, var(--manuco-muted) 48%, transparent);
	border-radius: var(--manuco-radius);
	background:
		linear-gradient(color-mix(in srgb, var(--manuco-blue) 6%, transparent) 1px, transparent 1px),
		linear-gradient(90deg, color-mix(in srgb, var(--manuco-blue) 6%, transparent) 1px, transparent 1px),
		var(--manuco-soft);
	background-size: 32px 32px;
}

.manuco-media-placeholder::before,
.manuco-media-placeholder::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	border-color: var(--manuco-link);
	border-style: solid;
}

.manuco-media-placeholder::before {
	top: -1px;
	left: -1px;
	border-width: 3px 0 0 3px;
}

.manuco-media-placeholder::after {
	right: -1px;
	bottom: -1px;
	border-width: 0 3px 3px 0;
}

.manuco-media-placeholder img {
	position: absolute;
	width: 42%;
	max-width: 230px;
	opacity: 0.13;
}

.manuco-media-placeholder span {
	position: relative;
	z-index: 1;
	max-width: 280px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 11px;
	font-weight: 500;
	text-align: center;
}

/* Homepage */
.manuco-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 8vw, 104px) 0 80px;
	background:
		radial-gradient(circle at 78% 48%, rgba(6, 48, 220, 0.08), transparent 27%),
		var(--manuco-page);
}

.manuco-hero::before {
	content: "";
	position: absolute;
	top: -210px;
	right: -150px;
	width: 520px;
	height: 520px;
	border: 1px solid color-mix(in srgb, var(--manuco-blue) 15%, transparent);
	border-radius: 50%;
	pointer-events: none;
}

.manuco-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(color-mix(in srgb, var(--manuco-blue) 18%, transparent) 0.75px, transparent 0.75px);
	background-size: 24px 24px;
	mask-image: linear-gradient(90deg, transparent 48%, #000 100%);
	opacity: 0.34;
	pointer-events: none;
}

.manuco-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
	align-items: center;
	gap: clamp(48px, 7vw, 100px);
}

.manuco-hero h1 {
	max-width: 680px;
	margin: 0 0 24px;
	font-size: clamp(43px, 5.2vw, 68px);
	font-weight: 600;
	line-height: 1.025;
}

.manuco-highlight {
	box-shadow: inset 0 -0.13em 0 color-mix(in srgb, var(--manuco-blue) 23%, transparent);
}

.manuco-hero__copy > p {
	max-width: 620px;
	margin: 0;
	color: var(--manuco-muted);
	font-size: 18px;
	font-weight: 300;
}

.manuco-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.manuco-hero__note {
	display: block;
	max-width: 520px;
	margin-top: 18px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 10px;
	letter-spacing: 0.04em;
}

.manuco-hero__media {
	position: relative;
}

.manuco-hero__media::before {
	content: "";
	position: absolute;
	inset: 12% -7% -7% 14%;
	z-index: -1;
	border-radius: 18px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--manuco-blue) 20%, transparent), transparent 70%);
	filter: blur(1px);
}

.manuco-hero__media .manuco-media-placeholder {
	aspect-ratio: 4 / 3;
	border-style: solid;
	box-shadow: var(--manuco-shadow);
}

.manuco-hero__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--manuco-radius);
	object-fit: cover;
	box-shadow: var(--manuco-shadow);
}

.manuco-hero__process {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 13px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 9px;
}

.manuco-hero__process span {
	margin-right: auto;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.manuco-hero__process i {
	color: var(--manuco-link);
	font-style: normal;
}

.manuco-hero__process b {
	border: 1px solid var(--manuco-line);
	border-radius: 999px;
	background: color-mix(in srgb, var(--manuco-surface) 82%, transparent);
	padding: 3px 7px;
	font-weight: 500;
}

.manuco-stats {
	background: var(--manuco-dark);
	color: #ffffff;
}

.manuco-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-block: 38px;
}

.manuco-stat {
	position: relative;
	padding: 0 34px 0 0;
}

.manuco-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 18px;
	width: 1px;
	height: 100%;
	background: #222222;
}

.manuco-stat::before {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	margin-bottom: 15px;
	background: #005fc5;
}

.manuco-stat strong {
	display: block;
	font-family: var(--manuco-display);
	font-size: 30px;
	line-height: 1;
}

.manuco-stat span {
	display: block;
	max-width: 195px;
	margin-top: 10px;
	color: #8f8f8f;
	font-size: 11px;
	line-height: 1.55;
}

.manuco-problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 38px;
}

.manuco-problem-card {
	position: relative;
	min-height: 265px;
	overflow: hidden;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 30px;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manuco-problem-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	transform: scaleX(0.22);
	transform-origin: left;
	background: linear-gradient(90deg, var(--manuco-blue), var(--manuco-azure));
	transition: transform 240ms ease;
}

.manuco-problem-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--manuco-blue) 25%, var(--manuco-line));
	box-shadow: var(--manuco-shadow);
}

.manuco-problem-card:hover::before {
	transform: scaleX(1);
}

.manuco-problem-card h2,
.manuco-problem-card h3 {
	margin: 19px 0 24px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.32;
}

.manuco-problem-card p {
	display: flex;
	gap: 12px;
	margin: 0;
	border-top: 1px solid var(--manuco-line);
	padding-top: 18px;
	color: var(--manuco-muted);
	font-size: 14px;
}

.manuco-problem-card p i {
	color: var(--manuco-link);
	font-style: normal;
}

.manuco-section__quote {
	max-width: 900px;
	margin: 34px 0 0;
	border: 0;
	padding: 0 0 0 44px;
	color: var(--manuco-ink);
	font-family: var(--manuco-display);
	font-size: 17px;
	font-weight: 600;
}

.manuco-section__quote::before {
	content: "”";
	float: left;
	margin-left: -44px;
	color: var(--manuco-link);
	font-size: 42px;
	line-height: 0.8;
}

.manuco-segment-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	overflow: hidden;
}

.manuco-segment-card {
	min-height: 260px;
	padding: 32px;
	background: var(--manuco-surface);
}

.manuco-segment-card:nth-child(odd) {
	border-right: 1px solid var(--manuco-line);
}

.manuco-segment-card:nth-child(n + 3) {
	border-top: 1px solid var(--manuco-line);
}

.manuco-segment-card > span {
	display: block;
	margin-bottom: 18px;
	color: var(--manuco-link);
	font-family: var(--manuco-display);
	font-size: 28px;
	font-weight: 700;
}

.manuco-segment-card h3 {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.manuco-segment-card p {
	margin-bottom: 24px;
	color: var(--manuco-muted);
	font-size: 14px;
}

.manuco-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.manuco-tags li {
	border: 1px solid var(--manuco-line);
	border-radius: 999px;
	background: color-mix(in srgb, var(--manuco-soft) 74%, transparent);
	padding: 4px 10px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 9px;
}

.manuco-offer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.manuco-offer-card {
	position: relative;
	min-height: 240px;
	overflow: hidden;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 34px;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manuco-offer-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--manuco-blue) 25%, var(--manuco-line));
	box-shadow: var(--manuco-shadow);
}

.manuco-offer-card > span {
	position: absolute;
	top: -20px;
	right: 14px;
	color: color-mix(in srgb, var(--manuco-ink) 5%, transparent);
	font-family: var(--manuco-display);
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
}

.manuco-offer-card h3 {
	position: relative;
	margin: 22px 0 12px;
	font-size: 19px;
	font-weight: 600;
}

.manuco-offer-card p {
	position: relative;
	max-width: 480px;
	margin-bottom: 22px;
	color: var(--manuco-muted);
	font-size: 14px;
}

.manuco-ai {
	background:
		linear-gradient(rgba(6, 48, 220, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6, 48, 220, 0.09) 1px, transparent 1px),
		color-mix(in srgb, var(--manuco-surface) 95%, #dce5ff);
	background-size: 28px 28px;
}

.manuco-ai__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 64px;
}

.manuco-ai__grid > div:first-child > p {
	max-width: 500px;
	margin-bottom: 26px;
	color: var(--manuco-muted);
}

.manuco-ai__points {
	display: grid;
	gap: 12px;
}

.manuco-ai__points article {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 14px;
	border: 1px solid color-mix(in srgb, var(--manuco-blue) 15%, var(--manuco-line));
	border-radius: 9px;
	background: var(--manuco-surface);
	padding: 21px;
	transition: transform 180ms ease, border-color 180ms ease;
}

.manuco-ai__points article:hover {
	transform: translateX(4px);
	border-color: color-mix(in srgb, var(--manuco-blue) 45%, var(--manuco-line));
}

.manuco-ai__points span {
	color: var(--manuco-azure);
	font-family: var(--manuco-display);
	font-weight: 700;
}

.manuco-ai__points h3 {
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 600;
}

.manuco-ai__points p {
	margin: 0;
	color: var(--manuco-muted);
	font-size: 13px;
}

.manuco-philosophy {
	background: var(--manuco-dark);
	color: #ffffff;
}

.manuco-philosophy .manuco-eyebrow {
	color: var(--manuco-azure);
}

.manuco-philosophy .manuco-eyebrow i {
	background: #242424;
}

.manuco-philosophy h2 {
	color: #ffffff;
}

.manuco-philosophy__lead {
	max-width: 650px;
	color: #8d8d8d;
}

.manuco-philosophy__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 40px;
}

.manuco-philosophy__grid article {
	position: relative;
	min-height: 230px;
	overflow: hidden;
	border: 1px solid #1f1f1f;
	border-radius: var(--manuco-radius);
	background: var(--manuco-dark-card);
	padding: 32px;
}

.manuco-philosophy__grid span {
	position: absolute;
	top: -10px;
	right: 4px;
	color: #151515;
	font-family: var(--manuco-display);
	font-size: 78px;
	font-weight: 700;
	line-height: 1;
}

.manuco-philosophy__grid h3 {
	position: relative;
	margin: 42px 0 12px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.manuco-philosophy__grid p {
	position: relative;
	margin: 0;
	color: #929292;
	font-size: 13px;
}

/* Case and post cards */
.manuco-case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.manuco-case-card,
.manuco-post-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.manuco-case-card:hover,
.manuco-post-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--manuco-blue) 30%, var(--manuco-line));
	box-shadow: var(--manuco-shadow);
}

.manuco-case-card > a,
.manuco-post-card > a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.manuco-case-card__media,
.manuco-post-card__media {
	position: relative;
	overflow: hidden;
	background: var(--manuco-soft);
}

.manuco-case-card__media > img,
.manuco-post-card__media > img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.manuco-case-card:hover .manuco-case-card__media > img,
.manuco-post-card:hover .manuco-post-card__media > img {
	transform: scale(1.025);
}

.manuco-case-card__media .manuco-media-placeholder,
.manuco-post-card__media .manuco-media-placeholder {
	min-height: 0;
	border: 0;
	border-radius: 0;
}

.manuco-case-card__image {
	display: grid;
	min-height: 180px;
	place-items: center;
	background: var(--manuco-soft);
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 11px;
	text-transform: uppercase;
}

.manuco-case-card__body,
.manuco-post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.manuco-case-card h2,
.manuco-post-card h2 {
	margin: 12px 0;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
}

.manuco-case-card strong {
	display: block;
	margin-bottom: 14px;
	color: var(--manuco-link);
	font-family: var(--manuco-display);
	font-size: 18px;
	line-height: 1.2;
}

.manuco-case-card p,
.manuco-post-card p {
	margin-bottom: 18px;
	color: var(--manuco-muted);
	font-size: 13px;
}

.manuco-case-card .manuco-tags {
	margin-bottom: 18px;
}

.manuco-case-card__body > .manuco-text-link,
.manuco-post-card__body > .manuco-text-link {
	margin-top: auto;
}

.manuco-process {
	border-top: 1px solid var(--manuco-line);
}

.manuco-process h2 {
	max-width: 820px;
	margin-bottom: 44px;
}

.manuco-process__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 36px;
}

.manuco-process__grid::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, var(--manuco-blue), var(--manuco-line) 72%);
}

.manuco-process__grid article {
	position: relative;
	border-top: 0;
	padding-top: 18px;
}

.manuco-process__grid article::before {
	content: "";
	position: absolute;
	top: -4px;
	left: 0;
	width: 9px;
	height: 9px;
	border: 2px solid var(--manuco-page);
	border-radius: 50%;
	background: var(--manuco-blue);
}

.manuco-process__grid span {
	display: block;
	margin-bottom: 24px;
	color: var(--manuco-link);
	font-family: var(--manuco-display);
	font-size: 32px;
	font-weight: 700;
}

.manuco-process__grid h3 {
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: 600;
}

.manuco-process__grid p {
	margin: 0;
	color: var(--manuco-muted);
	font-size: 13px;
}

.manuco-tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 36px;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	overflow: hidden;
}

.manuco-tech-grid article {
	min-height: 150px;
	border-right: 1px solid var(--manuco-line);
	border-bottom: 1px solid var(--manuco-line);
	background: var(--manuco-surface);
	padding: 28px;
}

.manuco-tech-grid article:nth-child(3n) {
	border-right: 0;
}

.manuco-tech-grid h3 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
}

.manuco-tech-grid p {
	margin: 0;
	color: var(--manuco-muted);
	font-size: 13px;
}

.manuco-mid-cta {
	padding-top: 64px;
	padding-bottom: 30px;
}

.manuco-mid-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 36px 44px;
}

.manuco-mid-cta__inner h2 {
	margin-bottom: 8px;
	font-size: 25px;
}

.manuco-mid-cta__inner p {
	max-width: 700px;
	margin: 0;
	color: var(--manuco-muted);
	font-size: 14px;
}

.manuco-faq-section {
	padding-top: 64px;
}

.manuco-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	max-width: 900px;
	margin-top: 32px;
}

.manuco-faq-item {
	min-width: 0;
	border-top: 1px solid var(--manuco-line);
}

.manuco-faq-item:last-child {
	border-bottom: 1px solid var(--manuco-line);
}

.manuco-faq-item > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	color: var(--manuco-ink);
	font: 600 18px/1.45 var(--manuco-display);
	list-style: none;
	cursor: pointer;
}

.manuco-faq-item > summary::-webkit-details-marker {
	display: none;
}

.manuco-faq-item > summary::after {
	content: "+";
	display: grid;
	flex: 0 0 28px;
	place-items: center;
	height: 28px;
	border: 1px solid var(--manuco-line);
	border-radius: 50%;
	color: var(--manuco-azure);
	font: 20px/1 var(--manuco-mono);
}

.manuco-faq-item[open] > summary::after {
	content: "−";
}

.manuco-faq-item__answer {
	padding: 0 52px 24px 0;
}

.manuco-faq-item__answer p {
	margin: 0;
	color: var(--manuco-muted);
	font-size: 15px;
	line-height: 1.7;
}

.manuco-blog-teaser {
	background: var(--manuco-soft);
}

.manuco-blog-teaser .manuco-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manuco-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

/* Cards own their dimensions, independently of Astra's post/grid classes. */
.manuco-site .manuco-post-grid > .manuco-post-card {
	float: none;
	width: 100%;
	min-width: 0;
	max-width: none;
	margin: 0;
	padding: 0;
}

.manuco-post-card__body,
.manuco-post-card__body :is(h2, p, span, b) {
	min-width: 0;
	white-space: normal;
	overflow-wrap: anywhere;
}

.manuco-post-card__meta,
.manuco-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.manuco-post-card__meta span:first-child,
.manuco-article-meta span:first-child,
.manuco-article-meta a {
	color: var(--manuco-link);
	font-weight: 600;
}

.manuco-post-card .manuco-text-link {
	display: block;
	margin-top: auto;
	padding-top: 22px;
}

.manuco-text-link,
.manuco-button__arrow {
	transition: transform 160ms ease, color 160ms ease;
}

a:hover > .manuco-text-link,
.manuco-button:hover .manuco-button__arrow {
	transform: translateX(3px);
}

.manuco-case-card a:hover .manuco-text-link,
.manuco-post-card a:hover .manuco-text-link {
	transform: translateX(3px);
}

.manuco-empty-state {
	grid-column: 1 / -1;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 28px;
	color: var(--manuco-muted);
}

.manuco-final-cta,
.manuco-case-cta {
	background:
		radial-gradient(circle at 50% 0, rgba(6, 48, 220, 0.35), transparent 38%),
		var(--manuco-dark);
	color: #ffffff;
	text-align: center;
}

.manuco-final-cta {
	padding: 70px 0 72px;
}

.manuco-final-cta img {
	width: 42px;
	height: 42px;
	margin: 0 auto 22px;
	border-radius: 11px;
	object-fit: cover;
}

.manuco-final-cta h2,
.manuco-case-cta h2 {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
	color: #ffffff;
}

.manuco-final-cta p {
	max-width: 720px;
	margin: 0 auto 24px;
	color: #969696;
}

.manuco-final-cta small {
	display: block;
	margin-top: 16px;
	color: #999999;
	font-family: var(--manuco-mono);
	font-size: 10px;
}

/* Archives */
.manuco-archive-hero,
.manuco-subhero,
.manuco-contact {
	padding: clamp(64px, 7vw, 92px) 0 54px;
	background:
		radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--manuco-blue) 8%, transparent), transparent 25%),
		var(--manuco-page);
}

.manuco-archive-hero h1,
.manuco-subhero h1,
.manuco-contact h1,
.manuco-case-study__header h1,
.manuco-article-header h1,
.manuco-consult h1 {
	max-width: 920px;
	margin-bottom: 18px;
	font-size: clamp(38px, 4.3vw, 56px);
	font-weight: 600;
	line-height: 1.05;
}

.manuco-archive-hero > .manuco-wrap > p,
.manuco-subhero p,
.manuco-contact__lead {
	max-width: 760px;
	margin: 0;
	color: var(--manuco-muted);
	font-size: 17px;
	font-weight: 300;
}

.manuco-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.manuco-filters a {
	border: 1px solid var(--manuco-line);
	border-radius: 999px;
	padding: 8px 15px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 10px;
	font-weight: 500;
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.manuco-filters a:hover,
.manuco-filters a.is-active {
	border-color: var(--manuco-link);
	background: var(--manuco-blue);
	color: #ffffff;
}

.manuco-filters a:hover {
	transform: translateY(-1px);
}

.manuco-filter-bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	margin-top: 38px;
	border-top: 1px solid var(--manuco-line);
	border-bottom: 1px solid var(--manuco-line);
	padding: 18px 0;
}

.manuco-filter-bar__label {
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.manuco-section--archive {
	padding-top: 20px;
}

.manuco-case-list {
	display: grid;
	gap: 24px;
}

.manuco-case-list .manuco-case-card > a {
	display: grid;
	grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.manuco-case-list .manuco-case-card__media {
	min-height: 330px;
}

.manuco-case-list .manuco-case-card__media > img,
.manuco-case-list .manuco-case-card__media .manuco-media-placeholder {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

.manuco-case-list .manuco-case-card__body {
	padding: 38px 42px;
}

.manuco-case-list .manuco-case-card h2 {
	font-size: clamp(23px, 2.6vw, 31px);
}

.manuco-case-list .manuco-case-card p {
	font-size: 14px;
}

.manuco-post-grid--archive {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding-top: 0;
}

.manuco-post-grid--archive .manuco-post-card h2 {
	font-size: 21px;
}

.manuco-post-grid--archive .manuco-post-card__body {
	min-height: 260px;
}

.navigation.pagination {
	margin-top: 40px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.nav-links .page-numbers {
	display: grid;
	min-width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--manuco-line);
	border-radius: 6px;
}

.nav-links .current {
	border-color: var(--manuco-link);
	background: var(--manuco-blue);
	color: #ffffff;
}

/* Single article and case study */
.manuco-article-header,
.manuco-case-study__header {
	padding: clamp(62px, 7vw, 88px) 0 42px;
	background: var(--manuco-page);
}

.manuco-article-wrap {
	width: min(100% - 48px, 860px);
	margin-inline: auto;
}

.manuco-article-header h1,
.manuco-case-study__header h1 {
	margin-top: 18px;
}

.manuco-article-header p,
.manuco-case-study__header p {
	max-width: 800px;
	margin: 0;
	color: var(--manuco-muted);
	font-size: 18px;
}

.manuco-featured-image,
.manuco-case-study__media {
	margin: 0 0 42px;
}

.manuco-featured-image img,
.manuco-case-study__media img {
	width: 100%;
	border-radius: var(--manuco-radius);
}

.manuco-article-wrap > .manuco-media-placeholder {
	margin-bottom: 42px;
}

.manuco-article-content {
	color: var(--manuco-text);
}

.manuco-article-content > * {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.manuco-article-content > .alignwide {
	max-width: 1040px;
}

.manuco-article-content > .alignfull {
	max-width: none;
}

.manuco-article-content :where(p, li) {
	color: var(--manuco-text);
	font-size: 17px;
	line-height: 1.72;
}

.manuco-article-content :where(h2, h3, h4) {
	margin-top: 42px;
	margin-bottom: 16px;
	font-weight: 600;
}

.manuco-article-content h2 {
	font-size: 29px;
}

.manuco-article-content h3 {
	font-size: 23px;
}

.manuco-article-content a {
	color: var(--manuco-link);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.manuco-article-content blockquote {
	border-left: 3px solid var(--manuco-blue);
	padding-left: 24px;
}

.manuco-article-footer {
	margin: 60px 0 80px;
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-soft);
	padding: 28px;
}

.manuco-article-footer p {
	margin-bottom: 18px;
	font-family: var(--manuco-display);
	font-size: 19px;
	font-weight: 600;
}

.manuco-case-study > .manuco-wrap {
	padding-bottom: 72px;
}

.manuco-case-study > .manuco-wrap > .manuco-media-placeholder {
	margin-bottom: 44px;
}

.manuco-case-blocks {
	margin-top: 24px;
}

.manuco-case-blocks section {
	display: grid;
	grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
	gap: 64px;
	border-top: 1px solid var(--manuco-line);
	padding: 40px 0;
}

.manuco-case-blocks span {
	color: var(--manuco-link);
	font-family: var(--manuco-mono);
	font-size: 10px;
	letter-spacing: 0.18em;
}

.manuco-case-blocks h2 {
	margin-top: 10px;
	font-size: 21px;
	font-weight: 600;
}

.manuco-rich-text :where(p, li) {
	color: var(--manuco-text);
	font-size: 16px;
}

.manuco-results {
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-soft);
	padding: 34px;
}

.manuco-results__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 20px;
}

.manuco-results strong {
	display: block;
	color: var(--manuco-link);
	font-family: var(--manuco-display);
	font-size: 24px;
	line-height: 1.15;
}

.manuco-results p {
	margin: 8px 0 0;
	color: var(--manuco-muted);
	font-size: 12px;
}

.manuco-results blockquote {
	margin: 30px 0 0;
	border: 0;
	padding: 0 0 0 34px;
	font-family: var(--manuco-display);
	font-size: 17px;
	font-weight: 600;
}

.manuco-results blockquote::before {
	content: "”";
	float: left;
	margin-left: -34px;
	color: var(--manuco-link);
	font-size: 40px;
	line-height: 0.8;
}

.manuco-results cite {
	display: block;
	margin-top: 8px;
	color: var(--manuco-muted);
	font-family: var(--manuco-mono);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
}

.manuco-case-study__additional {
	margin-top: 56px;
}

.manuco-case-cta {
	padding: 64px 0;
}

/* Contact and forms */
.manuco-contact {
	padding-bottom: 82px;
}

.manuco-contact__lead {
	margin-bottom: 44px;
}

.manuco-contact__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: start;
	gap: 28px;
	margin-top: 46px;
}

.manuco-contact__aside {
	display: grid;
	gap: 18px;
}

.manuco-info-card,
.manuco-form-card {
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 32px;
}

.manuco-info-card h2 {
	margin: 14px 0 8px;
	font-size: 20px;
	font-weight: 600;
}

.manuco-info-card p {
	margin-bottom: 16px;
	color: var(--manuco-muted);
}

.manuco-info-card > a {
	display: block;
	margin-top: 5px;
	font-family: var(--manuco-mono);
	font-size: 13px;
}

.manuco-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 20px;
}

.manuco-socials a {
	border: 1px solid var(--manuco-line);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 12px;
}

.manuco-info-card--cta {
	background: var(--manuco-soft);
}

.manuco-info-card--cta p {
	margin-bottom: 18px;
	font-size: 13px;
}

.manuco-form-card > .manuco-meta-label + p {
	margin-top: 8px;
	color: var(--manuco-muted);
	font-size: 14px;
}

.manuco-form-card :where(label, legend) {
	color: var(--manuco-ink);
	font-size: 13px;
	font-weight: 600;
}

.manuco-form-card :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--manuco-muted);
	border-radius: 7px;
	background: var(--manuco-surface);
	color: var(--manuco-text);
	padding: 12px 14px;
	font: 15px/1.4 var(--manuco-body);
}

.manuco-form-card textarea {
	min-height: 120px;
	resize: vertical;
}

.manuco-form-card :where(button, input[type="submit"]) {
	min-height: 48px;
	border: 0;
	border-radius: 7px;
	background: var(--manuco-blue);
	color: #ffffff;
	padding: 0 24px;
	font-weight: 700;
}

.manuco-form-placeholder {
	margin-top: 24px;
	border: 1px dashed color-mix(in srgb, var(--manuco-blue) 40%, var(--manuco-line));
	border-radius: 8px;
	background: var(--manuco-soft);
	padding: 24px;
}

.manuco-form-placeholder p {
	margin-bottom: 18px;
	color: var(--manuco-muted);
	font-size: 13px;
}

/* Consultation */
.manuco-consultation-mode .manuco-header {
	border-color: #1f1f1f;
	background: rgba(5, 5, 5, 0.96);
}

.manuco-consultation-mode .manuco-header :where(.manuco-nav__list a, .manuco-header__contact a) {
	color: #b2b2b2;
}

.manuco-consultation-mode .manuco-header :where(.manuco-language-switcher a, .manuco-theme-toggle) {
	border-color: #2d2d2d;
}

.manuco-consultation-mode .manuco-header .manuco-theme-toggle {
	background: #111111;
	color: #ffffff;
}

.manuco-consult {
	min-height: 720px;
	padding: 32px 0 70px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		radial-gradient(circle at 76% 8%, rgba(6, 48, 220, 0.34), transparent 30%),
		var(--manuco-dark);
	background-size: 54px 54px, 54px 54px, auto, auto;
	color: #ffffff;
}

.manuco-consult__eyebrow {
	margin-bottom: 54px;
	color: #999999;
	font-family: var(--manuco-mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-align: right;
	text-transform: uppercase;
}

.manuco-consult__grid {
	display: grid;
	grid-template-columns: 1fr 0.92fr;
	align-items: start;
	gap: 70px;
}

.manuco-consult h1 {
	color: #ffffff;
}

.manuco-consult__lead {
	max-width: 560px;
	color: #9b9b9b;
	font-size: 17px;
}

.manuco-consult__benefits {
	margin-top: 34px;
	border-top: 1px solid #232323;
}

.manuco-consult__benefits article {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 16px;
	border-bottom: 1px solid #232323;
	padding: 16px 0;
}

.manuco-consult__benefits span {
	color: var(--manuco-azure);
	font-family: var(--manuco-display);
	font-size: 18px;
	font-weight: 700;
}

.manuco-consult__benefits p {
	margin: 0;
	color: #d0d0d0;
	font-size: 14px;
}

.manuco-consult__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px 28px;
	margin-top: 38px;
}

.manuco-consult__stats strong {
	display: block;
	color: var(--manuco-azure);
	font-family: var(--manuco-display);
	font-size: 25px;
}

.manuco-consult__stats span {
	display: block;
	max-width: 190px;
	color: #777777;
	font-size: 10px;
}

.manuco-form-card--consult {
	color-scheme: light;
	--manuco-ink: #080808;
	--manuco-text: #232323;
	--manuco-muted: #656565;
	--manuco-link: #0630dc;
	--manuco-surface: #ffffff;
	--manuco-soft: #f6f6f6;
	background: #ffffff;
	color: #232323;
	padding: 34px;
}

.manuco-form-card--consult :where(label, legend) {
	color: #080808;
}

.manuco-form-card--consult :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
	border-color: #656565;
	background: #ffffff;
	color: #232323;
}

.manuco-form-card--consult > small {
	display: block;
	margin-top: 16px;
	color: #656565;
	font-family: var(--manuco-mono);
	font-size: 9px;
	text-align: center;
}

.manuco-consult__faq {
	--manuco-ink: #ffffff;
	--manuco-line: #303030;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	max-width: 900px;
	margin-top: 58px;
}

.manuco-consult__faq h2 {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
}

.manuco-consult__faq p {
	margin: 0;
	color: #858585;
	font-size: 13px;
}

.manuco-consultation-mode .manuco-footer {
	padding-top: 8px;
}

/* Footer */
.manuco-footer {
	position: relative;
	padding: 62px 0 30px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		var(--manuco-dark);
	background-size: 54px 54px;
	color: #8d8d8d;
}

.manuco-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.9fr 0.9fr;
	gap: 62px;
}

.manuco-footer__logo {
	margin-bottom: 22px;
}

.manuco-footer__logo .manuco-logo__asset {
	width: 220px;
	height: auto;
}

.manuco-footer__brand p,
.manuco-footer__company p {
	max-width: 260px;
	margin-bottom: 20px;
	color: #858585;
	font-size: 13px;
}

.manuco-footer h2 {
	margin-bottom: 20px;
	color: #999999;
	font-family: var(--manuco-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

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

.manuco-footer__menu li {
	margin-bottom: 7px;
}

.manuco-footer a {
	color: #8d8d8d;
	font-size: 12px;
}

.manuco-footer a:hover {
	color: #ffffff;
}

.manuco-footer__company > a {
	display: block;
	font-family: var(--manuco-mono);
}

.manuco-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 52px;
	border-top: 1px solid #202020;
	padding-top: 24px;
	color: #999999;
	font-family: var(--manuco-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.manuco-footer__bottom a {
	font: inherit;
	letter-spacing: inherit;
}

.manuco-footer__bottom-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.manuco-footer .manuco-theme-toggle {
	display: inline-flex;
	width: auto;
	height: 34px;
	flex: none;
	align-items: center;
	gap: 8px;
	border-color: #292929;
	border-radius: 999px;
	background: #0b0b0b;
	color: #8d8d8d;
	padding: 0 12px;
	font: inherit;
	letter-spacing: inherit;
	text-transform: uppercase;
}

.manuco-footer .manuco-theme-toggle:hover {
	transform: translateY(-1px);
	border-color: #4b4b4b;
	background: #121212;
	color: #ffffff;
}

.manuco-footer .manuco-theme-toggle svg {
	grid-area: auto;
	width: 15px;
	height: 15px;
}

.manuco-theme-toggle__label {
	white-space: nowrap;
}

/* Utilities controlled by manuco-theme.js */
#ast-scroll-top,
.ast-scroll-to-top-right,
.ast-scroll-to-top-left {
	display: none !important;
}

.manuco-scroll-top {
	position: fixed;
	right: clamp(16px, 2.2vw, 30px);
	bottom: clamp(16px, 2.2vw, 30px);
	z-index: 90;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	transform: translateY(14px) scale(0.92);
	border: 1px solid color-mix(in srgb, var(--manuco-blue) 70%, var(--manuco-line));
	border-radius: 50%;
	background: var(--manuco-blue);
	color: #ffffff;
	padding: 0;
	opacity: 0;
	box-shadow: 0 16px 34px rgba(6, 48, 220, 0.28);
	pointer-events: none;
	cursor: pointer;
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.manuco-scroll-top.is-visible {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

.manuco-scroll-top:hover {
	transform: translateY(-3px) scale(1);
	background: #005fc5;
}

.manuco-scroll-top svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.manuco-motion-ready .manuco-reveal {
	transform: translateY(20px);
	opacity: 0;
	transition: opacity 560ms ease var(--manuco-reveal-delay, 0ms), transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--manuco-reveal-delay, 0ms);
}

.manuco-motion-ready .manuco-reveal.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.manuco-motion-ready :where(.manuco-problem-card, .manuco-offer-card, .manuco-case-card, .manuco-post-card).manuco-reveal.is-visible:hover {
	transform: translateY(-3px);
}

.manuco-motion-ready .manuco-ai__points article.manuco-reveal.is-visible:hover {
	transform: translateX(4px);
}

/* Generic pages and integrations */
.manuco-subhero + .manuco-content-section {
	padding: 54px 0 80px;
}

.manuco-subhero--center {
	text-align: center;
}

.manuco-subhero--center .manuco-eyebrow {
	justify-content: center;
}

.manuco-subhero--center p {
	margin-right: auto;
	margin-left: auto;
}

.manuco-subhero--center .manuco-button {
	margin-top: 24px;
}

.manuco-toolbox {
	padding: 78px 0;
	background: var(--manuco-dark);
	color: #ffffff;
}

.manuco-toolbox h2 {
	color: #ffffff;
}

.manuco-competencies,
.manuco-steps,
.manuco-job-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.manuco-competency,
.manuco-step,
.manuco-job-card {
	border: 1px solid var(--manuco-line);
	border-radius: var(--manuco-radius);
	background: var(--manuco-surface);
	padding: 24px;
}

.manuco-toolbox .manuco-competency {
	border-color: #242424;
	background: var(--manuco-dark-card);
}

.manuco-toolbox .manuco-competency strong {
	color: #ffffff;
}

.manuco-toolbox .manuco-competency span {
	display: block;
	color: #888888;
}

.manuco-step > span,
.manuco-job-card > span {
	color: var(--manuco-link);
	font-family: var(--manuco-mono);
	font-size: 11px;
}

.manuco-step h3,
.manuco-job-card h2 {
	margin: 14px 0 9px;
	font-size: 18px;
}

.manuco-step p,
.manuco-job-card p {
	color: var(--manuco-muted);
	font-size: 13px;
}

.manuco-job-grid {
	grid-template-columns: repeat(2, 1fr);
}

.manuco-job-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 18px;
}

.manuco-job-card__meta strong {
	border: 1px solid var(--manuco-line);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 11px;
}

.manuco-content {
	width: min(100% - 48px, 820px);
	margin-inline: auto;
}

.manuco-content :where(p, li) {
	font-size: 17px;
}

.woocommerce .site-main,
.learndash-wrapper,
.llms-course-list,
.llms-student-dashboard {
	width: var(--manuco-wrap);
	margin-inline: auto;
}

/* Manual color scheme */
:root[data-manuco-theme="dark"] .manuco-logo--auto .manuco-logo__asset--light {
	display: none;
}

:root[data-manuco-theme="dark"] .manuco-logo--auto .manuco-logo__asset--dark {
	display: block;
}

:root[data-manuco-theme="dark"] .manuco-header {
	background: rgba(8, 9, 13, 0.94);
}

:root[data-manuco-theme="dark"] .manuco-ai {
	background:
		linear-gradient(rgba(0, 121, 248, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 121, 248, 0.08) 1px, transparent 1px),
		#0b1020;
	background-size: 28px 28px;
}

:root[data-manuco-theme="dark"] :where(.manuco-stats, .manuco-philosophy, .manuco-final-cta, .manuco-case-cta, .manuco-footer) {
	--manuco-ink: #ffffff;
	--manuco-text: #d6d6d6;
	--manuco-muted: #8d8d8d;
	--manuco-line: #242424;
	--manuco-surface: #0b0b0b;
	--manuco-soft: #101010;
}

:root[data-manuco-theme="dark"] :where(.manuco-form-card--consult, .manuco-form-card--consult .manuco-form-placeholder) {
	--manuco-ink: #080808;
	--manuco-text: #232323;
	--manuco-muted: #737373;
	--manuco-line: #e4e4e4;
	--manuco-surface: #ffffff;
	--manuco-soft: #f6f6f6;
}

/* Automatic dark scheme */
@media (prefers-color-scheme: dark) {
	:root:not([data-manuco-theme]) {
		--manuco-link: #8dafff;
		--manuco-ink: #f4f4f6;
		--manuco-text: #d6d6da;
		--manuco-muted: #9a9aa2;
		--manuco-line: #292a31;
		--manuco-soft: #0c0d11;
		--manuco-surface: #111218;
		--manuco-page: #08090d;
		--manuco-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
	}

	:root:not([data-manuco-theme]) .manuco-logo--auto .manuco-logo__asset--light {
		display: none;
	}

	:root:not([data-manuco-theme]) .manuco-logo--auto .manuco-logo__asset--dark {
		display: block;
	}

	:root:not([data-manuco-theme]) .manuco-header {
		background: rgba(8, 9, 13, 0.94);
	}

	:root:not([data-manuco-theme]) .manuco-button--secondary,
	:root:not([data-manuco-theme]) .manuco-button--secondary:visited {
		color: var(--manuco-ink) !important;
	}

	:root:not([data-manuco-theme]) .manuco-ai {
		background:
			linear-gradient(rgba(0, 121, 248, 0.08) 1px, transparent 1px),
			linear-gradient(90deg, rgba(0, 121, 248, 0.08) 1px, transparent 1px),
			#0b1020;
		background-size: 28px 28px;
	}

	:root:not([data-manuco-theme]) :where(.manuco-stats, .manuco-philosophy, .manuco-final-cta, .manuco-case-cta, .manuco-footer) {
		--manuco-ink: #ffffff;
		--manuco-text: #d6d6d6;
		--manuco-muted: #8d8d8d;
		--manuco-line: #242424;
		--manuco-surface: #0b0b0b;
		--manuco-soft: #101010;
	}

	:root:not([data-manuco-theme]) :where(.manuco-form-card--consult, .manuco-form-card--consult .manuco-form-placeholder) {
		--manuco-ink: #080808;
		--manuco-text: #232323;
		--manuco-muted: #737373;
		--manuco-line: #e4e4e4;
		--manuco-surface: #ffffff;
		--manuco-soft: #f6f6f6;
	}

	:root:not([data-manuco-theme]) .manuco-theme-toggle__sun {
		display: block !important;
	}

	:root:not([data-manuco-theme]) .manuco-theme-toggle__moon {
		display: none;
	}
}

@media (max-width: 1100px) {
	:root {
		--manuco-wrap: min(100% - 40px, 860px);
	}

	.manuco-nav {
		gap: 7px;
	}

	.manuco-nav__row {
		gap: 13px;
	}

	.manuco-nav__list {
		gap: 16px;
	}

	.manuco-nav__list a {
		font-size: 12px;
	}

	.manuco-blog-teaser .manuco-post-grid,
	.manuco-post-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.manuco-hero__grid,
	.manuco-ai__grid,
	.manuco-consult__grid {
		grid-template-columns: 1fr 1fr;
		gap: 44px;
	}

	.manuco-problem-grid,
	.manuco-case-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.manuco-philosophy__grid,
	.manuco-process__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.manuco-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 800px) {
	.manuco-header__inner {
		min-height: 76px;
	}

	/* A backdrop filter makes fixed descendants relative to the header. */
	.manuco-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.manuco-logo__asset {
		width: 172px;
		height: auto;
	}

	.manuco-nav-toggle {
		display: grid;
		width: 42px;
		height: 42px;
		flex-shrink: 0;
		place-content: center;
		gap: 4px;
		border: 1px solid var(--manuco-line);
		border-radius: 7px;
		background: transparent;
		padding: 0;
	}

	.manuco-nav-toggle span {
		display: block;
		width: 18px;
		height: 2px;
		background: var(--manuco-ink);
	}

	.manuco-consultation-mode .manuco-nav-toggle span {
		background: #ffffff;
	}

	.manuco-nav {
		position: fixed;
		inset: var(--manuco-menu-top, 76px) 0 0;
		height: calc(100vh - var(--manuco-menu-top, 76px));
		height: calc(100dvh - var(--manuco-menu-top, 76px));
		display: none;
		justify-items: stretch;
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: var(--manuco-page);
		padding: 24px 24px max(32px, env(safe-area-inset-bottom));
	}

	.manuco-nav > * {
		flex-shrink: 0;
	}

	.manuco-consultation-mode .manuco-nav {
		background: var(--manuco-dark);
	}

	.manuco-consultation-mode .manuco-header__contact {
		border-color: #303030;
	}

	.manuco-nav.is-open {
		display: flex;
	}

	body.manuco-menu-open {
		overflow: hidden;
	}

	.manuco-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.manuco-header__contact {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		border-bottom: 1px solid var(--manuco-line);
		padding-bottom: 18px;
	}

	.manuco-header__contact a {
		font-size: 12px;
	}

	.manuco-nav__row {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.manuco-nav__list a {
		border-bottom: 1px solid var(--manuco-line);
		padding: 15px 0;
		font-size: 18px;
	}

	.manuco-nav__list a::after {
		display: none;
	}

	.manuco-language-switcher {
		align-self: flex-start;
	}

	.manuco-button--nav {
		width: 100%;
	}

	.manuco-hero__grid,
	.manuco-ai__grid,
	.manuco-contact__grid,
	.manuco-consult__grid {
		grid-template-columns: 1fr;
	}

	.manuco-hero__media {
		max-width: 560px;
	}

	.manuco-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 0;
	}

	.manuco-stat:nth-child(2)::after {
		display: none;
	}

	.manuco-offer-grid,
	.manuco-segment-grid,
	.manuco-post-grid,
	.manuco-faq-grid,
	.manuco-consult__faq {
		grid-template-columns: 1fr;
	}

	.manuco-blog-teaser .manuco-post-grid {
		grid-template-columns: 1fr;
	}

	.manuco-segment-card:nth-child(odd) {
		border-right: 0;
	}

	.manuco-segment-card:nth-child(n + 2) {
		border-top: 1px solid var(--manuco-line);
	}

	.manuco-tech-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.manuco-tech-grid article:nth-child(3n) {
		border-right: 1px solid var(--manuco-line);
	}

	.manuco-tech-grid article:nth-child(2n) {
		border-right: 0;
	}

	.manuco-mid-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.manuco-case-list .manuco-case-card__body,
	.manuco-case-blocks section {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.manuco-case-list .manuco-case-card > a {
		grid-template-columns: 1fr;
	}

	.manuco-case-list .manuco-case-card__media {
		min-height: 250px;
		aspect-ratio: 16 / 9;
	}

	.manuco-case-list .manuco-case-card__body > * {
		grid-column: 1 !important;
		grid-row: auto !important;
	}

	.manuco-consult__eyebrow {
		margin-bottom: 34px;
		text-align: left;
	}

	.manuco-consult__faq {
		gap: 20px;
	}
}

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

@media (max-width: 600px) {
	.admin-bar .manuco-header {
		top: 0;
	}
}

@media (max-width: 560px) {
	:root {
		--manuco-wrap: min(100% - 28px, 520px);
	}

	.manuco-header__inner {
		width: min(100% - 28px, 520px);
	}

	.manuco-logo__asset {
		width: 160px;
	}

	.manuco-hero {
		padding-top: 52px;
	}

	.manuco-hero h1,
	.manuco-archive-hero h1,
	.manuco-subhero h1,
	.manuco-contact h1,
	.manuco-case-study__header h1,
	.manuco-article-header h1,
	.manuco-consult h1 {
		font-size: clamp(34px, 10vw, 46px);
	}

	.manuco-hero__copy > p {
		font-size: 16px;
	}

	.manuco-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.manuco-hero__actions .manuco-button {
		width: 100%;
	}

	.manuco-stats__grid,
	.manuco-problem-grid,
	.manuco-case-grid,
	.manuco-philosophy__grid,
	.manuco-process__grid,
	.manuco-tech-grid,
	.manuco-results__grid,
	.manuco-footer__grid {
		grid-template-columns: 1fr;
	}

	.manuco-competencies,
	.manuco-steps,
	.manuco-job-grid {
		grid-template-columns: 1fr;
	}

	.manuco-stat {
		padding-right: 0;
	}

	.manuco-stat::after {
		display: none;
	}

	.manuco-tech-grid article,
	.manuco-tech-grid article:nth-child(3n) {
		border-right: 0;
	}

	.manuco-section__row {
		align-items: flex-start;
		flex-direction: column;
	}

	.manuco-section__row > .manuco-button {
		width: 100%;
	}

	.manuco-offer-card,
	.manuco-problem-card,
	.manuco-segment-card,
	.manuco-info-card,
	.manuco-form-card {
		padding: 26px;
	}

	.manuco-mid-cta__inner {
		padding: 28px;
	}

	.manuco-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.manuco-filter-bar {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 30px;
		padding-block: 16px;
	}

	.manuco-filters a {
		white-space: nowrap;
	}

	.manuco-case-list .manuco-case-card__body {
		padding: 28px;
	}

	.manuco-consult__stats {
		grid-template-columns: 1fr 1fr;
	}

	.manuco-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.manuco-footer__bottom-actions {
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.manuco-site *,
	.manuco-site *::before,
	.manuco-site *::after {
		transition: none !important;
		animation: none !important;
	}
	.manuco-motion-ready .manuco-reveal {
		opacity: 1;
		transform: none;
	}
}

.manuco-motion-ready .manuco-reveal:focus-within {
	opacity: 1;
	transform: none;
	transition: none;
}

@media print {
	.manuco-motion-ready .manuco-reveal {
		opacity: 1;
		transform: none;
	}
}

/* These sections remain dark even when the page uses the light scheme. */
.manuco-footer,
.manuco-philosophy,
.manuco-final-cta,
.manuco-toolbox,
.manuco-consult,
.manuco-consultation-mode .manuco-header {
	--manuco-link: #8dafff;
	--manuco-muted: #9a9aa2;
}
