/* Generated by kindling-onboard. Do not edit by hand — re-run `kindling-onboard generate`. */

/* Default :focus-visible ring */
:where(a, button, .wp-element-button, input, select, textarea, [tabindex]):focus-visible {
	outline: var(--wp--custom--motion--focus-ring--outline, 2px solid var(--wp--preset--color--theme-04));
	outline-offset: var(--wp--custom--motion--focus-ring--outline-offset, 2px);
}

:where(a, button, .wp-element-button, input, select, textarea, [tabindex]):focus:not(:focus-visible) {
	outline: none;
}

/* Starter-reset repair: svg{max-width:100%} renders the 24px nav-toggle icon 0-wide */
.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
	max-width: none;
}

@keyframes kindling-reveal-fade-up {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

.is-style-reveal-fade-up {
	opacity: 0;
	will-change: opacity, transform;
}

.is-style-reveal-fade-up.is-revealed {
	animation: kindling-reveal-fade-up 200ms cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes kindling-reveal-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.is-style-reveal-fade-in {
	opacity: 0;
	will-change: opacity, transform;
}

.is-style-reveal-fade-in.is-revealed {
	animation: kindling-reveal-fade-in 200ms cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes kindling-reveal-scale-in {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

.is-style-reveal-scale-in {
	opacity: 0;
	will-change: opacity, transform;
}

.is-style-reveal-scale-in.is-revealed {
	animation: kindling-reveal-scale-in 320ms cubic-bezier(0.3, 0, 0, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	[class*="is-style-reveal-"] {
		opacity: 1;
		transform: none;
	}
}


/* Button :focus-visible and :disabled (generated from tokens.buttons.variants.*) */
.wp-element-button:not([class*="is-style-"]):where(:focus-visible), .wp-block-button__link:not([class*="is-style-"]):where(:focus-visible) {
	background-color: transparent;
	color: var(--wp--preset--color--theme-01);
	border-color: var(--wp--preset--color--theme-06);
}

.wp-element-button:not([class*="is-style-"]):where(:disabled, [aria-disabled="true"]), .wp-block-button__link:not([class*="is-style-"]):where(:disabled, [aria-disabled="true"]) {
	background-color: var(--wp--preset--color--theme-05);
	color: var(--wp--preset--color--theme-01);
	border-color: var(--wp--preset--color--theme-05);
	cursor: not-allowed;
	pointer-events: none;
}

.wp-element-button.is-style-outline:where(:focus-visible), .wp-block-button__link.is-style-outline:where(:focus-visible) {
	background-color: transparent;
	color: var(--wp--preset--color--theme-01);
	border-color: var(--wp--preset--color--theme-06);
}

.wp-element-button.is-style-outline:where(:disabled, [aria-disabled="true"]), .wp-block-button__link.is-style-outline:where(:disabled, [aria-disabled="true"]) {
	background-color: var(--wp--preset--color--theme-05);
	color: var(--wp--preset--color--theme-01);
	border-color: var(--wp--preset--color--theme-05);
	cursor: not-allowed;
	pointer-events: none;
}

.wp-element-button.is-style-link:where(:focus-visible), .wp-block-button__link.is-style-link:where(:focus-visible) {
	color: var(--wp--preset--color--theme-01);
	border-color: var(--wp--preset--color--theme-06);
}

.wp-element-button.is-style-link:where(:disabled, [aria-disabled="true"]), .wp-block-button__link.is-style-link:where(:disabled, [aria-disabled="true"]) {
	color: var(--wp--preset--color--theme-05);
	cursor: not-allowed;
	pointer-events: none;
}

/* WHY: Figma sections 33390:5965 (Industries) and 33390:6025 (Capabilities) carry a
   topographic-wave texture as a frame FILL with a color-dodge blend. Core group blocks
   cannot express image fills with blend modes, so the texture is painted on ::before
   (LDT precedent, reference_ldt_team_cta_blend_texture). Children lift to z-index:1 so
   the dodge blends only against the section's navy, not the cards. Client QA 2026-08-25. */
.cmp-home-industries,
.cmp-home-capabilities { position: relative; }
.cmp-home-industries::before,
.cmp-home-capabilities::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: url(../images/compass-bg-texture.jpg) center / cover no-repeat;
	mix-blend-mode: color-dodge;
	opacity: 0.35;
}
.cmp-home-capabilities::before { transform: scaleX(-1); }
.cmp-home-industries > *,
.cmp-home-capabilities > * { position: relative; z-index: 1; }
