:root {
	--mv-black: #030303;
	--mv-panel: #0b0c10;
	--mv-panel-2: #111319;
	--mv-line: rgba(255, 255, 255, 0.16);
	--mv-text: #ffffff;
	--mv-muted: #c7c9d1;
	--mv-pink: #ff2ca8;
	--mv-blue: #00a7ff;
	--mv-green: #9dff1f;
	--mv-lime: #70d61d;
	--mv-cyan: #10f6ff;
	--mv-gold: #ffc73d;
	--mv-radius: 8px;
	--mv-wrap: 1480px;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: 46px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
}

.theme-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-left: 2px;
}

.theme-switcher-label {
	color: var(--mv-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.theme-switcher-tip {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 90;
	width: max-content;
	padding: 7px 9px;
	border-radius: 4px;
	background: rgba(3, 3, 3, 0.96);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-3px);
	transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.theme-switcher:hover .theme-switcher-tip,
.theme-switcher:focus-within .theme-switcher-tip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.theme-toggle-track {
	position: relative;
	display: block;
	width: 46px;
	height: 24px;
	border-radius: 999px;
	background: linear-gradient(90deg, #161820, #050505);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0 12px rgba(255, 44, 168, 0.18);
}

.theme-toggle-knob {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mv-pink), var(--mv-blue));
	box-shadow: 0 0 10px rgba(255, 44, 168, 0.45);
	transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-track {
	background: linear-gradient(90deg, #e9edf5, #ffffff);
	box-shadow: inset 0 0 0 1px rgba(6,8,14,0.12), 0 0 12px rgba(157, 255, 31, 0.18);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-knob {
	background: linear-gradient(135deg, var(--mv-green), var(--mv-blue));
	transform: translateX(22px);
}

.mv-inner-hero {
	padding: 84px 0;
	border-bottom: 1px solid var(--mv-line);
	background:
		radial-gradient(circle at 78% 30%, rgba(255, 44, 168, 0.18), transparent 28%),
		radial-gradient(circle at 18% 70%, rgba(0, 167, 255, 0.16), transparent 30%),
		#050505;
}

.mv-inner-hero > .elementor-container,
.mv-inner-section > .elementor-container,
.mv-inner-card-grid > .elementor-container {
	width: min(calc(100% - 56px), var(--mv-wrap));
	margin-inline: auto;
}

.mv-inner-hero .elementor-heading-title {
	max-width: 900px;
	color: #fff;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.95;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-inner-hero .elementor-widget-heading:first-child .elementor-heading-title {
	color: var(--mv-pink);
	font-size: 16px;
	line-height: 1.2;
}

.mv-inner-hero .elementor-widget-text-editor {
	max-width: 760px;
	color: var(--mv-muted);
	font-size: 18px;
}

.mv-inner-section,
.mv-inner-card-grid {
	padding: 44px 0;
	background: rgba(5, 5, 5, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-inner-section h2.elementor-heading-title,
.mv-inner-card-grid h3.elementor-heading-title {
	color: #fff;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-inner-section .elementor-widget-text-editor,
.mv-inner-card-grid .elementor-widget-text-editor {
	color: var(--mv-muted);
}

.mv-inner-card > .elementor-element-populated {
	min-height: 180px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--mv-radius);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mv-inner-card > .elementor-element-populated:hover {
	border-color: var(--mv-pink);
	box-shadow: 0 0 0 1px rgba(255, 44, 168, 0.35), 0 0 22px rgba(255, 44, 168, 0.28);
	transform: translateY(-3px);
}

.mv-inner-section .elementor-button,
.mv-contact-section .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-inner-image-feature img {
	border-radius: var(--mv-radius);
	box-shadow: 0 0 28px rgba(255, 44, 168, 0.18);
}

.mv-service-feature > .elementor-container {
	align-items: center;
	gap: 28px;
}

.mv-service-feature .elementor-column {
	min-height: 100%;
}

.mv-service-image-col .elementor-widget-image {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--mv-radius);
	background: #090a0f;
	box-shadow: 0 0 34px rgba(0, 167, 255, 0.12);
}

.mv-service-image-col img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.mv-service-copy-col > .elementor-element-populated {
	padding-left: clamp(12px, 3vw, 38px);
}

.mv-service-copy-col .elementor-button,
.mv-inner-portfolio-slider .elementor-button {
	margin-top: 8px;
}

.mv-inner-portfolio-slider h2.elementor-heading-title {
	margin-bottom: 22px;
	color: #fff;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-inner-card-grid .elementor-container {
	gap: 14px;
}

.mv-inner-card-grid .elementor-column {
	flex: 1 1 0;
}

html[data-mv-theme="light"] {
	--mv-black: #f7f8fb;
	--mv-panel: #ffffff;
	--mv-panel-2: #eef1f6;
	--mv-line: rgba(6, 8, 14, 0.16);
	--mv-text: #07080c;
	--mv-muted: #404653;
}

html[data-mv-theme="light"] body {
	background: #f7f8fb;
	color: #07080c;
}

html[data-mv-theme="light"] .site-header {
	background: rgba(255, 255, 255, 0.94);
}

html[data-mv-theme="light"] .topbar,
html[data-mv-theme="light"] .footer-grid,
html[data-mv-theme="light"] .entry-content,
html[data-mv-theme="light"] .mv-inner-section .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-inner-card-grid .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-inner-hero .elementor-widget-text-editor {
	color: #404653;
}

html[data-mv-theme="light"] .primary-menu .sub-menu {
	background: rgba(255, 255, 255, 0.98);
	border-color: rgba(255, 44, 168, 0.42);
	box-shadow: 0 18px 35px rgba(20, 22, 30, 0.14), 0 0 20px rgba(255, 44, 168, 0.12);
}

html[data-mv-theme="light"] .primary-menu .sub-menu::before {
	background: rgba(255, 255, 255, 0.98);
}

html[data-mv-theme="light"] .primary-menu .sub-menu a,
html[data-mv-theme="light"] .section-heading h2,
html[data-mv-theme="light"] .portfolio-head h2,
html[data-mv-theme="light"] .entry-title,
html[data-mv-theme="light"] .mv-elementor-services-heading h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-elementor-portfolio h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-elementor-quote h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-section h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-card-grid h3.elementor-heading-title {
	color: #07080c;
}

html[data-mv-theme="light"] .hero,
html[data-mv-theme="light"] .mv-elementor-hero,
html[data-mv-theme="light"] .mv-inner-hero {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.28) 100%),
		radial-gradient(circle at 88% 48%, rgba(255, 44, 168, 0.16), transparent 30%),
		radial-gradient(circle at 74% 76%, rgba(0, 167, 255, 0.16), transparent 32%),
		#f7f8fb;
}

html[data-mv-theme="light"] .hero-text,
html[data-mv-theme="light"] .quality-badge span,
html[data-mv-theme="light"] .mv-elementor-hero .elementor-widget-text-editor {
	color: #202633;
}

html[data-mv-theme="light"] .services-section,
html[data-mv-theme="light"] .portfolio-section,
html[data-mv-theme="light"] .mv-elementor-services-heading,
html[data-mv-theme="light"] .mv-elementor-services,
html[data-mv-theme="light"] .mv-elementor-section-button,
html[data-mv-theme="light"] .mv-elementor-portfolio,
html[data-mv-theme="light"] .mv-inner-section,
html[data-mv-theme="light"] .mv-inner-card-grid,
html[data-mv-theme="light"] .mv-elementor-quote {
	background: rgba(255, 255, 255, 0.86);
}

html[data-mv-theme="light"] .service-card,
html[data-mv-theme="light"] .work-card,
html[data-mv-theme="light"] .entry-card,
html[data-mv-theme="light"] .mv-elementor-services .elementor-image-box-wrapper,
html[data-mv-theme="light"] .mv-inner-card > .elementor-element-populated,
html[data-mv-theme="light"] .mv-service-image-col .elementor-widget-image {
	background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(236,240,247,0.8));
	border-color: rgba(6, 8, 14, 0.14);
}

html[data-mv-theme="light"] .site-footer,
html[data-mv-theme="light"] .quote-band {
	background: #ffffff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mv-black);
	background-attachment: fixed;
	color: var(--mv-text);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

.site-header,
.site-main,
.site-footer {
	position: relative;
}

.mindvision-reference-home {
	background: #000;
}

.reference-home {
	position: relative;
	width: min(100%, 1600px);
	margin: 0 auto;
	background: #000;
}

.reference-home-image {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.reference-hotspots {
	position: absolute;
	inset: 0;
}

.hotspot {
	position: absolute;
	display: block;
	overflow: hidden;
	color: transparent;
	text-indent: -999em;
	white-space: nowrap;
	border-radius: 4px;
}

.hotspot:focus-visible {
	outline: 3px solid var(--mv-green);
	outline-offset: 3px;
	background: rgba(157, 255, 31, 0.14);
}

.hotspot-home {
	left: 31.5%;
	top: 5.15%;
	width: 4.4%;
	height: 1.6%;
}

.hotspot-services {
	left: 43.1%;
	top: 5.15%;
	width: 7.2%;
	height: 1.6%;
}

.hotspot-portfolio {
	left: 51.5%;
	top: 5.15%;
	width: 7.5%;
	height: 1.6%;
}

.hotspot-contact {
	left: 86.3%;
	top: 4.25%;
	width: 11.4%;
	height: 2.3%;
}

.reference-editable-content {
	width: min(calc(100% - 40px), var(--mv-wrap));
	margin: 40px auto;
	padding: 28px;
	border: 1px solid var(--mv-line);
	border-radius: var(--mv-radius);
	background: var(--mv-panel);
}

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

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

.wrap {
	width: min(calc(100% - 56px), var(--mv-wrap));
	margin-inline: auto;
}

.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;
}

.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--mv-pink);
	color: #fff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(0, 0, 0, 0.92);
	border-bottom: 1px solid var(--mv-line);
	backdrop-filter: blur(14px);
}

.topbar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
	color: var(--mv-muted);
}

.topbar-inner,
.topbar-contact,
.topbar-social,
.nav-wrap,
.primary-menu,
.hero-actions {
	display: flex;
	align-items: center;
}

.topbar-inner {
	justify-content: space-between;
	min-height: 38px;
	gap: 16px;
}

.topbar-contact,
.topbar-social {
	gap: 22px;
	flex-wrap: wrap;
}

.topbar a:hover,
.primary-menu a:hover {
	color: var(--mv-pink);
}

.topbar-contact span::before,
.topbar-contact a[href^="tel"]::before,
.topbar-contact a[href^="mailto"]::before {
	color: var(--mv-pink);
	margin-right: 8px;
}

.topbar-contact span::before {
	content: "●";
}

.topbar-contact a[href^="tel"]::before {
	content: "☎";
}

.topbar-contact a[href^="mailto"]::before {
	content: "✉";
}

.social-icon {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: #fff;
	transition: color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.social-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 0;
}

.social-instagram svg {
	fill: none;
	stroke-width: 2;
}

.social-icon:hover,
.social-icon:focus-visible {
	color: var(--mv-pink);
	filter: drop-shadow(0 0 8px currentColor);
	transform: translateY(-1px);
}

.nav-wrap {
	min-height: 92px;
	gap: 22px;
}

.site-branding {
	flex: 0 0 auto;
}

.custom-logo-link img {
	max-width: 285px;
	max-height: 74px;
}

.art-logo {
	display: inline-flex;
	align-items: center;
	width: min(270px, 24vw);
}

.art-logo img {
	width: 100%;
	height: auto;
}

.text-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 245px;
}

.logo-mark {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 45%, #fff 0 14%, #00a7ff 15% 34%, #041225 35% 50%, transparent 51%),
		radial-gradient(circle at 50% 52%, #ff85ce 0 52%, #ff2ca8 53% 100%);
	box-shadow: 0 0 20px rgba(255, 44, 168, 0.55);
	color: #d5ff00;
	font-size: 13px;
	font-weight: 900;
	text-shadow: 0 2px 0 #081018;
}

.logo-lines strong {
	display: block;
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 0.95;
}

.logo-lines em {
	display: block;
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 6px;
	text-transform: uppercase;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	gap: clamp(12px, 1.4vw, 24px);
	font-size: clamp(10px, 0.72vw, 12px);
	font-weight: 800;
	text-transform: uppercase;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
}

.primary-menu .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 80;
	display: grid;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: rgba(3, 3, 3, 0.98);
	border: 1px solid rgba(255, 44, 168, 0.34);
	border-radius: var(--mv-radius);
	box-shadow:
		0 18px 35px rgba(0, 0, 0, 0.55),
		0 0 22px rgba(255, 44, 168, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	width: 12px;
	height: 12px;
	background: rgba(3, 3, 3, 0.98);
	border-left: 1px solid rgba(255, 44, 168, 0.34);
	border-top: 1px solid rgba(255, 44, 168, 0.34);
	transform: translateX(-50%) rotate(45deg);
}

.primary-menu .menu-item-has-children::after {
	content: "";
	position: absolute;
	left: -10px;
	right: -10px;
	top: 100%;
	height: 18px;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-menu li.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.primary-menu .sub-menu a {
	display: flex;
	width: 100%;
	min-height: 38px;
	padding: 9px 12px;
	border-radius: 4px;
	color: #fff;
	white-space: nowrap;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
	background: rgba(255, 44, 168, 0.12);
	color: var(--mv-pink);
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--mv-pink);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 4px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.header-cta:hover {
	transform: translateY(-2px);
}

.button-hot {
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
	color: #fff;
	box-shadow: 0 0 24px rgba(0, 167, 255, 0.24);
}

.button-ghost,
.button-outline {
	background:
		linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	border-color: transparent;
	color: #fff;
}

.header-cta {
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	border-color: transparent;
	font-size: 12px;
}

.button-outline {
	position: relative;
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	border: 1px solid transparent;
	padding-inline: 28px;
}

.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-pink), var(--mv-green)) border-box;
	box-shadow:
		0 0 18px rgba(255, 44, 168, 0.28),
		0 0 18px rgba(157, 255, 31, 0.18);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--mv-line);
	background: #050505;
	border-radius: 4px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: #fff;
}

.hero {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-bottom: 1px solid var(--mv-line);
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 40%, rgba(0, 0, 0, 0.25) 100%),
		radial-gradient(circle at 88% 48%, rgba(255, 44, 168, 0.2), transparent 30%),
		radial-gradient(circle at 74% 76%, rgba(0, 167, 255, 0.18), transparent 32%),
		#030303;
}

.hero::before,
.quote-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(90deg, transparent, #000 30%, #000 90%);
	pointer-events: none;
}

.hero-art {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(64vw, 840px);
	background:
		linear-gradient(90deg, rgba(3,3,3,0), rgba(3,3,3,0.05)),
		url("../img/hero-art-full.png") center right / cover no-repeat;
	opacity: 0.9;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 520px;
}

.hero-copy {
	width: min(560px, 100%);
	padding: 60px 0;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--mv-pink);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.eyebrow span,
.cozy-panel h2 span {
	color: var(--mv-blue);
}

.hero h1 {
	margin: 0;
	font-size: clamp(44px, 7vw, 78px);
	line-height: 0.94;
	font-weight: 950;
	text-transform: uppercase;
}

.hero h1 strong {
	display: block;
	margin-top: 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(50px, 8vw, 88px);
	font-style: italic;
	font-weight: 400;
	text-transform: none;
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-text {
	max-width: 430px;
	margin: 22px 0 24px;
	color: #f3f4f6;
	font-size: 18px;
}

.hero-actions {
	gap: 14px;
	flex-wrap: wrap;
}

.quality-badge {
	margin: 28px 0 0;
	color: var(--mv-green);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.quality-badge span {
	display: block;
	color: #fff;
	font-weight: 500;
	text-transform: none;
}

.services-section,
.portfolio-section {
	position: relative;
	overflow: hidden;
	padding: 26px 0 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(5, 5, 5, 0.78);
}

.services-section > .wrap,
.portfolio-section > .wrap {
	position: relative;
	z-index: 1;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
	align-items: center;
	column-gap: 16px;
	margin-inline: auto;
	text-align: center;
}

.section-heading .eyebrow,
.section-heading h2 {
	grid-column: 2;
}

.services-heading-splatter {
	grid-row: 1 / span 2;
	width: min(100%, 290px);
	max-height: 86px;
	object-fit: contain;
	pointer-events: none;
}

.services-heading-splatter-left {
	grid-column: 1;
	justify-self: end;
}

.services-heading-splatter-right {
	grid-column: 3;
	justify-self: start;
}

.section-heading h2,
.portfolio-head h2,
.feature-panel h2,
.quote-band h2,
.entry-title {
	margin: 0;
	font-size: clamp(26px, 4vw, 34px);
	line-height: 1.05;
	font-weight: 950;
	text-transform: uppercase;
}

.service-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
}

.service-card,
.work-card,
.entry-card {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--mv-radius);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 calc((100% - 48px) / 5);
	max-width: calc((100% - 48px) / 5);
	min-width: 150px;
	min-height: 178px;
	padding: 18px 16px 16px;
	text-align: center;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
	border-color: var(--mv-pink);
	background:
		linear-gradient(180deg, rgba(255, 44, 168, 0.12), rgba(255,255,255,0.025));
	box-shadow:
		0 0 0 1px rgba(255, 44, 168, 0.35),
		0 0 22px rgba(255, 44, 168, 0.28);
	transform: translateY(-3px);
}

.service-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 12px;
	filter: drop-shadow(0 0 12px rgba(255, 44, 168, 0.45));
}

.service-icon img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.icon-cube,
.icon-camera {
	color: var(--mv-green);
}

.icon-needle,
.icon-scissor,
.icon-screen {
	color: var(--mv-blue);
}

.icon-spark,
.icon-mv {
	color: var(--mv-pink);
}

.service-card h3 {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.15;
	font-weight: 900;
	text-transform: uppercase;
}

.service-card p {
	max-width: 180px;
	margin: 0;
	color: var(--mv-muted);
	font-size: 12px;
	line-height: 1.4;
}

.center {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.portfolio-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.filter-pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.filter-pills a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 20px;
	border: 1px solid var(--mv-line);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.filter-pills .active {
	background: var(--mv-pink);
	border-color: var(--mv-pink);
}

.portfolio-slider {
	position: relative;
	margin-inline: -4px;
}

.portfolio-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 40px) / 5);
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 4px 8px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
	display: none;
}

.portfolio-track .work-card {
	min-width: 0;
	scroll-snap-align: start;
}

.slider-arrow {
	position: absolute;
	top: 45%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--mv-pink);
	color: #fff;
	cursor: pointer;
	box-shadow:
		0 0 18px rgba(255, 44, 168, 0.48),
		0 0 18px rgba(157, 255, 31, 0.28);
	transform: translateY(-50%);
	transition: transform 160ms ease, filter 160ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
	filter: brightness(1.14);
	transform: translateY(-50%) scale(1.06);
}

.slider-arrow svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.slider-arrow-prev {
	left: -22px;
	background: var(--mv-pink);
	box-shadow: 0 0 20px rgba(255, 44, 168, 0.58);
}

.slider-arrow-next {
	right: -22px;
	background: var(--mv-green);
	color: #081108;
	box-shadow: 0 0 20px rgba(157, 255, 31, 0.48);
}

.work-card {
	overflow: hidden;
}

.work-thumb {
	aspect-ratio: 1 / 0.78;
	background:
		radial-gradient(circle at 50% 52%, rgba(255,255,255,0.18), transparent 10%),
		linear-gradient(135deg, rgba(255, 44, 168, 0.22), rgba(0, 167, 255, 0.1)),
		#151821;
}

.work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.work-thumb span {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #050505;
	border: 2px solid currentColor;
	color: var(--mv-pink);
	font-size: 24px;
	font-weight: 950;
	box-shadow: 0 0 24px rgba(255, 44, 168, 0.48);
}

.work-green .work-thumb span,
.work-lime .work-thumb span {
	color: var(--mv-green);
}

.work-blue .work-thumb span {
	color: var(--mv-blue);
}

.work-gold .work-thumb span {
	color: var(--mv-gold);
}

.work-meta {
	padding: 12px;
}

.work-meta h3 {
	margin: 0;
	color: var(--mv-pink);
	font-size: 13px;
	text-transform: uppercase;
}

.work-green .work-meta h3,
.work-lime .work-meta h3 {
	color: var(--mv-green);
}

.work-blue .work-meta h3 {
	color: var(--mv-blue);
}

.work-gold .work-meta h3 {
	color: var(--mv-gold);
}

.work-meta p {
	margin: 2px 0 0;
	color: #fff;
	font-size: 12px;
}

.feature-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-bottom: 1px solid var(--mv-line);
}

.feature-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 1fr);
	align-items: center;
	min-height: 250px;
	padding: 36px max(24px, calc((100vw - var(--mv-wrap)) / 2)) 36px 36px;
	overflow: hidden;
	border-right: 1px solid var(--mv-line);
	color: #fff;
}

.cozy-panel {
	border-right: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(112, 214, 29, 0.2), transparent 30%),
		linear-gradient(110deg, #081108, #030303);
}

.guild-panel {
	background:
		radial-gradient(circle at 20% 50%, rgba(0, 167, 255, 0.18), transparent 32%),
		linear-gradient(110deg, #08040a, #050912);
}

.feature-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
	transition: transform 180ms ease, opacity 180ms ease;
}

.feature-panel:hover .feature-bg {
	transform: scale(1.025);
	opacity: 0.84;
}

.panel-copy p {
	max-width: 420px;
	color: #eef1f6;
}

.panel-copy {
	position: relative;
	z-index: 1;
	max-width: 440px;
	margin-left: auto;
	padding: 20px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.24));
	border-radius: var(--mv-radius);
}

.guild-panel .panel-copy {
	margin-left: 42%;
}

.cozy-panel .panel-copy {
	margin-left: 38%;
}

.card-stack {
	position: relative;
	height: 170px;
}

.card-stack span {
	position: absolute;
	width: 112px;
	height: 160px;
	border: 2px solid var(--mv-pink);
	border-radius: 8px;
	background:
		radial-gradient(circle at 50% 38%, #fff 0 7%, var(--mv-blue) 8% 20%, transparent 21%),
		linear-gradient(180deg, #171923, #050505);
	box-shadow: 0 0 26px rgba(255, 44, 168, 0.3);
}

.card-stack span:nth-child(1) {
	left: 12px;
	transform: rotate(-12deg);
}

.card-stack span:nth-child(2) {
	left: 74px;
	transform: translateY(-10px);
	border-color: var(--mv-blue);
}

.card-stack span:nth-child(3) {
	left: 134px;
	transform: rotate(12deg);
	border-color: var(--mv-green);
}

.cozy-car {
	width: 180px;
	height: 150px;
	border-radius: 55% 55% 18px 18px;
	background:
		radial-gradient(circle at 28% 94%, #050505 0 14%, #fff 15% 18%, transparent 19%),
		radial-gradient(circle at 72% 94%, #050505 0 14%, #fff 15% 18%, transparent 19%),
		linear-gradient(90deg, var(--mv-pink), var(--mv-green));
	box-shadow: 0 0 28px rgba(157, 255, 31, 0.35);
}

.quote-band {
	position: relative;
	overflow: hidden;
	padding: 28px 0;
	border-bottom: 1px solid var(--mv-line);
	background:
		radial-gradient(circle at 4% 50%, rgba(255, 44, 168, 0.42), transparent 18%),
		radial-gradient(circle at 95% 50%, rgba(157, 255, 31, 0.3), transparent 18%),
		#08090d;
}

.quote-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.quote-band p {
	margin: 6px 0 0;
	color: var(--mv-muted);
}

.site-footer {
	background: #050505;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
	gap: 42px;
	padding: 34px 0;
	color: var(--mv-muted);
}

.footer-logo {
	margin-bottom: 14px;
}

.footer-logo-image {
	width: min(100%, 280px);
	max-height: 84px;
	object-fit: contain;
	object-position: left center;
}

.footer-heading {
	margin: 0 0 12px;
	color: var(--mv-pink);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

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

.footer-menu li {
	margin-bottom: 6px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #9da1ad;
	font-size: 13px;
}

.footer-bottom .wrap {
	padding: 16px 0;
}

.content-wrap {
	padding: 52px 0;
}

.entry-card {
	padding: clamp(22px, 4vw, 44px);
}

.entry-card + .entry-card {
	margin-top: 24px;
}

.entry-content a {
	color: var(--mv-blue);
	text-decoration: underline;
}

.entry-content h2 {
	margin-top: 0;
	color: #fff;
	font-size: clamp(24px, 4vw, 40px);
	line-height: 1.05;
	text-transform: uppercase;
}

.entry-content ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	list-style: none;
}

.entry-content li {
	padding: 14px 16px;
	border: 1px solid rgba(255, 44, 168, 0.36);
	border-radius: var(--mv-radius);
	background: rgba(255, 255, 255, 0.04);
}

.entry-content p:first-child {
	margin-top: 0;
}

.front-content {
	padding: 42px 0;
}

.full-width-page > .elementor,
.full-width-page > .entry-content {
	width: 100%;
}

.mv-revslider-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #030303;
	border-bottom: 1px solid var(--mv-line);
}

.mindvision-has-revslider-hero .mv-elementor-hero,
.mindvision-has-revslider-hero .hero {
	display: none;
}

.mv-elementor-hero {
	min-height: 520px;
	overflow: hidden;
	border-bottom: 1px solid var(--mv-line);
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 40%, rgba(0, 0, 0, 0.25) 100%),
		radial-gradient(circle at 88% 48%, rgba(255, 44, 168, 0.2), transparent 30%),
		radial-gradient(circle at 74% 76%, rgba(0, 167, 255, 0.18), transparent 32%),
		#030303;
}

.mv-elementor-hero > .elementor-container {
	width: min(calc(100% - 56px), var(--mv-wrap));
	min-height: 520px;
	margin-inline: auto;
}

.mv-elementor-hero .elementor-heading-title {
	color: #fff;
}

.mv-elementor-hero .elementor-widget-heading:first-child .elementor-heading-title,
.mv-elementor-services-heading .elementor-widget-heading:first-child .elementor-heading-title,
.mv-elementor-quote .elementor-widget-heading:first-child .elementor-heading-title {
	color: var(--mv-pink);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-elementor-hero .elementor-widget-heading:first-child .elementor-heading-title span {
	color: var(--mv-blue);
}

.mv-elementor-hero h1.elementor-heading-title {
	font-size: clamp(44px, 7vw, 78px);
	line-height: 0.94;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-elementor-hero h1.elementor-heading-title strong {
	display: block;
	margin-top: 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(50px, 8vw, 88px);
	font-style: italic;
	font-weight: 400;
	text-transform: none;
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mv-elementor-hero .elementor-widget-text-editor {
	max-width: 430px;
	color: #f3f4f6;
	font-size: 18px;
}

.mv-elementor-hero .elementor-widget-image img {
	width: min(100%, 760px);
}

.mv-elementor-services-heading,
.mv-elementor-services,
.mv-elementor-section-button,
.mv-elementor-portfolio {
	background: rgba(5, 5, 5, 0.78);
}

.mv-elementor-services-heading {
	padding: 28px 0 8px;
}

.mv-elementor-services-heading > .elementor-container,
.mv-elementor-services > .elementor-container,
.mv-elementor-section-button > .elementor-container,
.mv-elementor-portfolio > .elementor-container,
.mv-elementor-quote > .elementor-container {
	width: min(calc(100% - 56px), var(--mv-wrap));
	margin-inline: auto;
}

.mv-elementor-services-heading > .elementor-container {
	display: grid;
	grid-template-columns: minmax(170px, 310px) auto minmax(170px, 310px);
	align-items: center;
	justify-content: center;
	column-gap: 16px;
	max-width: none;
}

.mv-elementor-services-heading > .elementor-container > .elementor-column {
	width: auto !important;
}

.mv-elementor-services-heading .mv-services-heading-title-col {
	min-width: 220px;
}

.mv-elementor-services-heading h2.elementor-heading-title,
.mv-elementor-portfolio h2.elementor-heading-title,
.mv-elementor-quote h2.elementor-heading-title {
	color: #fff;
	font-size: clamp(26px, 4vw, 34px);
	line-height: 1.05;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-elementor-services-heading .elementor-widget-heading {
	text-align: center;
}

.mv-elementor-services-heading .elementor-container {
	align-items: center;
}

.mv-elementor-services > .elementor-container {
	justify-content: center;
}

.mv-elementor-services-heading .mv-services-splatter-col img {
	width: min(100%, 310px);
	max-height: 90px;
	object-fit: contain;
}

.mv-elementor-services-heading .mv-services-splatter-left .elementor-widget-image {
	text-align: right;
}

.mv-elementor-services-heading .mv-services-splatter-right .elementor-widget-image {
	text-align: left;
}

.mv-elementor-services {
	padding: 6px 0;
}

.mv-elementor-services-row-two {
	padding-bottom: 10px;
}

.mv-elementor-services .elementor-widget-image-box {
	height: 100%;
}

.mv-elementor-services .elementor-image-box-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 178px;
	height: 100%;
	padding: 18px 16px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--mv-radius);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
	text-align: center;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.mv-elementor-services .elementor-image-box-wrapper:hover {
	border-color: var(--mv-pink);
	background: linear-gradient(180deg, rgba(255, 44, 168, 0.12), rgba(255,255,255,0.025));
	box-shadow: 0 0 0 1px rgba(255, 44, 168, 0.35), 0 0 22px rgba(255, 44, 168, 0.28);
	transform: translateY(-3px);
}

.mv-elementor-services .elementor-image-box-img img {
	width: 58px;
	height: 58px;
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(255, 44, 168, 0.45));
}

.mv-elementor-services .elementor-image-box-title {
	margin: 10px 0 8px;
	color: #fff;
	font-size: 13px;
	line-height: 1.15;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-elementor-services .elementor-image-box-description {
	max-width: 180px;
	margin: 0 auto;
	color: var(--mv-muted);
	font-size: 12px;
	line-height: 1.4;
}

.mv-elementor-section-button {
	padding: 8px 0 30px;
	text-align: center;
}

.mv-elementor-portfolio {
	padding: 26px 0 34px;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mv-elementor-portfolio .elementor-widget-button,
.mv-elementor-section-button .elementor-widget-button,
.mv-elementor-quote .elementor-widget-button {
	text-align: center;
}

.mv-elementor-portfolio .elementor-button,
.mv-elementor-section-button .elementor-button,
.mv-elementor-quote .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 4px;
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-elementor-portfolio .elementor-button:hover,
.mv-elementor-section-button .elementor-button:hover,
.mv-elementor-quote .elementor-button:hover {
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-pink), var(--mv-green)) border-box;
}

.mv-elementor-features {
	background: #050505;
	border-top: 1px solid var(--mv-line);
	border-bottom: 1px solid var(--mv-line);
}

.mv-elementor-features > .elementor-container {
	width: 100%;
	max-width: none;
}

.mv-elementor-features .mv-feature-column {
	position: relative;
	min-height: 290px;
	overflow: hidden;
}

.mv-elementor-features .mv-feature-column > .elementor-element-populated {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 290px;
	padding: 36px max(24px, calc((100vw - var(--mv-wrap)) / 2)) 36px 36px;
}

.mv-elementor-features .elementor-widget-image {
	position: absolute;
	inset: 0;
	margin: 0;
}

.mv-elementor-features .elementor-widget-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
}

.mv-elementor-features .elementor-widget-heading,
.mv-elementor-features .elementor-widget-text-editor,
.mv-elementor-features .elementor-widget-button {
	position: relative;
	z-index: 1;
	max-width: 440px;
	margin-left: auto;
	padding-inline: 20px;
}

.mv-elementor-features .elementor-widget-heading:first-of-type .elementor-heading-title {
	color: var(--mv-pink);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-elementor-features h2.elementor-heading-title {
	color: #fff;
	font-size: clamp(26px, 4vw, 34px);
	line-height: 1.05;
	font-weight: 950;
	text-transform: uppercase;
}

.mv-elementor-features h2.elementor-heading-title span {
	color: var(--mv-green);
}

.mv-elementor-features .elementor-widget-text-editor {
	color: #eef1f6;
}

.mv-elementor-features .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.mv-elementor-features .mv-feature-guild .elementor-button {
	background: linear-gradient(90deg, var(--mv-pink), var(--mv-blue));
}

.mv-elementor-features .elementor-button:hover {
	background:
		linear-gradient(#050505, #050505) padding-box,
		linear-gradient(90deg, var(--mv-pink), var(--mv-green)) border-box;
}

.mv-elementor-quote {
	padding: 28px 0;
	border-bottom: 1px solid var(--mv-line);
	background: #08090d;
}

.mv-elementor-quote .elementor-widget-text-editor {
	color: var(--mv-muted);
}

@media (max-width: 1280px) {
	.nav-wrap {
		gap: 14px;
	}

	.primary-menu {
		gap: 11px;
		font-size: 10px;
	}

	.header-cta {
		padding-inline: 14px;
		font-size: 11px;
	}

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

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

	.portfolio-track {
		grid-auto-columns: calc((100% - 20px) / 3);
	}

	.feature-panels {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1060px) {
	.topbar {
		display: none;
	}

	.nav-wrap {
		min-height: 76px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-navigation {
		position: absolute;
		top: 76px;
		left: 0;
		right: 0;
		display: none;
		margin: 0;
		padding: 16px 20px 22px;
		background: rgba(0, 0, 0, 0.98);
		border-top: 1px solid var(--mv-line);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		gap: 0;
	}

	.primary-menu a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.primary-menu .menu-item-has-children > a::after {
		float: right;
		margin-top: 5px;
	}

	.primary-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 0 14px;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu .menu-item-has-children::after {
		display: none;
	}

	.primary-menu .sub-menu::before {
		display: none;
	}

	.primary-menu .sub-menu a {
		min-height: 36px;
		padding: 10px 0 10px 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		color: var(--mv-muted);
		font-size: 12px;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: 620px;
	}

	.hero-art {
		width: 100%;
		opacity: 0.34;
	}

	.hero-inner {
		min-height: 620px;
	}

	.portfolio-head,
	.quote-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.section-heading {
		grid-template-columns: 1fr;
	}

	.mv-elementor-services-heading > .elementor-container {
		grid-template-columns: 1fr;
	}

	.mv-elementor-services-heading .mv-services-splatter-col {
		display: none;
	}

	.section-heading .eyebrow,
	.section-heading h2 {
		grid-column: 1;
	}

	.services-heading-splatter {
		display: none;
	}

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

@media (max-width: 640px) {
	.wrap {
		width: min(calc(100% - 28px), var(--mv-wrap));
	}

	.text-logo {
		min-width: 0;
	}

	.logo-lines strong {
		font-size: 24px;
	}

	.logo-lines em {
		font-size: 10px;
		letter-spacing: 4px;
	}

	.hero h1 {
		font-size: 43px;
	}

	.hero h1 strong {
		font-size: 48px;
	}

	.service-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.entry-content ul {
		grid-template-columns: 1fr;
	}

	.service-card {
		flex-basis: 100%;
		max-width: 100%;
		min-height: 0;
	}

	.portfolio-track {
		grid-auto-columns: 82%;
	}

	.slider-arrow-prev {
		left: -8px;
	}

	.slider-arrow-next {
		right: -8px;
	}

	.feature-panel {
		grid-template-columns: 1fr;
		padding: 30px 18px;
	}

	.panel-visual {
		margin-bottom: 22px;
	}
}

html[data-mv-theme="light"] .site-header,
html[data-mv-theme="light"] .topbar,
html[data-mv-theme="light"] .site-footer,
html[data-mv-theme="light"] .quote-band,
html[data-mv-theme="light"] .mv-elementor-quote {
	background-color: #ffffff;
}

html[data-mv-theme="light"] .primary-menu a,
html[data-mv-theme="light"] .topbar,
html[data-mv-theme="light"] .topbar a,
html[data-mv-theme="light"] .footer-grid,
html[data-mv-theme="light"] .footer-grid a,
html[data-mv-theme="light"] .footer-menu,
html[data-mv-theme="light"] .footer-menu a,
html[data-mv-theme="light"] .entry-content,
html[data-mv-theme="light"] .entry-content p,
html[data-mv-theme="light"] .service-card p,
html[data-mv-theme="light"] .work-meta p,
html[data-mv-theme="light"] .mv-elementor-services .elementor-image-box-description,
html[data-mv-theme="light"] .mv-elementor-features .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-elementor-quote .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-inner-section .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-inner-card-grid .elementor-widget-text-editor,
html[data-mv-theme="light"] .mv-inner-hero .elementor-widget-text-editor {
	color: #343b49;
}

html[data-mv-theme="light"] h1,
html[data-mv-theme="light"] h2,
html[data-mv-theme="light"] h3,
html[data-mv-theme="light"] .entry-title,
html[data-mv-theme="light"] .section-heading h2,
html[data-mv-theme="light"] .portfolio-head h2,
html[data-mv-theme="light"] .service-card h3,
html[data-mv-theme="light"] .mv-elementor-hero .elementor-heading-title,
html[data-mv-theme="light"] .mv-elementor-services-heading h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-elementor-services .elementor-image-box-title,
html[data-mv-theme="light"] .mv-elementor-portfolio h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-elementor-quote h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-hero .elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-section h2.elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-card-grid h3.elementor-heading-title,
html[data-mv-theme="light"] .mv-inner-portfolio-slider h2.elementor-heading-title {
	color: #07080c;
}

html[data-mv-theme="light"] .button-ghost,
html[data-mv-theme="light"] .button-outline,
html[data-mv-theme="light"] .header-cta,
html[data-mv-theme="light"] .mv-elementor-portfolio .elementor-button,
html[data-mv-theme="light"] .mv-elementor-section-button .elementor-button,
html[data-mv-theme="light"] .mv-elementor-quote .elementor-button,
html[data-mv-theme="light"] .mv-elementor-features .elementor-button {
	background:
		linear-gradient(#ffffff, #ffffff) padding-box,
		linear-gradient(90deg, var(--mv-green), var(--mv-green)) border-box;
	color: #07080c;
}

html[data-mv-theme="light"] .button-ghost:hover,
html[data-mv-theme="light"] .button-outline:hover,
html[data-mv-theme="light"] .header-cta:hover,
html[data-mv-theme="light"] .mv-elementor-portfolio .elementor-button:hover,
html[data-mv-theme="light"] .mv-elementor-section-button .elementor-button:hover,
html[data-mv-theme="light"] .mv-elementor-quote .elementor-button:hover,
html[data-mv-theme="light"] .mv-elementor-features .elementor-button:hover {
	background:
		linear-gradient(#ffffff, #ffffff) padding-box,
		linear-gradient(90deg, var(--mv-pink), var(--mv-green)) border-box;
	color: #07080c;
}

html[data-mv-theme="light"] .button-hot,
html[data-mv-theme="light"] .mv-inner-section .elementor-button,
html[data-mv-theme="light"] .mv-contact-section .elementor-button,
html[data-mv-theme="light"] .mv-elementor-features .mv-feature-guild .elementor-button {
	color: #ffffff;
}

html[data-mv-theme="light"] .menu-toggle {
	background: #ffffff;
}

html[data-mv-theme="light"] .menu-toggle span:not(.screen-reader-text) {
	background: #07080c;
}

html[data-mv-theme="light"] .theme-switcher-tip {
	background: #ffffff;
	color: #07080c;
	box-shadow: 0 10px 24px rgba(20, 22, 30, 0.16);
}
