:root {
	--bs-white: #ffffff;
	--bs-ink: #122528;
	--bs-muted: #607175;
	--bs-line: #dcebed;
	--bs-soft: #f2fbfb;
	--bs-soft-2: #e8f8f8;
	--bs-turquoise: #18b8b2;
	--bs-turquoise-dark: #087f7d;
	--bs-teal-deep: #0c4b4d;
	--bs-sky: #d8f5f4;
	--bs-shadow: 0 18px 45px rgba(8, 72, 76, 0.10);
	--bs-radius: 8px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bs-white);
	color: var(--bs-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: var(--bs-turquoise-dark);
	text-decoration: none;
}

a:hover {
	color: var(--bs-teal-deep);
}

.container {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.narrow {
	width: min(780px, calc(100% - 40px));
}

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

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--bs-ink);
	color: var(--bs-white);
}

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

.topbar {
	background: var(--bs-teal-deep);
	color: var(--bs-white);
	font-size: 0.84rem;
}

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

.topbar__inner span:first-child {
	margin-right: auto;
	color: var(--bs-sky);
	font-weight: 700;
}

.topbar a {
	color: var(--bs-white);
}

.nav-wrap {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 74px;
}

.site-branding {
	margin-right: auto;
}

.brand-text {
	display: inline-flex;
	align-items: center;
	color: var(--bs-ink);
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1;
}

.brand-mark {
	color: var(--bs-turquoise);
}

.custom-logo-link img {
	max-height: 54px;
	width: auto;
}

.primary-navigation ul {
	display: flex;
	gap: 24px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	color: var(--bs-ink);
	font-size: 0.94rem;
	font-weight: 700;
}

.primary-navigation a:hover {
	color: var(--bs-turquoise-dark);
}

.header-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: var(--bs-radius);
	font-weight: 800;
	line-height: 1.1;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-cta,
.btn--primary {
	background: var(--bs-turquoise);
	color: var(--bs-white);
	box-shadow: 0 12px 26px rgba(24, 184, 178, 0.22);
}

.header-cta:hover,
.btn--primary:hover {
	background: var(--bs-turquoise-dark);
	color: var(--bs-white);
	transform: translateY(-1px);
}

.btn--ghost {
	background: var(--bs-white);
	border-color: var(--bs-line);
	color: var(--bs-teal-deep);
}

.btn--ghost:hover {
	border-color: var(--bs-turquoise);
	color: var(--bs-teal-deep);
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--bs-line);
	border-radius: var(--bs-radius);
	background: var(--bs-white);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--bs-ink);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(232, 248, 248, 0.95), rgba(255, 255, 255, 0.7)),
		radial-gradient(circle at 76% 20%, rgba(24, 184, 178, 0.20), transparent 30%);
	border-bottom: 1px solid var(--bs-line);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
	gap: 52px;
	align-items: center;
	min-height: 620px;
	padding-block: 72px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--bs-turquoise-dark);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--bs-ink);
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	max-width: 760px;
	font-size: clamp(2.35rem, 4vw, 4.6rem);
}

h2 {
	font-size: clamp(1.85rem, 2.6vw, 3rem);
}

h3 {
	font-size: 1.16rem;
}

p {
	margin: 0 0 1rem;
	color: var(--bs-muted);
}

.hero__lead {
	max-width: 650px;
	margin-top: 22px;
	font-size: 1.12rem;
}

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

.hero-panel {
	overflow: hidden;
	border: 1px solid rgba(24, 184, 178, 0.25);
	border-radius: var(--bs-radius);
	background: var(--bs-white);
	box-shadow: var(--bs-shadow);
}

.hero-panel__top {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 18px 20px;
	background: var(--bs-teal-deep);
	color: var(--bs-white);
	font-weight: 800;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #42f2d9;
	box-shadow: 0 0 0 6px rgba(66, 242, 217, 0.14);
}

.hero-panel__body {
	display: grid;
	gap: 0;
}

.hero-panel__body div {
	padding: 22px;
	border-bottom: 1px solid var(--bs-line);
}

.hero-panel__body div:last-child {
	border-bottom: 0;
}

.hero-panel strong,
.hero-panel span {
	display: block;
}

.hero-panel strong {
	color: var(--bs-ink);
	font-size: 1.1rem;
}

.hero-panel span {
	margin-top: 6px;
	color: var(--bs-muted);
}

.trust-strip {
	border-bottom: 1px solid var(--bs-line);
	background: var(--bs-white);
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	padding-block: 22px;
}

.trust-strip__grid div {
	padding: 14px 24px;
	border-left: 3px solid var(--bs-turquoise);
	background: var(--bs-soft);
}

.trust-strip strong,
.trust-strip span {
	display: block;
}

.trust-strip strong {
	font-size: 0.98rem;
}

.trust-strip span {
	margin-top: 4px;
	color: var(--bs-muted);
	font-size: 0.92rem;
}

.section {
	padding-block: 86px;
}

.section--tinted {
	background: var(--bs-soft);
	border-block: 1px solid var(--bs-line);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
	gap: 36px;
	align-items: end;
	margin-bottom: 36px;
}

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

.solution-card,
.insight,
.content-card,
.contact-card {
	border: 1px solid var(--bs-line);
	border-radius: var(--bs-radius);
	background: var(--bs-white);
}

.solution-card {
	min-height: 230px;
	padding: 24px;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.solution-card:hover {
	border-color: rgba(24, 184, 178, 0.55);
	transform: translateY(-2px);
	box-shadow: var(--bs-shadow);
}

.solution-card__icon {
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border-radius: 50%;
	background:
		linear-gradient(90deg, transparent 47%, var(--bs-white) 47% 53%, transparent 53%),
		linear-gradient(var(--bs-turquoise), var(--bs-turquoise));
	box-shadow: inset 0 0 0 9px var(--bs-sky);
}

.solution-card p {
	margin-top: 12px;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
	gap: 56px;
	align-items: start;
}

.split > div > p:last-child {
	margin-top: 20px;
	font-size: 1.05rem;
}

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

.steps li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 4px 18px;
	padding: 22px;
	border: 1px solid var(--bs-line);
	border-radius: var(--bs-radius);
	background: var(--bs-white);
}

.steps span {
	grid-row: span 2;
	color: var(--bs-turquoise-dark);
	font-weight: 900;
}

.steps strong {
	font-size: 1.08rem;
}

.steps p {
	margin: 0;
}

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

.insight {
	padding: 26px;
	background: linear-gradient(180deg, var(--bs-white), var(--bs-soft));
}

.insight strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.cta-band {
	padding-block: 76px;
	background: var(--bs-teal-deep);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
	color: var(--bs-white);
}

.cta-band p {
	opacity: 0.82;
}

.cta-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
	gap: 40px;
	align-items: center;
}

.contact-card {
	display: grid;
	gap: 10px;
	padding: 24px;
	background: var(--bs-white);
}

.contact-card a {
	display: flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: var(--bs-radius);
	background: var(--bs-soft);
	color: var(--bs-teal-deep);
	font-weight: 800;
}

.site-footer {
	padding-top: 54px;
	background: #0a3436;
	color: var(--bs-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
	gap: 32px;
}

.site-footer h2 {
	margin-bottom: 14px;
	color: var(--bs-white);
	font-size: 1rem;
}

.site-footer p,
.site-footer a {
	color: rgba(255, 255, 255, 0.76);
}

.brand-text--footer {
	margin-bottom: 18px;
	color: var(--bs-white);
}

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

.site-footer li {
	margin-bottom: 8px;
}

.footer-bottom {
	margin-top: 42px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.92rem;
}

.page-shell {
	padding-block: 76px;
	background: var(--bs-soft);
}

.archive-heading {
	margin-bottom: 28px;
}

.archive-heading p {
	max-width: 700px;
	margin-top: 12px;
}

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

.content-card {
	overflow: hidden;
	box-shadow: 0 8px 26px rgba(8, 72, 76, 0.06);
}

.content-card__image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
}

.content-card__body {
	padding: 30px;
}

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

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

.entry-content ul,
.entry-content ol {
	padding-left: 1.35rem;
	color: var(--bs-muted);
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--bs-turquoise);
	background: var(--bs-soft);
}

.wp-block-button__link,
button,
input[type="submit"] {
	border: 0;
	border-radius: var(--bs-radius);
	background: var(--bs-turquoise);
	color: var(--bs-white);
	font-weight: 800;
}

input,
textarea,
select {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--bs-line);
	border-radius: var(--bs-radius);
	font: inherit;
}

.navigation,
.nav-links {
	margin-top: 28px;
}

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

.error-page {
	text-align: center;
}

.error-page form {
	margin: 26px auto;
}

@media (max-width: 920px) {
	.topbar__inner {
		justify-content: flex-start;
		overflow-x: auto;
	}

	.nav-wrap {
		gap: 14px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 14px 20px 20px;
		border-bottom: 1px solid var(--bs-line);
		background: var(--bs-white);
	}

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

	.primary-navigation ul {
		display: grid;
		gap: 0;
	}

	.primary-navigation a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid var(--bs-line);
	}

	.header-cta {
		display: none;
	}

	.hero__grid,
	.split,
	.cta-band__inner,
	.section-heading {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		min-height: auto;
		padding-block: 54px;
	}

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

@media (max-width: 640px) {
	.container,
	.narrow {
		width: min(100% - 28px, 1120px);
	}

	.topbar__inner {
		gap: 16px;
		min-height: 38px;
		font-size: 0.78rem;
	}

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

	.brand-text {
		font-size: 1.34rem;
	}

	.hero__actions,
	.nav-links {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.trust-strip__grid,
	.card-grid,
	.insight-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section,
	.page-shell {
		padding-block: 56px;
	}

	.hero-panel__body div,
	.solution-card,
	.insight,
	.content-card__body,
	.contact-card {
		padding: 20px;
	}
}
