/**
 * Command Communications — light theme, mobile-first
 * Base styles = narrow viewports; enhanced from min-width breakpoints up.
 */

:root {
	--canvas: #eef3fa;
	--surface: #ffffff;
	--surface-muted: #f5f8fd;
	--text: #0f1729;
	--text-soft: #334155;
	--muted: #64748b;
	--border: rgba(15, 23, 42, 0.08);
	--border-strong: rgba(15, 23, 42, 0.14);

	--blue: #0d47a1;
	--blue-mid: #1565c8;
	--blue-soft: rgba(13, 71, 161, 0.09);
	--cyan: #00838f;
	--gold: #c99700;
	--gold-bright: #e8b923;
	--gold-bg: rgba(232, 185, 35, 0.14);

	--accent-live: linear-gradient(135deg, #0d47a1 0%, #1565c8 40%, #00838f 100%);
	--accent-hosted: linear-gradient(135deg, #00838f 0%, #1565c8 100%);
	--accent-auto: linear-gradient(135deg, #6a1b9a 0%, #1565c8 55%, #00838f 100%);
	--accent-key: linear-gradient(135deg, #0d47a1 0%, #00838f 100%);

	--font-display: "Oswald", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, sans-serif;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 28px;
	--shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.05);
	--shadow-md: 0 16px 48px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 28px 80px rgba(13, 71, 161, 0.12);
	--shadow-hover: 0 24px 64px rgba(15, 23, 42, 0.12);
	--header-h: 4.25rem;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 900px) {
	:root {
		--header-h: 4.75rem;
	}
}

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

html {
	scroll-behavior: smooth;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.62;
	color: var(--text-soft);
	background-color: var(--canvas);
	background-image:
		radial-gradient(ellipse 120% 80% at 100% -10%, rgba(13, 71, 161, 0.07), transparent 52%),
		radial-gradient(ellipse 90% 60% at 0% 40%, rgba(0, 131, 143, 0.06), transparent 45%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	z-index: 300;
	padding: 0.75rem 1rem;
	background: var(--blue);
	color: #fff;
	font-weight: 700;
	border-radius: var(--radius-sm);
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.wrap {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.section {
	padding: clamp(3rem, 8vw, 6rem) 0;
	position: relative;
}

.section__label {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--blue-mid);
	margin-bottom: 0.65rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--blue-soft);
	border: 1px solid rgba(13, 71, 161, 0.12);
}

.section__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.55rem, 5vw, 2.35rem);
	color: var(--text);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.section__lead {
	max-width: 62ch;
	font-size: 1.02rem;
	color: var(--muted);
	margin: 0 0 2rem;
	line-height: 1.7;
}

.text-gold {
	color: var(--gold);
}

/* ── Header (mobile-first: compact logo, drawer nav) ── */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 200;
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.brand-lockup {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text);
	min-width: 0;
}

.brand-lockup__logo {
	height: 2.25rem;
	width: auto;
	max-width: min(220px, 58vw);
	object-fit: contain;
}

@media (min-width: 480px) {
	.brand-lockup__logo {
		height: 2.75rem;
		max-width: 260px;
	}
}

@media (min-width: 900px) {
	.brand-lockup__logo {
		height: 3rem;
		max-width: 300px;
	}
}

.nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list > li {
	position: relative;
}

.nav__list > li > a {
	display: block;
	padding: 0.6rem 0.65rem;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-soft);
	text-decoration: none;
	border-radius: var(--radius-sm);
	transition: color 0.2s, background 0.2s;
}

.nav__list > li > a:hover {
	color: var(--blue);
	background: var(--blue-soft);
}

.nav__sub {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 280px;
	padding: 0.5rem 0;
	margin: 0;
	list-style: none;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	z-index: 50;
}

.nav__list > li:hover .nav__sub,
.nav__list > li:focus-within .nav__sub {
	display: block;
}

.nav__sub a {
	display: block;
	padding: 0.55rem 1rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-soft);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0.02em;
}

.nav__sub a:hover {
	background: var(--surface-muted);
	color: var(--blue);
}

.nav__cta {
	margin-left: 0.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 100%);
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
	white-space: nowrap;
}

.nav__cta:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
	background: linear-gradient(180deg, #1976d2 0%, #0a3d91 100%);
}

.nav__toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 0.6rem 0.65rem;
	min-width: 44px;
	min-height: 44px;
	background: var(--surface-muted);
	border: 1px solid var(--border);
	cursor: pointer;
	border-radius: var(--radius-sm);
}

.nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 1px;
}

/* Desktop horizontal nav */
@media (min-width: 1024px) {
	.nav__toggle {
		display: none;
	}

	.nav {
		position: static;
		max-height: none;
		overflow: visible;
		background: transparent;
		border: none;
		padding: 0;
		transform: none;
		opacity: 1;
		pointer-events: auto;
		flex-direction: row;
	}

	.nav__list > li > a {
		padding: 0.55rem 0.75rem;
		font-size: 0.72rem;
	}
}

/* Mobile overlay nav */
@media (max-width: 1023.98px) {
	.nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		max-height: calc(100vh - var(--header-h));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		padding: 0.75rem 1.25rem 1.25rem;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.35s var(--ease), opacity 0.25s;
		box-shadow: var(--shadow-md);
	}

	.nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav__list > li > a {
		padding: 0.85rem 0.25rem;
		font-size: 0.82rem;
	}

	.nav__sub {
		position: static;
		display: none;
		box-shadow: none;
		border: none;
		background: var(--surface-muted);
		min-width: 0;
		padding: 0.25rem 0 0.75rem 0.75rem;
		border-radius: var(--radius-sm);
		margin-top: 0.25rem;
	}

	.nav__list > li:hover .nav__sub,
	.nav__list > li:focus-within .nav__sub {
		display: block;
	}

	.nav__cta {
		margin-left: 0;
		text-align: center;
		justify-content: center;
		width: 100%;
		margin-top: 0.5rem;
		min-height: 48px;
	}
}

/* ── Hero (light, stacked on small screens) ── */
.hero-cinema {
	min-height: auto;
	padding-top: calc(var(--header-h) + 1.75rem);
	padding-bottom: 2.5rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(165deg, #f0f7ff 0%, #ffffff 42%, #edf2fb 100%);
	border-bottom: 1px solid var(--border);
}

.hero-cinema::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	z-index: 3;
	background: var(--accent-live);
	opacity: 0.85;
	pointer-events: none;
}

.hero-cinema::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.92) 0%,
		rgba(240, 247, 255, 0.82) 42%,
		rgba(244, 247, 251, 0.94) 100%
	);
	pointer-events: none;
}

.hero-crossfade {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.crossfade-slide--hero {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	transition: opacity 1.45s cubic-bezier(0.45, 0, 0.25, 1);
	will-change: opacity;
}

.crossfade-slide--hero.is-active {
	opacity: 0.62;
	z-index: 1;
}

.hero-cinema__noise {
	display: none;
}

.hero-cinema__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: start;
}

@media (min-width: 900px) {
	.hero-cinema {
		min-height: min(72vh, 640px);
		padding-top: calc(var(--header-h) + 2.5rem);
		padding-bottom: 3.5rem;
		display: flex;
		align-items: center;
	}

	.hero-cinema__inner {
		grid-template-columns: 1.1fr 0.9fr;
		gap: clamp(1.5rem, 4vw, 3rem);
		align-items: center;
	}
}

.hero-kicker {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 0.75rem;
}

.hero-display {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.85rem, 6.5vw, 3rem);
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--text);
	margin: 0 0 0.75rem;
}

.hero-display em {
	font-style: normal;
	color: var(--blue);
}

.hero-tagline {
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 3.5vw, 1.35rem);
	font-weight: 500;
	color: var(--text-soft);
	text-transform: none;
	letter-spacing: 0.02em;
	margin: 0 0 1rem;
	max-width: 40ch;
	line-height: 1.35;
}

.hero-lead {
	font-size: 1.02rem;
	color: var(--muted);
	max-width: 52ch;
	margin: 0 0 1rem;
	line-height: 1.65;
}

.hero-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.hero-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-soft);
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

@media (min-width: 480px) {
	.hero-actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
}

/* Hero copy — subtle entrance (respects global reduced-motion rules) */
@media (prefers-reduced-motion: no-preference) {
	.hero-masthead > * {
		animation: masthead-in 0.75s var(--ease) backwards;
	}
	.hero-masthead .hero-kicker {
		animation-delay: 0.04s;
	}
	.hero-masthead .hero-display {
		animation-delay: 0.1s;
	}
	.hero-masthead .hero-tagline {
		animation-delay: 0.16s;
	}
	.hero-masthead .hero-lead:nth-of-type(1) {
		animation-delay: 0.22s;
	}
	.hero-masthead .hero-lead:nth-of-type(2) {
		animation-delay: 0.28s;
	}
	.hero-masthead .hero-strip {
		animation-delay: 0.34s;
	}
	.hero-masthead .hero-actions {
		animation-delay: 0.4s;
	}
}

@keyframes masthead-in {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.5rem;
	min-height: 48px;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

/* Primary CTA — logo blues (.btn--gold name kept for existing markup) */
.btn--gold,
.btn--primary {
	background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 100%);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: var(--shadow-sm);
}

.btn--gold:hover,
.btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
	background: linear-gradient(180deg, #1976d2 0%, #0a3d91 100%);
}

.btn--ghost {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--surface);
}

.btn--ghost:hover {
	background: var(--blue-soft);
}

.hero-card {
	position: relative;
	border-radius: var(--radius-lg);
	padding: 1.35rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.hero-card__phone {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 4vw, 1.85rem);
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--text);
	margin: 0 0 0.35rem;
}

.hero-card__phone a {
	color: inherit;
	text-decoration: none;
}

.hero-card__note {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.55;
	max-width: 36ch;
}

.hero-wave {
	display: none;
}

/* Rotating brand banners — full images visible (contain), padded like .wrap */
.brand-banner-band {
	position: relative;
	line-height: 0;
	border-block: 1px solid var(--border);
	background: var(--surface-muted);
}

/* Brand banner strip: always show full artwork (contain — no crop). Taller strip = larger visible image. */
.banner-crossfade {
	position: relative;
	height: clamp(140px, 28vw, 320px);
	overflow: hidden;
	background: var(--surface-muted);
}

.banner-crossfade .crossfade-slide--banner {
	position: absolute;
	inset: 0.45rem 1.25rem;
	width: calc(100% - 2.5rem);
	height: calc(100% - 0.9rem);
	object-fit: contain;
	object-position: center;
	opacity: 0;
	transition: opacity 1.25s cubic-bezier(0.45, 0, 0.25, 1);
	will-change: opacity;
}

.banner-crossfade .crossfade-slide--banner.is-active {
	opacity: 1;
	z-index: 1;
}

.carousel-dots {
	display: none;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0.55rem 1rem 0.65rem;
}

.carousel-dots:not(:empty) {
	display: flex;
}

.carousel-dots--banner {
	padding-bottom: 0.35rem;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.22);
	cursor: pointer;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.carousel-dot:hover {
	background: rgba(13, 71, 161, 0.45);
	transform: scale(1.15);
}

.carousel-dot.is-active {
	background: var(--blue);
	transform: scale(1.28);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.showcase-carousel {
	position: relative;
}

@media (max-width: 767.98px) {
	.showcase__grid--carousel {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 1.15rem;
		padding: 0.35rem 0 1rem;
		margin-inline: -1.25rem;
		padding-inline: 1.25rem;
		scrollbar-width: thin;
	}

	.showcase__grid--carousel .show-card {
		flex: 0 0 min(85vw, 360px);
		max-width: 360px;
		scroll-snap-align: center;
	}
}

@media (min-width: 768px) {
	.showcase__grid--carousel {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(0.85rem, 2vw, 1.25rem);
		overflow: visible;
		margin-inline: 0;
		padding-inline: 0;
		align-items: stretch;
	}

	.showcase__grid--carousel .show-card {
		flex: none;
		max-width: none;
		min-height: 100%;
	}
}

@media (min-width: 1024px) {
	.showcase__grid--carousel .show-card {
		flex-direction: row;
		align-items: stretch;
	}

	.showcase__grid--carousel .show-card__media {
		flex: 0 0 34%;
		max-width: 34%;
		max-height: none;
		min-height: 6.75rem;
		aspect-ratio: auto;
		align-self: stretch;
	}

	.showcase__grid--carousel .show-card__body {
		flex: 1;
		min-width: 0;
		padding: 0.85rem 1rem 1rem;
		justify-content: center;
	}
}

/* ── Showcase trio ── */
.showcase {
	padding-bottom: 1rem;
}

.showcase__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 720px) {
	.showcase__grid:not(.showcase__grid--carousel) {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.showcase__grid:not(.showcase__grid--carousel) {
		grid-template-columns: repeat(3, 1fr);
	}
}

.show-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.35s var(--ease), border-color 0.25s, box-shadow 0.35s var(--ease);
	text-decoration: none;
	color: inherit;
	min-height: 100%;
}

.show-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	z-index: 2;
	background: var(--accent-live);
	opacity: 0.95;
	pointer-events: none;
}

.show-card:hover {
	transform: translateY(-8px) scale(1.01);
	border-color: rgba(13, 71, 161, 0.18);
	box-shadow: var(--shadow-lg);
}

.show-card__media {
	/* Compact landscape slot — keeps trio cards visually lighter than hero/split imagery */
	aspect-ratio: 2 / 1;
	max-height: clamp(104px, 18vw, 168px);
	overflow: hidden;
	background: var(--surface-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
}

.show-card__media img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: transform 0.45s var(--ease);
	align-self: center;
	flex-shrink: 0;
}

.show-card:hover .show-card__media img {
	transform: scale(1.02);
}

.show-card__body {
	padding: 1.15rem 1.15rem 1.35rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.show-card__kicker {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 0.35rem;
}

.show-card__title {
	font-family: var(--font-display);
	font-size: 1.12rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--text);
	margin: 0 0 0.55rem;
	line-height: 1.2;
}

.show-card__text {
	margin: 0;
	font-size: 0.94rem;
	color: var(--muted);
	line-height: 1.55;
	flex: 1;
}

.show-card__foot {
	margin-top: 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
}

/* ── Section bands & editorial polish ── */
.section--stripe {
	position: relative;
	overflow: hidden;
}

.section--stripe-live {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 246, 255, 0.96) 55%, rgba(244, 247, 251, 1) 100%);
}

.section--stripe-hosted {
	background: linear-gradient(185deg, rgba(245, 251, 252, 1) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(238, 243, 250, 1) 100%);
}

.section--stripe-auto {
	background: linear-gradient(175deg, rgba(248, 245, 252, 0.75) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(237, 242, 252, 1) 100%);
}

.section--stripe-key {
	background: linear-gradient(180deg, #0d47a1 0%, #122c5c 100%);
	color: rgba(255, 255, 255, 0.92);
}

.section--stripe-key .section__label {
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
}

.section--stripe-key .section__title {
	color: #fff;
}

.section--stripe-key .section__lead {
	color: rgba(226, 232, 240, 0.92);
}

.section--showcase {
	padding-top: clamp(3.5rem, 10vw, 6.5rem);
}

/* Full-bleed canvas sections alternate with band sections — contact sits on solid surface */
.section--surface {
	background: var(--surface);
	border-block: 1px solid var(--border);
}

.section__lead--key-close {
	margin-top: 2rem;
	margin-bottom: 0;
}

.contact-intro .section__lead {
	margin-bottom: 1rem;
}

.contact-block__phone {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.9rem);
	font-weight: 600;
	color: var(--blue);
	line-height: 1.2;
}

.contact-block__phone a {
	color: inherit;
	text-decoration: none;
}

.contact-block__meta {
	margin: 0 0 1rem;
	color: var(--muted);
	line-height: 1.55;
}

.contact-block__hint {
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.form-panel .form-stack {
	margin-bottom: 1rem;
}

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

.footer-tagline {
	margin: 0;
	max-width: 42ch;
	line-height: 1.65;
}

.section__pullquote {
	margin: 1.75rem 0 0;
	padding: 1.25rem 1.35rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--muted);
	border-left: 4px solid var(--blue-mid);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: linear-gradient(90deg, var(--blue-soft), transparent 65%);
}

/* ── Feature cards (replace accordions) ── */
.feature-grid {
	display: grid;
	gap: 1.35rem;
	grid-template-columns: 1fr;
	counter-reset: feat;
}

@media (min-width: 640px) {
	.feature-grid:not(.feature-grid--hosted) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.feature-grid:not(.feature-grid--hosted) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

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

@media (min-width: 560px) {
	.feature-grid--hosted {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.feature-card {
	position: relative;
	counter-increment: feat;
	padding: 1.55rem 1.45rem 1.6rem;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	background: var(--accent-live);
	opacity: 0.95;
}

.feature-grid--hosted .feature-card::before {
	background: var(--accent-hosted);
}

.feature-grid--auto .feature-card::before {
	background: var(--accent-auto);
}

.feature-card::after {
	content: counter(feat, decimal-leading-zero);
	position: absolute;
	top: 1.15rem;
	right: 1.15rem;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1;
	color: rgba(13, 71, 161, 0.06);
	pointer-events: none;
}

.feature-grid--hosted .feature-card::after {
	color: rgba(0, 131, 143, 0.08);
	font-size: clamp(1.85rem, 4vw, 2.5rem);
}

.feature-grid--auto .feature-card::after {
	color: rgba(106, 27, 154, 0.07);
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: rgba(13, 71, 161, 0.15);
}

.feature-card--compact {
	padding: 1.15rem 1.2rem 1.25rem;
}

.feature-card--compact .feature-card__title {
	font-size: 1rem;
	margin-bottom: 0.45rem;
}

.feature-card--compact .feature-card__text {
	font-size: 0.92rem;
}

.feature-card__title {
	position: relative;
	z-index: 1;
	font-family: var(--font-display);
	font-size: 1.08rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text);
	margin: 0 0 0.65rem;
	padding-right: 3.25rem;
	line-height: 1.25;
}

.feature-card__text {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.65;
}

/* ── Key pillars ── */
.pillar-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.35rem;
}

@media (min-width: 720px) {
	.pillar-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.pillar-card {
	position: relative;
	padding: 2rem 1.5rem 1.85rem;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
	transition: transform 0.35s var(--ease), background 0.25s;
}

.pillar-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.12);
}

.pillar-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.15rem;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(21, 101, 192, 0.45), rgba(255, 255, 255, 0.12));
	color: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.pillar-card__title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 0.55rem;
	line-height: 1.25;
}

.pillar-card__text {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.65;
	color: rgba(226, 232, 240, 0.92);
}

/* ── Split band ── */
.split-band {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.split-band {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 5vw, 3.5rem);
	}
}

.split-band__visual img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	width: 100%;
	max-height: clamp(150px, 34vw, 260px);
	object-fit: contain;
	object-position: center;
}

.split-band__visual--frame {
	position: relative;
	border-radius: var(--radius-xl);
	padding: 0.45rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(227, 241, 255, 0.85));
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(13, 71, 161, 0.12);
}

.split-band__visual--frame img {
	position: relative;
	z-index: 1;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
	width: 100%;
	max-height: clamp(150px, 34vw, 260px);
	object-fit: contain;
	object-position: center;
}

/* ── Key points ── */
.points {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

@media (min-width: 600px) {
	.points {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.points {
		grid-template-columns: repeat(3, 1fr);
	}
}

.point {
	position: relative;
	padding: 1.35rem 1.25rem 1.4rem;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--accent-live);
	border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.point:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.point strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--blue);
	margin-bottom: 0.35rem;
}

.point p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.55;
}

/* ── Contact panel ── */
.contact-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.contact-shell {
		grid-template-columns: 1fr 1.05fr;
		gap: clamp(2rem, 5vw, 3rem);
	}
}

.form-panel {
	background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: clamp(1.35rem, 4vw, 2rem);
	box-shadow: var(--shadow-md);
}

.form-panel label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.35rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	min-height: 48px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	font-family: inherit;
	font-size: 1rem;
	background: var(--surface);
	color: var(--text);
	transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-panel input:focus-visible,
.form-panel select:focus-visible,
.form-panel textarea:focus-visible {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px var(--blue-soft);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

@media (min-width: 540px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-note {
	margin-top: 0.85rem;
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 2.75rem 0 1.75rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	margin-bottom: 2rem;
}

@media (min-width: 600px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.footer-grid {
		grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

.footer-brand {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 0.65rem;
}

.footer-col h4 {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	margin: 0 0 0.85rem;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.footer-col a {
	color: var(--text-soft);
	text-decoration: none;
}

.footer-col a:hover {
	color: var(--blue);
}

.footer-bottom {
	padding-top: 1.75rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--muted);
}

@media (min-width: 600px) {
	.footer-bottom {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
}

/* ── Reveal & staggered entrances ── */
[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

[data-reveal-stagger] > * {
	opacity: 0;
	transform: translateY(18px);
}

@media (prefers-reduced-motion: no-preference) {
	[data-reveal-stagger].is-visible > * {
		animation: rise-in 0.68s var(--ease) forwards;
	}

	[data-reveal-stagger].is-visible > *:nth-child(1) {
		animation-delay: 0.05s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(2) {
		animation-delay: 0.11s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(3) {
		animation-delay: 0.17s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(4) {
		animation-delay: 0.23s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(5) {
		animation-delay: 0.29s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(6) {
		animation-delay: 0.35s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(7) {
		animation-delay: 0.41s;
	}
	[data-reveal-stagger].is-visible > *:nth-child(8) {
		animation-delay: 0.47s;
	}
}

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

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	[data-reveal-stagger] > * {
		opacity: 1;
		transform: none;
	}
}

/* ── Inner pages ── */
.prose {
	max-width: 72ch;
}

.prose h2 {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text);
	margin: 2rem 0 1rem;
}

.prose p,
.prose li {
	color: var(--muted);
	line-height: 1.7;
}

.prose-cta {
	margin-top: 2rem;
	margin-bottom: 0;
}

.page-hero {
	padding: calc(var(--header-h) + 1.75rem) 0 1.5rem;
	border-bottom: 1px solid var(--border);
	background: var(--surface);
}

.page-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 5vw, 2.35rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text);
	margin: 0 0 0.65rem;
	line-height: 1.15;
}

.page-hero .lead {
	margin: 0;
	font-size: 1.05rem;
	color: var(--muted);
	max-width: 62ch;
}
