:root {
	--color-ink: #0f1720;
	--color-steel: #1c2b3a;
	--color-brass: #c9962a;
	--color-brass-soft: #e0b33d;
	--color-paper: #f7f5f1;
	--color-mist: #e8e4dc;
	--color-muted: #5c6b7a;
	--color-white: #ffffff;
	--header-h: 4.75rem;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(201, 150, 42, 0.12), transparent 55%),
		radial-gradient(900px 500px at 100% 0%, rgba(28, 43, 58, 0.08), transparent 50%),
		var(--color-paper);
	color: var(--color-ink);
	padding-top: var(--header-h);
}

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

/* Block editor / front-page content shell */
.site-main,
.wp-block-post-content {
	margin: 0;
	padding: 0;
	max-width: none;
}

.wp-block-post-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.wp-block-post-content > * {
	margin-block-start: 0;
}

/* Marketing sections: use full 1200px rail, not the narrow post content size */
.hero.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 1200px;
	width: min(100%, 1200px);
}

.section .section__lead {
	margin-bottom: 1.5rem;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	overflow: visible;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(247, 245, 241, 0.96);
	border-bottom: 1px solid rgba(15, 23, 32, 0.08);
	box-shadow: 0 8px 24px rgba(15, 23, 32, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	height: var(--header-h);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
	overflow: visible;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--color-ink);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
	overflow: visible;
}

.site-brand img {
	display: block;
	height: 60px;
	width: auto;
	max-width: none;
}

.site-brand__name {
	font-family: "DM Sans", sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-header__cta {
	flex-shrink: 0;
}

.site-nav {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

.site-nav a {
	color: var(--color-steel);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
}

.site-nav a:hover {
	color: var(--color-brass);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.65rem 1.15rem;
	border-radius: 4px;
	border: 1px solid transparent;
	font-family: "DM Sans", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

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

.btn--primary {
	background: var(--color-brass);
	color: var(--color-ink);
}

.btn--primary:hover {
	background: var(--color-brass-soft);
	color: var(--color-ink);
}

.btn--ghost {
	background: transparent;
	border-color: rgba(15, 23, 32, 0.18);
	color: var(--color-ink);
}

.btn--ghost:hover {
	border-color: var(--color-brass);
	color: var(--color-steel);
}

/* Block buttons: class lives on the wrapper — keep chrome on the link only. */
.wp-block-button.btn {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	display: inline-block;
	line-height: 0;
}

.wp-block-button.btn .wp-block-button__link.wp-element-button,
.wp-block-button.btn .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px !important;
	font-family: "DM Sans", sans-serif;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	line-height: 1;
	text-decoration: none;
	padding: 0.65rem 1.15rem !important;
	box-shadow: none !important;
	width: auto;
}

.wp-block-button.btn--primary .wp-block-button__link {
	background: var(--color-brass) !important;
	color: var(--color-ink) !important;
	border: 1px solid transparent !important;
}

.wp-block-button.btn--primary .wp-block-button__link:hover {
	background: var(--color-brass-soft) !important;
	color: var(--color-ink) !important;
}

.wp-block-button.btn--ghost .wp-block-button__link {
	background: transparent !important;
	color: var(--color-ink) !important;
	border: 1px solid rgba(15, 23, 32, 0.18) !important;
	outline: none;
}

.wp-block-button.btn--ghost .wp-block-button__link:hover {
	border-color: var(--color-brass) !important;
	color: var(--color-steel) !important;
	background: transparent !important;
}

/* Sections */
.section {
	padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
}

.section__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section__eyebrow {
	margin: 0 0 0.75rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brass);
}

.section__title {
	margin: 0 0 0.85rem;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--color-ink);
}

.section__lead {
	margin: 0;
	max-width: 48rem;
	font-size: 1.1rem;
	color: var(--color-muted);
}

.section--steel {
	background: linear-gradient(180deg, var(--color-steel) 0%, #152433 100%);
	color: var(--color-paper);
}

.section--steel .section__title,
.section--steel .section__eyebrow,
.section--steel h2,
.section--steel h3,
.section--steel .feature-band__title {
	color: var(--color-paper);
}

.section--steel .section__eyebrow {
	color: var(--color-brass-soft);
}

.section--steel .section__lead,
.section--steel .feature-band__text {
	color: rgba(247, 245, 241, 0.85);
}

.section--mist {
	background: linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 100%);
}

/* Hero */
.hero {
	position: relative;
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(3.5rem, 9vw, 6rem);
	overflow: visible;
}

.hero__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.hero__copy {
	max-width: 48rem;
	margin-bottom: 2.5rem;
}

.hero__brand {
	margin: 0 0 1rem;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(2.8rem, 7vw, 4.75rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--color-ink);
}

.hero__headline {
	margin: 0 0 1rem;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.2rem, 2.2vw, 1.55rem);
	font-weight: 500;
	line-height: 1.35;
	color: var(--color-steel);
}

.hero__support {
	margin: 0 0 1.75rem;
	max-width: none;
	font-size: 1.05rem;
	color: var(--color-muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero__visual {
	position: relative;
	z-index: 1;
	width: min(100vw - 2rem, 1500px);
	max-width: none;
	margin: 0 auto;
	margin-left: max(-1.5rem, calc(50% - min(50vw - 1rem, 750px)));
	padding: 2.4rem 0 0;
	border-radius: 12px;
	overflow: hidden;
	background: #d8dbe0;
	box-shadow:
		0 18px 28px rgba(15, 23, 32, 0.22),
		0 6px 12px rgba(15, 23, 32, 0.14);
	transform-origin: center bottom;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
	cursor: default;
}

@media (hover: hover) and (pointer: fine) {
	.hero__visual {
		cursor: pointer;
	}
}

.hero__visual::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.4rem;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(circle at 0.9rem 50%, #ff5f57 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 1.85rem 50%, #febc2e 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 2.8rem 50%, #28c840 0 0.28rem, transparent 0.3rem),
		linear-gradient(#e8eaee, #d5d8de);
	border-bottom: 1px solid rgba(15, 23, 32, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero__visual::after {
	content: "";
	position: absolute;
	top: 0.55rem;
	left: 4.25rem;
	right: 0.75rem;
	height: 1.3rem;
	border-radius: 0.4rem;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 32, 0.08);
	z-index: 3;
	pointer-events: none;
}

.hero__visual img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 0;
	border: 0;
	transform-origin: center center;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
}

.hero__visual:hover {
	z-index: 5;
}

@media (hover: hover) and (pointer: fine) {
	.hero__visual:hover {
		transform: scale(1.25);
	}
}

.hero__visual:hover img {
	transform: none;
}

.hero.is-ready .hero__copy {
	animation: rise-in 0.9s var(--ease-out) both;
}

.hero.is-ready .hero__visual {
	/* backwards only — forwards/both locks transform and blocks hover scale */
	animation: rise-in 1.05s var(--ease-out) 0.12s backwards;
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Portal hub */
.hub-widget {
	position: relative;
	margin: 2.5rem auto 0;
	max-width: 820px;
}

.hub-figure {
	margin: 0;
	filter:
		drop-shadow(0 18px 28px rgba(15, 23, 32, 0.18))
		drop-shadow(0 6px 12px rgba(15, 23, 32, 0.12));
}

.hub-figure img,
.hub-figure svg,
.portal-hub-svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.hub-figure--interactive .hub-spoke__node-wrap {
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 0.32s var(--ease-out), filter 0.32s var(--ease-out);
	cursor: pointer;
}

.hub-figure--interactive .hub-spoke:hover .hub-spoke__node-wrap,
.hub-figure--interactive .hub-spoke:focus-within .hub-spoke__node-wrap,
.hub-figure--interactive .hub-spoke.is-active .hub-spoke__node-wrap {
	transform: scale(1.28);
	filter: drop-shadow(0 10px 18px rgba(15, 23, 32, 0.35));
}

.hub-figure--interactive .hub-spoke:hover,
.hub-figure--interactive .hub-spoke:focus-within,
.hub-figure--interactive .hub-spoke.is-active {
	z-index: 2;
}

.hub-figure--interactive .hub-spoke__label {
	pointer-events: none;
}

.hub-hint {
	margin: 0 0 0.85rem;
	text-align: center;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.hub-widget.has-popup .hub-hint {
	visibility: hidden;
}

.hub-popup {
	position: absolute;
	z-index: 20;
	width: max-content;
	min-width: 16rem;
	max-width: min(28rem, calc(100% - 1.5rem));
	padding: 1rem 1.1rem 1.1rem;
	border: 1px solid rgba(15, 23, 32, 0.12);
	border-radius: 10px;
	background: #fffdf8;
	box-shadow:
		0 18px 36px rgba(15, 23, 32, 0.18),
		0 4px 12px rgba(15, 23, 32, 0.1);
	animation: hub-popup-in 0.22s var(--ease-out) both;
}

.hub-popup__close {
	position: absolute;
	top: 0.35rem;
	right: 0.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--color-muted);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.hub-popup__close:hover {
	background: rgba(15, 23, 32, 0.06);
	color: var(--color-ink);
}

.hub-popup__eyebrow {
	margin: 0 1.5rem 0.3rem 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brass);
}

.hub-popup__title {
	margin: 0 1.5rem 0.45rem 0;
	font-family: "DM Sans", sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--color-ink);
	white-space: nowrap;
}

.hub-popup__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--color-muted);
}

@keyframes hub-popup-in {
	from {
		opacity: 0;
		transform: translateY(6px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hub-figure--interactive .hub-spoke__node-wrap {
		transition: none;
	}

	.hub-figure--interactive .hub-spoke:hover .hub-spoke__node-wrap,
	.hub-figure--interactive .hub-spoke:focus-within .hub-spoke__node-wrap,
	.hub-figure--interactive .hub-spoke.is-active .hub-spoke__node-wrap {
		transform: none;
	}

	.hub-popup {
		animation: none;
	}
}

@media (max-width: 480px) {
	.hub-popup__title {
		white-space: normal;
	}
}

/* Feature bands */
.feature-band,
.feature-band.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	padding: 2.5rem 0;
	border-top: 1px solid rgba(15, 23, 32, 0.08);
	align-items: center;
	margin: 0;
}

.section > .feature-band:first-of-type,
.section .feature-band:first-of-type {
	border-top: 0;
	padding-top: 2rem;
}

.feature-band .wp-block-column {
	margin: 0;
}

.feature-band__title {
	margin: 0 0 0.65rem;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.55rem, 2.5vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.feature-band__text {
	margin: 0;
	color: var(--color-muted);
	max-width: none;
}

.feature-band__mark {
	width: 3rem;
	height: 3px;
	background: var(--color-brass);
	margin-bottom: 1rem;
}

.feature-band__aside {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	border-radius: 10px;
	overflow: visible;
	background: transparent;
	cursor: zoom-in;
}

.feature-band__aside img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	/* box-shadow keeps screenshots sharp; filter() rasterizes then blurs on scale */
	box-shadow:
		0 16px 28px rgba(15, 23, 32, 0.16),
		0 4px 10px rgba(15, 23, 32, 0.1);
	transform-origin: center center;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
	backface-visibility: hidden;
}

.feature-band__aside:hover {
	z-index: 5;
}

.feature-band__aside:hover img {
	transform: scale(1.25);
}

.section--steel .feature-band__aside img {
	box-shadow:
		0 16px 28px rgba(0, 0, 0, 0.28),
		0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Browser chrome frame (all feature images except Mobile Crew tablet) */
.feature-band__aside:not(.feature-band__aside--device) {
	padding: 2.4rem 0 0;
	border-radius: 12px;
	overflow: hidden;
	background: #d8dbe0;
	box-shadow:
		0 16px 28px rgba(15, 23, 32, 0.16),
		0 4px 10px rgba(15, 23, 32, 0.1);
	transform-origin: center center;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
}

.feature-band__aside:not(.feature-band__aside--device)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.4rem;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(circle at 0.9rem 50%, #ff5f57 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 1.85rem 50%, #febc2e 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 2.8rem 50%, #28c840 0 0.28rem, transparent 0.3rem),
		linear-gradient(#e8eaee, #d5d8de);
	border-bottom: 1px solid rgba(15, 23, 32, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.feature-band__aside:not(.feature-band__aside--device)::after {
	content: "";
	position: absolute;
	top: 0.55rem;
	left: 4.25rem;
	right: 0.75rem;
	height: 1.3rem;
	border-radius: 0.4rem;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 32, 0.08);
	z-index: 3;
	pointer-events: none;
}

.feature-band__aside:not(.feature-band__aside--device) img {
	border-radius: 0;
	box-shadow: none;
}

.feature-band__aside:not(.feature-band__aside--device):hover {
	transform: scale(1.12);
}

.feature-band__aside:not(.feature-band__aside--device):hover img {
	transform: none;
}

.section--steel .feature-band__aside:not(.feature-band__aside--device) {
	background: #2a2d33;
	box-shadow:
		0 16px 28px rgba(0, 0, 0, 0.28),
		0 4px 10px rgba(0, 0, 0, 0.18);
}

.section--steel .feature-band__aside:not(.feature-band__aside--device)::before {
	background:
		radial-gradient(circle at 0.9rem 50%, #ff5f57 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 1.85rem 50%, #febc2e 0 0.28rem, transparent 0.3rem),
		radial-gradient(circle at 2.8rem 50%, #28c840 0 0.28rem, transparent 0.3rem),
		linear-gradient(#3a3e46, #2c3036);
	border-bottom-color: rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section--steel .feature-band__aside:not(.feature-band__aside--device)::after {
	background: rgba(15, 23, 32, 0.45);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section--steel .feature-band__aside:not(.feature-band__aside--device) img {
	box-shadow: none;
}

/* iPad / tablet device frame (Mobile Crew) */
.feature-band__aside--device {
	max-width: 26.5rem;
	margin-inline: auto;
	padding: 0.8rem;
	border-radius: 1.7rem;
	overflow: visible;
	background:
		linear-gradient(155deg, #555961 0%, #2f3238 42%, #1a1c20 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.18),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35),
		0 22px 40px rgba(15, 23, 32, 0.26),
		0 6px 14px rgba(15, 23, 32, 0.14);
	transform-origin: center center;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
}

.feature-band__aside--device::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0.32rem;
	width: 0.34rem;
	height: 0.34rem;
	border-radius: 50%;
	background: #0b0c0e;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 0 0 1px rgba(80, 140, 255, 0.35);
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
}

.feature-band__aside--device::after {
	content: "";
	position: absolute;
	inset: 0.8rem;
	border-radius: 0.55rem;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
	pointer-events: none;
	z-index: 1;
}

.feature-band__aside--device img {
	border-radius: 0.55rem;
	box-shadow: none;
}

.feature-band__aside--device:hover {
	transform: scale(1.12);
}

.feature-band__aside--device:hover img {
	transform: none;
}

.section--steel .feature-band__aside--device {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		inset 0 -1px 0 rgba(0, 0, 0, 0.4),
		0 22px 40px rgba(0, 0, 0, 0.4),
		0 6px 14px rgba(0, 0, 0, 0.22);
}

.section--steel .feature-band__aside--device img {
	box-shadow: none;
}

.section--steel .feature-band {
	border-top-color: rgba(247, 245, 241, 0.12);
}

/* Feature image lightbox */
.img-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	box-sizing: border-box;
}

.img-lightbox[hidden] {
	display: none;
}

.img-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	padding: 0;
	margin: 0;
	background: rgba(15, 23, 32, 0.72);
	cursor: pointer;
}

.img-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	max-width: min(100%, 1200px);
	max-height: calc(100vh - 2.5rem);
	padding: 0;
	border-radius: 10px;
	background: transparent;
	animation: hub-popup-in 0.22s var(--ease-out) both;
}

.img-lightbox__frame {
	display: flex;
	max-width: 100%;
	max-height: calc(100vh - 2.5rem);
}

.img-lightbox__img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(100%, 1200px);
	max-height: calc(100vh - 2.5rem);
	border-radius: 10px;
	border: 1px solid rgba(247, 245, 241, 0.12);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.35),
		0 8px 16px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.img-lightbox__frame--device {
	position: relative;
	padding: 1rem;
	border-radius: 2rem;
	background:
		linear-gradient(155deg, #555961 0%, #2f3238 42%, #1a1c20 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.18),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35),
		0 24px 48px rgba(0, 0, 0, 0.4),
		0 8px 16px rgba(0, 0, 0, 0.22);
	max-width: min(100%, 980px);
}

.img-lightbox__frame--device::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0.4rem;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: #0b0c0e;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 0 0 1px rgba(80, 140, 255, 0.35);
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
}

.img-lightbox__frame--device::after {
	content: "";
	position: absolute;
	inset: 1rem;
	border-radius: 0.65rem;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
	pointer-events: none;
	z-index: 1;
}

.img-lightbox__frame--device .img-lightbox__img {
	max-width: min(100%, 940px);
	max-height: calc(100vh - 4.5rem);
	border-radius: 0.65rem;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.img-lightbox__frame--browser {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2.5rem 0 0;
	border-radius: 12px;
	overflow: hidden;
	background: #d8dbe0;
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.4),
		0 8px 16px rgba(0, 0, 0, 0.22);
	max-width: min(100%, 1200px);
}

.img-lightbox__frame--browser::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.5rem;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(circle at 0.95rem 50%, #ff5f57 0 0.3rem, transparent 0.32rem),
		radial-gradient(circle at 1.95rem 50%, #febc2e 0 0.3rem, transparent 0.32rem),
		radial-gradient(circle at 2.95rem 50%, #28c840 0 0.3rem, transparent 0.32rem),
		linear-gradient(#e8eaee, #d5d8de);
	border-bottom: 1px solid rgba(15, 23, 32, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.img-lightbox__frame--browser::after {
	content: "";
	position: absolute;
	top: 0.55rem;
	left: 4.5rem;
	right: 0.85rem;
	height: 1.4rem;
	border-radius: 0.4rem;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 32, 0.08);
	z-index: 3;
	pointer-events: none;
}

.img-lightbox__frame--browser .img-lightbox__img {
	max-width: min(100%, 1200px);
	max-height: calc(100vh - 5rem);
	border-radius: 0;
	border: 0;
	box-shadow: none;
	background: #fff;
}

.img-lightbox__frame--browser-dark {
	background: #2a2d33;
}

.img-lightbox__frame--browser-dark::before {
	background:
		radial-gradient(circle at 0.95rem 50%, #ff5f57 0 0.3rem, transparent 0.32rem),
		radial-gradient(circle at 1.95rem 50%, #febc2e 0 0.3rem, transparent 0.32rem),
		radial-gradient(circle at 2.95rem 50%, #28c840 0 0.3rem, transparent 0.32rem),
		linear-gradient(#3a3e46, #2c3036);
	border-bottom-color: rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.img-lightbox__frame--browser-dark::after {
	background: rgba(15, 23, 32, 0.45);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.img-lightbox__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 32, 0.82);
	color: #f7f5f1;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.img-lightbox__close:hover {
	background: var(--color-brass);
	color: var(--color-ink);
}

.img-lightbox__dialog:has(.img-lightbox__frame--device) .img-lightbox__close,
.img-lightbox__dialog:has(.img-lightbox__frame--browser) .img-lightbox__close {
	top: -0.35rem;
	right: -0.35rem;
}

body.has-img-lightbox {
	overflow: hidden;
}

/* Reveal on scroll */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Why 436 */
.why-grid,
.why-grid.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	margin: 2.5rem 0 0;
}

.why-grid > .wp-block-column,
.why-point {
	flex: 1 1 16rem;
	min-width: 0;
}

.why-point__title {
	margin: 0 0 0.65rem;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.15rem, 1.8vw, 1.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--color-ink);
}

.why-point__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--color-muted);
}

.why-cta,
.why-cta.wp-block-buttons {
	display: flex;
	margin-top: 2.25rem;
}

/* Name story */
.name-story,
.name-story.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	margin: 0;
}

.name-story__media {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(15, 23, 32, 0.14);
}

.name-story__media img {
	display: block;
	width: 100%;
	height: auto;
}

/* Contact */
.contact-form {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
	max-width: 40rem;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.contact-form label {
	display: grid;
	gap: 0.4rem;
	min-width: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-steel);
}

.contact-form input,
.contact-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(15, 23, 32, 0.14);
	border-radius: 4px;
	background: var(--color-white);
	color: var(--color-ink);
	font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(201, 150, 42, 0.45);
	outline-offset: 1px;
	border-color: var(--color-brass);
}

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

.contact-form .btn {
	justify-self: start;
	width: auto;
}

.contact-form__recaptcha-note {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: var(--color-muted, #6b7280);
}

.contact-form__recaptcha-note a {
	color: inherit;
	text-decoration: underline;
}

.contact-status {
	display: none;
}

/* Contact / site toast */
.site-toast {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 1100;
	width: min(100% - 2rem, 22.5rem);
	pointer-events: none;
}

.site-toast[hidden] {
	display: none;
}

.site-toast__panel {
	position: relative;
	pointer-events: auto;
	padding: 1.1rem 2.75rem 1.15rem 1.15rem;
	border-radius: 12px;
	background: #16301f;
	color: #f3faf5;
	box-shadow:
		0 18px 40px rgba(15, 23, 32, 0.28),
		0 6px 14px rgba(15, 23, 32, 0.16);
	transform: translateY(12px);
	opacity: 0;
	transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
}

.site-toast.is-visible .site-toast__panel {
	transform: translateY(0);
	opacity: 1;
}

.site-toast[data-status="error"] .site-toast__panel,
.site-toast[data-status="invalid"] .site-toast__panel,
.site-toast[data-status="captcha"] .site-toast__panel {
	background: #4a1d1d;
	color: #fff5f5;
}

.site-toast__title {
	margin: 0 0 0.3rem;
	font-family: "DM Sans", sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.site-toast__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	opacity: 0.92;
}

.site-toast__close {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: inherit;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.site-toast__close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.contact-social {
	margin: 1.35rem 0 0;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-steel);
	text-decoration: none;
	transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.social-link__icon {
	flex: 0 0 auto;
	display: block;
	color: #0a66c2;
}

.social-link:hover {
	color: var(--color-ink);
	transform: translateY(-1px);
}

.social-link:hover .social-link__icon {
	color: #004182;
}

.social-link--footer {
	font-size: 0.9rem;
	font-weight: 600;
}

/* Footer */
.site-footer {
	padding: 2rem 1.5rem;
	border-top: 1px solid rgba(15, 23, 32, 0.08);
	background: var(--color-mist);
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: space-between;
	align-items: center;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.site-footer__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.15rem;
	margin: 0;
}

@media (min-width: 768px) {
	.site-nav {
		display: flex;
	}

	.feature-band,
	.feature-band.wp-block-columns,
	.why-grid,
	.why-grid.wp-block-columns,
	.name-story,
	.name-story.wp-block-columns {
		flex-wrap: nowrap;
		gap: 3rem;
	}
}

@media (max-width: 767px) {
	.feature-band__aside,
	.hero__visual {
		cursor: default;
	}

	.hero__visual:hover,
	.feature-band__aside:hover img,
	.feature-band__aside:not(.feature-band__aside--device):hover,
	.feature-band__aside--device:hover {
		transform: none;
	}

	/* Flip bands put the image first in the DOM for desktop; keep text above on mobile. */
	.feature-band--flip .feature-band__copy {
		order: 1;
	}

	.feature-band--flip > .feature-band__aside,
	.feature-band--flip > figure.feature-band__aside,
	.feature-band--flip > .wp-block-column:not(.feature-band__copy) {
		order: 2;
	}
}

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

	.hero.is-ready .hero__copy,
	.hero.is-ready .hero__visual,
	.reveal,
	.btn {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.hero__visual img,
	.feature-band__aside img {
		transition: none !important;
	}

	.hero__visual:hover,
	.hero__visual:hover img,
	.feature-band__aside:hover img,
	.feature-band__aside--device:hover,
	.feature-band__aside:not(.feature-band__aside--device):hover {
		transform: none !important;
	}

	.img-lightbox__dialog {
		animation: none;
	}

	.site-toast__panel {
		transition: none !important;
	}
}
