/*
|--------------------------------------------------------------------------
| Grovio Premium Frontend
|--------------------------------------------------------------------------
*/

:root {
	--grovio-primary: #0f62fe;
	--grovio-secondary: #1f2937;
	--grovio-accent: #00c896;
	--grovio-background: #ffffff;
	--grovio-surface: #f6f8fc;
	--grovio-text: #111827;
	--grovio-text-muted: #64748b;
	--grovio-border: #e2e8f0;
	--grovio-font-heading: -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif;
	--grovio-font-body: -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif;
	--grovio-heading-weight: 700;
	--grovio-body-weight: 400;
	--grovio-font-size-base: 16px;
	--grovio-line-height: 1.6;
	--grovio-radius: 8px;
	--grovio-button-radius: 8px;
	--grovio-container: 1280px;
	--grovio-header-height: 82px;
	--grovio-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
	--grovio-shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/*
|--------------------------------------------------------------------------
| Foundation
|--------------------------------------------------------------------------
*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-family: var(--grovio-font-body);
	font-size: var(--grovio-font-size-base);
	font-weight: var(--grovio-body-weight);
	line-height: var(--grovio-line-height);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
	font-family: var(--grovio-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--grovio-text);
	font-family: var(--grovio-font-heading);
	font-weight: var(--grovio-heading-weight);
	line-height: 1.2;
}

a {
	color: var(--grovio-primary);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

img {
	max-width: 100%;
	height: auto;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--grovio-accent);
	outline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Screen reader and skip link
|--------------------------------------------------------------------------
*/

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	width: auto;
	height: auto;
	margin: 0;
	clip: auto !important;
	clip-path: none;
	overflow: visible;
	white-space: normal;
}

.skip-link:focus {
	position: fixed !important;
	z-index: 100000;
	top: 12px;
	left: 12px;
	display: block;
	padding: 12px 18px;
	border: 2px solid var(--grovio-primary);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	box-shadow: var(--grovio-shadow-md);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
}

.container,
.grovio-container {
	width: min(
		calc(100% - 40px),
		var(--grovio-container)
	);
	margin-right: auto;
	margin-left: auto;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.grovio-button {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-primary);
	color: #ffffff;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.grovio-button:hover {
	background: color-mix(
		in srgb,
		var(--grovio-primary) 86%,
		#000000
	);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: var(--grovio-shadow-sm);
}

.grovio-button:active {
	transform: translateY(0);
}

.grovio-button-secondary {
	border-color: var(--grovio-border);
	background: var(--grovio-background);
	color: var(--grovio-text);
}

.grovio-button-secondary:hover {
	border-color: var(--grovio-primary);
	background: var(--grovio-surface);
	color: var(--grovio-primary);
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.grovio-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid var(--grovio-border);
	background: var(--grovio-background);
	background: color-mix(
		in srgb,
		var(--grovio-background) 92%,
		transparent
	);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.admin-bar .grovio-header {
	top: 32px;
}

.grovio-header__container {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	min-height: var(--grovio-header-height);
}

/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
*/

.grovio-logo {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.grovio-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.grovio-logo .custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 54px;
	object-fit: contain;
}

.grovio-logo .site-title {
	color: var(--grovio-text);
	font-family: var(--grovio-font-heading);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: var(--grovio-heading-weight);
	line-height: 1;
	text-decoration: none;
}

.grovio-logo .site-title:hover {
	color: var(--grovio-primary);
}

.grovio-logo .site-tagline {
	margin: 5px 0 0;
	color: var(--grovio-text-muted);
	font-size: 0.75rem;
	line-height: 1.2;
}

/*
|--------------------------------------------------------------------------
| Desktop navigation
|--------------------------------------------------------------------------
*/

.grovio-navigation {
	justify-self: center;
}

.grovio-menu,
.grovio-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.grovio-menu {
	display: flex;
	gap: clamp(18px, 2vw, 34px);
	align-items: center;
}

.grovio-menu > li {
	position: relative;
	margin: 0;
}

.grovio-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 44px;
	color: var(--grovio-text);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.grovio-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--grovio-primary);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.2s ease;
}

.grovio-menu > li > a:hover,
.grovio-menu > .current-menu-item > a,
.grovio-menu > .current-menu-ancestor > a {
	color: var(--grovio-primary);
}

.grovio-menu > li > a:hover::after,
.grovio-menu > .current-menu-item > a::after,
.grovio-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

/*
|--------------------------------------------------------------------------
| Desktop submenus
|--------------------------------------------------------------------------
*/

.grovio-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	width: max-content;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-md);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -8px);
	visibility: hidden;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
}

.grovio-menu li:hover > .sub-menu,
.grovio-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.grovio-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: calc(var(--grovio-radius) * 0.75);
	color: var(--grovio-text);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.grovio-menu .sub-menu a:hover,
.grovio-menu .sub-menu .current-menu-item > a {
	background: var(--grovio-surface);
	color: var(--grovio-primary);
}

/*
|--------------------------------------------------------------------------
| Header actions
|--------------------------------------------------------------------------
*/

.grovio-header-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.grovio-header-phone,
.grovio-header-email {
	color: var(--grovio-text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.grovio-header-phone:hover,
.grovio-header-email:hover {
	color: var(--grovio-primary);
}

.grovio-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.grovio-mobile-toggle:hover,
.grovio-mobile-toggle.is-active {
	border-color: var(--grovio-primary);
	background: var(--grovio-surface);
	color: var(--grovio-primary);
}

/*
|--------------------------------------------------------------------------
| Responsive header
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 1180px) {
	.grovio-header-email {
		display: none;
	}

	.grovio-header__container {
		gap: 20px;
	}
}

@media screen and (max-width: 992px) {
	.grovio-header__container {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.grovio-navigation {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		max-height: calc(100vh - 110px);
		padding: 18px 20px;
		border: 1px solid var(--grovio-border);
		border-top: 0;
		border-radius:
			0 0 var(--grovio-radius)
			var(--grovio-radius);
		background: var(--grovio-background);
		box-shadow: var(--grovio-shadow-md);
		opacity: 0;
		overflow-y: auto;
		pointer-events: none;
		transform: translateY(-8px);
		visibility: hidden;
		transition:
			opacity 0.2s ease,
			transform 0.2s ease,
			visibility 0.2s ease;
	}

	.grovio-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.grovio-menu {
		flex-direction: column;
		gap: 4px;
		align-items: stretch;
	}

	.grovio-menu > li > a {
		justify-content: space-between;
		padding: 10px 12px;
		border-radius: var(--grovio-radius);
	}

	.grovio-menu > li > a::after {
		display: none;
	}

	.grovio-menu > li > a:hover,
	.grovio-menu > .current-menu-item > a,
	.grovio-menu > .current-menu-ancestor > a {
		background: var(--grovio-surface);
	}

	.grovio-menu .sub-menu {
		position: static;
		width: auto;
		min-width: 0;
		margin: 4px 0 8px 16px;
		padding: 6px;
		border: 0;
		background: var(--grovio-surface);
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.grovio-menu .sub-menu a {
		white-space: normal;
	}

	.grovio-header-phone,
	.grovio-header-email,
	.grovio-button-secondary {
		display: none;
	}

	.grovio-mobile-toggle {
		display: inline-flex;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .grovio-header {
		top: 46px;
	}
}

@media screen and (max-width: 640px) {
	:root {
		--grovio-header-height: 72px;
	}

	.container,
	.grovio-container {
		width: min(
			calc(100% - 28px),
			var(--grovio-container)
		);
	}

	.grovio-logo .custom-logo {
		max-width: 170px;
		max-height: 46px;
	}

	.grovio-logo .site-tagline {
		display: none;
	}

	.grovio-header-actions > .grovio-button {
		display: none;
	}

	.grovio-navigation {
		right: -1px;
		left: -1px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.grovio-button,
	.grovio-navigation,
	.grovio-menu > li > a::after {
		transition: none;
	}
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.grovio-footer {
	position: relative;
	margin-top: clamp(72px, 10vw, 128px);
	background: var(--grovio-secondary);
	color: rgba(255, 255, 255, 0.78);
	overflow: hidden;
}

.grovio-footer::before {
	position: absolute;
	top: -240px;
	left: 50%;
	width: 640px;
	height: 480px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		transparent
	);
	content: "";
	filter: blur(30px);
	pointer-events: none;
	transform: translateX(-50%);
}

.grovio-footer__container {
	position: relative;
	z-index: 1;
}

.grovio-footer__main {
	display: grid;
	grid-template-columns:
		minmax(260px, 1.4fr)
		repeat(2, minmax(180px, 1fr));
	gap: clamp(36px, 6vw, 80px);
	padding-top: clamp(64px, 8vw, 96px);
	padding-bottom: 56px;
}

/*
|--------------------------------------------------------------------------
| Footer brand
|--------------------------------------------------------------------------
*/

.grovio-footer__brand {
	max-width: 440px;
}

.grovio-footer__logo {
	display: inline-flex;
	margin-bottom: 22px;
	line-height: 0;
}

.grovio-footer__logo-image {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 62px;
	object-fit: contain;
}

.grovio-footer__company-name {
	margin: 0 0 16px;
	color: #ffffff;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.grovio-footer__description {
	max-width: 42rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	line-height: 1.75;
}

/*
|--------------------------------------------------------------------------
| Footer headings and links
|--------------------------------------------------------------------------
*/

.grovio-footer__heading {
	margin: 0 0 22px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.grovio-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.grovio-footer a:hover {
	color: var(--grovio-accent);
}

/*
|--------------------------------------------------------------------------
| Social links
|--------------------------------------------------------------------------
*/

.grovio-footer__social {
	margin-top: 28px;
}

.grovio-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.grovio-social-links__item {
	margin: 0;
}

.grovio-social-links__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.8125rem;
	font-weight: 600;
}

.grovio-social-links__link:hover {
	border-color: var(--grovio-accent);
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| Footer navigation
|--------------------------------------------------------------------------
*/

.grovio-footer-menu,
.grovio-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.grovio-footer-menu li,
.grovio-contact-list li {
	margin: 0 0 12px;
}

.grovio-footer-menu li:last-child,
.grovio-contact-list li:last-child {
	margin-bottom: 0;
}

.grovio-footer-menu a,
.grovio-contact-list a {
	display: inline-flex;
	padding: 2px 0;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.grovio-footer-menu .current-menu-item > a {
	color: var(--grovio-accent);
}

/*
|--------------------------------------------------------------------------
| Footer contact
|--------------------------------------------------------------------------
*/

.grovio-footer__contact address {
	margin: 0;
	font-style: normal;
}

.grovio-contact-list {
	max-width: 320px;
}

.grovio-contact-list li {
	color: rgba(255, 255, 255, 0.7);
}

/*
|--------------------------------------------------------------------------
| Footer widgets
|--------------------------------------------------------------------------
*/

.grovio-footer__widgets {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(220px, 1fr)
	);
	gap: 36px;
	padding: 48px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.grovio-footer__widget-area {
	min-width: 0;
}

.grovio-footer__widget-area .widget {
	margin: 0;
}

.grovio-footer__widget-area .widget-title {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 1rem;
}

.grovio-footer__widget-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.grovio-footer__widget-area li {
	margin-bottom: 10px;
}

.grovio-footer__widget-area p:last-child,
.grovio-footer__widget-area li:last-child {
	margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Footer bottom
|--------------------------------------------------------------------------
*/

.grovio-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 76px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.grovio-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.8125rem;
}

/*
|--------------------------------------------------------------------------
| Responsive footer
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 900px) {
	.grovio-footer__main {
		grid-template-columns: repeat(
			2,
			minmax(0, 1fr)
		);
	}

	.grovio-footer__brand {
		grid-column: 1 / -1;
		max-width: 620px;
	}
}

@media screen and (max-width: 640px) {
	.grovio-footer__main {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-top: 56px;
		padding-bottom: 44px;
	}

	.grovio-footer__brand {
		grid-column: auto;
	}

	.grovio-footer__widgets {
		grid-template-columns: 1fr;
		padding: 40px 0;
	}

	.grovio-footer__logo-image {
		max-width: 180px;
		max-height: 54px;
	}

	.grovio-footer__bottom {
		min-height: 68px;
	}
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.grovio-hero {
	position: relative;
	padding: clamp(88px, 11vw, 152px) 0;
	background:
		radial-gradient(
			circle at 12% 20%,
			color-mix(
				in srgb,
				var(--grovio-primary) 12%,
				transparent
			),
			transparent 38%
		),
		linear-gradient(
			180deg,
			var(--grovio-background) 0%,
			var(--grovio-surface) 100%
		);
	overflow: hidden;
	overflow: clip;
}

.grovio-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			rgba(15, 23, 42, 0.035) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(15, 23, 42, 0.035) 1px,
			transparent 1px
		);
	background-size: 48px 48px;
	content: "";
	mask-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		transparent 84%
	);
	pointer-events: none;
}

.grovio-hero__container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns:
		minmax(0, 1.02fr)
		minmax(420px, 0.98fr);
	gap: clamp(56px, 8vw, 112px);
	align-items: center;
}

/*
|--------------------------------------------------------------------------
| Hero content
|--------------------------------------------------------------------------
*/

.grovio-hero__content {
	max-width: 720px;
}

.grovio-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 24px;
	padding: 9px 15px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		var(--grovio-border)
	);
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		var(--grovio-background)
	);
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.grovio-hero__eyebrow::before {
	width: 8px;
	height: 8px;
	margin-right: 9px;
	border-radius: 50%;
	background: var(--grovio-accent);
	box-shadow: 0 0 0 5px color-mix(
		in srgb,
		var(--grovio-accent) 14%,
		transparent
	);
	content: "";
}

.grovio-hero__title {
	max-width: 15ch;
	margin: 0;
	font-size: clamp(3rem, 6.4vw, 5.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.grovio-hero__description {
	max-width: 650px;
	margin: 30px 0 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	line-height: 1.75;
}

.grovio-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 36px;
}

.grovio-hero__actions .grovio-button {
	min-height: 50px;
	padding: 14px 22px;
}

.grovio-hero__primary-action span {
	transition: transform 0.2s ease;
}

.grovio-hero__primary-action:hover span {
	transform: translateX(3px);
}

/*
|--------------------------------------------------------------------------
| Hero highlights
|--------------------------------------------------------------------------
*/

.grovio-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin: 30px 0 0;
	padding: 0;
	color: var(--grovio-text-muted);
	list-style: none;
}

.grovio-hero__highlights li {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
}

.grovio-hero__highlights li::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-accent) 14%,
		transparent
	);
	color: color-mix(
		in srgb,
		var(--grovio-accent) 72%,
		var(--grovio-text)
	);
	content: "✓";
	font-size: 0.7rem;
	font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Hero visual
|--------------------------------------------------------------------------
*/

.grovio-hero__visual {
	position: relative;
	min-width: 0;
	min-height: 560px;
	perspective: 1200px;
}

.grovio-hero__glow {
	position: absolute;
	inset: 50% auto auto 50%;
	width: 85%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		transparent
	);
	filter: blur(60px);
	transform: translate(-50%, -50%);
}

/*
|--------------------------------------------------------------------------
| Browser mock-up
|--------------------------------------------------------------------------
*/

.grovio-browser {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: min(100%, 620px);
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-border) 72%,
		var(--grovio-primary)
	);
	border-radius: 22px;
	background: var(--grovio-background);
	box-shadow:
		0 40px 90px rgba(15, 23, 42, 0.18),
		0 12px 30px rgba(15, 23, 42, 0.1);
	overflow: hidden;
	transform:
		translate(-50%, -50%)
		rotateY(-5deg)
		rotateX(2deg);
}

.grovio-browser__bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 48px;
	padding: 0 16px;
	border-bottom: 1px solid var(--grovio-border);
	background: var(--grovio-surface);
}

.grovio-browser__controls {
	display: flex;
	gap: 6px;
}

.grovio-browser__controls span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ef4444;
}

.grovio-browser__controls span:nth-child(2) {
	background: #f59e0b;
}

.grovio-browser__controls span:nth-child(3) {
	background: #22c55e;
}

.grovio-browser__address {
	grid-column: 2;
	width: min(100%, 250px);
	margin: 0 auto;
	padding: 6px 14px;
	border: 1px solid var(--grovio-border);
	border-radius: 999px;
	background: var(--grovio-background);
	color: var(--grovio-text-muted);
	font-size: 0.6875rem;
	line-height: 1;
	text-align: center;
}

.grovio-browser__content {
	padding: 22px;
	background:
		linear-gradient(
			145deg,
			var(--grovio-background),
			var(--grovio-surface)
		);
}

.grovio-browser__navigation {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 28px;
}

.grovio-browser__navigation span {
	width: 38px;
	height: 6px;
	border-radius: 999px;
	background: var(--grovio-border);
}

.grovio-browser__navigation .grovio-browser__logo {
	width: 68px;
	height: 16px;
	margin-right: auto;
	background: var(--grovio-primary);
}

.grovio-browser__hero {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 22px;
	align-items: center;
}

.grovio-browser__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.grovio-browser__copy > span {
	width: 62px;
	height: 7px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--grovio-accent);
}

.grovio-browser__copy strong {
	display: block;
	width: 92%;
	height: 15px;
	margin-bottom: 8px;
	border-radius: 999px;
	background: var(--grovio-text);
}

.grovio-browser__copy strong:nth-of-type(2) {
	width: 72%;
}

.grovio-browser__copy p {
	width: 86%;
	height: 7px;
	margin: 10px 0 0;
	border-radius: 999px;
	background: var(--grovio-border);
}

.grovio-browser__copy i {
	width: 82px;
	height: 26px;
	margin-top: 20px;
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-primary);
}

.grovio-browser__media {
	position: relative;
	aspect-ratio: 1 / 1.08;
	border-radius: calc(var(--grovio-radius) * 1.8);
	background:
		linear-gradient(
			145deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 84%,
				#ffffff
			),
			color-mix(
				in srgb,
				var(--grovio-accent) 72%,
				var(--grovio-primary)
			)
		);
	overflow: hidden;
}

.grovio-browser__media::before,
.grovio-browser__media::after,
.grovio-browser__media span {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	content: "";
}

.grovio-browser__media::before {
	top: -18%;
	right: -15%;
	width: 72%;
	aspect-ratio: 1;
}

.grovio-browser__media::after {
	bottom: -24%;
	left: -20%;
	width: 82%;
	aspect-ratio: 1;
}

.grovio-browser__media span {
	inset: 34% auto auto 38%;
	width: 28%;
	aspect-ratio: 1;
	border: 7px solid rgba(255, 255, 255, 0.42);
	background: transparent;
}

.grovio-browser__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 22px;
}

.grovio-browser__cards span {
	height: 62px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-sm);
}

/*
|--------------------------------------------------------------------------
| Floating cards
|--------------------------------------------------------------------------
*/

.grovio-floating-card {
	position: absolute;
	z-index: 3;
	display: flex;
	gap: 9px;
	align-items: center;
	padding: 12px 15px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-border) 76%,
		var(--grovio-primary)
	);
	border-radius: 14px;
	background: color-mix(
		in srgb,
		var(--grovio-background) 94%,
		transparent
	);
	color: var(--grovio-text);
	box-shadow: var(--grovio-shadow-md);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 0.8125rem;
	animation: grovio-floating-card 5s ease-in-out infinite;
}

.grovio-floating-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 12%,
		var(--grovio-background)
	);
	color: var(--grovio-primary);
	font-weight: 800;
}

.grovio-floating-card--growth {
	top: 7%;
	right: -4%;
}

.grovio-floating-card--quality {
	bottom: 8%;
	left: -5%;
	animation-delay: -2.5s;
}

@keyframes grovio-floating-card {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}
}

/*
|--------------------------------------------------------------------------
| Responsive Hero
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 1120px) {
	.grovio-hero__container {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(380px, 0.9fr);
		gap: 48px;
	}

	.grovio-hero__title {
		font-size: clamp(3rem, 6vw, 4.5rem);
	}
}

@media screen and (max-width: 900px) {
	.grovio-hero {
		padding-top: 88px;
	}

	.grovio-hero__container {
		grid-template-columns: 1fr;
	}

	.grovio-hero__content {
		max-width: 760px;
		text-align: center;
	}

	.grovio-hero__title,
	.grovio-hero__description {
		margin-right: auto;
		margin-left: auto;
	}

	.grovio-hero__actions,
	.grovio-hero__highlights {
		justify-content: center;
	}

	.grovio-hero__visual {
		width: min(100%, 650px);
		min-height: 520px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 640px) {
	.grovio-hero {
		padding: 72px 0 78px;
	}

	.grovio-hero__eyebrow {
		margin-bottom: 20px;
		font-size: 0.6875rem;
	}

	.grovio-hero__title {
		font-size: clamp(2.6rem, 13vw, 3.6rem);
	}

	.grovio-hero__description {
		margin-top: 24px;
		font-size: 1rem;
	}

	.grovio-hero__actions {
		flex-direction: column;
	}

	.grovio-hero__actions .grovio-button {
		width: 100%;
	}

	.grovio-hero__highlights {
		gap: 10px 16px;
	}

	.grovio-hero__visual {
		min-height: 380px;
	}

	.grovio-browser {
		width: 108%;
		transform:
			translate(-50%, -50%)
			scale(0.9);
	}

	.grovio-floating-card {
		display: none;
	}

	.grovio-browser__content {
		padding: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-floating-card {
		animation: none;
	}
}

/* ===================================================
TRUST
=================================================== */

.grovio-trust {
	position: relative;
	padding: clamp(80px, 9vw, 128px) 0;
	background:
		linear-gradient(
			180deg,
			var(--grovio-surface) 0%,
			var(--grovio-background) 100%
		);
	overflow: hidden;
	overflow: clip;
	isolation: isolate;
}

.grovio-trust::before {
	position: absolute;
	z-index: -1;
	top: -180px;
	right: -140px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 10%,
		transparent
	);
	filter: blur(10px);
	content: "";
	pointer-events: none;
}

.grovio-trust .container {
	position: relative;
}

.grovio-trust__intro {
	display: grid;
	grid-template-columns:
		minmax(180px, 0.55fr)
		minmax(0, 1.45fr);
	gap: clamp(28px, 6vw, 88px);
	align-items: end;
	margin-bottom: clamp(42px, 6vw, 70px);
	padding-bottom: 32px;
	border-bottom: 1px solid var(--grovio-border);
}

.grovio-trust__eyebrow {
	margin: 0;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-trust__title {
	max-width: 800px;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.75rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
	text-wrap: balance;
}

.grovio-trust__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
}

.trust-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-width: 0;
	min-height: 220px;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.4);
	background:
		linear-gradient(
			145deg,
			var(--grovio-background),
			color-mix(
				in srgb,
				var(--grovio-primary) 4%,
				var(--grovio-background)
			)
		);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.trust-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background:
		linear-gradient(
			90deg,
			var(--grovio-primary),
			var(--grovio-accent)
		);
	content: "";
	transform: scaleX(0.35);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.trust-card::after {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		transparent
	);
	content: "";
	pointer-events: none;
}

.trust-card__value {
	position: relative;
	z-index: 1;
	margin: 0 0 12px;
	color: var(--grovio-primary);
	font-size: clamp(1.55rem, 2.6vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.trust-card__label {
	position: relative;
	z-index: 1;
	max-width: 20ch;
	margin: 0;
	color: var(--grovio-text-muted);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
	.trust-card:hover {
		border-color: color-mix(
			in srgb,
			var(--grovio-primary) 32%,
			var(--grovio-border)
		);
		box-shadow: var(--grovio-shadow-md);
		transform: translateY(-6px);
	}

	.trust-card:hover::before {
		transform: scaleX(1);
	}
}

@media screen and (max-width: 960px) {
	.grovio-trust__intro {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.grovio-trust__title {
		max-width: 700px;
	}

	.grovio-trust__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.grovio-trust__intro {
		margin-bottom: 34px;
		padding-bottom: 26px;
	}

	.grovio-trust__title {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.grovio-trust__stats {
		grid-template-columns: 1fr;
	}

	.trust-card {
		min-height: 170px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.trust-card,
	.trust-card::before {
		transition: none;
	}
}

/* ===================================================
SERVICES
=================================================== */

.grovio-services {
	position: relative;
	padding: clamp(88px, 10vw, 140px) 0;
	background: var(--grovio-surface);
	overflow: hidden;
	overflow: clip;
}

.grovio-services::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(92%, 1120px);
	height: 1px;
	background:
		linear-gradient(
			90deg,
			transparent,
			var(--grovio-border) 18%,
			var(--grovio-border) 82%,
			transparent
		);
	content: "";
	transform: translateX(-50%);
}

.section-heading {
	max-width: 780px;
	margin: 0 auto clamp(48px, 7vw, 78px);
	text-align: center;
}

.section-heading > span {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(2.25rem, 4.7vw, 4.25rem);
	letter-spacing: -0.05em;
	line-height: 1.06;
	text-wrap: balance;
}

.section-heading > p {
	max-width: 680px;
	margin: 24px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
}

.grovio-services .grovio-services__eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-services .grovio-services__description {
	max-width: 680px;
	margin: 24px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
}

.grovio-services__all-link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin-top: 26px;
	color: var(--grovio-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-services__all-link span {
	transition: transform 0.2s ease;
}

.grovio-services__all-link:hover span {
	transform: translateX(4px);
}

.grovio-services .services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2.2vw, 28px);
}

.grovio-services .service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 360px;
	padding: clamp(28px, 3.2vw, 42px);
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.7);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.grovio-services .service-card::before {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 7%,
		transparent
	);
	content: "";
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.grovio-services .service-card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background:
		linear-gradient(
			90deg,
			var(--grovio-primary),
			var(--grovio-accent)
		);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.grovio-services .service-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: auto;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		var(--grovio-border)
	);
	border-radius: 14px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		var(--grovio-background)
	);
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.grovio-services .service-card__title {
	position: relative;
	z-index: 1;
	margin: 48px 0 0;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.grovio-services .service-card__description {
	position: relative;
	z-index: 1;
	margin: 17px 0 0;
	color: var(--grovio-text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.grovio-services .service-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	align-self: flex-start;
	margin-top: 28px;
	color: var(--grovio-primary);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-services .service-link span {
	transition: transform 0.2s ease;
}

.grovio-services .service-link:hover span {
	transform: translateX(4px);
}

@media (hover: hover) and (pointer: fine) {
	.grovio-services .service-card:hover {
		border-color: color-mix(
			in srgb,
			var(--grovio-primary) 28%,
			var(--grovio-border)
		);
		box-shadow: var(--grovio-shadow-md);
		transform: translateY(-7px);
	}

	.grovio-services .service-card:hover::before {
		background: color-mix(
			in srgb,
			var(--grovio-primary) 12%,
			transparent
		);
		transform: scale(1.1);
	}

	.grovio-services .service-card:hover::after {
		transform: scaleX(1);
	}
}

@media screen and (max-width: 1024px) {
	.grovio-services .services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.section-heading {
		margin-bottom: 40px;
	}

	.section-heading h2 {
		font-size: clamp(2.15rem, 10vw, 3rem);
	}

	.grovio-services .services-grid {
		grid-template-columns: 1fr;
	}

	.grovio-services .service-card {
		min-height: 320px;
	}

	.grovio-services .service-card__title {
		margin-top: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-services__all-link span,
	.grovio-services .service-card,
	.grovio-services .service-card::before,
	.grovio-services .service-card::after,
	.grovio-services .service-link span {
		transition: none;
	}
}

/* ===================================================
WHY GROVIO
=================================================== */

.grovio-why {
	position: relative;
	padding: clamp(88px, 10vw, 140px) 0;
	background: var(--grovio-background);
	overflow: hidden;
	overflow: clip;
}

.grovio-why::before {
	position: absolute;
	top: 50%;
	left: -220px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-accent) 8%,
		transparent
	);
	filter: blur(8px);
	content: "";
	transform: translateY(-50%);
	pointer-events: none;
}

.grovio-why .container {
	position: relative;
}

.grovio-why__intro {
	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(320px, 0.85fr);
	gap: clamp(40px, 8vw, 120px);
	align-items: end;
	margin-bottom: clamp(52px, 7vw, 84px);
}

.grovio-why__eyebrow {
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-why__intro h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.35rem, 5vw, 4.5rem);
	letter-spacing: -0.052em;
	line-height: 1.04;
	text-wrap: balance;
}

.grovio-why__intro-side {
	padding-bottom: 8px;
}

.grovio-why__description {
	margin: 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 1.45vw, 1.125rem);
	line-height: 1.75;
}

.grovio-why__cta {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin-top: 26px;
	color: var(--grovio-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-why__cta span {
	transition: transform 0.2s ease;
}

.grovio-why__cta:hover span {
	transform: translateX(4px);
}

.grovio-why__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.why-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	gap: 14px 24px;
	min-width: 0;
	min-height: 210px;
	padding: clamp(28px, 3.2vw, 40px);
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.6);
	background:
		linear-gradient(
			145deg,
			var(--grovio-surface),
			var(--grovio-background)
		);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.why-card::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background:
		linear-gradient(
			180deg,
			var(--grovio-primary),
			var(--grovio-accent)
		);
	content: "";
	transform: scaleY(0.35);
	transform-origin: top;
	transition: transform 0.25s ease;
}

.why-icon {
	display: inline-flex;
	grid-row: 1 / span 2;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		var(--grovio-border)
	);
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		var(--grovio-background)
	);
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.why-card__title {
	margin: 2px 0 0;
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.why-card__description {
	margin: 0;
	color: var(--grovio-text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
	.why-card:hover {
		border-color: color-mix(
			in srgb,
			var(--grovio-primary) 28%,
			var(--grovio-border)
		);
		box-shadow: var(--grovio-shadow-md);
		transform: translateY(-6px);
	}

	.why-card:hover::before {
		transform: scaleY(1);
	}
}

@media screen and (max-width: 900px) {
	.grovio-why__intro {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.grovio-why__intro-side {
		max-width: 680px;
		padding-bottom: 0;
	}
}

@media screen and (max-width: 720px) {
	.grovio-why__grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 480px) {
	.grovio-why__intro h2 {
		font-size: clamp(2.15rem, 11vw, 3rem);
	}

	.why-card {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px 18px;
		min-height: 190px;
	}

	.why-icon {
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-why__cta span,
	.why-card,
	.why-card::before {
		transition: none;
	}
}

/* ===================================================
PORTFOLIO
=================================================== */

.grovio-portfolio {
	position: relative;
	padding: clamp(88px, 10vw, 140px) 0;
	background: var(--grovio-surface);
	overflow: hidden;
	overflow: clip;
}

.grovio-portfolio::before {
	position: absolute;
	top: -180px;
	left: 50%;
	width: min(90vw, 900px);
	height: 360px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		transparent
	);
	filter: blur(40px);
	content: "";
	transform: translateX(-50%);
	pointer-events: none;
}

.grovio-portfolio .container {
	position: relative;
}

.grovio-portfolio .grovio-portfolio__eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-portfolio .grovio-portfolio__description {
	max-width: 680px;
	margin: 24px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
}

.grovio-portfolio__archive-link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin-top: 26px;
	color: var(--grovio-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-portfolio__archive-link span {
	transition: transform 0.2s ease;
}

.grovio-portfolio__archive-link:hover span {
	transform: translateX(4px);
}

.portfolio-grid {
	display: grid;
	gap: clamp(18px, 2.2vw, 30px);
}

.grovio-portfolio .portfolio-grid {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.portfolio-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.8);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.grovio-portfolio .portfolio-card {
	grid-column: span 6;
}

.grovio-portfolio .portfolio-card--featured {
	grid-column: span 7;
}

.grovio-portfolio .portfolio-card:nth-child(2) {
	grid-column: span 5;
}

.grovio-portfolio .portfolio-card:nth-child(3) {
	grid-column: span 5;
}

.grovio-portfolio .portfolio-card:nth-child(4) {
	grid-column: span 7;
}

.portfolio-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(
			145deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 13%,
				var(--grovio-background)
			),
			color-mix(
				in srgb,
				var(--grovio-accent) 10%,
				var(--grovio-surface)
			)
		);
	overflow: hidden;
}

.portfolio-card--featured .portfolio-card__media {
	aspect-ratio: 16 / 9;
}

.portfolio-card__image,
.portfolio-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.portfolio-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	color: var(--grovio-primary);
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-align: center;
	isolation: isolate;
}

.portfolio-card__placeholder::before {
	position: absolute;
	z-index: -1;
	width: 96px;
	height: 96px;
	border: 18px solid color-mix(
		in srgb,
		var(--grovio-primary) 12%,
		transparent
	);
	border-radius: 30px;
	content: "";
	transform: rotate(18deg);
}

.portfolio-card__category {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 8px 12px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-border) 70%,
		transparent
	);
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--grovio-background) 90%,
		transparent
	);
	color: var(--grovio-text);
	box-shadow: var(--grovio-shadow-sm);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.grovio-portfolio .portfolio-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	max-width: none;
	margin: 0;
	padding: clamp(26px, 3vw, 38px);
	font-size: inherit;
	line-height: inherit;
}

.portfolio-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-bottom: 14px;
	color: var(--grovio-primary);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.portfolio-card__meta span + span {
	position: relative;
}

.portfolio-card__meta span + span::before {
	position: absolute;
	top: 50%;
	left: -11px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentcolor;
	content: "";
	transform: translateY(-50%);
}

.portfolio-card__title {
	margin: 0;
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	letter-spacing: -0.035em;
	line-height: 1.18;
}

.portfolio-card--featured .portfolio-card__title {
	font-size: clamp(1.6rem, 2.7vw, 2.35rem);
}

.portfolio-card__title a {
	color: var(--grovio-text);
	text-decoration: none;
}

.portfolio-card__description {
	margin: 17px 0 0;
	color: var(--grovio-text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.portfolio-card__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 26px;
	color: var(--grovio-primary);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.portfolio-card__link span {
	transition: transform 0.2s ease;
}

.portfolio-card__link:hover span {
	transform: translateX(4px);
}

.grovio-portfolio__empty {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(34px, 6vw, 58px);
	border: 1px dashed color-mix(
		in srgb,
		var(--grovio-primary) 30%,
		var(--grovio-border)
	);
	border-radius: calc(var(--grovio-radius) * 1.6);
	background: var(--grovio-background);
	color: var(--grovio-text-muted);
	text-align: center;
}

.grovio-portfolio__empty p {
	margin: 0;
}

@media (hover: hover) and (pointer: fine) {
	.portfolio-card:hover {
		border-color: color-mix(
			in srgb,
			var(--grovio-primary) 28%,
			var(--grovio-border)
		);
		box-shadow: var(--grovio-shadow-md);
		transform: translateY(-7px);
	}

	.portfolio-card:hover .portfolio-card__image,
	.portfolio-card:hover img {
		transform: scale(1.045);
	}
}


/* ===================================================
HOMEPAGE CTA
=================================================== */

.grovio-home-cta {
	position: relative;
	padding: clamp(72px, 9vw, 120px) 0;
	background: var(--grovio-background);
	overflow: hidden;
	overflow: clip;
}

.grovio-home-cta__panel {
	position: relative;
	display: grid;
	grid-template-columns:
		minmax(0, 1.35fr)
		minmax(280px, 0.65fr);
	gap: clamp(44px, 8vw, 110px);
	align-items: end;
	padding: clamp(40px, 7vw, 88px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: clamp(24px, 3vw, 38px);
	background:
		linear-gradient(
			135deg,
			#0f172a,
			color-mix(
				in srgb,
				var(--grovio-secondary) 46%,
				#080d18
			)
		);
	box-shadow: 0 36px 90px rgba(15, 23, 42, 0.2);
	overflow: hidden;
	isolation: isolate;
}

.grovio-home-cta__panel::before {
	position: absolute;
	z-index: -1;
	top: -55%;
	left: -12%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 28%,
		transparent
	);
	filter: blur(20px);
	content: "";
	pointer-events: none;
}

.grovio-home-cta__content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.grovio-home-cta__eyebrow {
	margin: 0 0 20px;
	color: color-mix(
		in srgb,
		var(--grovio-accent) 76%,
		#ffffff
	);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-home-cta__title {
	max-width: 14ch;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.5rem, 5.2vw, 4.8rem);
	letter-spacing: -0.055em;
	line-height: 1.02;
	text-wrap: balance;
}

.grovio-home-cta__description {
	max-width: 680px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
}

.grovio-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	align-items: center;
	margin-top: 34px;
}

.grovio-home-cta__primary {
	min-height: 52px;
	padding: 15px 23px;
	border-color: var(--grovio-primary);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.grovio-home-cta__primary span,
.grovio-home-cta__secondary span {
	transition: transform 0.2s ease;
}

.grovio-home-cta__primary:hover span,
.grovio-home-cta__secondary:hover span {
	transform: translateX(4px);
}

.grovio-home-cta__secondary {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	min-height: 48px;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-home-cta__secondary:hover {
	color: color-mix(
		in srgb,
		var(--grovio-accent) 72%,
		#ffffff
	);
}

.grovio-home-cta__highlights {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 8px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.82);
	list-style: none;
}

.grovio-home-cta__highlights li {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0;
	padding: 18px 0;
	font-size: 0.9rem;
	font-weight: 600;
}

.grovio-home-cta__highlights li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grovio-home-cta__highlights li > span {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-accent) 46%,
		transparent
	);
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-accent) 14%,
		transparent
	);
	color: color-mix(
		in srgb,
		var(--grovio-accent) 72%,
		#ffffff
	);
	font-size: 0.75rem;
	font-weight: 800;
}

.grovio-home-cta__decoration {
	position: absolute;
	z-index: 1;
	right: -100px;
	bottom: -120px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.grovio-home-cta__decoration span {
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 50%;
}

.grovio-home-cta__decoration span:nth-child(2) {
	inset: 27%;
}

.grovio-home-cta__decoration span:nth-child(3) {
	inset: 42%;
	background: color-mix(
		in srgb,
		var(--grovio-accent) 18%,
		transparent
	);
}

@media screen and (max-width: 900px) {
	.grovio-home-cta__panel {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.grovio-home-cta__highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grovio-home-cta__highlights li {
		padding: 18px;
	}

	.grovio-home-cta__highlights li + li {
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
}

@media screen and (max-width: 640px) {
	.grovio-home-cta__panel {
		padding: 36px 26px;
		border-radius: 24px;
	}

	.grovio-home-cta__title {
		font-size: clamp(2.35rem, 12vw, 3.4rem);
	}

	.grovio-home-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.grovio-home-cta__primary {
		width: 100%;
	}

	.grovio-home-cta__secondary {
		justify-content: center;
	}

	.grovio-home-cta__highlights {
		grid-template-columns: 1fr;
	}

	.grovio-home-cta__highlights li {
		padding: 16px 0;
	}

	.grovio-home-cta__highlights li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-home-cta__primary span,
	.grovio-home-cta__secondary span {
		transition: none;
	}
}


/*
|--------------------------------------------------------------------------
| Standard page template
|--------------------------------------------------------------------------
*/

.grovio-page {
	min-height: 60vh;
	padding: clamp(64px, 8vw, 112px) 0;
	background: var(--grovio-background);
}

.grovio-page__article,
.grovio-page__empty {
	width: min(100%, 920px);
	margin-right: auto;
	margin-left: auto;
}

.grovio-page__header {
	margin-bottom: clamp(28px, 4vw, 48px);
}

.grovio-page__title {
	margin: 0;
	color: var(--grovio-text);
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 1.05;
	overflow-wrap: break-word;
}

.grovio-page__featured {
	margin: 0 0 clamp(32px, 5vw, 56px);
}

.grovio-page__featured-image {
	display: block;
	width: 100%;
	border-radius: clamp(
		var(--grovio-radius),
		2vw,
		20px
	);
	box-shadow: var(--grovio-shadow-md);
}

.grovio-page__content {
	color: var(--grovio-text);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.8;
}

.grovio-page__content::after {
	display: table;
	clear: both;
	content: "";
}

.grovio-page__content > :first-child {
	margin-top: 0;
}

.grovio-page__content > :last-child {
	margin-bottom: 0;
}

.grovio-page__content h2,
.grovio-page__content h3,
.grovio-page__content h4 {
	margin-top: 1.75em;
	margin-bottom: 0.65em;
	letter-spacing: -0.025em;
}

.grovio-page__content p,
.grovio-page__content ul,
.grovio-page__content ol,
.grovio-page__content blockquote,
.grovio-page__content table,
.grovio-page__content pre {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.grovio-page__content blockquote {
	margin-right: 0;
	margin-left: 0;
	padding: 20px 24px;
	border-left: 4px solid var(--grovio-primary);
	border-radius: 0 var(--grovio-radius) var(--grovio-radius) 0;
	background: var(--grovio-surface);
}

.grovio-page__content table {
	display: block;
	width: 100%;
	border-collapse: collapse;
	overflow-x: auto;
}

.grovio-page__content th,
.grovio-page__content td {
	padding: 12px 16px;
	border: 1px solid var(--grovio-border);
	text-align: left;
}

.grovio-page__content pre {
	max-width: 100%;
	padding: 20px;
	border-radius: var(--grovio-radius);
	background: var(--grovio-secondary);
	color: #ffffff;
	overflow-x: auto;
}

.grovio-page__content .alignwide {
	position: relative;
	left: 50%;
	width: min(
		calc(100vw - 40px),
		var(--grovio-container)
	);
	max-width: none;
	transform: translateX(-50%);
}

.grovio-page__content .alignfull {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	transform: translateX(-50%);
}

.grovio-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-page-links__label {
	margin-right: 4px;
	font-weight: 700;
}

.grovio-page-links a,
.grovio-page-links > span:not(.grovio-page-links__label) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	text-decoration: none;
}

.grovio-page-links a:hover {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

@media (max-width: 782px) {
	.grovio-page {
		padding: 56px 0;
	}

	.grovio-page__header {
		margin-bottom: 28px;
	}

	.grovio-page__content .alignwide {
		width: calc(100vw - 32px);
	}
}

/*
|--------------------------------------------------------------------------
| Single post template
|--------------------------------------------------------------------------
*/

.grovio-single {
	min-height: 60vh;
	padding: clamp(64px, 8vw, 112px) 0;
	background: var(--grovio-background);
}

.grovio-single__article,
.grovio-single__empty,
.grovio-post-navigation,
.grovio-single .comments-area {
	width: min(100%, 920px);
	margin-right: auto;
	margin-left: auto;
}

.grovio-single__header {
	margin-bottom: clamp(32px, 5vw, 56px);
	text-align: center;
}

.grovio-single__categories {
	margin-bottom: 18px;
	color: var(--grovio-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.grovio-single__categories a {
	color: inherit;
	text-decoration: none;
}

.grovio-single__categories a:hover {
	text-decoration: underline;
}

.grovio-single__title {
	max-width: 860px;
	margin: 0 auto;
	color: var(--grovio-text);
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 1.05;
	overflow-wrap: break-word;
}

.grovio-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	align-items: center;
	justify-content: center;
	margin: 24px 0 0;
	padding: 0;
	color: var(--grovio-text-muted);
	font-size: 0.9375rem;
	list-style: none;
}

.grovio-single__meta-item {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.grovio-single__meta-item + .grovio-single__meta-item::before {
	color: var(--grovio-border);
	content: "•";
}

.grovio-single__meta a {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

.grovio-single__meta a:hover {
	color: var(--grovio-primary);
	text-decoration: underline;
}

.grovio-single__featured {
	width: min(100%, 1120px);
	margin: 0 auto clamp(40px, 6vw, 72px);
}

.grovio-single__featured-image {
	display: block;
	width: 100%;
	border-radius: clamp(
		var(--grovio-radius),
		2vw,
		20px
	);
	box-shadow: var(--grovio-shadow-md);
}

.grovio-single__content {
	color: var(--grovio-text);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.8;
}

.grovio-single__content::after {
	display: table;
	clear: both;
	content: "";
}

.grovio-single__content > :first-child {
	margin-top: 0;
}

.grovio-single__content > :last-child {
	margin-bottom: 0;
}

.grovio-single__content h2,
.grovio-single__content h3,
.grovio-single__content h4 {
	margin-top: 1.75em;
	margin-bottom: 0.65em;
	letter-spacing: -0.025em;
}

.grovio-single__content p,
.grovio-single__content ul,
.grovio-single__content ol,
.grovio-single__content blockquote,
.grovio-single__content table,
.grovio-single__content pre {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.grovio-single__content blockquote {
	margin-right: 0;
	margin-left: 0;
	padding: 20px 24px;
	border-left: 4px solid var(--grovio-primary);
	border-radius: 0 var(--grovio-radius) var(--grovio-radius) 0;
	background: var(--grovio-surface);
}

.grovio-single__content table {
	display: block;
	width: 100%;
	border-collapse: collapse;
	overflow-x: auto;
}

.grovio-single__content th,
.grovio-single__content td {
	padding: 12px 16px;
	border: 1px solid var(--grovio-border);
	text-align: left;
}

.grovio-single__content pre {
	max-width: 100%;
	padding: 20px;
	border-radius: var(--grovio-radius);
	background: var(--grovio-secondary);
	color: #ffffff;
	overflow-x: auto;
}

.grovio-single__content .alignwide {
	position: relative;
	left: 50%;
	width: min(
		calc(100vw - 40px),
		var(--grovio-container)
	);
	max-width: none;
	transform: translateX(-50%);
}

.grovio-single__content .alignfull {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	transform: translateX(-50%);
}

.grovio-post-pages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-post-pages__label {
	margin-right: 4px;
	font-weight: 700;
}

.grovio-post-pages a,
.grovio-post-pages > span:not(.grovio-post-pages__label) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	text-decoration: none;
}

.grovio-post-pages a:hover {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

.grovio-single__footer {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.grovio-single__tags-label {
	font-weight: 700;
}

.grovio-single__tags a {
	padding: 7px 12px;
	border: 1px solid var(--grovio-border);
	border-radius: 999px;
	background: var(--grovio-surface);
	color: var(--grovio-text);
	font-size: 0.875rem;
	text-decoration: none;
}

.grovio-single__tags a:hover {
	border-color: var(--grovio-primary);
	color: var(--grovio-primary);
}

.grovio-post-navigation {
	margin-top: clamp(56px, 8vw, 88px);
	padding-top: 32px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.grovio-post-navigation .nav-next {
	text-align: right;
}

.grovio-post-navigation a {
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
	padding: 20px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-surface);
	color: var(--grovio-text);
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.grovio-post-navigation a:hover {
	border-color: var(--grovio-primary);
	transform: translateY(-2px);
	box-shadow: var(--grovio-shadow-sm);
}

.grovio-post-navigation__label {
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.grovio-post-navigation__title {
	font-weight: 700;
	line-height: 1.35;
}

.grovio-single .comments-area {
	margin-top: 64px;
}

@media (max-width: 782px) {
	.grovio-single {
		padding: 56px 0;
	}

	.grovio-single__header {
		text-align: left;
	}

	.grovio-single__title {
		margin-left: 0;
	}

	.grovio-single__meta {
		justify-content: flex-start;
	}

	.grovio-single__meta-item + .grovio-single__meta-item::before {
		display: none;
	}

	.grovio-single__content .alignwide {
		width: calc(100vw - 32px);
	}

	.grovio-post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.grovio-post-navigation .nav-next {
		text-align: left;
	}
}

/*
|--------------------------------------------------------------------------
| Single service template
|--------------------------------------------------------------------------
*/

.grovio-service-single__back {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-bottom: clamp(32px, 5vw, 56px);
	color: var(--grovio-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-service-single__back span {
	transition: transform 0.2s ease;
}

.grovio-service-single__back:hover span {
	transform: translateX(-4px);
}

.grovio-service-single__header {
	margin-bottom: clamp(36px, 6vw, 64px);
}

.grovio-service-single__eyebrow {
	margin-bottom: 18px;
}

.grovio-service-single__lead {
	max-width: 760px;
	margin: 26px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.7;
	text-wrap: balance;
}

.grovio-service-single__featured {
	margin-bottom: clamp(48px, 7vw, 80px);
}

.grovio-service-single__content {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
}

.grovio-service-single__cta {
	position: relative;
	margin-top: clamp(64px, 9vw, 104px);
	padding: clamp(38px, 6vw, 72px);
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 18%,
		var(--grovio-border)
	);
	border-radius: calc(var(--grovio-radius) * 2);
	background: var(--grovio-surface);
	background:
		linear-gradient(
			135deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 9%,
				var(--grovio-surface)
			),
			var(--grovio-surface) 72%
		);
	box-shadow: var(--grovio-shadow-md);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.grovio-service-single__cta::before {
	position: absolute;
	z-index: -1;
	top: -120px;
	right: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 10%,
		transparent
	);
	content: "";
	pointer-events: none;
}

.grovio-service-single__cta-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.grovio-service-single__cta-eyebrow {
	margin: 0 0 16px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-service-single__cta-title {
	margin: 0;
	color: var(--grovio-text);
	font-size: clamp(2rem, 4.5vw, 3.75rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
	text-wrap: balance;
}

.grovio-service-single__cta-description {
	max-width: 650px;
	margin: 24px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.75;
}

.grovio-service-single__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.grovio-service-single__cta-actions .grovio-button {
	min-height: 50px;
	padding: 14px 22px;
}

.grovio-service-single__cta-actions .grovio-button:first-child span {
	transition: transform 0.2s ease;
}

.grovio-service-single__cta-actions .grovio-button:first-child:hover span {
	transform: translateX(4px);
}

.grovio-service-navigation {
	margin-top: clamp(56px, 8vw, 88px);
}

@media (max-width: 782px) {
	.grovio-service-single__lead {
		margin-left: 0;
		text-wrap: wrap;
	}

	.grovio-service-single__cta {
		padding: 36px 24px;
		text-align: left;
	}

	.grovio-service-single__cta-content {
		margin-left: 0;
	}

	.grovio-service-single__cta-description {
		margin-left: 0;
	}

	.grovio-service-single__cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.grovio-service-single__cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.grovio-service-single__cta-actions .grovio-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-service-single__back span,
	.grovio-service-single__cta-actions .grovio-button:first-child span {
		transition: none;
	}
}

/*
|--------------------------------------------------------------------------
| Services overview page
|--------------------------------------------------------------------------
*/

.grovio-services-page {
	min-height: 60vh;
	background: var(--grovio-background);
}

.grovio-services-page__hero {
	position: relative;
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--grovio-surface);
	background:
		linear-gradient(
			135deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 8%,
				var(--grovio-surface)
			),
			var(--grovio-surface) 65%
		);
	overflow: hidden;
	text-align: center;
}

.grovio-services-page__hero::before {
	position: absolute;
	top: -180px;
	left: 50%;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		transparent
	);
	content: "";
	pointer-events: none;
	transform: translateX(-50%);
}

.grovio-services-page__hero .grovio-container {
	position: relative;
	z-index: 1;
}

.grovio-services-page__eyebrow,
.grovio-services-page__heading-eyebrow,
.grovio-services-page__cta-eyebrow {
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.grovio-services-page__title {
	max-width: 980px;
	margin: 0 auto;
	color: var(--grovio-text);
	font-size: clamp(3rem, 8vw, 6.5rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
	overflow-wrap: break-word;
	text-wrap: balance;
}

.grovio-services-page__intro {
	max-width: 760px;
	margin: 30px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	line-height: 1.75;
}

.grovio-services-page__intro > :first-child {
	margin-top: 0;
}

.grovio-services-page__intro > :last-child {
	margin-bottom: 0;
}

.grovio-services-page__overview {
	padding: clamp(88px, 10vw, 140px) 0;
}

.grovio-services-page__heading {
	max-width: 820px;
	margin: 0 auto clamp(50px, 7vw, 80px);
	text-align: center;
}

.grovio-services-page__heading-title {
	margin: 0;
	color: var(--grovio-text);
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	letter-spacing: -0.05em;
	line-height: 1.05;
	text-wrap: balance;
}

.grovio-services-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 30px);
}

.grovio-services-page__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.7);
	background: var(--grovio-surface);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.grovio-services-page__card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background:
		linear-gradient(
			90deg,
			var(--grovio-primary),
			var(--grovio-accent)
		);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.grovio-services-page__image-link {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--grovio-background);
	overflow: hidden;
}

.grovio-services-page__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.grovio-services-page__card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(26px, 3vw, 38px);
}

.grovio-services-page__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 32px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		var(--grovio-border)
	);
	border-radius: 14px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		var(--grovio-background)
	);
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.grovio-services-page__card-title {
	margin: 0;
	font-size: clamp(1.4rem, 2.3vw, 1.9rem);
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.grovio-services-page__card-title a {
	color: var(--grovio-text);
	text-decoration: none;
}

.grovio-services-page__card-title a:hover {
	color: var(--grovio-primary);
}

.grovio-services-page__description {
	margin: 18px 0 0;
	color: var(--grovio-text-muted);
	font-size: 0.975rem;
	line-height: 1.75;
}

.grovio-services-page__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
	padding-top: 30px;
	color: var(--grovio-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-services-page__link span {
	transition: transform 0.2s ease;
}

.grovio-services-page__link:hover span {
	transform: translateX(4px);
}

.grovio-services-page__empty {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	padding: clamp(36px, 6vw, 60px);
	border: 1px solid var(--grovio-border);
	border-radius: calc(var(--grovio-radius) * 1.5);
	background: var(--grovio-surface);
	text-align: center;
}

.grovio-services-page__empty h3 {
	margin-top: 0;
}

.grovio-services-page__empty p {
	color: var(--grovio-text-muted);
}

.grovio-services-page__cta {
	padding: 0 0 clamp(88px, 10vw, 140px);
}

.grovio-services-page__cta-panel {
	position: relative;
	padding: clamp(44px, 7vw, 84px);
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 20%,
		var(--grovio-border)
	);
	border-radius: calc(var(--grovio-radius) * 2);
	background: var(--grovio-secondary);
	color: #ffffff;
	box-shadow: var(--grovio-shadow-md);
	overflow: hidden;
	text-align: center;
}

.grovio-services-page__cta-panel::before {
	position: absolute;
	top: -150px;
	right: -100px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 24%,
		transparent
	);
	content: "";
	pointer-events: none;
}

.grovio-services-page__cta-panel > * {
	position: relative;
	z-index: 1;
}

.grovio-services-page__cta-title {
	max-width: 820px;
	margin: 0 auto;
	color: #ffffff;
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	letter-spacing: -0.05em;
	line-height: 1.05;
	text-wrap: balance;
}

.grovio-services-page__cta-description {
	max-width: 680px;
	margin: 24px auto 32px;
	color: rgb(255 255 255 / 76%);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.75;
}

.grovio-services-page__cta-panel .grovio-button {
	background: var(--grovio-primary);
	color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
	.grovio-services-page__card:hover {
		border-color: color-mix(
			in srgb,
			var(--grovio-primary) 30%,
			var(--grovio-border)
		);
		box-shadow: var(--grovio-shadow-md);
		transform: translateY(-6px);
	}

	.grovio-services-page__card:hover::after {
		transform: scaleX(1);
	}

	.grovio-services-page__card:hover .grovio-services-page__image {
		transform: scale(1.04);
	}
}

@media (max-width: 1100px) {
	.grovio-services-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.grovio-services-page__hero {
		padding: 72px 0;
		text-align: left;
	}

	.grovio-services-page__title {
		margin-left: 0;
		font-size: clamp(2.8rem, 16vw, 4.5rem);
		text-wrap: wrap;
	}

	.grovio-services-page__intro {
		margin-left: 0;
	}

	.grovio-services-page__heading {
		margin-left: 0;
		text-align: left;
	}

	.grovio-services-page__heading-title {
		text-wrap: wrap;
	}

	.grovio-services-page__grid {
		grid-template-columns: 1fr;
	}

	.grovio-services-page__cta-panel {
		padding: 40px 24px;
		text-align: left;
	}

	.grovio-services-page__cta-title,
	.grovio-services-page__cta-description {
		margin-left: 0;
	}

	.grovio-services-page__cta-panel .grovio-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.grovio-services-page__card,
	.grovio-services-page__card::after,
	.grovio-services-page__image,
	.grovio-services-page__link span {
		transition: none;
	}
}

/*
|--------------------------------------------------------------------------
| General archive template
|--------------------------------------------------------------------------
*/

.grovio-archive {
	min-height: 60vh;
	padding-bottom: clamp(72px, 9vw, 120px);
	background: var(--grovio-background);
}

.grovio-archive__header {
	margin-bottom: clamp(48px, 7vw, 80px);
	padding: clamp(64px, 8vw, 104px) 0;
	border-bottom: 1px solid var(--grovio-border);
	background:
		radial-gradient(
			circle at 15% 20%,
			color-mix(
				in srgb,
				var(--grovio-primary) 12%,
				transparent
			),
			transparent 38%
		),
		var(--grovio-surface);
	text-align: center;
}

.grovio-archive__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--grovio-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.grovio-archive__title {
	max-width: 900px;
	margin: 0 auto;
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 1.05;
	overflow-wrap: break-word;
}

.grovio-archive__description {
	max-width: 720px;
	margin: 24px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 2vw, 1.1875rem);
}

.grovio-archive__description > :first-child {
	margin-top: 0;
}

.grovio-archive__description > :last-child {
	margin-bottom: 0;
}

.grovio-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 36px);
}

.grovio-archive-card {
	display: flex;
	min-width: 0;
	border: 1px solid var(--grovio-border);
	border-radius: clamp(
		var(--grovio-radius),
		1.5vw,
		18px
	);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	flex-direction: column;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.grovio-archive-card:hover {
	border-color: color-mix(
		in srgb,
		var(--grovio-primary) 40%,
		var(--grovio-border)
	);
	transform: translateY(-4px);
	box-shadow: var(--grovio-shadow-md);
}

.grovio-archive-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--grovio-surface);
	overflow: hidden;
}

.grovio-archive-card__media--placeholder {
	background:
		linear-gradient(
			135deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 14%,
				var(--grovio-surface)
			),
			var(--grovio-surface)
		);
}

.grovio-archive-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.grovio-archive-card:hover .grovio-archive-card__image {
	transform: scale(1.035);
}

.grovio-archive-card__body {
	display: flex;
	height: 100%;
	padding: clamp(22px, 3vw, 30px);
	flex-direction: column;
	align-items: flex-start;
}

.grovio-archive-card__categories {
	margin-bottom: 12px;
	color: var(--grovio-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.grovio-archive-card__categories a {
	color: inherit;
	text-decoration: none;
}

.grovio-archive-card__categories a:hover {
	text-decoration: underline;
}

.grovio-archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin: 0 0 14px;
	padding: 0;
	color: var(--grovio-text-muted);
	font-size: 0.8125rem;
	list-style: none;
}

.grovio-archive-card__meta li + li::before {
	margin-right: 16px;
	color: var(--grovio-border);
	content: "•";
}

.grovio-archive-card__title {
	margin: 0 0 16px;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	letter-spacing: -0.025em;
	line-height: 1.2;
	overflow-wrap: break-word;
}

.grovio-archive-card__title a {
	color: var(--grovio-text);
	text-decoration: none;
}

.grovio-archive-card__title a:hover {
	color: var(--grovio-primary);
}

.grovio-archive-card__excerpt {
	margin-bottom: 24px;
	color: var(--grovio-text-muted);
	line-height: 1.7;
}

.grovio-archive-card__excerpt > :first-child {
	margin-top: 0;
}

.grovio-archive-card__excerpt > :last-child {
	margin-bottom: 0;
}

.grovio-archive-card__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
	color: var(--grovio-primary);
	font-weight: 700;
	text-decoration: none;
}

.grovio-archive-card__link:hover {
	gap: 12px;
	text-decoration: underline;
}

.grovio-archive__pagination {
	margin-top: clamp(56px, 8vw, 88px);
}

.grovio-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.grovio-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-weight: 600;
	text-decoration: none;
}

.grovio-archive__pagination a.page-numbers:hover,
.grovio-archive__pagination .page-numbers.current {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

.grovio-archive__empty {
	width: min(100%, 720px);
	margin: 0 auto;
	padding: 48px;
	border: 1px solid var(--grovio-border);
	border-radius: 18px;
	background: var(--grovio-surface);
	text-align: center;
}

.grovio-archive__empty-title {
	margin-top: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.grovio-archive__empty p {
	margin-bottom: 28px;
	color: var(--grovio-text-muted);
}

@media (max-width: 1024px) {
	.grovio-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.grovio-archive__header {
		text-align: left;
	}

	.grovio-archive__title,
	.grovio-archive__description {
		margin-left: 0;
	}

	.grovio-archive__grid {
		grid-template-columns: 1fr;
	}

	.grovio-archive__empty {
		padding: 32px 22px;
	}

	.grovio-archive-card__meta li + li::before {
		display: none;
	}
}

/*
|--------------------------------------------------------------------------
| Search results template
|--------------------------------------------------------------------------
*/

.grovio-search {
	min-height: 60vh;
	padding-bottom: clamp(72px, 9vw, 120px);
	background: var(--grovio-background);
}

.grovio-search__header {
	margin-bottom: clamp(48px, 7vw, 80px);
	padding: clamp(64px, 8vw, 96px) 0;
	border-bottom: 1px solid var(--grovio-border);
	background:
		radial-gradient(
			circle at 85% 15%,
			color-mix(
				in srgb,
				var(--grovio-accent) 14%,
				transparent
			),
			transparent 38%
		),
		var(--grovio-surface);
	text-align: center;
}

.grovio-search__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--grovio-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.grovio-search__title {
	max-width: 960px;
	margin: 0 auto;
	font-size: clamp(2.25rem, 6vw, 4.25rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
	overflow-wrap: break-word;
}

.grovio-search__query {
	display: block;
	margin-top: 12px;
	color: var(--grovio-primary);
}

.grovio-search__count {
	margin: 22px 0 0;
	color: var(--grovio-text-muted);
	font-size: 1rem;
}

.grovio-search__form,
.grovio-search__empty-form {
	width: min(100%, 680px);
	margin: 32px auto 0;
}

.grovio-search .search-form {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.grovio-search .search-form label {
	display: block;
	flex: 1;
}

.grovio-search .search-field {
	width: 100%;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-size: 1rem;
}

.grovio-search .search-field:focus {
	border-color: var(--grovio-primary);
	outline: 3px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		transparent
	);
	outline-offset: 2px;
}

.grovio-search .search-submit {
	min-height: 52px;
	padding: 12px 22px;
	border: 1px solid var(--grovio-primary);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-primary);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.grovio-search .search-submit:hover {
	transform: translateY(-1px);
	box-shadow: var(--grovio-shadow-sm);
}

.grovio-search__results {
	display: grid;
	gap: 28px;
	width: min(100%, 1040px);
	margin: 0 auto;
}

.grovio-search-result {
	display: grid;
	grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
	border: 1px solid var(--grovio-border);
	border-radius: clamp(
		var(--grovio-radius),
		1.5vw,
		18px
	);
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-sm);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.grovio-search-result:hover {
	border-color: color-mix(
		in srgb,
		var(--grovio-primary) 40%,
		var(--grovio-border)
	);
	transform: translateY(-3px);
	box-shadow: var(--grovio-shadow-md);
}

.grovio-search-result__media {
	display: block;
	min-height: 240px;
	background: var(--grovio-surface);
	overflow: hidden;
}

.grovio-search-result__media--placeholder {
	background:
		linear-gradient(
			135deg,
			color-mix(
				in srgb,
				var(--grovio-primary) 14%,
				var(--grovio-surface)
			),
			var(--grovio-surface)
		);
}

.grovio-search-result__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.grovio-search-result:hover .grovio-search-result__image {
	transform: scale(1.035);
}

.grovio-search-result__body {
	display: flex;
	min-width: 0;
	padding: clamp(24px, 4vw, 38px);
	flex-direction: column;
	align-items: flex-start;
}

.grovio-search-result__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	margin-bottom: 14px;
	color: var(--grovio-text-muted);
	font-size: 0.8125rem;
}

.grovio-search-result__type {
	padding: 5px 10px;
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 10%,
		var(--grovio-surface)
	);
	color: var(--grovio-primary);
	font-weight: 700;
}

.grovio-search-result__date::before {
	margin-right: 16px;
	color: var(--grovio-border);
	content: "•";
}

.grovio-search-result__title {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	letter-spacing: -0.03em;
	line-height: 1.2;
	overflow-wrap: break-word;
}

.grovio-search-result__title a {
	color: var(--grovio-text);
	text-decoration: none;
}

.grovio-search-result__title a:hover {
	color: var(--grovio-primary);
}

.grovio-search-result__excerpt {
	margin-bottom: 24px;
	color: var(--grovio-text-muted);
	line-height: 1.7;
}

.grovio-search-result__excerpt > :first-child {
	margin-top: 0;
}

.grovio-search-result__excerpt > :last-child {
	margin-bottom: 0;
}

.grovio-search-result__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
	color: var(--grovio-primary);
	font-weight: 700;
	text-decoration: none;
}

.grovio-search-result__link:hover {
	gap: 12px;
	text-decoration: underline;
}

.grovio-search__pagination {
	margin-top: clamp(56px, 8vw, 88px);
}

.grovio-search__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.grovio-search__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-weight: 600;
	text-decoration: none;
}

.grovio-search__pagination a.page-numbers:hover,
.grovio-search__pagination .page-numbers.current {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

.grovio-search__empty {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: clamp(32px, 6vw, 56px);
	border: 1px solid var(--grovio-border);
	border-radius: 18px;
	background: var(--grovio-surface);
	text-align: center;
}

.grovio-search__empty-title {
	margin-top: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.grovio-search__empty p {
	margin-bottom: 0;
	color: var(--grovio-text-muted);
}

.grovio-search__empty .grovio-button {
	margin-top: 28px;
}

@media (max-width: 782px) {
	.grovio-search__header {
		text-align: left;
	}

	.grovio-search__title,
	.grovio-search__form {
		margin-left: 0;
	}

	.grovio-search .search-form {
		flex-direction: column;
	}

	.grovio-search .search-submit {
		width: 100%;
	}

	.grovio-search-result {
		grid-template-columns: 1fr;
	}

	.grovio-search-result__media {
		min-height: auto;
		aspect-ratio: 16 / 9;
	}

	.grovio-search-result__date::before {
		display: none;
	}
}

/*
|--------------------------------------------------------------------------
| 404 error template
|--------------------------------------------------------------------------
*/

.grovio-404 {
	position: relative;
	display: flex;
	min-height: 70vh;
	padding: clamp(72px, 9vw, 128px) 0;
	background:
		radial-gradient(
			circle at 85% 25%,
			color-mix(
				in srgb,
				var(--grovio-primary) 15%,
				transparent
			),
			transparent 34%
		),
		radial-gradient(
			circle at 10% 90%,
			color-mix(
				in srgb,
				var(--grovio-accent) 12%,
				transparent
			),
			transparent 30%
		),
		var(--grovio-background);
	align-items: center;
	overflow: hidden;
}

.grovio-404__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	gap: clamp(48px, 8vw, 112px);
	align-items: center;
}

.grovio-404__content {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.grovio-404__eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--grovio-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.grovio-404__title {
	margin: 0;
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	overflow-wrap: break-word;
}

.grovio-404__description {
	max-width: 620px;
	margin: 28px 0 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 2vw, 1.1875rem);
	line-height: 1.75;
}

.grovio-404__search {
	margin-top: 38px;
}

.grovio-404__search-title {
	margin: 0 0 14px;
	font-size: 1rem;
}

.grovio-404 .search-form {
	display: flex;
	gap: 12px;
	width: min(100%, 620px);
}

.grovio-404 .search-form label {
	display: block;
	flex: 1;
}

.grovio-404 .search-field {
	width: 100%;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-size: 1rem;
}

.grovio-404 .search-field:focus {
	border-color: var(--grovio-primary);
	outline: 3px solid color-mix(
		in srgb,
		var(--grovio-primary) 22%,
		transparent
	);
	outline-offset: 2px;
}

.grovio-404 .search-submit {
	min-height: 52px;
	padding: 12px 22px;
	border: 1px solid var(--grovio-primary);
	border-radius: var(--grovio-button-radius);
	background: var(--grovio-primary);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.grovio-404 .search-submit:hover {
	transform: translateY(-1px);
	box-shadow: var(--grovio-shadow-sm);
}

.grovio-404__navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.grovio-404__visual {
	position: relative;
	display: flex;
	min-height: 430px;
	align-items: center;
	justify-content: center;
}

.grovio-404__code {
	position: absolute;
	top: 50%;
	left: 50%;
	color: color-mix(
		in srgb,
		var(--grovio-primary) 8%,
		transparent
	);
	font-size: clamp(10rem, 23vw, 22rem);
	font-weight: 800;
	letter-spacing: -0.09em;
	line-height: 1;
	transform: translate(-50%, -50%);
	user-select: none;
	white-space: nowrap;
}

.grovio-404__browser {
	position: relative;
	z-index: 1;
	width: min(100%, 470px);
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 30%,
		var(--grovio-border)
	);
	border-radius: 20px;
	background: var(--grovio-background);
	box-shadow: var(--grovio-shadow-md);
	overflow: hidden;
	transform: rotate(2deg);
}

.grovio-404__browser-bar {
	display: flex;
	gap: 8px;
	padding: 17px 20px;
	border-bottom: 1px solid var(--grovio-border);
	background: var(--grovio-surface);
}

.grovio-404__browser-bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--grovio-border);
}

.grovio-404__browser-bar span:first-child {
	background: #ff5f57;
}

.grovio-404__browser-bar span:nth-child(2) {
	background: #febc2e;
}

.grovio-404__browser-bar span:nth-child(3) {
	background: #28c840;
}

.grovio-404__browser-content {
	display: flex;
	min-height: 280px;
	padding: 48px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.grovio-404__browser-icon {
	display: inline-flex;
	width: 82px;
	height: 82px;
	margin-bottom: 30px;
	border-radius: 24px;
	background: color-mix(
		in srgb,
		var(--grovio-primary) 12%,
		var(--grovio-surface)
	);
	color: var(--grovio-primary);
	font-size: 2.5rem;
	font-weight: 800;
	align-items: center;
	justify-content: center;
}

.grovio-404__browser-line {
	width: 72%;
	height: 12px;
	margin-top: 12px;
	border-radius: 999px;
	background: var(--grovio-border);
}

.grovio-404__browser-line--short {
	width: 48%;
}

@media (max-width: 960px) {
	.grovio-404__layout {
		grid-template-columns: 1fr;
	}

	.grovio-404__content {
		max-width: 760px;
	}

	.grovio-404__visual {
		min-height: 340px;
	}

	.grovio-404__browser {
		width: min(100%, 560px);
	}
}

@media (max-width: 640px) {
	.grovio-404 {
		padding: 64px 0;
	}

	.grovio-404 .search-form {
		flex-direction: column;
	}

	.grovio-404 .search-submit {
		width: 100%;
	}

	.grovio-404__navigation {
		align-items: stretch;
		flex-direction: column;
	}

	.grovio-404__navigation .grovio-button {
		width: 100%;
	}

	.grovio-404__visual {
		min-height: 280px;
	}

	.grovio-404__browser-content {
		min-height: 220px;
		padding: 32px 24px;
	}

	.grovio-404__browser-icon {
		width: 68px;
		height: 68px;
		font-size: 2rem;
	}
}

/*
|--------------------------------------------------------------------------
| Portfolio archive template
|--------------------------------------------------------------------------
*/

.grovio-portfolio-archive {
	min-height: 60vh;
	padding-bottom: clamp(80px, 10vw, 128px);
	background: var(--grovio-background);
}

.grovio-portfolio-archive__header {
	position: relative;
	margin-bottom: clamp(56px, 8vw, 88px);
	padding: clamp(72px, 9vw, 120px) 0;
	border-bottom: 1px solid var(--grovio-border);
	background:
		radial-gradient(
			circle at 18% 30%,
			color-mix(
				in srgb,
				var(--grovio-primary) 14%,
				transparent
			),
			transparent 36%
		),
		radial-gradient(
			circle at 82% 15%,
			color-mix(
				in srgb,
				var(--grovio-accent) 10%,
				transparent
			),
			transparent 32%
		),
		var(--grovio-surface);
	text-align: center;
	overflow: hidden;
}

.grovio-portfolio-archive__eyebrow {
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.grovio-portfolio-archive__title {
	max-width: 900px;
	margin: 0 auto;
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	overflow-wrap: break-word;
}

.grovio-portfolio-archive__description {
	max-width: 720px;
	margin: 26px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1rem, 2vw, 1.1875rem);
	line-height: 1.75;
}

.grovio-portfolio-archive__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grovio-portfolio-archive .portfolio-content {
	display: flex;
	height: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(24px, 3vw, 32px);
	font-size: inherit;
	line-height: inherit;
	flex-direction: column;
	align-items: flex-start;
}

.grovio-portfolio-archive .portfolio-card__title {
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.grovio-portfolio-archive .portfolio-card__description {
	margin-bottom: 0;
}

.grovio-portfolio-archive__pagination {
	margin-top: clamp(56px, 8vw, 88px);
}

.grovio-portfolio-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.grovio-portfolio-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-background);
	color: var(--grovio-text);
	font-weight: 600;
	text-decoration: none;
}

.grovio-portfolio-archive__pagination a.page-numbers:hover,
.grovio-portfolio-archive__pagination .page-numbers.current {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

.grovio-portfolio-archive__empty {
	width: min(100%, 720px);
	margin: 0 auto;
	padding: clamp(36px, 6vw, 60px);
	border: 1px dashed color-mix(
		in srgb,
		var(--grovio-primary) 32%,
		var(--grovio-border)
	);
	border-radius: 18px;
	background: var(--grovio-surface);
	text-align: center;
}

.grovio-portfolio-archive__empty h2 {
	margin-top: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.grovio-portfolio-archive__empty p {
	margin-bottom: 28px;
	color: var(--grovio-text-muted);
}

@media (max-width: 1024px) {
	.grovio-portfolio-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.grovio-portfolio-archive__header {
		text-align: left;
	}

	.grovio-portfolio-archive__title,
	.grovio-portfolio-archive__description {
		margin-left: 0;
	}

	.grovio-portfolio-archive__grid {
		grid-template-columns: 1fr;
	}

	.grovio-portfolio-archive__empty {
		padding: 32px 22px;
	}
}

/*
|--------------------------------------------------------------------------
| Single portfolio template
|--------------------------------------------------------------------------
*/

.grovio-portfolio-single {
	min-height: 60vh;
	padding-bottom: clamp(80px, 10vw, 128px);
	background: var(--grovio-background);
}

.grovio-portfolio-single__header {
	padding: clamp(72px, 9vw, 120px) 0;
	background:
		radial-gradient(
			circle at 18% 30%,
			color-mix(
				in srgb,
				var(--grovio-primary) 14%,
				transparent
			),
			transparent 36%
		),
		radial-gradient(
			circle at 82% 20%,
			color-mix(
				in srgb,
				var(--grovio-accent) 10%,
				transparent
			),
			transparent 32%
		),
		var(--grovio-surface);
	text-align: center;
}

.grovio-portfolio-single__eyebrow {
	margin: 0 0 18px;
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.grovio-portfolio-single__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 20px;
}

.grovio-portfolio-single__categories a {
	padding: 7px 13px;
	border: 1px solid color-mix(
		in srgb,
		var(--grovio-primary) 28%,
		var(--grovio-border)
	);
	border-radius: 999px;
	background: var(--grovio-background);
	color: var(--grovio-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
}

.grovio-portfolio-single__categories a:hover {
	border-color: var(--grovio-primary);
	background: var(--grovio-primary);
	color: #ffffff;
}

.grovio-portfolio-single__title {
	max-width: 1040px;
	margin: 0 auto;
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	overflow-wrap: break-word;
}

.grovio-portfolio-single__intro {
	max-width: 760px;
	margin: 28px auto 0;
	color: var(--grovio-text-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.75;
}

.grovio-portfolio-single__featured {
	margin: clamp(-36px, -3vw, -18px) 0 clamp(56px, 8vw, 88px);
}

.grovio-portfolio-single__image {
	display: block;
	width: 100%;
	max-height: 760px;
	border-radius: clamp(
		var(--grovio-radius),
		2vw,
		22px
	);
	box-shadow: var(--grovio-shadow-md);
	object-fit: cover;
}

.grovio-portfolio-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
	gap: clamp(48px, 7vw, 88px);
	align-items: start;
	width: min(100%, 1100px);
	margin: 0 auto;
	padding-top: clamp(56px, 7vw, 80px);
}

.grovio-portfolio-single__content {
	min-width: 0;
	color: var(--grovio-text);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.85;
}

.grovio-portfolio-single__content > :first-child {
	margin-top: 0;
}

.grovio-portfolio-single__content > :last-child {
	margin-bottom: 0;
}

.grovio-portfolio-single__content h2,
.grovio-portfolio-single__content h3,
.grovio-portfolio-single__content h4 {
	margin-top: 1.75em;
	margin-bottom: 0.65em;
	letter-spacing: -0.025em;
}

.grovio-portfolio-single__content p,
.grovio-portfolio-single__content ul,
.grovio-portfolio-single__content ol,
.grovio-portfolio-single__content blockquote,
.grovio-portfolio-single__content table,
.grovio-portfolio-single__content pre {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.grovio-portfolio-single__content blockquote {
	margin-right: 0;
	margin-left: 0;
	padding: 20px 24px;
	border-left: 4px solid var(--grovio-primary);
	border-radius: 0 var(--grovio-radius) var(--grovio-radius) 0;
	background: var(--grovio-surface);
}

.grovio-portfolio-single__content img {
	border-radius: var(--grovio-radius);
}

.grovio-portfolio-single__content table {
	display: block;
	width: 100%;
	border-collapse: collapse;
	overflow-x: auto;
}

.grovio-portfolio-single__content th,
.grovio-portfolio-single__content td {
	padding: 12px 16px;
	border: 1px solid var(--grovio-border);
	text-align: left;
}

.grovio-portfolio-single__content pre {
	max-width: 100%;
	padding: 20px;
	border-radius: var(--grovio-radius);
	background: var(--grovio-secondary);
	color: #ffffff;
	overflow-x: auto;
}

.grovio-portfolio-single__details {
	position: sticky;
	top: calc(var(--grovio-header-height) + 28px);
	padding: clamp(24px, 3vw, 32px);
	border: 1px solid var(--grovio-border);
	border-radius: 18px;
	background: var(--grovio-surface);
	box-shadow: var(--grovio-shadow-sm);
}

.admin-bar .grovio-portfolio-single__details {
	top: calc(var(--grovio-header-height) + 60px);
}

.grovio-portfolio-single__details-title {
	margin: 0 0 24px;
	font-size: 1.25rem;
}

.grovio-portfolio-single__meta {
	margin: 0;
}

.grovio-portfolio-single__meta > div {
	padding: 16px 0;
	border-top: 1px solid var(--grovio-border);
}

.grovio-portfolio-single__meta dt {
	margin-bottom: 4px;
	color: var(--grovio-text-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.grovio-portfolio-single__meta dd {
	margin: 0;
	color: var(--grovio-text);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.grovio-portfolio-single__website {
	width: 100%;
	margin-top: 20px;
}

.grovio-portfolio-single__pages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-portfolio-single__pages-label {
	margin-right: 4px;
	font-weight: 700;
}

.grovio-portfolio-single__pages a,
.grovio-portfolio-single__pages > span:not(
	.grovio-portfolio-single__pages-label
) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	text-decoration: none;
}

.grovio-portfolio-single__navigation {
	width: min(100%, 1100px);
	margin: clamp(64px, 9vw, 104px) auto 0;
	padding-top: 32px;
	border-top: 1px solid var(--grovio-border);
}

.grovio-portfolio-single__navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.grovio-portfolio-single__navigation .nav-next {
	text-align: right;
}

.grovio-portfolio-single__navigation a {
	display: flex;
	height: 100%;
	padding: 22px;
	border: 1px solid var(--grovio-border);
	border-radius: var(--grovio-radius);
	background: var(--grovio-surface);
	color: var(--grovio-text);
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.grovio-portfolio-single__navigation a:hover {
	border-color: var(--grovio-primary);
	transform: translateY(-2px);
	box-shadow: var(--grovio-shadow-sm);
}

.grovio-portfolio-single__nav-label {
	color: var(--grovio-primary);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.grovio-portfolio-single__nav-title {
	font-weight: 700;
	line-height: 1.35;
}

.grovio-portfolio-single__footer {
	margin-top: 32px;
	text-align: center;
}

@media (max-width: 960px) {
	.grovio-portfolio-single__layout {
		grid-template-columns: 1fr;
	}

	.grovio-portfolio-single__details {
		position: static;
	}
}

@media (max-width: 640px) {
	.grovio-portfolio-single__header {
		text-align: left;
	}

	.grovio-portfolio-single__categories {
		justify-content: flex-start;
	}

	.grovio-portfolio-single__title,
	.grovio-portfolio-single__intro {
		margin-left: 0;
	}

	.grovio-portfolio-single__navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.grovio-portfolio-single__navigation .nav-next {
		text-align: left;
	}
}