@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/onest-cyrillic-ext.woff2") format("woff2");
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/onest-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/onest-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/onest-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--mw-primary: #e56a2d;
	--mw-primary-rgb: 229, 106, 45;
	--mw-primary-soft-rgb: 255, 199, 173;
	--mw-dark: #0f172a;
	--mw-dark-rgb: 15, 23, 42;
	--mw-dark-deep: #0b1020;
	--mw-dark-panel: #111827;
	--mw-cool-rgb: 107, 114, 255;
	--mw-header-bg: rgb(1 14 45 / 95%);
	--mw-light: #ffffff;
	--mw-light-rgb: 255, 255, 255;
	--mw-light-muted-rgb: 226, 232, 240;
	--mw-gray: #f5f5f7;
	--color-bg: #f6f1ea;
	--color-surface: #ffffff;
	--color-surface-alt: #f1ebe3;
	--color-text: #1e2228;
	--color-muted: #64676d;
	--color-accent: var(--mw-primary);
	--color-accent-dark: #be4f1a;
	--color-border: #ddd6cd;
	--shadow-soft: 0 18px 48px rgba(31, 27, 22, 0.08);
	--shadow-card: 0 16px 42px rgba(31, 27, 22, 0.07);
	--radius-lg: 18px;
	--radius-xl: 24px;
	--container: 1180px;
	--header-height: 76px;
	--focus-ring: 0 0 0 3px rgba(229, 106, 45, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 241, 234, 0.98) 620px),
		var(--color-bg);
	color: var(--color-text);
	font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	min-width: 320px;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

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

a:hover {
	color: var(--color-accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 0;
	box-shadow: var(--focus-ring);
}

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

button,
input,
textarea,
select {
	font: inherit;
}

.site {
	min-height: 100vh;
	overflow: visible;
}

body.modal-open {
	overflow: hidden;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.hero__inner,
.hero__content,
.hero__visual,
.workflow-card,
.services-grid > *,
.service-detail-grid > *,
.detail-card-grid > *,
.included-grid > *,
.detail-process > *,
.case-grid > *,
.blog-grid > *,
.process-grid > *,
.stack-grid > *,
.format-grid > *,
.output-grid > *,
.pricing-layout,
.price-list,
.contact-panel,
.contact-card,
.readable-content,
.service-price-card,
.modal__dialog {
	min-width: 0;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid var(--color-accent);
	border-radius: 999px;
	background: var(--color-accent);
	color: #ffffff;
	cursor: pointer;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	overflow-wrap: anywhere;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #ffffff;
	box-shadow: 0 12px 26px rgba(var(--mw-primary-rgb), 0.18);
	transform: translateY(-1px);
}

.button:disabled,
.button[disabled] {
	cursor: wait;
	opacity: 0.68;
	transform: none;
	box-shadow: none;
}

.button:disabled:hover,
.button[disabled]:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
}

.button--small {
	min-height: 40px;
	padding: 10px 16px;
	font-size: 14px;
}

.button--ghost {
	background: rgba(255, 255, 255, 0.64);
	color: var(--color-text);
	border-color: var(--color-border);
}

.button--ghost:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(32, 36, 43, 0.13);
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-accent);
	font-weight: 600;
}

.text-link::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.text-link:hover {
	color: var(--color-accent-dark);
}

.link-button {
	display: inline-flex;
	align-items: center;
	width: max-content;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-accent);
	cursor: pointer;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
}

.link-button::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.link-button:hover {
	color: var(--color-accent-dark);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(8, 13, 24, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 34px rgba(8, 13, 24, 0.12);
	backdrop-filter: blur(18px);
}

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

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: var(--header-height);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 190px;
}

.site-brand__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-brand__logo img {
	width: auto;
	max-width: 116px;
	max-height: 42px;
}

.site-brand__image {
	display: block;
	width: 120px;
	height: auto;
}

.site-brand__copy {
	display: inline-grid;
	justify-items: center;
	gap: 5px;
	padding: 5px 0;
	color: #ffffff;
}

.site-brand__copy:hover {
	color: #ffffff;
}

.site-brand__title {
	display: inline-flex;
	align-items: center;
	font-size: 28px;
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: 0;
}

.site-brand__title::after {
	content: "";
	width: 8px;
	height: 8px;
	margin-left: 8px;
	border-radius: 50%;
	background: var(--color-accent);
}

.site-brand__tagline {
	display: inline-flex;
	width: max-content;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1;
	text-transform: lowercase;
}

.primary-nav {
	flex: 1 1 auto;
}

.primary-nav__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.primary-nav__mobile-head,
.mobile-services,
.primary-nav__cta {
	display: none;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__list a,
.primary-nav__list button,
.services-menu__trigger {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 9px 14px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(226, 232, 240, 0.76);
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	transition: background-color 160ms ease, color 160ms ease;
}

.primary-nav__list a:hover,
.primary-nav__list button:hover,
.primary-nav__list .current-menu-item > a,
.services-menu:hover .services-menu__trigger,
.services-menu:focus-within .services-menu__trigger {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.services-menu {
	position: relative;
	flex: 0 0 auto;
}

.services-menu::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 14px;
}

.services-menu__trigger {
	gap: 8px;
}

.services-menu__chevron,
.mobile-services__chevron {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.services-menu:hover .services-menu__chevron,
.services-menu:focus-within .services-menu__chevron {
	transform: translateY(2px) rotate(225deg);
}

.services-menu__dropdown {
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	z-index: 45;
	display: grid;
	width: min(330px, calc(100vw - 32px));
	padding: 10px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 58px rgba(8, 13, 24, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.services-menu:hover .services-menu__dropdown,
.services-menu:focus-within .services-menu__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.services-menu__link {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 12px;
	border-radius: 12px;
	color: var(--color-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	transition: background-color 160ms ease, color 160ms ease;
}

.services-menu__link:hover,
.services-menu__link:focus-visible {
	background: rgba(var(--mw-primary-rgb), 0.08);
	color: var(--color-accent-dark);
}

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

.header-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-social img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.header-social:hover {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-1px);
}

.header-cta {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.header-cta:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0b1020;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.28);
}

.menu-toggle__line {
	display: block;
	width: 18px;
	height: 2px;
	margin: 3px auto;
	border-radius: 2px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .menu-toggle__line:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.menu-open .menu-toggle__line:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.page-section {
	position: relative;
	padding: clamp(56px, 5vw, 76px) 0;
}

.page-section--first {
	padding-top: 82px;
}

.page-section:not(.hero):not(.contact-section)::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
	pointer-events: none;
}

.page-section--white {
	background: #ffffff;
}

.page-section--surface {
	background:
		radial-gradient(circle at 12% 0%, rgba(var(--mw-primary-rgb), 0.05), transparent 30%),
		linear-gradient(180deg, #faf7f2, var(--color-surface-alt));
	overflow: hidden;
}

.page-section--decor::after {
	content: "";
	position: absolute;
	right: max(24px, calc((100vw - var(--container)) / 2));
	top: 72px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.08);
	border-radius: 50%;
	background:
		linear-gradient(90deg, rgba(var(--mw-primary-rgb), 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(var(--mw-primary-rgb), 0.05) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: 0.65;
	pointer-events: none;
}

.page-section--tint {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(241, 235, 227, 0.42)),
		rgba(255, 255, 255, 0.36);
}

.section-heading {
	max-width: 790px;
	margin-bottom: 38px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--between {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	max-width: none;
}

.section-heading h1,
.section-heading h2,
.entry__header h1 {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(36px, 3.4vw, 48px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.section-heading p,
.entry__meta,
.archive-description {
	color: var(--color-muted);
}

.section-heading > p:not(.eyebrow) {
	max-width: 680px;
	font-size: 18px;
	line-height: 1.72;
}

.section-heading--center > p:not(.eyebrow) {
	margin-inline: auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
	color: var(--color-accent-dark);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.hero {
	min-height: auto;
	display: flex;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(42px, 4vw, 58px) 0 clamp(64px, 6vw, 82px);
	background:
		radial-gradient(circle at 14% 18%, rgba(var(--mw-primary-rgb), 0.28), transparent 34%),
		radial-gradient(circle at 82% 10%, rgba(var(--mw-primary-rgb), 0.16), transparent 30%),
		linear-gradient(135deg, #080d18 0%, #0b1020 48%, #111827 100%);
	color: #ffffff;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
	align-items: center;
	gap: clamp(36px, 6vw, 68px);
	min-width: 0;
}

.hero .eyebrow {
	color: #aebdff;
}

.hero__content h1 {
	max-width: 790px;
	margin: 0;
	color: #f8fafc;
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.hero__lead {
	max-width: 690px;
	margin: 26px 0 0;
	color: rgba(226, 232, 240, 0.78);
	font-size: clamp(18px, 1.55vw, 20px);
	line-height: 1.6;
}

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

.hero__actions .button {
	box-shadow: 0 18px 38px rgba(var(--mw-primary-rgb), 0.26);
}

.hero .button--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	box-shadow: none;
}

.hero .button--ghost:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0b1020;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
}

.hero__stats li {
	position: relative;
	min-height: 108px;
	padding: 18px;
	border: 1px solid rgba(221, 226, 234, 0.9);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 30px rgba(32, 36, 43, 0.04);
}

.hero__stats li::before {
	content: "";
	display: block;
	width: 22px;
	height: 3px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--color-accent);
}

.hero__stats strong,
.hero__stats span {
	display: block;
}

.hero__stats strong {
	font-size: 16px;
	line-height: 1.25;
}

.hero__stats span {
	margin-top: 6px;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.45;
}

.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.hero__badges li {
	min-height: 0;
	padding: 8px 11px;
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.84);
	box-shadow: none;
	backdrop-filter: blur(8px);
}

.hero__badges li::before {
	display: none;
}

.hero__badges strong {
	font-size: 14px;
	color: inherit;
	white-space: normal;
}

.hero__visual {
	position: relative;
	display: flex;
	justify-content: flex-end;
	min-height: 0;
	min-width: 0;
}

.workflow-card {
	position: relative;
	z-index: 2;
	width: min(100%, 500px);
	margin-left: auto;
	padding: 22px;
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 20% 0%, rgba(var(--mw-primary-rgb), 0.28), transparent 36%),
		linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(10, 16, 30, 0.82));
	box-shadow:
		0 26px 80px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	color: #ffffff;
	backdrop-filter: blur(14px);
}

.workflow-card::before {
	content: "задача -> решение";
	position: absolute;
	top: -30px;
	right: 18px;
	color: rgba(226, 232, 240, 0.42);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
}

.workflow-card::after {
	display: none;
}

.workflow-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.workflow-card__header h2 {
	margin-top: 6px;
	margin-bottom: 0;
	color: #ffffff;
	font-size: 24px;
	line-height: 1.12;
}

.tech-label {
	display: inline-flex;
	color: rgba(226, 232, 240, 0.58);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	padding: 8px 11px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #dbe5ff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.status-pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-accent);
}

.workflow-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	list-style: none;
	overflow: hidden;
}

.workflow-list li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	min-height: 0;
	padding: 11px 12px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;
	background: transparent;
}

.workflow-list li:last-child {
	border-bottom: 0;
}

.workflow-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: rgba(var(--mw-primary-rgb), 0.18);
	color: rgb(var(--mw-primary-soft-rgb));
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 700;
}

.workflow-list strong {
	display: block;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2;
}

.workflow-list p {
	margin: 5px 0 0;
	color: rgba(226, 232, 240, 0.7);
	font-size: 13.5px;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.workflow-note {
	margin-top: 14px;
	padding: 12px 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-primary-rgb), 0.13);
	color: #dbe5ff;
	overflow: hidden;
}

.workflow-note code {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	white-space: nowrap;
}

.tech-orbit {
	position: absolute;
	z-index: 1;
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	background: rgba(15, 23, 42, 0.62);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.tech-orbit--top {
	left: 0;
	top: 28px;
	width: 178px;
	padding: 18px;
}

.tech-orbit--top small {
	color: var(--color-muted);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.tech-orbit--bottom {
	right: 12px;
	bottom: 34px;
	width: 148px;
	padding: 18px;
}

.tech-orbit--bottom strong {
	display: block;
	margin-top: 5px;
	font-size: 24px;
	line-height: 1;
}

.tech-card__bar {
	display: flex;
	gap: 7px;
	margin-bottom: 18px;
}

.tech-card__bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-border);
}

.tech-card__bar span:first-child {
	background: var(--color-accent);
}

.icon-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.16);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(var(--mw-primary-rgb), 0.12), rgba(255, 255, 255, 0.9));
	color: var(--color-accent-dark);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.icon-mark svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-mark--small {
	width: 40px;
	height: 40px;
	border-radius: 14px;
}

.icon-mark--small svg {
	width: 20px;
	height: 20px;
}

.services-grid,
.case-grid,
.blog-grid,
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.service-card,
.case-card,
.blog-card,
.process-step,
.feature-item,
.stack-item,
.post-card,
.empty-state {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
}

.service-card {
	position: relative;
	min-height: 230px;
	padding: 24px;
	overflow: hidden;
	min-width: 0;
	background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.9));
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 54px;
	height: 54px;
	border-right: 1px solid rgba(var(--mw-primary-rgb), 0.22);
	border-bottom: 1px solid rgba(var(--mw-primary-rgb), 0.22);
	border-radius: 0 0 var(--radius-lg) 0;
	opacity: 0.72;
}

.service-card:hover,
.case-card:hover,
.blog-card:hover,
.stack-item:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.28);
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11);
	transform: translateY(-3px);
}

.service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 26px;
}

.service-card__top span {
	display: inline-flex;
	min-width: 0;
	padding: 7px 10px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.14);
	border-radius: 999px;
	background: rgba(var(--mw-primary-rgb), 0.055);
	color: var(--color-accent-dark);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 11px;
	line-height: 1.1;
	white-space: nowrap;
}

.service-card__icon {
	position: relative;
}

.service-card__icon::before,
.service-card__icon::after {
	display: none;
}

.service-card h3,
.case-card h3,
.blog-card h3,
.process-step h3,
.feature-item h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.24;
}

.service-card p,
.case-card p,
.blog-card p,
.process-step p,
.feature-item p,
.stack-item span,
.contact-panel p,
.entry__content {
	color: var(--color-muted);
}

.service-card p,
.case-card p,
.blog-card p,
.process-step p,
.feature-item p {
	margin-bottom: 0;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: 60px;
	align-items: start;
}

.section-heading--sticky {
	position: sticky;
	top: 118px;
}

.feature-list {
	display: grid;
	gap: 16px;
}

.feature-item {
	position: relative;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 8px 20px;
	padding: 26px;
	overflow: hidden;
}

.feature-item::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--color-accent), rgba(var(--mw-primary-rgb), 0));
}

.feature-item span,
.process-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.18);
	border-radius: 50%;
	background: rgba(var(--mw-primary-rgb), 0.07);
	color: var(--color-accent-dark);
	font-weight: 800;
	line-height: 1;
}

.feature-item h3,
.feature-item p {
	grid-column: 2;
}

.feature-item h3 {
	margin-top: 0;
}

.case-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 330px;
	padding: 28px;
	overflow: hidden;
	min-width: 0;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.case-card--compact {
	min-height: 220px;
}

.case-card__icon {
	position: relative;
	z-index: 1;
	margin-bottom: 18px;
}

.case-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 118px;
	height: 118px;
	border-left: 1px solid rgba(var(--mw-primary-rgb), 0.12);
	border-bottom: 1px solid rgba(var(--mw-primary-rgb), 0.12);
	border-radius: 0 0 0 80px;
	background: rgba(var(--mw-primary-rgb), 0.035);
}

.case-card__type,
.blog-card__date {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: max-content;
	margin: 0 0 16px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(var(--mw-primary-rgb), 0.07);
	color: var(--color-accent-dark);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.case-card ul {
	display: grid;
	gap: 9px;
	margin: auto 0 0;
	padding: 22px 0 0;
	color: var(--color-muted);
	list-style: none;
}

.case-card li {
	position: relative;
	padding-left: 18px;
}

.case-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-accent);
}

.case-card__action {
	margin-top: 22px;
}

.section-action,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

.section-actions {
	margin-top: 40px;
}

.cta-strip {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	margin-top: 42px;
	padding: 34px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.18);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 10% 0%, rgba(var(--mw-primary-rgb), 0.18), transparent 34%),
		linear-gradient(135deg, #0b1020, #111827);
	color: #ffffff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
	overflow: hidden;
}

.cta-strip::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 36px 36px;
	opacity: 0.35;
	pointer-events: none;
}

.cta-strip > * {
	position: relative;
	z-index: 1;
}

.cta-strip h2,
.cta-strip h3 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.12;
}

.cta-strip p {
	max-width: 640px;
	margin: 10px 0 0;
	color: rgba(226, 232, 240, 0.76);
	font-size: 17px;
}

.cta-strip .eyebrow {
	color: #aebdff;
}

.cta-strip .button {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--color-text);
	box-shadow: none;
}

.cta-strip .button:hover {
	background: #cfd8ff;
	border-color: #cfd8ff;
	color: var(--color-text);
}

.cta-strip--compact {
	padding: 30px 34px;
}

.stack-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.stack-item {
	position: relative;
	display: grid;
	gap: 12px;
	min-height: 164px;
	padding: 24px;
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.stack-item::before {
	content: "<>";
	position: absolute;
	right: 18px;
	top: 14px;
	color: rgba(var(--mw-primary-rgb), 0.16);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 24px;
	font-weight: 700;
}

.stack-item strong {
	font-size: 19px;
	line-height: 1.2;
}

.stack-grid--tags {
	max-width: 860px;
	margin-inline: auto;
}

.stack-item--tag {
	min-height: 86px;
	align-items: center;
	text-align: center;
}

.stack-item--tag::before {
	content: "";
}

.pricing-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
	gap: 60px;
	align-items: start;
}

.pricing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.price-list {
	display: grid;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: var(--color-surface);
	box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.price-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 22px 26px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	transition: background-color 160ms ease;
}

.price-row:hover {
	background: #f7f9fc;
}

.price-row:last-child {
	border-bottom: 0;
}

.price-row span {
	color: #4b5563;
	font-weight: 700;
}

.price-row strong {
	color: var(--color-accent-dark);
	font-size: 20px;
	font-weight: 800;
	text-align: right;
	white-space: nowrap;
}

.process-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
	position: relative;
	min-height: 230px;
	padding: 24px;
}

.process-step::after {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 22px;
	height: 1px;
	background: linear-gradient(90deg, rgba(var(--mw-primary-rgb), 0.35), transparent);
}

.process-step span {
	margin-bottom: 20px;
}

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

.blog-card {
	min-height: 220px;
	padding: 24px;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.blog-card h3 a:hover {
	color: var(--color-accent);
}

.contact-section {
	padding-bottom: 116px;
}

.contact-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 48px;
	align-items: center;
	padding: 52px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.2);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 12% 10%, rgba(var(--mw-primary-rgb), 0.32), transparent 30%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(135deg, #080d18, #111827);
	background-size: auto, 38px 38px, 38px 38px, auto;
	color: #ffffff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
	overflow: hidden;
}

.contact-panel::after {
	content: "заявка";
	position: absolute;
	right: 30px;
	top: 24px;
	color: rgba(255, 255, 255, 0.24);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
}

.contact-panel h2 {
	max-width: 660px;
	margin: 0;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.08;
}

.contact-panel p {
	max-width: 620px;
	font-size: 18px;
}

.contact-panel__button {
	margin-top: 14px;
	background: #ffffff;
	border-color: #ffffff;
	color: var(--color-text);
}

.contact-panel__button:hover {
	background: #cfd8ff;
	border-color: #cfd8ff;
	color: var(--color-text);
}

.contact-panel .eyebrow {
	color: #aebdff;
}

.contact-panel .button--ghost {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.28);
	background: transparent;
}

.contact-panel .button--ghost:hover {
	background: #ffffff;
	color: var(--color-text);
	border-color: #ffffff;
}

.contact-card {
	display: grid;
	gap: 10px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
}

.contact-card__line {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card__line:last-child {
	border-bottom: 0;
}

.contact-card__line span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.contact-card__line a {
	justify-self: end;
	color: #ffffff;
	font-weight: 600;
	text-align: right;
	word-break: break-word;
}

.contact-card__line a:hover {
	color: #cfd8ff;
}

.services-hero {
	min-height: min(72svh, 720px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 20%, rgba(var(--mw-primary-rgb), 0.3), transparent 34%),
		radial-gradient(circle at 86% 6%, rgba(var(--mw-primary-rgb), 0.14), transparent 30%),
		linear-gradient(135deg, #080d18 0%, #0b1020 52%, #111827 100%);
	color: #ffffff;
}

.services-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 54px 54px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14));
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14));
	pointer-events: none;
}

.services-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	align-items: center;
	gap: clamp(34px, 6vw, 72px);
}

.services-hero__content h1 {
	max-width: 840px;
	margin: 0;
	color: #f8fafc;
	font-size: clamp(42px, 4.8vw, 64px);
	line-height: 1.04;
	overflow-wrap: anywhere;
}

.services-hero__content > p:not(.eyebrow) {
	max-width: 720px;
	margin: 24px 0 0;
	color: rgba(226, 232, 240, 0.78);
	font-size: 19px;
	line-height: 1.68;
}

.services-hero .eyebrow {
	color: #aebdff;
}

.services-hero .button--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.services-hero .button--ghost:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0b1020;
}

.services-hero__panel {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 0% 0%, rgba(var(--mw-primary-rgb), 0.22), transparent 36%),
		rgba(15, 23, 42, 0.72);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(14px);
}

.services-hero__panel ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.services-hero__panel li {
	padding: 12px 13px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
	color: rgba(226, 232, 240, 0.82);
	font-weight: 600;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.service-detail-card,
.format-card,
.output-item,
.service-guidance {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow-card);
}

.service-detail-card,
.format-card {
	display: grid;
	align-content: start;
	gap: 16px;
	min-height: 290px;
	padding: 26px;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-detail-card:hover,
.format-card:hover,
.output-item:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.28);
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11);
	transform: translateY(-3px);
}

.service-detail-card h3,
.format-card h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.22;
}

.service-detail-card p,
.format-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.65;
}

.service-detail-card .link-button {
	margin-top: auto;
}

.service-guidance {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	padding: 36px;
	background:
		radial-gradient(circle at 0% 0%, rgba(var(--mw-primary-rgb), 0.1), transparent 34%),
		#ffffff;
}

.service-guidance h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.1;
}

.service-guidance p:not(.eyebrow) {
	max-width: 760px;
	margin: 14px 0 0;
	color: var(--color-muted);
	font-size: 18px;
	line-height: 1.72;
}

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

.format-card {
	min-height: 250px;
}

.output-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 940px;
	margin-inline: auto;
}

.output-item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 18px;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.output-item span {
	color: var(--color-text);
	font-weight: 700;
	line-height: 1.25;
}

.services-final {
	padding-top: 74px;
}

.service-detail-hero__inner {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

.service-detail-hero__checks li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.service-detail-hero__checks .icon-mark {
	color: #cfd8ff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: none;
}

.readable-content {
	max-width: 880px;
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

.readable-content > *:first-child {
	margin-top: 0;
}

.readable-content > *:last-child {
	margin-bottom: 0;
}

.readable-content h2,
.readable-content h3 {
	color: var(--color-text);
	line-height: 1.18;
}

.readable-content h2 {
	margin: 34px 0 14px;
	font-size: clamp(28px, 3vw, 38px);
}

.readable-content h3 {
	margin: 26px 0 12px;
	font-size: 24px;
}

.readable-content p,
.readable-content li {
	color: var(--color-muted);
	font-size: 18px;
	line-height: 1.75;
}

.readable-content a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.readable-content ul,
.readable-content ol {
	display: grid;
	gap: 8px;
	padding-left: 22px;
}

.readable-content table {
	width: 100%;
	border-collapse: collapse;
	overflow-wrap: anywhere;
}

.readable-content th,
.readable-content td {
	padding: 12px;
	border: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.detail-card-grid,
.included-grid,
.detail-process {
	display: grid;
	gap: 18px;
}

.detail-card-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.included-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.detail-process {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.detail-card,
.included-item,
.detail-step,
.service-price-card,
.faq-item {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow-card);
}

.detail-card,
.detail-step {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 24px;
}

.detail-card h3,
.detail-step h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.22;
}

.detail-card p,
.detail-step p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.65;
}

.included-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
}

.included-item span {
	color: var(--color-text);
	font-weight: 700;
	line-height: 1.28;
}

.detail-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.16);
	border-radius: 14px;
	background: rgba(var(--mw-primary-rgb), 0.08);
	color: var(--color-accent-dark);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 800;
}

.service-price-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	align-items: center;
	gap: 32px;
	padding: clamp(28px, 5vw, 44px);
	background:
		radial-gradient(circle at 0% 0%, rgba(var(--mw-primary-rgb), 0.1), transparent 34%),
		#ffffff;
}

.service-price-card h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.1;
}

.service-price-card p:not(.eyebrow) {
	max-width: 650px;
	margin: 14px 0 0;
	color: var(--color-muted);
	font-size: 18px;
	line-height: 1.72;
}

.service-price-card__side {
	display: grid;
	gap: 18px;
}

.service-price-card__side ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-price-card__side li {
	padding: 13px 14px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.12);
	border-radius: 14px;
	background: rgba(var(--mw-primary-rgb), 0.055);
	color: var(--color-text);
	font-weight: 700;
	line-height: 1.35;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 900px;
}

.faq-item {
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 62px;
	padding: 18px 22px;
	cursor: pointer;
	color: var(--color-text);
	font-weight: 800;
	line-height: 1.3;
	list-style: none;
}

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

.faq-item summary::after {
	content: "";
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--color-accent);
	border-bottom: 2px solid var(--color-accent);
	transform: rotate(45deg);
	transition: transform 160ms ease;
}

.faq-item[open] summary::after {
	transform: rotate(225deg);
}

.faq-item p {
	margin: 0;
	padding: 0 22px 20px;
	color: var(--color-muted);
	line-height: 1.7;
}

.breadcrumbs {
	position: relative;
	z-index: 3;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
}

.breadcrumbs__inner {
	padding: 14px 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin: 0;
	padding: 0;
	color: #475467;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	list-style: none;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.breadcrumbs li + li::before {
	content: "/";
	margin-right: 10px;
	color: rgba(var(--mw-primary-rgb), 0.58);
}

.breadcrumbs a {
	color: #526078;
}

.breadcrumbs a:hover {
	color: var(--color-accent-dark);
}

.breadcrumbs span {
	color: var(--color-text);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.single-mw1_case .page-section--first {
	padding-top: 64px;
}

.cases-archive-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 18%, rgba(var(--mw-primary-rgb), 0.28), transparent 32%),
		linear-gradient(135deg, #080d18, #111827);
	color: #ffffff;
}

.cases-archive-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	pointer-events: none;
}

.cases-archive-hero__inner {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	min-width: 0;
}

.cases-archive-hero .section-heading {
	margin-bottom: 0;
}

.cases-archive-hero .section-heading h1 {
	color: #ffffff;
	font-size: clamp(42px, 5vw, 64px);
}

.cases-archive-hero .section-heading p:not(.eyebrow) {
	color: rgba(226, 232, 240, 0.76);
}

.cases-archive-hero .eyebrow {
	color: #aebdff;
}

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

.portfolio-grid--home {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.portfolio-grid--home .portfolio-card__media {
	padding: 12px 12px 0;
}

.portfolio-grid--home .case-browser__bar {
	min-height: 30px;
}

.portfolio-grid--home .case-browser__viewport {
	aspect-ratio: 16 / 9;
}

.portfolio-grid--home .portfolio-card__body {
	gap: 12px;
	padding: 20px;
}

.portfolio-grid--home .portfolio-card__body h2 {
	font-size: 22px;
}

.portfolio-grid--home .portfolio-card__note {
	padding: 12px;
}

.portfolio-grid--home .portfolio-card__actions {
	grid-template-columns: 1fr;
}

.portfolio-grid--home .portfolio-card__button {
	min-height: 40px;
}

.portfolio-preview__action {
	margin-top: 38px;
}

.portfolio-preview__button {
	min-width: min(100%, 320px);
	min-height: 56px;
	padding: 16px 30px;
	font-size: 16px;
	box-shadow: 0 16px 34px rgba(var(--mw-primary-rgb), 0.2);
}

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

.case-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-muted);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.15;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.case-filter:hover,
.case-filter.is-active {
	border-color: rgba(var(--mw-primary-rgb), 0.28);
	background: rgba(var(--mw-primary-rgb), 0.08);
	color: var(--color-accent-dark);
}

.case-filter:hover {
	transform: translateY(-1px);
}

.portfolio-card[hidden],
.cases-filter-empty[hidden] {
	display: none;
}

.portfolio-grid.is-loading {
	opacity: 0.58;
	pointer-events: none;
}

.portfolio-card {
	display: grid;
	min-width: 0;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.3);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
	transform: translateY(-2px);
}

.portfolio-card__media {
	display: block;
	padding: 16px 16px 0;
}

.case-browser {
	border: 1px solid rgba(226, 232, 240, 0.14);
	border-radius: var(--radius-lg);
	background: #0b1020;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}

.case-browser__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 0 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.055);
}

.case-browser__bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
}

.case-browser__bar span:first-child {
	background: var(--color-accent);
}

.case-browser__bar em {
	margin-left: auto;
	color: rgba(226, 232, 240, 0.56);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 11px;
	font-style: normal;
}

.case-browser__viewport {
	position: relative;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		#0f172a;
	background-size: 34px 34px;
	overflow: hidden;
}

.case-browser__viewport video,
.case-browser__viewport img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.portfolio-card:hover .case-browser__viewport video,
.portfolio-card:hover .case-browser__viewport img {
	transform: scale(1.02);
}

.case-browser__placeholder {
	display: grid;
	place-items: center;
	gap: 6px;
	height: 100%;
	padding: 22px;
	color: rgba(226, 232, 240, 0.78);
	text-align: center;
}

.case-browser__placeholder strong {
	color: #ffffff;
	font-size: 18px;
	line-height: 1.2;
}

.case-browser__placeholder span {
	font-size: 13px;
	line-height: 1.45;
}

.portfolio-card__body {
	display: grid;
	gap: 14px;
	padding: 24px;
}

.portfolio-card__body h2 {
	margin: 0;
	font-size: 26px;
	line-height: 1.12;
}

.portfolio-card__body h2 a:hover {
	color: var(--color-accent);
}

.portfolio-card__body > p {
	margin: 0;
	color: var(--color-muted);
}

.portfolio-card__note {
	display: grid;
	gap: 5px;
	padding: 14px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.12);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-primary-rgb), 0.045);
}

.portfolio-card__note strong {
	color: var(--color-text);
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
}

.portfolio-card__note span {
	color: var(--color-muted);
}

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

.portfolio-tags li {
	padding: 7px 10px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.14);
	border-radius: 999px;
	background: rgba(var(--mw-primary-rgb), 0.055);
	color: var(--color-accent-dark);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.portfolio-card__actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin-top: 6px;
}

.portfolio-card__button {
	width: 100%;
	min-height: 42px;
	padding: 10px 14px;
	font-size: 14px;
}

.cases-archive__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}

.cases-archive__status {
	flex-basis: 100%;
	margin: 0;
	color: var(--color-muted);
	text-align: center;
	font-weight: 700;
}

.cases-archive__status:empty {
	display: none;
}

.cases-load-more[hidden] {
	display: none;
}

.text-link--muted {
	color: var(--color-muted);
}

.cases-empty {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.case-single__layout {
	display: grid;
	grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(44px, 4vw, 72px);
	align-items: start;
	width: min(100% - 64px, 1440px);
}

.case-single__header {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.case-single__header h1 {
	margin: 0;
	font-size: clamp(38px, 4.4vw, 58px);
	line-height: 1.04;
}

.case-single__header > p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 18px;
}

.case-single__actions {
	grid-column: 1;
	grid-row: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0;
}

.case-single__preview,
.case-single__summary,
.case-single__content {
	min-width: 0;
}

.case-single__preview {
	grid-column: 2;
	grid-row: 2 / span 2;
	position: sticky;
	top: 116px;
	margin-top: 4px;
}

.case-browser--large .case-browser__viewport {
	aspect-ratio: 16 / 11;
}

.case-single__summary {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	gap: 12px;
	margin-top: 4px;
}

.case-detail-card {
	padding: 22px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.case-detail-card__heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.case-detail-card__icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
}

.case-detail-card h2 {
	margin: 0;
	font-size: 18px;
}

.case-detail-card p {
	margin: 0;
	color: var(--color-muted);
}

.case-single__content {
	grid-column: 1 / -1;
	grid-row: 4;
	max-width: 860px;
	margin-top: 8px;
}

.thanks-section .content-layout {
	max-width: 760px;
}

.thanks-card {
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
	text-align: center;
}

.thanks-card .entry__header {
	margin-bottom: 18px;
}

.thanks-card .entry__content {
	display: grid;
	justify-items: center;
	gap: 12px;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.modal[aria-hidden="true"] {
	display: none;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 24, 34, 0.62);
	backdrop-filter: blur(8px);
}

.modal__dialog {
	position: relative;
	width: min(100%, 660px);
	max-height: min(90vh, 760px);
	padding: 32px;
	border: 1px solid rgba(221, 226, 234, 0.96);
	border-radius: var(--radius-xl);
	background: var(--color-surface);
	box-shadow: 0 28px 80px rgba(18, 24, 34, 0.28);
	overflow-y: auto;
}

.modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-surface-alt);
	color: var(--color-text);
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.modal__close:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #ffffff;
}

.modal__header {
	padding-right: 44px;
	margin-bottom: 24px;
}

.modal__header h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.08;
}

.modal__header p:not(.eyebrow) {
	max-width: 520px;
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 17px;
}

.project-form {
	display: grid;
	gap: 18px;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

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

.form-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.form-label {
	color: var(--color-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.form-input {
	width: 100%;
	min-height: 48px;
	padding: 13px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: #ffffff;
	color: var(--color-text);
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-input::placeholder {
	color: #98a2b3;
}

.form-input:focus {
	border-color: rgba(var(--mw-primary-rgb), 0.48);
	background: #ffffff;
}

.form-textarea {
	min-height: 128px;
	resize: vertical;
}

.form-field.is-error .form-input {
	border-color: #c2410c;
	box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

.form-error {
	color: #c2410c;
	font-size: 13px;
}

.contact-method__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.radio-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: #ffffff;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.radio-card:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.34);
	background: rgba(var(--mw-primary-rgb), 0.035);
}

.radio-card input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.radio-card span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

.radio-card span::before {
	content: "";
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: inset 0 0 0 4px #ffffff;
}

.radio-card input:checked + span::before {
	border-color: var(--color-accent);
	background: var(--color-accent);
}

.radio-card input:focus-visible + span::before {
	box-shadow: inset 0 0 0 4px #ffffff, var(--focus-ring);
}

.modal-message {
	display: none;
	padding: 12px 14px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.22);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-primary-rgb), 0.07);
	color: var(--color-accent-dark);
	font-weight: 700;
}

.modal-message--success {
	border-color: rgba(22, 101, 52, 0.22);
	background: rgba(22, 163, 74, 0.08);
	color: #166534;
}

.modal-message--error {
	border-color: rgba(194, 65, 12, 0.22);
	background: rgba(234, 88, 12, 0.08);
	color: #9a3412;
}

.modal-message.is-visible {
	display: block;
}

.project-form__submit {
	width: 100%;
	margin-top: 2px;
}

.project-form__note {
	margin: -6px 0 0;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.45;
}

.project-form__note a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.project-form__note a:hover {
	color: var(--color-accent-dark);
}

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.45;
	cursor: pointer;
}

.form-consent input {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin: 1px 0 0;
	accent-color: var(--color-accent);
}

.form-consent a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.form-consent--light,
.form-consent--light a {
	color: inherit;
}

.site-footer {
	background: #191e27;
	color: #ffffff;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 36px 0;
}

.site-footer__title {
	display: inline-grid;
	align-items: start;
	justify-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
}

.site-footer__logo {
	display: block;
	width: 120px;
	height: auto;
}

.site-footer__badge {
	padding: 0;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12.5px;
	font-weight: 600;
}

.site-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 18px;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__links a:hover {
	color: #ffffff;
}

.site-footer__legal {
	margin: -14px 0 0;
	padding: 0 0 30px;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.55;
}

.site-footer__legal-wrap {
	display: grid;
	gap: 14px;
}

.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}

.site-footer__legal-links a,
.site-footer__legal-links button {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.site-footer__legal-links a:hover,
.site-footer__legal-links button:hover {
	color: #ffffff;
}

.site-footer__legal a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__legal a:hover {
	color: #dbe5ff;
}

.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(9, 14, 27, 0.96);
	color: #ffffff;
	box-shadow: 0 -16px 44px rgba(8, 13, 24, 0.22);
	backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-banner p {
	margin: 0;
	max-width: 860px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
}

.cookie-banner p a {
	color: #ffffff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 16px;
}

.cookie-banner__choice-link {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookie-banner__choice-link:hover,
.cookie-banner__choice-link:focus-visible {
	color: #ffffff;
}

.cookie-banner__button {
	flex: 0 0 auto;
	min-width: 132px;
}

.content-layout {
	max-width: 880px;
}

.entry,
.post-card,
.empty-state {
	padding: 32px;
}

.entry__header {
	margin-bottom: 28px;
}

.entry__meta {
	margin: 0 0 10px;
}

.entry__thumbnail {
	margin-bottom: 28px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.entry__content a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry__content h2,
.entry__content h3,
.entry__content h4 {
	color: var(--color-text);
	line-height: 1.25;
}

.entry__content img {
	border-radius: var(--radius-lg);
}

.post-list {
	display: grid;
	gap: 16px;
}

.post-card__title {
	display: inline-flex;
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.post-card__meta {
	margin-bottom: 10px;
	color: var(--color-muted);
	font-size: 14px;
}

.post-card__excerpt p {
	margin: 0;
	color: var(--color-muted);
}

.pagination,
.post-navigation {
	margin-top: 28px;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
}

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

@media (max-width: 1100px) {
	.primary-nav__list a,
	.primary-nav__list button,
	.services-menu__trigger {
		padding-inline: 9px;
		font-size: 13px;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
		gap: 46px;
	}

	.hero__content h1 {
		font-size: clamp(42px, 5.4vw, 58px);
	}
}

@media (max-width: 1024px) {
	.hero {
		min-height: auto;
		padding: 44px 0 64px;
	}

	.hero__inner,
	.services-hero__inner,
	.service-price-card,
	.pricing-layout,
	.split-section,
	.service-guidance {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		max-width: 540px;
		width: 100%;
		min-height: auto;
		margin-inline: auto;
	}

	.workflow-card {
		margin-inline: auto;
		width: 100%;
	}

	.services-grid,
	.process-grid,
	.service-detail-grid,
	.format-grid,
	.output-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-hero {
		min-height: auto;
		padding: 74px 0 82px;
	}

	.services-hero__panel {
		max-width: 560px;
	}

	.service-guidance {
		align-items: start;
	}

	.case-single__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.case-single__header {
		order: 1;
	}

	.case-single__preview {
		order: 2;
		grid-column: auto;
		grid-row: auto;
		position: static;
	}

	.case-single__summary {
		order: 3;
		grid-column: auto;
		grid-row: auto;
	}

	.case-single__actions {
		order: 4;
		grid-column: auto;
		grid-row: auto;
	}

	.case-single__content {
		order: 5;
		grid-column: auto;
		grid-row: auto;
	}

	.stack-grid,
	.case-grid,
	.blog-grid,
	.portfolio-grid--home {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section-heading--sticky {
		position: static;
	}
}

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

@media (max-width: 768px) {
	:root {
		--header-height: 68px;
	}

	html.menu-open,
	body.menu-open {
		overflow: hidden;
	}

	.menu-open .site-header {
		z-index: 960;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	.site-header__inner {
		min-height: var(--header-height);
		gap: 14px;
	}

	.header-social {
		width: 40px;
		height: 40px;
	}

	.header-social img {
		width: 20px;
		height: 20px;
	}

	.site-brand {
		min-width: 0;
	}

	.site-brand__image {
		width: 120px;
	}

	.site-brand__copy,
	.primary-nav__brand {
		justify-items: center;
	}

	.site-brand__title {
		font-size: 25px;
	}

	.site-brand__tagline {
		padding: 0;
		color: rgba(255, 255, 255, 0.78);
		font-size: 13.5px;
		font-weight: 700;
	}

	.primary-nav {
		position: fixed;
		inset: 0 !important;
		z-index: 950;
		display: block;
		width: 100vw;
		height: 100dvh;
		min-height: 100dvh;
		padding: 16px;
		background-color: #080d18;
		background-image:
			radial-gradient(circle at 16% 10%, rgba(var(--mw-primary-rgb), 0.18), transparent 34%),
			linear-gradient(135deg, #080d18, #0b1020);
		color: #ffffff;
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		pointer-events: none;
		overflow-y: auto;
		transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
	}

	.menu-open .primary-nav {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		pointer-events: auto;
	}

	.site-header,
	.site-header.scrolled,
	.menu-open .site-header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.site-header.scrolled .site-brand__copy,
	.site-header.scrolled .primary-nav__brand {
		transform: none;
	}

	.primary-nav__mobile-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		margin-bottom: 24px;
	}

	.primary-nav__brand {
		display: inline-grid;
		gap: 5px;
		color: #ffffff;
	}

	.primary-nav__brand:hover {
		color: #ffffff;
	}

	.primary-nav__mobile-actions {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.primary-nav__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff;
		cursor: pointer;
		font-size: 27px;
		line-height: 1;
	}

	.primary-nav__content {
		display: grid;
		align-items: stretch;
		align-content: start;
		justify-content: stretch;
		gap: 10px;
		min-height: calc(100dvh - 88px);
	}

	.services-menu {
		display: none;
	}

	.mobile-services {
		display: grid;
		gap: 8px;
	}

	.mobile-services__toggle,
	.mobile-services__panel a,
	.primary-nav__list a,
	.primary-nav__list button {
		justify-content: space-between;
		width: 100%;
		min-height: 52px;
		padding: 13px 14px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.06);
		color: rgba(226, 232, 240, 0.9);
		font-size: 17px;
		font-weight: 700;
	}

	.mobile-services__toggle {
		display: flex;
		align-items: center;
		cursor: pointer;
		text-align: left;
	}

	.mobile-services__toggle[aria-expanded="true"] .mobile-services__chevron {
		transform: translateY(2px) rotate(225deg);
	}

	.mobile-services__panel {
		display: grid;
		gap: 6px;
		padding: 8px;
		border: 1px solid rgba(255, 255, 255, 0.09);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.04);
	}

	.mobile-services__panel[hidden] {
		display: none;
	}

	.mobile-services__panel a {
		min-height: 44px;
		padding: 10px 12px;
		border-color: transparent;
		border-radius: 12px;
		background: transparent;
		font-size: 15px;
		font-weight: 600;
	}

	.primary-nav__list {
		display: grid;
		justify-content: stretch;
		gap: 8px;
	}

	.primary-nav__list a:hover,
	.primary-nav__list button:hover,
	.mobile-services__toggle:hover,
	.mobile-services__panel a:hover {
		background: rgba(255, 255, 255, 0.12);
		color: #ffffff;
	}

	.menu-toggle {
		display: inline-block;
	}

	.header-cta {
		display: none;
	}

	.primary-nav__cta {
		display: inline-flex;
		width: 100%;
		margin-top: auto;
	}

	.page-section,
	.page-section--first {
		padding: 48px 0;
	}

	.hero {
		padding: 30px 0 54px;
	}

	.hero::before {
		inset: 0;
		width: auto;
		height: auto;
	}

	.hero__inner {
		gap: 44px;
	}

	.hero__content h1 {
		font-size: clamp(34px, 9vw, 42px);
		line-height: 1.08;
	}

	.hero__lead {
		font-size: 18px;
		line-height: 1.58;
	}

	.hero__stats,
	.services-grid,
	.service-detail-grid,
	.format-grid,
	.output-grid,
	.case-grid,
	.stack-grid,
	.process-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.hero__badges {
		gap: 8px;
	}

	.hero__badges li {
		display: flex;
		align-items: center;
		flex: 1 1 210px;
	}

	.hero__stats li {
		min-height: 0;
	}

	.hero__visual {
		min-height: auto;
	}

	.workflow-card {
		padding: 20px;
	}

	.workflow-card::before,
	.workflow-card::after,
	.tech-orbit {
		display: none;
	}

	.workflow-list li {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}

	.workflow-note code {
		white-space: normal;
	}

	.section-heading h1,
	.section-heading h2,
	.entry__header h1 {
		font-size: 32px;
	}

	.section-heading > p:not(.eyebrow) {
		font-size: 17px;
	}

	.section-heading--between,
	.cases-archive-hero__inner,
	.cta-strip,
	.site-footer__inner,
	.contact-panel,
	.post-navigation {
		display: grid;
	}

	.cta-strip,
	.service-guidance {
		grid-template-columns: 1fr;
	}

	.cta-strip {
		padding: 28px;
	}

	.feature-item {
		grid-template-columns: 46px minmax(0, 1fr);
		padding: 22px;
	}

	.contact-panel {
		grid-template-columns: 1fr;
		padding: 32px;
	}

	.contact-panel h2 {
		font-size: 32px;
	}

	.services-hero__content h1 {
		font-size: clamp(34px, 8vw, 44px);
	}

	.services-hero__content > p:not(.eyebrow) {
		font-size: 18px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-card__body h2 {
		font-size: 23px;
	}

	.cases-archive-hero .section-heading h1,
	.case-single__header h1 {
		font-size: 36px;
	}

	.modal {
		place-items: start center;
		padding: 16px;
		overflow-y: auto;
	}

	.modal__dialog {
		width: 100%;
		max-height: calc(100vh - 32px);
		padding: 24px;
	}

	.modal__header h2 {
		font-size: 31px;
	}

	.form-grid,
	.contact-method__grid {
		grid-template-columns: 1fr;
	}

	.contact-card__line {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.contact-card__line a {
		justify-self: start;
		text-align: left;
	}

	.price-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.price-row strong {
		text-align: left;
		white-space: normal;
	}

	.site-footer__links {
		justify-content: flex-start;
	}

	.site-footer__legal {
		margin-top: -8px;
		padding-bottom: 28px;
	}

	.cookie-banner__inner {
		display: grid;
		gap: 16px;
	}

	.cookie-banner p {
		font-size: 16px;
	}

	.cookie-banner__button {
		width: 100%;
	}

	.cookie-banner__actions {
		display: grid;
		width: 100%;
	}

	.cookie-banner__choice-link {
		justify-self: center;
		padding: 4px 8px;
	}
}

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

@media (max-width: 420px) {
	.container {
		width: min(100% - 24px, var(--container));
	}

	.site-brand__tagline {
		display: inline-flex;
		font-size: 13.5px;
	}

	.header-social {
		width: 38px;
		height: 38px;
	}

	.hero__content h1 {
		font-size: 34px;
	}

	.hero__actions {
		display: grid;
	}

	.hero__badges {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero__badges strong {
		white-space: normal;
	}

	.button {
		width: 100%;
	}

	.service-card,
	.case-card,
		.service-detail-card,
		.format-card,
		.output-item,
		.detail-card,
		.detail-step,
		.included-item,
		.readable-content,
		.service-price-card,
		.service-guidance,
		.blog-card,
		.process-step,
	.stack-item,
	.entry,
	.post-card,
	.empty-state {
		padding: 20px;
	}

	.service-card__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-panel {
		padding: 24px;
	}

	.cta-strip,
	.service-guidance {
		padding: 24px;
	}

	.services-hero__panel {
		padding: 20px;
	}

	.contact-panel h2 {
		font-size: 28px;
	}

	.portfolio-card__media {
		padding: 10px 10px 0;
	}

	.portfolio-card__body,
	.case-detail-card {
		padding: 20px;
	}

	.case-browser__bar em {
		display: none;
	}

	.modal {
		padding: 10px;
	}

	.modal__dialog {
		max-height: calc(100vh - 20px);
		padding: 20px;
	}

	.modal__header {
		padding-right: 42px;
	}

	.modal__header h2 {
		font-size: 28px;
	}

	.radio-card {
		padding: 11px;
	}

	.site-footer__title {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 360px) {
	.container {
		width: min(100% - 20px, var(--container));
	}

	.site-header__actions {
		gap: 6px;
	}

	.header-social {
		width: 36px;
		height: 36px;
	}

	.header-social img {
		width: 18px;
		height: 18px;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.hero__content h1 {
		font-size: 34px;
	}

	.hero__lead {
		font-size: 16px;
	}

	.section-heading h1,
	.section-heading h2,
	.entry__header h1 {
		font-size: 28px;
	}

	.cases-archive-hero .section-heading h1,
	.case-single__header h1 {
		font-size: 32px;
	}

	.workflow-card__header {
		display: grid;
	}

	.modal__dialog {
		padding: 18px;
	}

	.modal__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
	}

	.workflow-list li {
		grid-template-columns: 34px minmax(0, 1fr);
	}

	.status-pill {
		white-space: normal;
	}
}

.hero__visual,
.workflow-card,
.tech-orbit,
.tech-label,
.status-pill,
.workflow-list,
.workflow-note,
.workflow-card__summary,
.tech-card__bar {
	display: none !important;
}

.hero__inner {
	grid-template-columns: minmax(0, 1fr) !important;
}

.hero__content {
	max-width: 820px;
}

.hero__content h1 {
	max-width: 820px;
	overflow-wrap: normal;
	word-break: normal;
}

.hero .button {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.hero .button:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
}

.hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	max-width: 740px;
}

.hero__proof li {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.hero__proof strong {
	font-size: 17px;
	font-weight: 800;
}

.hero__proof span {
	color: rgba(226, 232, 240, 0.74);
	font-size: 13px;
	line-height: 1.4;
}

.personal-section .personal-note {
	display: grid;
	gap: 16px;
	max-width: 760px;
}

.personal-section blockquote {
	margin: 0;
	padding: 22px 24px 22px 26px;
	border-left: 3px solid var(--color-accent);
	background: rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-xl);
	color: var(--color-text);
	font-size: 20px;
	line-height: 1.7;
	box-shadow: var(--shadow-card);
}

.services-grid--minimal {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.services-grid--minimal .service-card {
	min-height: 180px;
	padding: 24px;
	border: 0;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 12px 30px rgba(31, 27, 22, 0.05);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.services-grid--minimal .service-card::after,
.services-grid--minimal .service-card__icon {
	display: none;
}

.services-grid--minimal .service-card__top {
	margin-bottom: 18px;
}

.services-grid--minimal .service-card__top span {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-accent);
	font-size: 30px;
	font-weight: 800;
	font-family: inherit;
	white-space: normal;
}

.services-grid--minimal .service-card h3 {
	font-size: 24px;
	line-height: 1.12;
}

.services-grid--minimal .service-card p {
	max-width: 320px;
	font-size: 16px;
	line-height: 1.55;
}

.services-grid--minimal .service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(31, 27, 22, 0.09);
}

.services-cta {
	margin-top: 30px;
}

.services-cta .button {
	min-width: 200px;
}

.portfolio-grid--home {
	grid-template-columns: 1fr;
	gap: 22px;
}

.portfolio-grid--home .portfolio-card {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
	align-items: start;
	gap: 0;
	border: 0;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(31, 27, 22, 0.07);
}

.portfolio-grid--home .portfolio-card__media {
	padding: 20px 0 20px 20px;
}

.portfolio-grid--home .case-browser__viewport {
	aspect-ratio: 16 / 10;
}

.portfolio-grid--home .portfolio-card__body {
	padding: 22px 22px 22px 20px;
	gap: 12px;
}

.portfolio-grid--home .portfolio-card__body h2 {
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.08;
}

.portfolio-grid--home .portfolio-card__body > p {
	font-size: 16px;
	line-height: 1.55;
}

.portfolio-grid--home .portfolio-card__note {
	display: none;
}

.portfolio-grid--home .portfolio-card__actions {
	grid-template-columns: 1fr;
	margin-top: 0;
}

.portfolio-grid--home .portfolio-card__button {
	min-height: 50px;
	font-size: 15px;
}

.portfolio-grid--home .portfolio-tags li {
	background: rgba(229, 106, 45, 0.08);
	border-color: rgba(229, 106, 45, 0.14);
	color: var(--color-accent-dark);
}

.portfolio-card__body > p + .portfolio-tags {
	margin-top: -4px;
}

.portfolio-tags li {
	padding: 6px 9px;
	border-color: rgba(var(--mw-primary-rgb), 0.18);
	background: rgba(var(--mw-primary-rgb), 0.08);
	color: var(--color-accent-dark);
	font-size: 11px;
	line-height: 1.05;
	letter-spacing: 0;
}

.portfolio-preview__action {
	margin-top: 42px;
}

.portfolio-preview__button {
	min-width: min(100%, 340px);
	min-height: 60px;
	padding: 17px 32px;
	font-size: 17px;
	box-shadow: 0 18px 34px rgba(229, 106, 45, 0.2);
}

.cta-strip {
	border: 0;
	background: linear-gradient(135deg, #14181f, #1a1f27);
	box-shadow: 0 24px 60px rgba(16, 20, 26, 0.24);
}

.cta-strip h3 {
	font-size: clamp(30px, 3vw, 42px);
}

.cta-strip p {
	display: none;
}

.cta-strip .button {
	min-width: 220px;
	background: #ffffff;
	border-color: #ffffff;
	color: var(--color-text);
}

.pricing-layout {
	grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
	gap: 36px;
}

.price-list {
	background: transparent;
	box-shadow: none;
	border: 0;
}

.price-row {
	padding: 18px 0;
	border-bottom: 1px solid rgba(31, 27, 22, 0.08);
}

.price-row:hover {
	background: transparent;
}

.price-row span {
	color: var(--color-text);
}

.price-row strong {
	color: var(--color-accent-dark);
	font-size: 18px;
}

.pricing-actions {
	align-items: center;
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	position: relative;
}

.process-timeline::before {
	content: "";
	position: absolute;
	left: 8%;
	right: 8%;
	top: 36px;
	height: 2px;
	background: linear-gradient(90deg, rgba(var(--mw-primary-rgb), 0.08), rgba(var(--mw-primary-rgb), 0.74), rgba(var(--mw-primary-rgb), 0.08));
}

.process-timeline .process-step {
	position: relative;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.process-timeline .process-step::after {
	display: none;
}

.process-timeline .process-step span {
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	font-size: 18px;
	background: #ffffff;
	border-color: rgba(229, 106, 45, 0.18);
	color: var(--color-accent-dark);
}

.process-timeline .process-step h3 {
	font-size: 24px;
	margin-bottom: 8px;
}

.process-timeline .process-step p {
	max-width: 220px;
	font-size: 15px;
	line-height: 1.55;
}

.site-footer {
	padding-top: 44px;
	background: #12161c;
	color: #ffffff;
}

.site-footer__inner,
.site-footer__legal {
	color: rgba(255, 255, 255, 0.76);
}

.site-footer__brand p:first-of-type {
	margin: 12px 0 6px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
}

.site-footer__brand p:last-of-type {
	margin: 0;
	max-width: 360px;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__links a {
	color: rgba(255, 255, 255, 0.82);
}

.contact-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 18%, rgba(var(--mw-primary-rgb), 0.22), transparent 34%),
		radial-gradient(circle at 86% 6%, rgba(var(--mw-cool-rgb), 0.12), transparent 30%),
		linear-gradient(135deg, var(--mw-dark) 0%, var(--mw-dark-deep) 52%, var(--mw-dark-panel) 100%);
	color: var(--mw-light);
}

.contact-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(var(--mw-light-rgb), 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(var(--mw-light-rgb), 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08));
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08));
	pointer-events: none;
}

.contact-section > .container {
	position: relative;
	z-index: 1;
}

.contact-panel {
	border-color: rgba(var(--mw-light-rgb), 0.14);
	background: rgba(var(--mw-light-rgb), 0.03);
	color: var(--mw-light);
	box-shadow: 0 24px 70px rgba(var(--mw-dark-rgb), 0.22);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.contact-panel h2 {
	color: var(--mw-light);
}

.contact-panel p {
	color: rgba(var(--mw-light-muted-rgb), 0.78);
}

.contact-panel .eyebrow {
	color: rgba(var(--mw-primary-soft-rgb), 0.9);
}

.contact-card {
	border-color: rgba(var(--mw-light-rgb), 0.14);
	background: rgba(var(--mw-light-rgb), 0.03);
	color: var(--mw-light);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.contact-card__line a:hover {
	color: rgba(var(--mw-primary-soft-rgb), 0.95);
}

.contact-card {
	align-self: center;
	width: 100%;
	max-width: 430px;
	margin-left: auto;
	padding: 20px 22px;
	gap: 0;
}

.contact-card__line {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid rgba(var(--mw-light-rgb), 0.12);
	color: var(--mw-light);
	transition: color 180ms ease, transform 180ms ease;
}

.contact-card__line:first-child {
	padding-top: 0;
}

.contact-card__line:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.contact-card__line:hover {
	color: rgba(var(--mw-primary-soft-rgb), 0.95);
	transform: translateX(2px);
}

.contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(var(--mw-light-rgb), 0.12);
	border-radius: 50%;
	background: rgba(var(--mw-light-rgb), 0.06);
}

.contact-card__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.contact-card__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.contact-card__label,
.contact-card__value {
	display: block;
	text-align: left;
	text-transform: none;
}

.contact-card__label {
	color: currentColor;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.contact-card__value {
	color: rgba(var(--mw-light-muted-rgb), 0.68);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
	.hero__proof,
	.services-grid--minimal,
	.process-timeline,
	.portfolio-grid--home .portfolio-card {
		grid-template-columns: 1fr;
	}

	.process-timeline::before {
		display: none;
	}

	.pricing-layout {
		grid-template-columns: 1fr;
	}

	.portfolio-grid--home .portfolio-card__media,
	.portfolio-grid--home .portfolio-card__body {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	.hero__content h1 {
		font-size: clamp(34px, 9vw, 44px);
	}

	.hero__proof {
		grid-template-columns: 1fr;
	}

	.personal-section blockquote {
		padding: 20px;
		font-size: 18px;
	}

	.services-grid--minimal {
		grid-template-columns: 1fr;
	}

	.portfolio-grid--home .portfolio-card {
		grid-template-columns: 1fr;
	}

	.portfolio-grid--home .portfolio-card__media,
	.portfolio-grid--home .portfolio-card__body {
		padding: 16px;
	}

	.portfolio-preview__button,
	.cta-strip .button,
	.services-cta .button {
		width: 100%;
		min-width: 0;
	}

	.process-timeline {
		grid-template-columns: 1fr;
	}

	.process-timeline .process-step p {
		max-width: none;
	}
}

/* MW1 Redesign */
.button {
	background: var(--mw-primary);
	border-color: var(--mw-primary);
	color: #ffffff;
}

.button:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	box-shadow: 0 8px 20px rgba(229, 106, 45, 0.3);
	transform: translateY(-2px);
}

.button--outline,
.portfolio-preview__button,
.pricing-actions .button {
	background: transparent;
	border: 1px solid var(--mw-primary);
	color: var(--mw-primary);
	box-shadow: none;
}

.button--outline:hover,
.portfolio-preview__button:hover,
.pricing-actions .button:hover {
	background: rgba(229, 106, 45, 0.08);
	border-color: var(--mw-primary);
	color: var(--color-accent-dark);
	box-shadow: none;
}

.site-header {
	background: var(--mw-header-bg);
	border-bottom-color: rgba(var(--mw-light-rgb), 0.08);
	box-shadow: 0 12px 34px rgba(var(--mw-dark-rgb), 0.12);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.scrolled {
	background: var(--mw-header-bg);
	border-bottom-color: rgba(var(--mw-light-rgb), 0.14);
	box-shadow: 0 14px 36px rgba(var(--mw-dark-rgb), 0.24);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.site-brand__copy,
.primary-nav__brand {
	transform-origin: left center;
	transition: transform 300ms ease;
}

.site-header.scrolled .site-brand__copy,
.site-header.scrolled .primary-nav__brand {
	transform: scale(0.9);
}

.primary-nav__list a,
.primary-nav__list button,
.services-menu__trigger {
	position: relative;
}

.primary-nav__list a::after,
.primary-nav__list button::after,
.services-menu__trigger::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 7px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.primary-nav__list a:hover::after,
.primary-nav__list button:hover::after,
.services-menu:hover .services-menu__trigger::after,
.services-menu:focus-within .services-menu__trigger::after {
	transform: scaleX(1);
}

.hero .hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr) !important;
	align-items: center;
	gap: clamp(28px, 3.5vw, 52px);
}

.hero__stats-cloud {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-content: center;
	align-self: center;
	min-height: 0;
	max-width: 560px;
	color: var(--mw-light);
}

.hero-stat {
	position: relative;
	display: grid;
	align-content: space-between;
	gap: 12px;
	min-height: 154px;
	width: auto;
	max-width: 100%;
	padding: clamp(18px, 2.1vw, 24px);
	border: 1px solid rgba(var(--mw-light-rgb), 0.14);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-light-rgb), 0.03);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: inset 0 1px 0 rgba(var(--mw-light-rgb), 0.08), 0 20px 44px rgba(var(--mw-dark-rgb), 0.18);
	overflow: hidden;
	transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hero-stat::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: var(--mw-primary);
	opacity: 0.9;
}

.hero-stat:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.56);
	background: rgba(var(--mw-light-rgb), 0.05);
	box-shadow: inset 0 1px 0 rgba(var(--mw-light-rgb), 0.1), 0 24px 52px rgba(var(--mw-dark-rgb), 0.24);
	transform: translateY(-2px);
}

.hero-stat strong {
	color: var(--mw-light);
	font-weight: 800;
	font-size: clamp(22px, 1.85vw, 32px);
	line-height: 1.08;
	letter-spacing: 0;
}

.hero-stat span {
	color: rgba(var(--mw-light-rgb), 0.68);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.hero-stat--years strong {
	font-size: clamp(30px, 2.35vw, 40px);
}

.hero-stat--projects strong {
	font-size: clamp(26px, 1.75vw, 31px);
}

.hero-stat--direct strong,
.hero-stat--price strong {
	font-size: clamp(20px, 1.35vw, 24px);
}

.personal-section {
	padding: clamp(56px, 5vw, 76px) 0;
	background: var(--mw-dark);
	color: var(--mw-light);
}

.personal-section::before {
	display: none !important;
}

.personal-section .eyebrow {
	color: rgba(var(--mw-primary-soft-rgb), 0.9);
}

.personal-section blockquote {
	border-left: 3px solid var(--mw-primary);
	background: rgba(var(--mw-light-rgb), 0.04);
	color: var(--mw-light);
	box-shadow: none;
}

.services-grid--minimal .service-card:hover {
	background: rgba(0, 0, 0, 0.02);
}

.services-grid--minimal .service-card__top span {
	transition: color 220ms ease;
}

.services-grid--minimal .service-card:hover .service-card__top span {
	color: var(--mw-primary);
}

.portfolio-grid--home .portfolio-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: max-content;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mw-primary);
	box-shadow: none;
	font-weight: 800;
}

.portfolio-grid--home .portfolio-card__button::after {
	content: "\2192";
	margin-left: 8px;
	transition: transform 180ms ease;
}

.portfolio-grid--home .portfolio-card__button:hover {
	background: transparent;
	border-color: transparent;
	color: var(--color-accent-dark);
	box-shadow: none;
	transform: none;
}

.portfolio-grid--home .portfolio-card__button:hover::after {
	transform: translateX(3px);
}

.cta-strip .button,
.contact-panel__button,
.inline-project-form__submit {
	background: var(--mw-primary);
	border-color: var(--mw-primary);
	color: #ffffff;
}

.process-timeline {
	position: relative;
}

.process-timeline::before {
	content: "";
	position: absolute;
	left: 7%;
	right: 7%;
	top: 28px;
	display: block;
	height: 2px;
	border: 0;
	background: linear-gradient(90deg, rgba(var(--mw-primary-rgb), 0.08), rgba(var(--mw-primary-rgb), 0.82), rgba(var(--mw-primary-rgb), 0.08));
	pointer-events: none;
}

.process-timeline::after {
	display: none;
}

.process-timeline .process-step {
	z-index: 1;
}

.process-timeline .process-step span {
	position: relative;
	z-index: 2;
	background: var(--mw-light);
	box-shadow: 0 10px 24px rgba(31, 27, 22, 0.12);
	transition: border-color 250ms ease, box-shadow 250ms ease, color 250ms ease, transform 250ms ease;
}

.process-timeline .process-step h3 {
	transition: transform 250ms ease, color 250ms ease;
}

.process-timeline .process-step:hover span {
	border-color: var(--mw-primary);
	color: var(--mw-primary);
	box-shadow: 0 0 0 4px rgba(var(--mw-primary-rgb), 0.12), 0 10px 24px rgba(31, 27, 22, 0.12);
	transform: translateY(-2px);
}

.process-timeline .process-step:hover h3 {
	color: var(--color-text);
	transform: translateX(4px);
}

.contact-panel {
	grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
	align-items: center;
}

.inline-project-form {
	display: grid;
	gap: 22px;
	margin-top: 30px;
	padding: clamp(22px, 3vw, 30px);
	border: 1px solid rgba(var(--mw-light-rgb), 0.14);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-light-rgb), 0.03);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.inline-project-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.inline-field {
	display: grid;
	gap: 8px;
}

.inline-field span {
	color: rgba(var(--mw-light-muted-rgb), 0.64);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.inline-field input,
.inline-field textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(var(--mw-light-rgb), 0.22);
	border-radius: 0;
	background: transparent;
	color: var(--mw-light);
	caret-color: var(--mw-primary);
	font: inherit;
	line-height: 1.5;
	padding: 10px 0 12px;
	resize: vertical;
	transition: border-color 180ms ease;
}

.inline-field input::placeholder,
.inline-field textarea::placeholder {
	color: rgba(var(--mw-light-muted-rgb), 0.42);
}

.inline-field input:focus,
.inline-field textarea:focus {
	outline: 0;
	border-bottom-color: var(--mw-primary);
	box-shadow: none;
}

.inline-project-form__message {
	margin-top: -6px;
}

@media (prefers-reduced-motion: reduce) {
	.hero-stat {
		animation: none;
		transition: none;
	}
}

@media (max-width: 1024px) {
	.hero .hero__inner {
		grid-template-columns: 1fr !important;
	}

	.hero__stats-cloud {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		min-height: 0;
	}

	.hero-stat {
		position: static;
		width: auto;
		max-width: none;
		animation: none;
	}

	.process-timeline {
		padding-left: 34px;
	}

	.process-timeline::before {
		left: 28px;
		right: auto;
		top: 0;
		bottom: 0;
		display: block;
		width: 2px;
		height: auto;
		background: linear-gradient(180deg, rgba(var(--mw-primary-rgb), 0.08), rgba(var(--mw-primary-rgb), 0.82), rgba(var(--mw-primary-rgb), 0.08));
	}

	.process-timeline .process-step {
		display: grid;
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 0 16px;
	}

	.process-timeline .process-step span {
		grid-row: span 2;
	}

	.process-timeline .process-step p {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.button,
	.header-cta,
	.primary-nav__cta,
	.contact-panel__button,
	.inline-project-form__submit {
		width: 100%;
	}

	.portfolio-grid--home .portfolio-card__button {
		width: max-content;
	}

	.portfolio-preview__button,
	.pricing-actions .button {
		width: 100%;
		background: transparent;
		border: 1px solid var(--mw-primary);
		color: var(--mw-primary);
	}

	.cta-strip .button {
		width: 100%;
	}

	.hero-stat {
		min-height: 136px;
		padding: 14px;
		overflow: hidden;
	}

	.hero-stat strong,
	.hero-stat--years strong {
		font-size: clamp(20px, 5.8vw, 28px);
		line-height: 1.08;
	}

	.hero-stat--projects strong {
		font-size: clamp(20px, 5.8vw, 28px);
		line-height: 1.08;
	}

	.hero-stat--direct strong,
	.hero-stat--price strong {
		font-size: clamp(17px, 4.8vw, 22px);
		line-height: 1.1;
	}

	.hero-stat span {
		font-size: 12px;
	}

	.process-timeline {
		padding-left: 34px;
	}

	.process-timeline::after {
		display: none;
	}

	.process-timeline::before {
		left: 28px;
		right: auto;
		top: 0;
		bottom: 0;
		display: block;
		width: 2px;
		height: auto;
		background: linear-gradient(180deg, rgba(var(--mw-primary-rgb), 0.08), rgba(var(--mw-primary-rgb), 0.82), rgba(var(--mw-primary-rgb), 0.08));
	}

	.process-timeline .process-step {
		display: grid;
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 0 16px;
	}

	.process-timeline .process-step span {
		grid-row: span 2;
	}

	.inline-project-form__grid,
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.contact-card {
		max-width: none;
		margin-left: 0;
	}
}

/* Products
---------------------------------------------------------------- */

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 34px;
}

.product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card[hidden] {
	display: none !important;
}

.product-card:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.3);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
	transform: translateY(-2px);
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--mw-dark) 0%, var(--mw-dark-panel) 100%);
	overflow: hidden;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.24);
	font-size: 56px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--color-accent);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 10px;
	padding: 22px 24px 24px;
}

.product-card__type {
	margin: 0;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card__title {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
}

.product-card__title a:hover {
	color: var(--color-accent);
}

.product-card__text {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.product-card__price {
	color: var(--color-accent-dark);
	font-size: 18px;
	font-weight: 700;
}

.product-card__prices {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}

.product-card__prices del {
	color: var(--color-muted);
	font-size: 14px;
}

.product-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.product-single__hero {
	background: var(--mw-dark);
	color: var(--mw-light);
}

.product-single__hero .eyebrow {
	color: rgb(var(--mw-primary-soft-rgb));
}

.product-single__hero h1 {
	margin: 0 0 16px;
	color: #f8fafc;
	font-size: clamp(34px, 3.6vw, 52px);
	font-weight: 800;
	line-height: 1.12;
}

.product-single__lead {
	margin: 0 0 22px;
	color: rgba(var(--mw-light-muted-rgb), 0.85);
	font-size: 18px;
}

.product-single__features {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-single__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(var(--mw-light-muted-rgb), 0.92);
}

.product-single__panel {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.04);
}

.product-single__thumb {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.product-single__thumb img {
	width: 100%;
}

.product-single__meta {
	display: grid;
	gap: 0;
}

.product-single__meta-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.product-single__meta-row span {
	color: rgba(var(--mw-light-muted-rgb), 0.62);
	font-size: 14px;
}

.product-single__meta-row strong {
	color: var(--mw-light);
	font-weight: 600;
	text-align: right;
}

.product-single__meta-row--price strong {
	color: rgb(var(--mw-primary-soft-rgb));
	font-size: 22px;
	font-weight: 800;
}

.product-single__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.product-single__docs {
	color: rgba(var(--mw-light-muted-rgb), 0.85);
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-single__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
}

/* MW1 Base sales landing v2
---------------------------------------------------------------- */

.tl-v2 {
	overflow: clip;
}

.tl-v2 .section-heading.tl-v2-heading {
	max-width: 760px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.tl-v2 .section-heading.tl-v2-heading h2 {
	max-width: 720px;
}

.tl-v2-hero {
	position: relative;
	isolation: isolate;
	min-height: 690px;
	background:
		radial-gradient(circle at 84% 18%, rgba(79, 70, 229, 0.32), transparent 34%),
		radial-gradient(circle at 16% 92%, rgba(243, 107, 43, 0.16), transparent 28%),
		linear-gradient(135deg, #070b15 0%, #0b1224 56%, #141d35 100%);
	color: #fff;
}

.tl-v2-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 46%;
	background:
		linear-gradient(180deg, transparent, rgba(7, 11, 21, 0.5)),
		radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px) 0 0 / 22px 22px;
	mask-image: linear-gradient(180deg, transparent, #000);
	pointer-events: none;
}

.tl-v2-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
	gap: clamp(32px, 5vw, 78px);
	align-items: center;
}

.tl-v2-hero__content {
	position: relative;
	z-index: 2;
}

.tl-v2-hero .eyebrow {
	color: #ffad81;
}

.tl-v2-hero h1 {
	max-width: 720px;
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.03;
}

.tl-v2-hero__lead {
	max-width: 670px;
	margin: 0 0 28px;
	color: rgba(226, 232, 240, 0.84);
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
}

.tl-v2-hero__actions,
.tl-v2-final__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.tl-v2-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.tl-v2-hero__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(226, 232, 240, 0.78);
	font-size: 12.5px;
	font-weight: 650;
}

.tl-v2-hero__price-row {
	display: flex;
	align-items: flex-end;
	gap: 16px;
	margin-top: 24px;
}

.tl-v2-price-stack {
	display: grid;
	gap: 3px;
}

.tl-v2-price-stack del,
.tl-buy__old-price {
	color: rgba(226, 232, 240, 0.48);
	font-size: 14px;
	font-weight: 700;
}

.tl-v2-hero__price-row strong {
	color: #ffad81;
	font-size: 29px;
	line-height: 1;
}

.tl-v2-hero__price-row span {
	display: block;
	color: rgba(226, 232, 240, 0.62);
	font-size: 13px;
}

.tl-v2-hero__price-row small {
	display: block;
	max-width: 330px;
	margin-top: 4px;
	color: rgba(226, 232, 240, 0.72);
	font-size: 12px;
	line-height: 1.35;
}

.tl-v2-hero__visual {
	position: relative;
	z-index: 1;
	min-width: 0;
	padding: 34px 42px 58px 0;
}

.tl-v2-hero-shot {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.tl-v2-hero-shot > span {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(7, 11, 21, 0.8);
	backdrop-filter: blur(7px);
	color: #fff;
	font-size: 11px;
	font-weight: 750;
}

.tl-v2-hero-shot img {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

.tl-v2-hero-shot--desktop img {
	aspect-ratio: 3 / 2;
}

.tl-v2-hero-shot--mobile {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: clamp(150px, 25%, 205px);
	border-radius: 20px;
}

.tl-v2-hero-shot--mobile img {
	aspect-ratio: 390 / 844;
}

.tl-v2-browser {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.16);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(2, 6, 23, 0.22);
}

.tl-v2-hero .tl-v2-browser {
	border-color: rgba(255, 255, 255, 0.13);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.tl-v2-browser__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 34px;
	padding: 0 12px;
	background: #111827;
}

.tl-v2-browser__bar span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.tl-v2-browser__bar span:first-child {
	background: #f36b2b;
}

.tl-v2-browser__bar em {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.44);
	font-size: 10px;
	font-style: normal;
	letter-spacing: 0.04em;
}

.tl-v2-browser > img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: top;
}

.tl-v2-phone {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: clamp(142px, 23%, 196px);
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 28px;
	background: #080d18;
	box-shadow: 0 22px 54px rgba(2, 6, 23, 0.38);
}

.tl-v2-phone::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 2;
	width: 36%;
	height: 11px;
	border-radius: 999px;
	background: #080d18;
	transform: translateX(-50%);
}

.tl-v2-phone img {
	display: block;
	width: 100%;
	aspect-ratio: 390 / 844;
	border-radius: 21px;
	object-fit: cover;
	object-position: top;
}

.tl-v2-live {
	position: absolute;
	left: 20px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(8, 13, 24, 0.82);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.85);
	font-size: 11px;
	font-weight: 650;
	text-decoration: none;
}

.tl-v2-live:hover {
	color: #fff;
}

.tl-v2-live span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.14);
}

.tl-v2-proofbar {
	padding: 28px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: #fff;
}

.tl-v2-proofbar__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.tl-v2-proofbar__grid > div {
	display: grid;
	gap: 3px;
	padding: 4px clamp(16px, 2.4vw, 32px);
	border-left: 1px solid rgba(15, 23, 42, 0.09);
}

.tl-v2-proofbar__grid > div:first-child {
	padding-left: 0;
	border-left: 0;
}

.tl-v2-proofbar strong {
	color: var(--color-accent-dark);
	font-size: clamp(22px, 2.1vw, 31px);
	line-height: 1.1;
}

.tl-v2-proofbar span {
	color: var(--color-muted);
	font-size: 13px;
}

.tl-v2-audience {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.tl-v2-audience article {
	position: relative;
	padding: 27px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.tl-v2-audience article > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 32px;
	border-radius: 12px;
	background: rgba(var(--mw-primary-rgb), 0.1);
	color: var(--color-accent-dark);
	font-size: 12px;
	font-weight: 800;
}

.tl-v2-audience h3 {
	margin: 0 0 10px;
	font-size: 21px;
}

.tl-v2-audience p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

.tl-v2-showcase-list {
	display: grid;
	gap: clamp(76px, 9vw, 128px);
}

.tl-v2-showcases .container,
.tl-v2-control .container {
	width: min(1500px, calc(100% - 40px));
	max-width: 1500px;
}

.tl-v2-showcase {
	display: grid;
	gap: 32px;
	padding-top: clamp(30px, 4vw, 52px);
	border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.tl-v2-showcase--reverse .tl-v2-showcase__copy {
	order: 2;
}

.tl-v2-showcase__copy h3 {
	max-width: 820px;
	margin: 0 0 15px;
	font-size: clamp(27px, 2.8vw, 39px);
	line-height: 1.16;
}

.tl-v2-showcase__copy > p:not(.eyebrow) {
	max-width: 860px;
	margin: 0 0 20px;
	color: var(--color-muted);
	font-size: 16px;
}

.tl-v2-device-stage {
	display: grid;
	grid-template-columns: minmax(0, 3.35fr) minmax(210px, 1fr);
	gap: clamp(16px, 2.2vw, 28px);
	align-items: start;
	min-width: 0;
	padding: 0;
}

.tl-v2-screen {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.13);
}

.tl-v2-screen figcaption {
	padding: 11px 15px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 750;
}

.tl-v2-screen img {
	display: block;
	width: 100%;
	object-fit: contain;
	object-position: top;
}

.tl-v2-screen--desktop img {
	aspect-ratio: 3 / 2;
}

.tl-v2-screen--mobile {
	width: 100%;
	max-width: 310px;
	justify-self: end;
}

.tl-v2-screen--mobile img {
	aspect-ratio: 390 / 844;
}

.tl-v2-device-stage .tl-v2-phone {
	right: 0;
	bottom: 0;
	width: clamp(126px, 24%, 184px);
}

.tl-v2-device-toggle {
	display: none;
	gap: 4px;
	width: max-content;
	margin-top: 24px;
	padding: 4px;
	border-radius: 999px;
	background: var(--color-surface-alt);
}

.tl-v2-device-toggle button {
	padding: 8px 13px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--color-muted);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.tl-v2-device-toggle button.is-active {
	background: var(--mw-dark);
	color: #fff;
}

.tl-v2-control {
	background:
		radial-gradient(circle at 82% 10%, rgba(var(--mw-primary-rgb), 0.08), transparent 28%),
		var(--color-surface-alt);
}

.tl-v2-control-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 38px;
}

.tl-v2-control-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.tl-v2-control-card__media {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 12px;
	background: #f8fafc;
}

.tl-v2-control-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: contain;
	object-position: top left;
}

.tl-v2-control-card__label {
	margin: 0;
	padding: 8px 10px;
	color: var(--color-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tl-v2-control-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-weight: 800;
}

.tl-v2-control-card h3,
.tl-v2-control-card > p {
	grid-column: 1 / -1;
}

.tl-v2-control-card h3 {
	margin: 10px 2px 0;
	font-size: 19px;
}

.tl-v2-control-card > p {
	margin: 0 2px 2px;
	color: var(--color-muted);
	font-size: 14px;
}

.tl-v2-niches__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 90px);
	align-items: center;
}

.tl-v2-niches h2,
.tl-v2-start h2 {
	margin: 0 0 16px;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.14;
}

.tl-v2-niches p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.tl-v2-niche-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tl-v2-niche-list span {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 17px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 9px 25px rgba(15, 23, 42, 0.045);
	font-size: 14px;
	font-weight: 700;
}

.tl-v2-start__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(40px, 7vw, 96px);
	align-items: center;
}

.tl-v2-steps {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.tl-v2-steps > div {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 13px 15px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: #fff;
}

.tl-v2-steps strong {
	display: inline-flex;
	flex: 0 0 38px;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(var(--mw-primary-rgb), 0.11);
	color: var(--color-accent-dark);
	font-size: 14px;
}

.tl-v2-steps span,
.tl-v2-steps small,
.tl-v2-steps b {
	display: block;
}

.tl-v2-steps b {
	font-size: 14px;
}

.tl-v2-steps small {
	margin-top: 2px;
	color: var(--color-muted);
	font-size: 12px;
}

.tl-v2-admin-shot {
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--radius-xl);
	background: #111827;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.tl-v2-admin-shot p {
	margin: 0;
	padding: 13px 17px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 700;
}

.tl-v2-admin-shot img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: top left;
}

.tl-v2-requirements {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
}

.tl-v2-requirements > div {
	display: grid;
	gap: 3px;
	padding: 14px 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.72);
}

.tl-v2-requirements span {
	color: var(--color-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tl-v2-requirements strong {
	font-size: 14px;
}

.tl-v2-buy .tl-buy__card {
	top: calc(var(--header-height) + 28px);
}

.tl-buy__old-price {
	margin: 6px 0 -4px;
	color: var(--color-muted);
}

.tl-buy__intro-price {
	margin: -2px 0 22px;
	color: var(--color-muted);
	font-size: 12px;
	line-height: 1.45;
}

.tl-v2-final .cta-strip {
	align-items: center;
}

.tl-v2-final .cta-strip h2 {
	margin-bottom: 7px;
}

.tl-v2-final .cta-strip p:last-child {
	max-width: 650px;
	margin-bottom: 0;
	color: rgba(226, 232, 240, 0.72);
}

@media (max-width: 1100px) {
	.tl-v2-hero__grid {
		grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
		gap: 34px;
	}

	.tl-v2-control-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 920px) {
	.tl-v2-hero {
		min-height: 0;
	}

	.tl-v2-hero__grid,
	.tl-v2-showcase,
	.tl-v2-niches__grid,
	.tl-v2-start__grid {
		grid-template-columns: 1fr;
	}

	.tl-v2-hero__visual {
		max-width: 760px;
		margin: 0 auto;
	}

	.tl-v2-showcase--reverse .tl-v2-showcase__copy {
		order: 0;
	}

	.tl-v2-audience {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.tl-v2-hero h1 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.tl-v2-hero__actions .button,
	.tl-v2-final__actions .button {
		width: 100%;
	}

	.tl-v2-hero__visual {
		padding: 12px 0 0;
	}

	.tl-v2-hero-shot--mobile {
		position: relative;
		right: auto;
		bottom: auto;
		width: min(240px, 70vw);
		margin: -42px 18px 0 auto;
	}

	.tl-v2-hero__price-row {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.tl-v2-live {
		position: static;
		width: max-content;
		max-width: 100%;
		margin: 12px auto 0;
	}

	.tl-v2-proofbar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 0;
	}

	.tl-v2-proofbar__grid > div,
	.tl-v2-proofbar__grid > div:first-child {
		padding: 0 12px;
		border-left: 0;
	}

	.tl-v2-proofbar__grid > div:nth-child(even) {
		border-left: 1px solid rgba(15, 23, 42, 0.09);
	}

	.tl-v2-showcase-list {
		gap: 74px;
	}

	.tl-v2-device-toggle {
		display: flex;
	}

	.tl-v2-device-stage {
		grid-template-columns: 1fr;
	}

	.tl-v2-screen--mobile {
		width: min(310px, 82vw);
		max-width: none;
		justify-self: center;
	}

	.tl-v2-control-card {
		grid-template-columns: 1fr;
	}

	.tl-v2-control-card h3,
	.tl-v2-control-card > p {
		grid-column: auto;
	}

	.tl-v2-control-card__arrow {
		margin: -2px auto;
		transform: rotate(90deg);
	}

	.tl-v2-control-card img {
		aspect-ratio: 16 / 10;
	}

	.tl-v2-requirements {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.tl-v2-browser {
		border-radius: 12px;
	}

	.tl-v2-browser__bar {
		height: 28px;
	}

	.tl-v2-browser__bar em {
		display: none;
	}

	.tl-v2-audience article,
	.tl-v2-control-card {
		padding: 18px;
	}

	.tl-v2-niche-list span {
		min-height: 40px;
		padding: 8px 13px;
		font-size: 12.5px;
	}
}

/* Blog archive
---------------------------------------------------------------- */

.blog-grid--archive {
	margin-top: 8px;
}

.blog-card__media {
	display: block;
	margin: -24px -24px 16px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.blog-card__title a:hover {
	color: var(--color-accent);
}

.blog-card .link-button {
	margin-top: auto;
}

/* Services tiles
---------------------------------------------------------------- */

.service-tile-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.service-tile {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover {
	border-color: rgba(var(--mw-primary-rgb), 0.3);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
	transform: translateY(-2px);
	color: inherit;
}

.service-tile__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--mw-dark) 0%, var(--mw-dark-panel) 100%);
	overflow: hidden;
}

.service-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-tile__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-tile__placeholder .icon-mark,
.service-tile__placeholder svg {
	width: 46px;
	height: 46px;
	color: rgba(255, 255, 255, 0.4);
}

.service-tile__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 10px;
	padding: 22px 24px 24px;
}

.service-tile__title {
	color: var(--color-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.service-tile:hover .service-tile__title {
	color: var(--color-accent);
}

.service-tile__text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.55;
	overflow: hidden;
}

.service-tile__more {
	margin-top: auto;
}

@media (max-width: 1024px) {
	.service-tile-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.service-tile-grid {
		grid-template-columns: 1fr;
	}
}

.product-single__features .icon-mark {
	width: 28px;
	height: 28px;
	border-color: rgba(var(--mw-primary-rgb), 0.35);
	border-radius: 9px;
	background: rgba(var(--mw-primary-rgb), 0.14);
	color: rgb(var(--mw-primary-soft-rgb));
	box-shadow: none;
}

.product-single__features .icon-mark svg {
	width: 15px;
	height: 15px;
}

/* Compact service page header
---------------------------------------------------------------- */

.service-detail-head {
	padding-bottom: clamp(28px, 3vw, 40px);
}

.service-detail-head__heading {
	margin-bottom: 0;
}

.service-detail-head__actions {
	margin-top: 22px;
}

/* Restore ghost buttons after the redesign .button override */
.button.button--ghost {
	background: rgba(255, 255, 255, 0.64);
	border-color: var(--color-border);
	color: var(--color-text);
}

.button.button--ghost:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(32, 36, 43, 0.13);
}

.hero .button.button--ghost,
.product-single__hero .button.button--ghost,
.cta-strip--dark .button.button--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.hero .button.button--ghost:hover,
.product-single__hero .button.button--ghost:hover,
.cta-strip--dark .button.button--ghost:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--color-text);
}

.entry__content a.button,
.readable-content a.button {
	color: #ffffff;
}

/* Case preview: hover-to-play cards + device showcase
---------------------------------------------------------------- */

.case-hover-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	background: #0f172a;
}

.case-hover-hint {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	backdrop-filter: blur(4px);
	opacity: 1;
	transition: opacity 200ms ease;
	pointer-events: none;
}

.portfolio-card__media:hover .case-hover-hint,
.portfolio-card__media.is-video-playing .case-hover-hint {
	opacity: 0;
}

.case-hover-hint__mobile {
	display: none;
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
	.case-hover-hint__desktop {
		display: none;
	}

	.case-hover-hint__mobile {
		display: inline;
	}

	.case-hover-hint {
		left: 10px;
		right: 10px;
		bottom: 10px;
		justify-content: center;
	}
}

/* Click-to-play video (single case page) */
.case-video {
	position: absolute;
	inset: 0;
	background: #0f172a;
}

.case-video__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.case-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
	color: #ffffff;
	cursor: pointer;
	transform: translate(-50%, -50%);
	box-shadow: 0 18px 46px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.45);
	-webkit-backdrop-filter: blur(14px) saturate(145%);
	backdrop-filter: blur(14px) saturate(145%);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.case-video__play svg {
	margin-left: 4px;
}

.case-video__play--small {
	width: 52px;
	height: 52px;
}

.case-video__play::before {
	content: "";
	position: absolute;
	inset: -10px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
}

.case-video__play:hover {
	border-color: rgba(255, 255, 255, 0.82);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.17));
	transform: translate(-50%, -50%) scale(1.07);
}

.case-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #0f172a;
}

/* Device showcase: desktop browser + phone */
.case-showcase {
	position: relative;
}

.case-single__preview--with-phone .case-showcase {
	padding-bottom: 46px;
	padding-right: 54px;
}

.case-phone {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 118px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.case-phone__frame {
	position: relative;
	width: 100%;
	padding: 7px;
	border-radius: 22px;
	background: linear-gradient(150deg, #1b2437, #0b1020);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.case-phone__notch {
	position: absolute;
	top: 11px;
	left: 50%;
	width: 38px;
	height: 5px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.24);
	transform: translateX(-50%);
	z-index: 2;
}

.case-phone__screen {
	position: relative;
	aspect-ratio: 9 / 19;
	border-radius: 16px;
	overflow: hidden;
	background: #0f172a;
}

.case-phone__screen .case-video__poster {
	object-position: top;
}

.case-phone__label {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

@media (max-width: 600px) {
	.case-single__preview--with-phone .case-showcase {
		padding-right: 0;
		padding-bottom: 0;
	}

	.case-phone {
		position: static;
		width: 150px;
		margin: 20px auto 0;
	}
}

/* Theme landing (MW1 Base)
---------------------------------------------------------------- */

.tl-shot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 18px;
	border: 2px dashed rgba(var(--mw-primary-rgb), 0.35);
	border-radius: var(--radius-lg);
	background: rgba(var(--mw-primary-rgb), 0.04);
	color: var(--color-muted);
	font-size: 14px;
	text-align: center;
}

.tl-shot--image {
	padding: 0;
	border-style: solid;
	overflow: hidden;
}

.tl-shot--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.tl-hero {
	background:
		radial-gradient(circle at 14% 18%, rgba(var(--mw-primary-rgb), 0.24), transparent 34%),
		radial-gradient(circle at 82% 10%, rgba(var(--mw-primary-rgb), 0.14), transparent 30%),
		linear-gradient(135deg, #080d18 0%, #0b1020 48%, #111827 100%);
	color: #ffffff;
}

.tl-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}

.tl-hero .eyebrow {
	color: rgb(var(--mw-primary-soft-rgb));
}

.tl-hero h1 {
	margin: 0 0 18px;
	color: #f8fafc;
	font-size: clamp(34px, 3.8vw, 54px);
	font-weight: 800;
	line-height: 1.1;
}

.tl-hero__lead {
	margin: 0 0 20px;
	color: rgba(var(--mw-light-muted-rgb), 0.85);
	font-size: 18px;
}

.tl-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.tl-chip {
	display: inline-flex;
	padding: 7px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(var(--mw-light-muted-rgb), 0.9);
	font-size: 13px;
	font-weight: 600;
}

.tl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.tl-hero__price {
	color: rgb(var(--mw-primary-soft-rgb));
	font-size: 22px;
	font-weight: 800;
}

.tl-hero__media .case-browser__viewport {
	background: #0b1020;
}

.tl-hero__media .tl-shot {
	position: absolute;
	inset: 0;
	border-radius: 0;
	border-width: 0;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(var(--mw-light-muted-rgb), 0.6);
}

.tl-stats-section {
	padding: clamp(34px, 4vw, 48px) 0;
}

.tl-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.tl-stat strong {
	display: block;
	color: var(--color-accent-dark);
	font-size: clamp(28px, 2.6vw, 38px);
	font-weight: 800;
	line-height: 1.1;
}

.tl-stat span {
	color: var(--color-muted);
	font-size: 15px;
}

.tl-audience {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.tl-audience__item {
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-lg);
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

.tl-audience__item h3 {
	margin: 0 0 10px;
	font-size: 19px;
	font-weight: 700;
}

.tl-audience__item p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

.tl-highlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
	margin-bottom: clamp(40px, 5vw, 64px);
}

.tl-highlight:last-child {
	margin-bottom: 0;
}

.tl-highlight--reverse .tl-highlight__media {
	order: 2;
}

.tl-highlight__content h3 {
	margin: 0 0 12px;
	font-size: clamp(24px, 2.2vw, 30px);
	font-weight: 700;
}

.tl-highlight__content p {
	margin: 0 0 14px;
	color: var(--color-muted);
}

.tl-list {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tl-list li {
	position: relative;
	padding-left: 26px;
	color: var(--color-text);
}

.tl-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(var(--mw-primary-rgb), 0.16);
	box-shadow: inset 0 0 0 4px rgba(var(--mw-primary-rgb), 0.9);
}

.tl-list--big li {
	font-size: 17px;
	padding-block: 2px;
}

.tl-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.tl-feature {
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-lg);
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

.tl-feature h3 {
	margin: 14px 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.tl-feature p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.tl-compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.tl-compare__col {
	padding: 28px;
	border-radius: var(--radius-xl);
}

.tl-compare__col--plugins {
	border: 1px solid rgba(15, 23, 42, 0.1);
	background: var(--color-surface-alt);
}

.tl-compare__col--theme {
	border: 1px solid rgba(var(--mw-primary-rgb), 0.3);
	background: var(--mw-dark);
	color: var(--mw-light);
}

.tl-compare__col h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
}

.tl-compare__col ul {
	display: grid;
	gap: 10px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.tl-compare__col--plugins li {
	position: relative;
	padding-left: 26px;
	color: var(--color-muted);
}

.tl-compare__col--plugins li::before {
	content: "•";
	position: absolute;
	left: 8px;
	color: var(--color-muted);
}

.tl-compare__col--theme li {
	position: relative;
	padding-left: 26px;
	color: rgba(var(--mw-light-muted-rgb), 0.92);
}

.tl-compare__col--theme li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: rgb(var(--mw-primary-soft-rgb));
	font-weight: 700;
}

.tl-compare__note {
	margin: 0;
	font-size: 14px;
	opacity: 0.75;
}

.tl-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.tl-gallery__item {
	margin: 0;
}

.tl-gallery__item figcaption {
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 14px;
	text-align: center;
}

.tl-demo {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
}

.tl-demo__content h2 {
	margin: 0 0 14px;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
}

.tl-demo__content p {
	color: var(--color-muted);
}

.tl-buy {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(26px, 4vw, 56px);
	align-items: start;
}

.tl-buy__included h2 {
	margin: 0 0 18px;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
}

.tl-buy__extra {
	margin-top: 18px;
	padding: 16px 18px;
	border-left: 3px solid var(--color-accent);
	background: #ffffff;
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	color: var(--color-muted);
}

.tl-buy__card {
	position: sticky;
	top: calc(var(--header-height) + 20px);
	display: grid;
	gap: 12px;
	padding: 30px;
	border: 1px solid rgba(var(--mw-primary-rgb), 0.25);
	border-radius: var(--radius-xl);
	background: var(--mw-dark);
	color: var(--mw-light);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.tl-buy__label {
	margin: 0;
	color: rgba(var(--mw-light-muted-rgb), 0.7);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tl-buy__price {
	margin: 0;
	color: rgb(var(--mw-primary-soft-rgb));
	font-size: clamp(30px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.1;
}

.tl-buy__requires {
	margin: 0;
	color: rgba(var(--mw-light-muted-rgb), 0.7);
	font-size: 14px;
}

.tl-buy__button {
	width: 100%;
}

.tl-buy__fineprint {
	margin: 4px 0 0;
	color: rgba(var(--mw-light-muted-rgb), 0.55);
	font-size: 13px;
}

@media (max-width: 1024px) {
	.tl-hero__grid,
	.tl-highlight,
	.tl-demo,
	.tl-buy {
		grid-template-columns: 1fr;
	}

	.tl-highlight--reverse .tl-highlight__media {
		order: 0;
	}

	.tl-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tl-audience,
	.tl-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tl-buy__card {
		position: static;
	}
}

@media (max-width: 640px) {
	.tl-audience,
	.tl-feature-grid,
	.tl-compare,
	.tl-gallery {
		grid-template-columns: 1fr;
	}

	.tl-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

/* Theme landing: buy terms + install options */
.tl-buy__terms {
	display: grid;
	gap: 8px;
	margin: 0 0 6px;
	padding: 0;
	list-style: none;
}

.tl-buy__terms li {
	position: relative;
	padding-left: 24px;
	color: rgba(var(--mw-light-muted-rgb), 0.85);
	font-size: 15px;
}

.tl-buy__terms li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: rgb(var(--mw-primary-soft-rgb));
	font-weight: 700;
}

.tl-install {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.tl-install__option {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

.tl-install__option--featured {
	border-color: rgba(var(--mw-primary-rgb), 0.35);
	background: var(--mw-dark);
	color: var(--mw-light);
}

.tl-install__option h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
}

.tl-install__price {
	margin: 0;
	color: var(--color-accent-dark);
	font-size: 30px;
	font-weight: 800;
}

.tl-install__option--featured .tl-install__price {
	color: rgb(var(--mw-primary-soft-rgb));
}

.tl-install__text {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.6;
}

.tl-install__option--featured .tl-install__text {
	color: rgba(var(--mw-light-muted-rgb), 0.85);
}

.tl-install__option .button,
.tl-install__hint {
	margin-top: auto;
	align-self: flex-start;
}

.tl-install__hint {
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 900px) {
	.tl-install {
		grid-template-columns: 1fr;
	}
}

/* Mobile navigation must stay viewport-bound even when the sticky header is transformed. */
@media (max-width: 768px) {
	.site-header,
	.site-header.scrolled,
	body.menu-open .site-header {
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
		transition: none !important;
	}

	body.menu-open .primary-nav,
	html.menu-open .primary-nav,
	.primary-nav.is-open {
		position: fixed !important;
		inset: 0 !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		pointer-events: auto !important;
	}

	.single-mw1_case .case-single {
		padding-bottom: 24px;
	}
}

/* Make the required privacy consent unmistakable in compact forms. */
@media (max-width: 700px) {
	.form-consent {
		gap: 12px;
		padding: 13px 14px;
		border: 1px solid rgba(var(--mw-primary-rgb), 0.28);
		border-radius: 12px;
		color: var(--color-text);
		background: rgba(var(--mw-primary-rgb), 0.06);
		font-size: 14px;
		font-weight: 600;
		line-height: 1.5;
	}

	.form-consent input {
		width: 23px;
		height: 23px;
		flex-basis: 23px;
		margin-top: 0;
		box-shadow: 0 0 0 3px rgba(var(--mw-primary-rgb), 0.1);
	}

	.form-consent a {
		font-weight: 800;
		text-decoration-thickness: 1.5px;
	}

	.form-consent--light {
		border-color: rgba(255, 255, 255, 0.34);
		color: #fff;
		background: rgba(255, 255, 255, 0.1);
	}

	.form-consent--light a {
		color: #fff;
	}
}
