/* ==========================================================================
   Visualexa — main stylesheet
   Brand: cream #FEFBEF + olive #475A40 (from the logo), ink + lime accents.
   ========================================================================== */

:root {
	--bg: #fefbef;
	--surface: #f5f0dc;
	--card: #fffdf7;
	--text: #1a2117;
	--muted: #5b6655;
	--border: rgba(71, 90, 64, 0.15);
	--primary: #475a40;
	--primary-dark: #2e3b29;
	--primary-soft: rgba(71, 90, 64, 0.09);
	--ink: #161d14;
	--lime: #d6e59b;
	--cream-70: rgba(254, 251, 239, 0.7);
	--line-dark: rgba(254, 251, 239, 0.12);
	--radius: 22px;
	--radius-sm: 12px;
	--container: 1240px;
	--font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-brand: "Michroma", "Plus Jakarta Sans", sans-serif;
	--header-h: 80px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow: 0 30px 60px -30px rgba(30, 40, 26, 0.35);
	--shadow-sm: 0 12px 30px -16px rgba(30, 40, 26, 0.3);
}

/* ---------- Base ---------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 10px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration-color: rgba(71, 90, 64, 0.45);
	text-underline-offset: 3px;
	transition: color 0.2s;
}

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

:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

::selection {
	background: var(--lime);
	color: var(--ink);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 0.6em;
	color: var(--text);
}

/* Accent words (*stars* in the Customizer): olive with a highlight that draws in. */
h1 em,
h2 em,
.vision__text em {
	font-style: normal;
	color: var(--primary);
	background: linear-gradient(var(--lime), var(--lime)) no-repeat 0 90% / 0% 0.28em;
	transition: background-size 1.1s var(--ease) 0.45s;
}

.is-visible em,
.is-visible h1 em,
.is-visible h2 em,
html:not(.js) h1 em,
html:not(.js) h2 em {
	background-size: 100% 0.28em;
}

.section--dark h2 em,
.contact-box__title em {
	background-image: linear-gradient(rgba(214, 229, 155, 0.22), rgba(214, 229, 155, 0.22));
}

p {
	margin: 0 0 1.1em;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: var(--primary);
	color: var(--bg);
	border-radius: var(--radius-sm);
	z-index: 1000;
}

/* ---------- Brand ---------- */

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--primary);
	white-space: nowrap;
}

.brand:hover {
	color: var(--primary);
}

.brand__mark {
	width: 40px;
	height: auto;
	flex: none;
}

.brand__logo {
	display: block;
	height: 42px;
	width: auto;
}

@media (max-width: 680px) {
	.brand__logo {
		height: 34px;
	}
}

.brand__name {
	font-family: var(--font-brand);
	font-size: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1;
}

.custom-logo {
	max-height: 52px;
	width: auto;
	display: block;
}

/* ---------- Buttons ---------- */

.vx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font: 700 0.95rem/1 var(--font-body);
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
	white-space: nowrap;
}

.vx-btn .vx-icon {
	width: 18px;
	height: 18px;
	transition: transform 0.25s var(--ease);
}

.vx-btn:hover .vx-icon:last-child {
	transform: translateX(3px);
}

.vx-btn--primary {
	background: var(--primary);
	color: var(--bg);
	box-shadow: 0 14px 30px -14px rgba(46, 59, 41, 0.8);
}

.vx-btn--primary:hover {
	background: var(--primary-dark);
	color: var(--bg);
	transform: translateY(-2px);
}

.vx-btn--ghost {
	border-color: rgba(71, 90, 64, 0.3);
	color: var(--primary-dark);
}

.vx-btn--ghost:hover {
	background: var(--primary-soft);
	border-color: var(--primary);
	color: var(--primary-dark);
	transform: translateY(-2px);
}

.vx-btn--light {
	background: var(--bg);
	color: var(--primary-dark);
}

.vx-btn--light:hover {
	background: #fff;
	color: var(--primary-dark);
	transform: translateY(-2px);
}

.vx-btn--lime {
	background: var(--lime);
	color: var(--ink);
}

.vx-btn--lime:hover {
	background: #e3efb3;
	color: var(--ink);
	transform: translateY(-2px);
}

.vx-btn--outline-light {
	border-color: rgba(254, 251, 239, 0.35);
	color: var(--bg);
}

.vx-btn--outline-light:hover {
	border-color: var(--lime);
	color: var(--lime);
	transform: translateY(-2px);
}

.vx-btn--sm {
	padding: 12px 20px;
	font-size: 0.9rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	text-decoration: none;
	color: var(--primary);
}

.text-link .vx-icon {
	width: 18px;
	height: 18px;
}

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	transition: background 0.3s, border-color 0.3s;
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.nav-open .site-header {
	background: rgba(254, 251, 239, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: var(--border);
}

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

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

.site-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-nav .menu {
	display: flex;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 4px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 253, 247, 0.6);
}

.site-nav .menu a {
	display: block;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s, background 0.2s;
}

.site-nav .menu a:hover,
.site-nav .menu .current-menu-item > a,
.site-nav .menu .current_page_item > a {
	color: var(--bg);
	background: var(--primary);
}

.site-nav .menu li {
	position: relative;
}

.site-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 200px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nav-toggle {
	display: none;
	background: none;
	border: 1.5px solid var(--border);
	color: var(--primary);
	width: 46px;
	height: 46px;
	border-radius: 12px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.nav-toggle span {
	line-height: 0;
}

.nav-toggle__close {
	display: none;
}

@media (max-width: 1080px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		padding: 24px;
		background: var(--bg);
		transform: translateX(100%);
		transition: transform 0.35s var(--ease);
		overflow-y: auto;
	}

	.admin-bar .site-nav {
		top: calc(var(--header-h) + 46px);
	}

	.nav-open .site-nav {
		transform: none;
	}

	.nav-open .nav-toggle__open {
		display: none;
	}

	.nav-open .nav-toggle__close {
		display: inline;
	}

	.nav-open {
		overflow: hidden;
	}

	.site-nav .menu {
		flex-direction: column;
		gap: 2px;
		border: 0;
		background: none;
		padding: 0;
	}

	.site-nav .menu a {
		font-size: 1.7rem;
		font-weight: 700;
		letter-spacing: -0.03em;
		padding: 14px 12px;
		border-radius: var(--radius-sm);
		color: var(--text);
	}

	.site-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: none;
		border: 0;
		box-shadow: none;
		padding: 0 0 0 16px;
	}
}

/* ---------- Sections ---------- */

.site-main {
	display: block;
	overflow-x: clip;
}

.section {
	padding: 120px 0;
	position: relative;
}

.section--tight {
	padding: 70px 0 100px;
}

.section--alt {
	background: var(--surface);
}

.section--dark {
	background: var(--ink);
	color: var(--bg);
	overflow: hidden;
}

.section--dark h2,
.section--dark h3 {
	color: var(--bg);
}

.section--dark h2 em {
	color: var(--lime);
}

.section--dark .eyebrow {
	color: var(--lime);
}

.section--dark .eyebrow::before {
	background: var(--lime);
}

.section-head {
	max-width: 720px;
	margin-bottom: 60px;
}

.section-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 40px;
	flex-wrap: wrap;
}

.section-head--row > div {
	max-width: 720px;
}

.section-head--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	margin: 0;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary);
}

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

/* ---------- Hero ---------- */

.hero,
.page-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero {
	padding: calc(var(--header-h) + 60px) 0 0;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(900px 500px at 85% 20%, rgba(214, 229, 155, 0.45), transparent 60%),
		radial-gradient(700px 400px at 0% 100%, rgba(71, 90, 64, 0.1), transparent 60%);
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(71, 90, 64, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(71, 90, 64, 0.07) 1px, transparent 1px);
	background-size: 72px 72px;
	-webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 10%, transparent 70%);
	mask-image: radial-gradient(ellipse at 60% 40%, #000 10%, transparent 70%);
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 56px;
	align-items: center;
	padding-bottom: 90px;
}

.hero__title {
	font-size: clamp(2.7rem, 5.4vw, 4.7rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.045em;
	margin-bottom: 26px;
	color: var(--ink);
}

.hero__title em {
	display: inline;
}

.hero__text {
	font-size: clamp(1.02rem, 1.4vw, 1.15rem);
	color: var(--muted);
	max-width: 540px;
	margin-bottom: 36px;
}

.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero__points {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-dark);
}

.hero__points li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero__points .vx-icon {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 50%;
	background: var(--lime);
	stroke-width: 3;
}

/* Hero visual (all sizes in em so it scales on phones) */

.hv {
	position: relative;
	width: 100%;
	max-width: 580px;
	aspect-ratio: 1 / 0.96;
	margin-left: auto;
	font-size: 16px;
}

.hv__card {
	position: absolute;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.2em;
	box-shadow: var(--shadow);
}

.hv__browser {
	left: 0;
	top: 7%;
	width: 80%;
	overflow: hidden;
	z-index: 1;
}

.hv__bar {
	display: flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.7em 0.9em;
	border-bottom: 1px solid var(--border);
	background: var(--surface);
}

.hv__bar span {
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	background: rgba(71, 90, 64, 0.25);
}

.hv__bar em {
	margin-left: 0.8em;
	padding: 0.2em 1em;
	border-radius: 999px;
	background: var(--card);
	font: 600 0.62em/1.4 var(--font-body);
	font-style: normal;
	color: var(--muted);
}

.hv__site {
	padding: 1em 1.1em 1.1em;
}

.hv__nav {
	display: flex;
	align-items: center;
	gap: 0.7em;
}

.hv__navmark {
	width: 1.5em;
	color: var(--primary);
	margin-right: auto;
}

.hv__nav b {
	width: 2em;
	height: 0.35em;
	border-radius: 1em;
	background: rgba(71, 90, 64, 0.2);
}

.hv__nav i {
	width: 3.4em;
	height: 1.2em;
	border-radius: 1em;
	background: var(--primary);
}

.hv__split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0.9em;
	margin: 1.2em 0 1em;
	align-items: center;
}

.hv__copy strong {
	display: block;
	font-size: 1.45em;
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--ink);
	margin-bottom: 0.5em;
}

.hv__copy strong em {
	font-style: normal;
	color: var(--primary);
}

.hv__copy span {
	display: block;
	height: 0.4em;
	border-radius: 1em;
	background: rgba(71, 90, 64, 0.16);
	margin-bottom: 0.4em;
}

.hv__copy span.short {
	width: 70%;
}

.hv__copy i {
	display: block;
	width: 5em;
	height: 1.5em;
	border-radius: 1em;
	background: var(--primary);
	margin-top: 0.9em;
}

.hv__image {
	aspect-ratio: 1 / 1.05;
	border-radius: 0.8em;
	background:
		radial-gradient(circle at 80% 15%, rgba(214, 229, 155, 0.55), transparent 50%),
		linear-gradient(150deg, #5b7152, #2e3b29);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv__image .vx-mark {
	width: 62%;
	color: var(--lime);
}

.hv__tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6em;
}

.hv__tiles span {
	height: 2.6em;
	border-radius: 0.6em;
	background: var(--surface);
}

.hv__phone {
	right: 0;
	bottom: 3%;
	width: 33%;
	padding: 0.45em;
	border-radius: 1.8em;
	background: var(--ink);
	border-color: var(--ink);
	z-index: 3;
	animation: vx-float 7s ease-in-out infinite;
}

.hv__reel {
	position: relative;
	aspect-ratio: 9 / 14;
	border-radius: 1.4em;
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 25%, rgba(214, 229, 155, 0.9), transparent 45%),
		radial-gradient(circle at 80% 80%, rgba(91, 113, 82, 0.95), transparent 60%),
		#2e3b29;
}

.hv__reel-tag {
	position: absolute;
	top: 0.8em;
	left: 0.8em;
	padding: 0.2em 0.7em;
	border-radius: 1em;
	background: rgba(22, 29, 20, 0.55);
	color: var(--bg);
	font: 700 0.6em/1.5 var(--font-body);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hv__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3em;
	height: 3em;
	margin: -1.5em 0 0 -1.5em;
	border-radius: 50%;
	background: rgba(254, 251, 239, 0.92);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv__play .vx-icon {
	width: 1.2em;
	height: 1.2em;
	fill: currentColor;
	margin-left: 0.15em;
}

.hv__reel-meta {
	position: absolute;
	left: 0.8em;
	right: 0.8em;
	bottom: 0.9em;
}

.hv__reel-meta span {
	display: block;
	height: 0.4em;
	border-radius: 1em;
	background: rgba(254, 251, 239, 0.75);
	margin-top: 0.35em;
}

.hv__reel-meta span.short {
	width: 55%;
	background: rgba(254, 251, 239, 0.45);
}

.hv__reel-actions {
	display: flex;
	gap: 0.8em;
	padding: 0.55em 0.5em 0.2em;
	color: var(--lime);
}

.hv__reel-actions .vx-icon {
	width: 1.1em;
	height: 1.1em;
}

.hv__ads {
	left: 5%;
	bottom: 0;
	width: 46%;
	padding: 1em 1.1em;
	z-index: 2;
	animation: vx-float 8s ease-in-out -2s infinite;
}

.hv__ads-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.8em;
}

.hv__ads-head span {
	font-size: 0.72em;
	font-weight: 700;
	color: var(--ink);
}

.hv__ads-head b {
	width: 1.8em;
	height: 1.8em;
	border-radius: 50%;
	background: var(--lime);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv__ads-head .vx-icon {
	width: 1em;
	height: 1em;
	stroke-width: 2.5;
}

.hv__chart {
	display: flex;
	align-items: flex-end;
	gap: 0.35em;
	height: 5em;
	padding-bottom: 0.3em;
	border-bottom: 1px dashed var(--border);
}

.hv__chart i {
	flex: 1;
	border-radius: 0.3em 0.3em 0.1em 0.1em;
	background: rgba(71, 90, 64, 0.22);
}

.hv__chart i:nth-last-child(-n + 3) {
	background: var(--primary);
}

.hv__chart i:last-child {
	background: linear-gradient(180deg, var(--lime), var(--primary));
}

.hv__pills {
	display: flex;
	gap: 0.4em;
	margin-top: 0.8em;
}

.hv__pills span {
	padding: 0.25em 0.7em;
	border-radius: 1em;
	background: var(--surface);
	font-size: 0.62em;
	font-weight: 700;
	color: var(--primary-dark);
}

.hv__kit {
	right: 4%;
	top: 0;
	width: 31%;
	padding: 0.9em 1em 1em;
	z-index: 2;
	animation: vx-float 9s ease-in-out -4s infinite;
}

.hv__kitmark {
	width: 2.6em;
	color: var(--primary);
	display: block;
	margin-bottom: 0.8em;
}

.hv__swatches {
	display: flex;
	gap: 0.3em;
}

.hv__swatches i {
	width: 1.3em;
	height: 1.3em;
	border-radius: 50%;
	border: 1px solid var(--border);
}

.hv__swatches i:nth-child(1) {
	background: var(--primary);
}

.hv__swatches i:nth-child(2) {
	background: var(--lime);
}

.hv__swatches i:nth-child(3) {
	background: var(--bg);
}

.hv__swatches i:nth-child(4) {
	background: var(--ink);
}

.hv__type {
	position: absolute;
	top: 0.35em;
	right: 0.5em;
	font: 800 1.7em/1 var(--font-body);
	letter-spacing: -0.04em;
	color: var(--primary);
}

.hv__badge {
	position: absolute;
	left: -3%;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.65em 1.1em;
	border-radius: 999px;
	background: var(--ink);
	color: var(--bg);
	font-size: 0.8em;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
	animation: vx-float 6s ease-in-out -1s infinite;
}

.hv__badge .vx-icon {
	width: 1.15em;
	height: 1.15em;
	color: var(--lime);
	fill: var(--lime);
}

@keyframes vx-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Marquee */

.marquee {
	background: var(--ink);
	color: var(--bg);
	padding: 22px 0;
	overflow: hidden;
}

.marquee__track {
	display: flex;
	width: max-content;
	animation: vx-marquee 40s linear infinite;
}

.marquee__item {
	display: inline-flex;
	align-items: center;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	padding: 0 30px;
	white-space: nowrap;
}

/* Separator: a small lime dot between service names */
.marquee__item::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lime);
	margin-left: 60px;
	flex: none;
}

@keyframes vx-marquee {
	to {
		transform: translateX(-50%);
	}
}

/* Inner page hero */

.page-hero {
	padding: calc(var(--header-h) + 90px) 0 80px;
	background: var(--surface);
}

.page-hero .hero__grid {
	-webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 60%);
	mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 60%);
}

.page-hero__title {
	font-size: clamp(2.4rem, 5.5vw, 4.4rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	max-width: 18ch;
	margin-bottom: 20px;
	color: var(--ink);
}

.page-hero__text {
	font-size: 1.15rem;
	color: var(--muted);
	max-width: 640px;
	margin: 0;
}

.page-hero__meta {
	margin-top: 22px;
	color: var(--muted);
}

.page-hero__meta a:not(.vx-btn) {
	color: var(--primary);
}

/* ---------- Who we are ---------- */

.who {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 40px 80px;
	align-items: end;
}

.who__head .section-title {
	margin: 0;
}

.who__text p {
	color: var(--muted);
	font-size: 1.1rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 80px 0 0;
}

.stats__item {
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	padding: 28px 26px;
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid var(--border);
}

.stats__num {
	margin: 0 0 10px;
	font-size: clamp(2.6rem, 4.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--primary);
}

.stats__label {
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 500;
}

/* ---------- Services ---------- */

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

.service-card {
	display: flex;
	flex-direction: column;
	padding: 34px 32px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 26px;
	transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.service-card__media {
	aspect-ratio: 16 / 10;
	margin: -16px -14px 26px;
	border-radius: 18px;
	overflow: hidden;
	background: var(--surface);
}

.service-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease);
}

.service-card:hover .service-card__media img {
	transform: scale(1.07);
}

.service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 22px;
}

/* Who we are: photo collage */
.who-photos {
	position: relative;
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 20px;
	margin-top: 64px;
}

.who-photos figure {
	margin: 0;
	border-radius: 26px;
	overflow: hidden;
	background: var(--surface);
}

.who-photos img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}

.who-photos figure:hover img {
	transform: scale(1.05);
}

.who-photos__main {
	aspect-ratio: 16 / 11;
}

.who-photos__side {
	align-self: end;
	aspect-ratio: 4 / 5;
}

.who-photos__badge {
	position: absolute;
	left: calc(60.8% - 150px);
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px 16px 16px;
	border-radius: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.35;
}

.who-photos__badge .vx-icon {
	flex: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border-radius: 14px;
	background: var(--primary);
	color: var(--lime);
}

.who-photos__badge strong {
	display: block;
	font-size: 1rem;
	color: var(--ink);
}

@media (max-width: 680px) {
	.who-photos {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 40px;
	}

	.who-photos figure {
		border-radius: 20px;
	}

	.who-photos__main,
	.who-photos__side {
		aspect-ratio: 16 / 10;
	}

	.who-photos__badge {
		position: static;
		margin-top: 4px;
	}

	.service-card__media {
		margin: -10px -10px 22px;
	}
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: var(--primary-soft);
	color: var(--primary);
	transition: background 0.4s, color 0.4s;
}

.service-card__num {
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(71, 90, 64, 0.45);
	transition: color 0.4s;
}

.service-card__title {
	font-size: 1.45rem;
	margin-bottom: 10px;
	transition: color 0.4s;
}

.service-card__text {
	color: var(--muted);
	font-size: 0.98rem;
	margin-bottom: 26px;
	transition: color 0.4s;
}

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

.tags li {
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--primary-dark);
	transition: border-color 0.4s, color 0.4s;
}

.service-card:hover {
	transform: translateY(-6px);
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	box-shadow: var(--shadow);
}

.service-card:hover .service-card__icon {
	background: var(--lime);
	color: var(--ink);
}

.service-card:hover .service-card__title {
	color: var(--bg);
}

.service-card:hover .service-card__text,
.service-card:hover .service-card__num {
	color: var(--cream-70);
}

.service-card:hover .tags li {
	border-color: rgba(254, 251, 239, 0.25);
	color: var(--bg);
}

/* ---------- Why choose us ---------- */

.why {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.why__text {
	color: var(--cream-70);
	font-size: 1.12rem;
	max-width: 520px;
	margin: 24px 0 0;
}

.orbit {
	--r: 180px;
	position: relative;
	width: calc(var(--r) * 2 + 130px);
	height: calc(var(--r) * 2 + 130px);
	margin: 0 auto;
}

.orbit__ring {
	position: absolute;
	inset: 65px;
	border-radius: 50%;
	border: 1px dashed rgba(214, 229, 155, 0.4);
	animation: vx-spin 60s linear infinite;
}

.orbit__ring--inner {
	inset: calc(65px + var(--r) * 0.42);
	border: 1px solid var(--line-dark);
	animation-direction: reverse;
}

.orbit__core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(var(--r) * 0.7);
	height: calc(var(--r) * 0.7);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, #5b7152, var(--primary-dark));
	box-shadow: 0 0 0 12px rgba(214, 229, 155, 0.06), 0 0 80px rgba(214, 229, 155, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
}

.orbit__core .vx-mark {
	width: 58%;
	color: var(--lime);
}

.orbit__node {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(calc(var(--r) * -1)) rotate(calc(var(--i) * -60deg));
}

.orbit__node span {
	display: block;
	padding: 9px 16px;
	border-radius: 999px;
	background: #20291d;
	border: 1px solid rgba(214, 229, 155, 0.3);
	color: var(--bg);
	font-size: 0.86rem;
	font-weight: 700;
	white-space: nowrap;
}

@keyframes vx-spin {
	to {
		transform: rotate(360deg);
	}
}

.reasons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.reason {
	padding: 30px 28px;
	border-radius: var(--radius);
	border: 1px solid var(--line-dark);
	background: rgba(254, 251, 239, 0.03);
	transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.reason:hover {
	border-color: rgba(214, 229, 155, 0.45);
	background: rgba(254, 251, 239, 0.06);
	transform: translateY(-4px);
}

.reason__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: rgba(214, 229, 155, 0.12);
	color: var(--lime);
	margin-bottom: 22px;
}

.reason__title {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.reason p {
	color: var(--cream-70);
	margin: 0;
	font-size: 0.97rem;
}

/* ---------- Process ---------- */

.process {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.process::before {
	content: "";
	position: absolute;
	top: 32px;
	left: 12%;
	right: 12%;
	border-top: 1.5px dashed rgba(71, 90, 64, 0.35);
}

.process__step {
	position: relative;
	text-align: center;
	padding: 0 10px;
}

.process__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 26px;
	border-radius: 50%;
	background: var(--bg);
	border: 1.5px solid var(--primary);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	color: var(--primary);
	transition: background 0.3s, color 0.3s;
}

.process__step:hover .process__num {
	background: var(--primary);
	color: var(--bg);
}

.process__title {
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.process__step p {
	color: var(--muted);
	margin: 0 auto;
	max-width: 240px;
	font-size: 0.98rem;
}

/* ---------- Industries ---------- */

.industries {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 60px;
	align-items: center;
}

.industries__head p:last-child {
	color: var(--muted);
	font-size: 1.08rem;
	margin: 24px 0 0;
	max-width: 460px;
}

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

.industry {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px 14px 14px;
	border-radius: 18px;
	background: var(--card);
	border: 1px solid var(--border);
	font-weight: 700;
	font-size: 0.97rem;
	transition: transform 0.3s var(--ease), border-color 0.3s;
}

.industry:hover {
	transform: translateX(4px);
	border-color: var(--primary);
}

.industry:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.industry__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--primary-soft);
	color: var(--primary);
}

.industry__icon .vx-icon {
	width: 22px;
	height: 22px;
}

/* ---------- Launch offer ---------- */

.offer {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 56px;
	align-items: center;
	padding: 72px 64px;
	border-radius: 32px;
	background:
		radial-gradient(600px 300px at 100% 0%, rgba(214, 229, 155, 0.25), transparent 60%),
		linear-gradient(140deg, #52684a 0%, #34432e 100%);
	color: var(--bg);
	box-shadow: 0 40px 80px -40px rgba(46, 59, 41, 0.7);
}

.offer__mark {
	position: absolute;
	z-index: -1;
	width: 560px;
	right: -120px;
	bottom: -140px;
	color: var(--bg);
	opacity: 0.07;
}

.offer__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--lime);
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.offer__badge .vx-icon {
	width: 18px;
	height: 18px;
}

.offer__title {
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
	font-weight: 700;
	color: var(--bg);
	margin-bottom: 18px;
}

.offer__highlight {
	display: block;
	font-size: clamp(2.8rem, 6vw, 4.8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--lime);
	margin-bottom: 10px;
}

.offer__text {
	color: rgba(254, 251, 239, 0.8);
	font-size: 1.08rem;
	max-width: 520px;
	margin-bottom: 32px;
}

.offer__side {
	padding: 34px;
	border-radius: var(--radius);
	background: rgba(254, 251, 239, 0.08);
	border: 1px solid rgba(254, 251, 239, 0.16);
}

.offer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.offer__list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-weight: 600;
}

.offer__list .vx-icon {
	flex: none;
	width: 26px;
	height: 26px;
	padding: 5px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--ink);
	stroke-width: 3;
}

.offer__note {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid rgba(254, 251, 239, 0.16);
	font-size: 0.9rem;
	color: rgba(254, 251, 239, 0.7);
}

/* ---------- Vision & founder ---------- */

.vision {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.vision .eyebrow {
	justify-content: center;
}

.vision__text {
	font-size: clamp(1.6rem, 3.2vw, 2.6rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin: 0;
}

.founder {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 56px;
	align-items: center;
	margin: 90px 0 0;
	padding: 48px;
	border-radius: 32px;
	background: var(--card);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.founder__photo {
	aspect-ratio: 1 / 1.1;
	border-radius: 24px;
	overflow: hidden;
	background:
		radial-gradient(circle at 75% 20%, rgba(214, 229, 155, 0.5), transparent 50%),
		linear-gradient(150deg, #5b7152, #2e3b29);
}

.founder__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.founder__monogram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.founder__monogram .vx-mark {
	width: 60%;
	color: var(--lime);
}

.founder__quote {
	position: relative;
	margin: 0 0 26px;
}

.founder__quote::before {
	content: "\201C";
	display: block;
	height: 0.55em;
	font: 800 5.5rem/1 var(--font-body);
	color: var(--lime);
	-webkit-text-stroke: 1px var(--primary);
}

.founder__quote p {
	font-size: clamp(1.2rem, 2.1vw, 1.6rem);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0;
}

.founder__by strong {
	display: block;
	font-size: 1.1rem;
	font-weight: 800;
}

.founder__by span {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */

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

.testimonials--1 {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

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

.testimonial {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 34px 32px;
	border-radius: 26px;
	background: var(--card);
	border: 1px solid var(--border);
}

.testimonial blockquote {
	margin: 0 0 28px;
}

.testimonial blockquote::before {
	content: "\201C";
	display: block;
	height: 0.5em;
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
	color: var(--lime);
	-webkit-text-stroke: 1px var(--primary);
}

.testimonial p {
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--text);
	margin: 0;
}

.testimonial figcaption {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.testimonial__avatar {
	flex: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--lime);
	font-weight: 800;
	font-size: 1.1rem;
}

.testimonial strong {
	display: block;
	font-weight: 800;
}

.testimonial em {
	font-style: normal;
	font-size: 0.9rem;
	color: var(--muted);
}

@media (max-width: 1080px) {
	.testimonials,
	.testimonials--2 {
		grid-template-columns: 1fr;
	}
}

/* ---------- Projects & posts ---------- */

.project-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.project-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.project-card__link:hover {
	color: inherit;
}

.project-card__media,
.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--border);
}

.project-card__media img,
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.project-card__link:hover img,
.post-card:hover .post-card__media img {
	transform: scale(1.05);
}

.project-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	font-weight: 800;
	color: var(--bg);
	background: linear-gradient(140deg, #5b7152, #2e3b29);
	transition: transform 0.6s var(--ease);
}

.project-card__link:hover .project-card__placeholder {
	transform: scale(1.05);
}

.project-card__body,
.post-card__body {
	padding: 18px 4px 0;
}

.project-card__type {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
}

.project-card__title {
	font-size: 1.3rem;
	margin: 6px 0 0;
}

.post-card__meta {
	font-size: 0.85rem;
	color: var(--muted);
	margin: 0 0 6px;
}

.post-card__title {
	font-size: 1.3rem;
	margin-bottom: 8px;
}

.post-card__title a {
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--muted);
	font-size: 0.97rem;
	margin: 0;
}

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.filters__item {
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid var(--border);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
}

.filters__item:hover {
	color: var(--primary);
	border-color: var(--primary);
}

.filters__item.is-active {
	background: var(--primary);
	color: var(--bg);
	border-color: var(--primary);
}

.empty-state {
	text-align: center;
	padding: 60px 0;
	color: var(--muted);
}

/* ---------- Contact (ends every page) ---------- */

.contact-section {
	padding-top: 0;
}

.section--alt + .contact-section,
.section--dark + .contact-section,
.page-hero + .contact-section {
	padding-top: 120px;
}

.contact-box {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	text-align: center;
	padding: 100px 48px 80px;
	border-radius: 36px;
	background:
		radial-gradient(700px 360px at 50% 0%, rgba(214, 229, 155, 0.16), transparent 70%),
		var(--ink);
	color: var(--bg);
}

.contact-box__mark {
	position: absolute;
	z-index: -1;
	width: 720px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--bg);
	opacity: 0.04;
}

.contact-box .eyebrow {
	color: var(--lime);
}

.contact-box .eyebrow::before {
	background: var(--lime);
}

.contact-box__title {
	font-size: clamp(2.6rem, 6.5vw, 5.2rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	color: var(--bg);
	max-width: 14ch;
	margin: 0 auto 20px;
}

.contact-box__title em {
	color: var(--lime);
}

.contact-box__text {
	color: var(--cream-70);
	font-size: 1.15rem;
	max-width: 540px;
	margin: 0 auto 36px;
}

.contact-box__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-box__email {
	display: inline-block;
	margin-top: 30px;
	font-size: clamp(1.05rem, 2.4vw, 1.4rem);
	font-weight: 700;
	color: var(--lime);
	text-decoration: underline;
	text-decoration-color: rgba(214, 229, 155, 0.4);
	text-underline-offset: 6px;
	word-break: break-word;
}

.contact-box__email:hover {
	color: var(--bg);
}

.contact-box__points {
	list-style: none;
	margin: 44px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid var(--line-dark);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 30px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--cream-70);
}

.contact-box__points li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact-box__points .vx-icon {
	width: 16px;
	height: 16px;
	color: var(--lime);
	stroke-width: 3;
}

/* ---------- Content (pages / posts) ---------- */

.entry-content {
	font-size: 1.08rem;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.3em;
}

.entry-content h2 {
	font-size: 2rem;
	margin-top: 1.6em;
}

.entry-content h3 {
	font-size: 1.5rem;
	margin-top: 1.4em;
}

.entry-content p,
.entry-content li {
	color: #3b4536;
}

.entry-content a {
	color: var(--primary);
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 4px 0 4px 26px;
	border-left: 3px solid var(--primary);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.45;
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.entry-content pre,
.entry-content code {
	background: var(--surface);
	border-radius: 6px;
	font-size: 0.92em;
}

.entry-content code {
	padding: 2px 6px;
}

.entry-content pre {
	padding: 18px;
	overflow-x: auto;
}

.entry-content hr {
	border: 0;
	border-top: 1px solid var(--border);
	margin: 2.5em 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.entry-content .wp-block-button__link {
	background: var(--primary);
	color: var(--bg);
	border-radius: 999px;
	text-decoration: none;
}

.featured-image {
	margin: 0 0 40px;
}

.featured-image img {
	width: 100%;
	border-radius: var(--radius);
	display: block;
}

.featured-image--wide {
	margin-bottom: 56px;
}

.alignwide {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption-text,
figcaption {
	font-size: 0.88rem;
	color: var(--muted);
}

.entry-tags a {
	display: inline-block;
	padding: 5px 12px;
	margin: 0 6px 6px 0;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 0.85rem;
	text-decoration: none;
}

/* Post navigation & pagination */

.post-navigation {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--border);
}

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

.post-navigation a {
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.3;
}

.post-navigation .nav-next {
	text-align: right;
	margin-left: auto;
}

.nav-label {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}

.pagination {
	margin-top: 56px;
}

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

.pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: 999px;
	text-decoration: none;
}

.pagination .page-numbers.current {
	background: var(--primary);
	color: var(--bg);
}

/* Comments & search */

.comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}

.comment-list,
.comment-list .children {
	list-style: none;
	padding: 0;
}

.comment-list .children {
	padding-left: 28px;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

.comment-author img {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 10px;
}

.comment-metadata {
	font-size: 0.85rem;
	color: var(--muted);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input[type="search"] {
	width: 100%;
	padding: 14px 16px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text);
	font: inherit;
}

.comment-form .submit,
.search-form .search-submit {
	background: var(--primary);
	color: var(--bg);
	border: 0;
	padding: 14px 24px;
	border-radius: 999px;
	font: 700 0.95rem/1 var(--font-body);
	cursor: pointer;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 20px auto 0;
}

.search-form label {
	flex: 1;
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--ink);
	color: var(--cream-70);
	padding-top: 90px;
	overflow: hidden;
}

.site-footer .brand {
	color: var(--bg);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 0.8fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 40px;
}

.site-footer__brand p {
	max-width: 360px;
	margin: 22px 0 24px;
}

.site-footer__title {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lime);
	margin-bottom: 20px;
}

.site-footer .menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.site-footer a {
	color: var(--bg);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--lime);
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.contact-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.contact-list .vx-icon {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 4px;
	color: var(--lime);
}

.contact-list a {
	word-break: break-word;
}

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

.social-links a {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(254, 251, 239, 0.22);
	border-radius: 999px;
	font-size: 0.88rem;
}

.social-links a:hover {
	border-color: var(--lime);
}

/* Giant faded wordmark: the real logo artwork, always fits the width. */
.site-footer__wordmark {
	padding-top: 24px;
	padding-bottom: 28px;
}

.site-footer__wordmark img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.08;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 26px;
	padding-bottom: 30px;
	border-top: 1px solid var(--line-dark);
	font-size: 0.9rem;
}

.site-footer__bottom p {
	margin: 0;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
	transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
	color: #fff;
	transform: scale(1.08);
}

.whatsapp-float .vx-icon {
	width: 28px;
	height: 28px;
}

/* ==========================================================================
   Motion
   ========================================================================== */

a,
button {
	-webkit-tap-highlight-color: transparent;
}

/* Scroll progress bar (added by main.js) */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 200;
	background: linear-gradient(90deg, var(--primary), var(--lime));
	transform-origin: 0 50%;
	transform: scaleX(var(--progress, 0));
	pointer-events: none;
}

.admin-bar .scroll-progress {
	top: 32px;
}

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

/* Header: drops in on load, hides while scrolling down, returns on scroll up */
.site-header {
	animation: vx-drop 0.9s var(--ease) backwards;
	transition: transform 0.45s var(--ease), background 0.3s, border-color 0.3s;
}

.site-header.is-hidden {
	transform: translateY(-110%);
}

@keyframes vx-drop {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
}

/* Scroll reveals: up (default), left, right, scale */
.js .reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
	transition-delay: var(--delay, 0ms);
}

.js .reveal--left {
	transform: translateX(-56px);
}

.js .reveal--right {
	transform: translateX(56px);
}

.js .reveal--scale {
	transform: translateY(24px) scale(0.94);
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Headings reveal word by word (words wrapped by main.js) */
.split-word {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	padding-bottom: 0.14em;
	margin-bottom: -0.14em;
}

.split-word > span {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 1s var(--ease);
	transition-delay: calc(var(--w, 0) * 55ms + var(--delay, 0ms));
}

.is-split.is-visible .split-word > span {
	transform: none;
}

/* Process line draws across */
.js .process::before {
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform 1.8s var(--ease) 0.3s;
}

.js .process.is-visible::before {
	transform: scaleX(1);
}

/* Numbers */
.stats__num {
	font-variant-numeric: tabular-nums;
}

/* Button shine */
.vx-btn {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.vx-btn::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -70%;
	width: 45%;
	z-index: -1;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-20deg);
	transition: left 0.8s var(--ease);
}

.vx-btn:hover::after {
	left: 130%;
}

/* Icon micro-interactions */
.service-card__icon .vx-icon,
.reason__icon .vx-icon,
.industry__icon .vx-icon {
	transition: transform 0.45s var(--ease);
}

.service-card:hover .service-card__icon .vx-icon,
.reason:hover .reason__icon .vx-icon,
.industry:hover .industry__icon .vx-icon {
	transform: rotate(-10deg) scale(1.12);
}

/* Hero: moving grid + mouse parallax on the mockups (depth per card) */
.hero__grid {
	animation: vx-grid 24s linear infinite;
}

@keyframes vx-grid {
	to {
		background-position: 72px 72px;
	}
}

.hv__card,
.hv__badge {
	translate: calc(var(--mx, 0) * var(--depth, 8px)) calc(var(--my, 0) * var(--depth, 8px));
	transition: translate 0.4s ease-out;
}

.hv__browser {
	--depth: 6px;
}

.hv__kit {
	--depth: 16px;
}

.hv__ads {
	--depth: 12px;
}

.hv__phone {
	--depth: 20px;
}

.hv__badge {
	--depth: 26px;
}

.hv__chart i {
	transform-origin: bottom;
	animation: vx-bar 1.2s var(--ease) backwards;
}

.hv__chart i:nth-child(2) { animation-delay: 0.1s; }
.hv__chart i:nth-child(3) { animation-delay: 0.2s; }
.hv__chart i:nth-child(4) { animation-delay: 0.3s; }
.hv__chart i:nth-child(5) { animation-delay: 0.4s; }
.hv__chart i:nth-child(6) { animation-delay: 0.5s; }
.hv__chart i:nth-child(7) { animation-delay: 0.6s; }

@keyframes vx-bar {
	from {
		transform: scaleY(0);
	}
}

.hv__play {
	animation: vx-ping 2.4s ease-out infinite;
}

@keyframes vx-ping {
	0% {
		box-shadow: 0 0 0 0 rgba(254, 251, 239, 0.55);
	}
	100% {
		box-shadow: 0 0 0 1.2em rgba(254, 251, 239, 0);
	}
}

/* Orbit: the labels circle the logo; each label counter-rotates to stay upright
   and glows in turn. Hovering pauses the rotation. */
.orbit__track {
	position: absolute;
	inset: 0;
	animation: vx-spin 36s linear infinite;
}

.orbit__node span {
	animation:
		vx-spin 36s linear infinite reverse,
		vx-glow 3.6s ease-in-out infinite calc(var(--i) * 0.6s);
}

.orbit:hover .orbit__track,
.orbit:hover .orbit__node span,
.orbit:hover .orbit__ring {
	animation-play-state: paused;
}

.orbit__core .vx-mark {
	animation: vx-breathe 4s ease-in-out infinite;
}

@keyframes vx-breathe {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

@keyframes vx-glow {
	0%,
	100% {
		border-color: rgba(214, 229, 155, 0.3);
		box-shadow: none;
	}
	50% {
		border-color: var(--lime);
		box-shadow: 0 0 24px rgba(214, 229, 155, 0.35);
	}
}

.marquee:hover .marquee__track {
	animation-play-state: paused;
}

/* Mobile menu items slide in one after another */
@media (max-width: 1080px) {
	.site-nav .menu > li,
	.site-nav__cta {
		opacity: 0;
		transform: translateX(28px);
		transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
	}

	.nav-open .site-nav .menu > li,
	.nav-open .site-nav__cta {
		opacity: 1;
		transform: none;
	}

	.nav-open .site-nav .menu > li:nth-child(1) { transition-delay: 0.08s; }
	.nav-open .site-nav .menu > li:nth-child(2) { transition-delay: 0.14s; }
	.nav-open .site-nav .menu > li:nth-child(3) { transition-delay: 0.2s; }
	.nav-open .site-nav .menu > li:nth-child(4) { transition-delay: 0.26s; }
	.nav-open .site-nav .menu > li:nth-child(5) { transition-delay: 0.32s; }
	.nav-open .site-nav .menu > li:nth-child(6) { transition-delay: 0.38s; }
	.nav-open .site-nav .menu > li:nth-child(7) { transition-delay: 0.44s; }
	.nav-open .site-nav__cta { transition-delay: 0.5s; }
}

/* Sticky call-to-action bar on phones */
.mobile-cta {
	display: none;
}

@media (max-width: 680px) {
	.mobile-cta {
		display: flex;
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: max(12px, env(safe-area-inset-bottom));
		z-index: 95;
		gap: 8px;
		padding: 7px;
		border-radius: 999px;
		background: rgba(22, 29, 20, 0.94);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		box-shadow: 0 18px 40px -12px rgba(22, 29, 20, 0.6);
		transform: translateY(160%);
		transition: transform 0.55s var(--ease);
	}

	.mobile-cta.is-shown {
		transform: none;
	}

	.mobile-cta .vx-btn {
		flex: 1;
		padding: 14px 18px;
		font-size: 0.92rem;
	}

	.mobile-cta .mobile-cta__wa {
		flex: none;
		width: 48px;
		padding: 0;
		background: #25d366;
		color: #fff;
	}

	.whatsapp-float {
		display: none;
	}

	.site-footer__bottom {
		padding-bottom: 96px;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.js .reveal,
	.split-word > span,
	.js .process::before {
		opacity: 1;
		transform: none;
	}

	h1 em,
	h2 em,
	.vision__text em {
		background-size: 100% 0.28em;
	}
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
	.hero__inner,
	.who,
	.why,
	.industries,
	.offer {
		grid-template-columns: 1fr;
	}

	.hero__inner {
		gap: 40px;
	}

	.hv {
		margin: 0 auto;
		font-size: clamp(10px, 2.7vw, 16px);
	}

	.services-grid,
	.reasons,
	.project-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.process {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 48px;
	}

	.process::before {
		display: none;
	}

	.founder {
		grid-template-columns: 220px 1fr;
		gap: 36px;
		padding: 36px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 1rem;
	}

	.container {
		padding: 0 16px;
	}

	.hero__title {
		font-size: clamp(2.3rem, 10.5vw, 2.9rem);
		letter-spacing: -0.04em;
	}

	.section-title {
		font-size: clamp(1.85rem, 8vw, 2.3rem);
	}

	.page-hero__title {
		font-size: clamp(2.1rem, 9.5vw, 2.7rem);
	}

	.contact-box__title {
		font-size: clamp(2.2rem, 10vw, 2.8rem);
	}

	.vision__text {
		font-size: 1.35rem;
	}

	.hero__points {
		gap: 8px 16px;
		font-size: 0.85rem;
	}

	.section {
		padding: 84px 0;
	}

	.section--tight {
		padding: 48px 0 76px;
	}

	.section-head {
		margin-bottom: 40px;
	}

	.hero {
		padding-top: calc(var(--header-h) + 30px);
	}

	.hero__inner {
		padding-bottom: 60px;
	}

	.hero__actions .vx-btn,
	.contact-box__actions .vx-btn {
		flex: 1 1 100%;
	}

	.brand__mark {
		width: 34px;
	}

	.brand__name {
		font-size: 0.85rem;
	}

	.services-grid,
	.reasons,
	.project-grid,
	.post-grid,
	.process,
	.industry-list,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.stats {
		gap: 12px;
		margin-top: 56px;
	}

	.stats__item {
		padding: 22px 18px;
	}

	.service-card {
		padding: 28px 24px;
	}

	.service-card__top {
		margin-bottom: 30px;
	}

	.orbit {
		--r: 118px;
	}

	.orbit__node span {
		padding: 7px 12px;
		font-size: 0.76rem;
	}

	.why {
		margin-bottom: 56px;
	}

	.offer {
		padding: 44px 22px;
		border-radius: 24px;
		gap: 36px;
	}

	.offer__side {
		padding: 24px 20px;
	}

	.founder {
		grid-template-columns: 1fr;
		padding: 24px;
		margin-top: 60px;
	}

	.founder__photo {
		max-width: 220px;
	}

	.contact-box {
		padding: 64px 20px 48px;
		border-radius: 26px;
	}

	.page-hero {
		padding: calc(var(--header-h) + 50px) 0 56px;
	}

	.post-navigation .nav-links {
		flex-direction: column;
	}

	.post-navigation .nav-next {
		text-align: left;
		margin-left: 0;
	}

	.alignleft,
	.alignright {
		float: none;
		margin: 0 0 16px;
	}
}
