













/* Homepage FAQ disclosure: grid-rows needs no JS height measurement, so an
   answer opened at desktop stays complete after resizing to mobile. */
[data-accordion-content] {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition:
		grid-template-rows var(--motion-ui) var(--tle-ease-out),
		opacity var(--motion-ui) var(--tle-ease-out);
}
[data-accordion-item][data-open="true"] [data-accordion-content] {
	grid-template-rows: 1fr;
	opacity: 1;
}
[data-accordion-content] > div {
	overflow: hidden;
	min-height: 0;
}
.tle-faq-marker {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1;
	color: #737373;
	flex: none;
	transition: transform var(--motion-fast) var(--tle-ease-out);
}
[data-accordion-item][data-open="true"] .tle-faq-marker {
	transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
	[data-accordion-content],
	.tle-faq-marker {
		transition: none;
	}
}







[data-tab-panel] {
	display: none;
}
[data-tab-panel][data-active="true"] {
	display: block;
}
[data-tab-trigger] {
	cursor: pointer;
}


[data-nav-menu] {
	transition:
		opacity var(--motion-ui) var(--tle-ease-out),
		transform var(--motion-ui) var(--tle-ease-out);
}
@media (max-width: 767px) {
	[data-nav-menu][data-open="false"] {
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
	}
	[data-nav-menu][data-open="true"] {
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
}

.clone-hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			120% 80% at 50% 118%,
			rgba(255, 170, 60, 0.55) 0%,
			rgba(255, 120, 30, 0.22) 28%,
			rgba(0, 0, 0, 0) 60%
		),
		radial-gradient(
			60% 40% at 50% 110%,
			rgba(255, 220, 150, 0.6) 0%,
			rgba(0, 0, 0, 0) 55%
		);
	mix-blend-mode: screen;
}



















[data-nav-menu][data-open="true"] {
	max-height: 80vh;
	opacity: 1;
}


/* The precompiled template sets `html { scroll-behavior: smooth }` (main.css
   :3574). Override it here: browser smooth scroll is distance-dependent, so a
   hero-to-FAQ jump took ~2s and also fought the fixed-duration scroll in app.js. */
html {
	scroll-behavior: auto;
}

/* ---- TLE additions: anchor offsets ----
   Global smooth scrolling is deliberately NOT used: browser smooth scroll is
   distance-dependent, so a hero-to-FAQ jump took ~2s. js/app.js runs a fixed
   420ms scroll instead, and falls back to an instant jump under reduced motion. */
[id] {
	scroll-margin-top: 88px;
}

/* ---- Cross-document view transitions (progressive enhancement) ---- */
@view-transition {
	navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: 200ms;
	animation-timing-function: var(--tle-ease-out);
}
@media (prefers-reduced-motion: reduce) {
	@view-transition {
		navigation: none;
	}
}

/* ---- Lead capture pipeline (bento card B) ---- */
.tle-pipeline {
	gap: 10px;
}
.tle-pipeline-rail {
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 5px;
	width: 2px;
	background: #ececec;
	border-radius: 2px;
}
.tle-step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 10px;
	padding: 8px 10px 8px 0;
}
.tle-step-dot {
	position: relative;
	z-index: 1;
	width: 12px;
	height: 12px;
	flex: none;
	border-radius: 999px;
	background: #fff;
	border: 2px solid #d4d4d4;
}
/* ---- Method section ---- */
.tle-method-rail {
	height: 2px;
	width: 100%;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}
.tle-method-rail::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #c6f24e;
	transform-origin: left;
	transform: scaleX(0);
}
html:not(.js) .tle-method-rail::after {
	transform: scaleX(1);
}
.tle-method-rail.is-visible::after {
	animation: tle-rail-fill 1.2s var(--tle-ease-out) forwards;
}
@keyframes tle-rail-fill {
	to {
		transform: scaleX(1);
	}
}
html.js .tle-method-step {
	opacity: 0;
	transform: translateY(14px);
}
.tle-method-step {
	transition:
		opacity 0.6s var(--tle-ease-out),
		transform 0.6s var(--tle-ease-out);
	transition-delay: calc(var(--i) * 90ms);
}
html.js .tle-method-step.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tle-method-rail::after {
		transform: scaleX(1);
		animation: none;
	}
	html.js .tle-method-step,
	.tle-method-step {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* ---- Contrast: muted text on the warm page background ---- */
.faq-answer {
	color: #595959;
}

/* ================================================================
   TLE round-2 system: motion tokens, nav, hero, carousel, bento
   ================================================================ */
:root {
	--tle-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--tle-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
	--motion-fast: 160ms;
	--motion-ui: 220ms;
	--motion-section: 600ms;
	--tle-volt: #c6f24e;
	--tle-ink: #161614;
}

/* ---- Navigation: fixed, hero-width, context-aware ----
   Fixed (not sticky) so the dark hero starts at the top of the page and the
   nav floats over it. Theme flips via data-theme, driven by the scroll
   position relative to [data-hero-dark]; only colors/shadow animate. */
.tle-nav {
	position: fixed;
	top: 14px;
	left: 0;
	right: 0;
	z-index: 60;
	background: transparent;
	padding: 0 32px;
	view-transition-name: tle-nav;
}
@media (max-width: 767px) {
	.tle-nav {
		padding: 0 14px;
	}
}
.tle-nav-shell {
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
	background: rgba(240, 239, 236, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid #e3e1db;
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(10, 10, 10, 0.05);
	transition:
		background-color var(--motion-ui) var(--tle-ease-out),
		border-color var(--motion-ui) var(--tle-ease-out),
		box-shadow var(--motion-ui) var(--tle-ease-out);
}
.tle-nav[data-scrolled="true"] .tle-nav-shell {
	box-shadow: 0 12px 32px rgba(10, 10, 10, 0.1);
}
.tle-nav-link {
	color: #26251f;
	transition:
		color var(--motion-fast) var(--tle-ease-out),
		opacity var(--motion-fast) var(--tle-ease-out);
}
.tle-nav-link:hover {
	opacity: 0.65;
}
.tle-nav-link[aria-current="page"] {
	text-decoration: underline;
	text-underline-offset: 6px;
}
.tle-nav[data-theme="dark"] .tle-nav-shell {
	background: rgba(12, 12, 11, 0.55);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.tle-nav[data-theme="dark"] .tle-nav-link {
	color: #f2f1ec;
}
.tle-nav[data-theme="dark"] [data-nav-toggle] {
	color: #f2f1ec;
}
::view-transition-old(tle-nav),
::view-transition-new(tle-nav) {
	animation-duration: 200ms;
	animation-timing-function: var(--tle-ease-out);
}
.tle-nav-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}










/* ---- Hero actions ---- */
.tle-hero-actions {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 24px;
}
.tle-hero-actions > a {
	min-height: 44px;
}

@media (max-width: 1023px) {
	.tle-hero-actions {
		gap: 12px 16px;
	}
}





/* ---- Method: three macro phases, 3x2 desktop, mobile timeline ---- */
.tle-method-phases {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.tle-phase-name {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8b8b8b;
	margin-bottom: 14px;
}
.tle-phase-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tle-method-step {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	padding: 24px;
}
@media (max-width: 1023px) {
	.tle-method-phases {
		grid-template-columns: 1fr;
		gap: 28px;
		position: relative;
		padding-left: 18px;
	}
	.tle-method-phases::before {
		content: "";
		position: absolute;
		left: 4px;
		top: 8px;
		bottom: 8px;
		width: 2px;
		background: rgba(198, 242, 78, 0.35);
		border-radius: 2px;
	}
}

/* ---- One-shot play system ----
   Base markup shows the final, settled state. When JS adds .play,
   entrance animations run once (fill both). Reduced motion and no-JS
   keep the settled state. */
@media (prefers-reduced-motion: no-preference) {
	html.js [data-play].play .tle-j-cta {
		animation: tle-cta-ring 0.8s var(--tle-ease-out) calc(0.4s + var(--seq, 0) * var(--tle-seq-step, 0s));
	}
	html.js [data-play].play .tle-j-check {
		animation: tle-fade-up 0.3s var(--tle-ease-out) calc(1.05s + var(--seq, 0) * var(--tle-seq-step, 0s) + var(--i) * 0.25s) both;
	}
	html.js .tle-pipeline.play .tle-step-dot {
		animation: tle-dot-once 0.5s var(--tle-ease-out) calc(0.1s + var(--seq, 0) * var(--tle-seq-step, 0s) + var(--i) * 0.3s) both;
	}
	html.js .tle-ai-desk.play .tle-ai-draft {
		animation: tle-emph 0.7s var(--tle-ease-out) calc(0.4s + var(--seq, 0) * var(--tle-seq-step, 0s)) both;
	}
	html.js .tle-ai-desk.play .tle-ai-approve {
		animation: tle-cta-ring 0.9s var(--tle-ease-out) calc(1s + var(--seq, 0) * var(--tle-seq-step, 0s));
	}
	html.js .tle-ai-desk.play .tle-ai-done svg {
		animation: tle-pop 0.4s var(--tle-ease-out) calc(1.5s + var(--seq, 0) * var(--tle-seq-step, 0s)) both;
	}
	html.js .tle-results.done .tle-dot-ind {
		animation: tle-pop 0.35s var(--tle-ease-out) calc(var(--i, 0) * 0.12s) both;
	}
	html.js .tle-ops.play .tle-ops-line-fill {
		animation: tle-line-draw 1.2s var(--tle-ease-in-out) calc(0.7s + var(--seq, 0) * var(--tle-seq-step, 0s)) both, tle-ambient 15s ease-in-out calc(3s + var(--seq, 0) * var(--tle-seq-step, 0s)) infinite;
	}
	html.js .tle-ops.play .tle-ops-signal {
		animation: tle-signal-run 1.2s var(--tle-ease-in-out) calc(0.7s + var(--seq, 0) * var(--tle-seq-step, 0s)) both;
	}
	html.js .tle-ops.play .tle-ops-s {
		animation:
			tle-status-in 0.25s var(--tle-ease-out) calc(0.2s + var(--si) * 0.75s + var(--seq, 0) * var(--tle-seq-step, 0s)) both,
			tle-status-out 0.25s var(--tle-ease-out) calc(0.95s + var(--si) * 0.75s + var(--seq, 0) * var(--tle-seq-step, 0s)) both;
	}
	html.js .tle-ops.play .tle-ops-s-final {
		animation: tle-status-in 0.25s var(--tle-ease-out) calc(0.2s + var(--si) * 0.75s + var(--seq, 0) * var(--tle-seq-step, 0s)) both;
	}
}
@keyframes tle-fade-up {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes tle-cta-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(198, 242, 78, 0.7);
	}
	100% {
		box-shadow: 0 0 0 10px rgba(198, 242, 78, 0);
	}
}
@keyframes tle-dot-once {
	from {
		border-color: #d4d4d4;
		background: #fff;
		box-shadow: 0 0 0 4px rgba(198, 242, 78, 0.4);
	}
	to {
		border-color: #161614;
		background: #c6f24e;
		box-shadow: none;
	}
}
@keyframes tle-line-draw {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}
@keyframes tle-signal-run {
	from {
		left: 0%;
		opacity: 1;
	}
	95% {
		opacity: 1;
	}
	to {
		left: calc(100% - 8px);
		opacity: 0;
	}
}
@keyframes tle-status-out {
	to {
		opacity: 0;
		transform: translateY(-4px);
	}
}
@keyframes tle-status-in {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes tle-ambient {
	0%, 100% {
		opacity: 0.55;
	}
	50% {
		opacity: 1;
	}
}

/* ---- Card A journey pieces (settled state) ---- */
.tle-j-cta {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	border-radius: 8px;
	background: var(--tle-volt);
	color: var(--tle-ink);
	font-size: 11px;
	font-weight: 600;
	padding: 6px 12px;
}
.tle-j-qual {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #737373;
	border: 1px dashed #d9d7d0;
	border-radius: 8px;
	padding: 6px 10px;
	width: fit-content;
}
.tle-j-check {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	border-radius: 999px;
	background: #f4f8e8;
	border: 1px solid rgba(22, 22, 20, 0.12);
	color: #2b2b28;
	font-size: 11px;
	font-weight: 500;
	padding: 4px 11px;
}
@media (max-width: 639px) {
	.tle-j-qual {
		display: none;
	}
}

/* ---- Card B pipeline settled state ---- */
.tle-step-dot {
	border-color: #161614;
	background: #c6f24e;
}

/* ---- Card C ops workflow ---- */
.tle-ops {
	position: absolute;
	inset: auto 16px 16px 16px;
	z-index: 60;
}
.tle-ops-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.tle-ops-label {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8b8b8b;
}
.tle-ops-status {
	position: relative;
	display: inline-flex;
	min-height: 22px;
	align-items: center;
}
.tle-ops-s {
	font-size: 11px;
	font-weight: 500;
	border-radius: 999px;
	padding: 3px 10px;
	background: rgba(198, 242, 78, 0.14);
	color: var(--tle-volt);
	white-space: nowrap;
	position: absolute;
	right: 0;
	opacity: 0;
}
.tle-ops-s-final {
	position: static;
}
html:not(.js) .tle-ops-s-final,
.tle-ops.settled-final .tle-ops-s-final {
	opacity: 1;
}
html.js .tle-ops:not(.play):not(.settled-final) .tle-ops-s[style*="--si:0"] {
	opacity: 1;
}
.tle-ops-line {
	position: relative;
	height: 2px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 2px;
	margin: 0 6px 10px;
	overflow: visible;
}
.tle-ops-line-fill {
	position: absolute;
	inset: 0;
	background: var(--tle-volt);
	border-radius: 2px;
	transform-origin: left;
	opacity: 0.85;
}
.tle-ops-signal {
	position: absolute;
	top: -3px;
	left: calc(100% - 8px);
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--tle-volt);
	box-shadow: 0 0 10px rgba(198, 242, 78, 0.8);
	opacity: 0;
}
.tle-ops-nodes {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	flex-wrap: wrap;
}
.tle-ops-node {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #d4d4d4;
	background: rgba(10, 10, 10, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	padding: 5px 11px;
	white-space: nowrap;
}
.tle-ops-start {
	border-color: rgba(198, 242, 78, 0.6);
	color: var(--tle-volt);
}
@media (max-width: 639px) {
	.tle-ops-hide-m {
		display: none;
	}
}
.tle-ops-spot {
	position: absolute;
	inset: 0;
	z-index: 55;
	pointer-events: none;
	opacity: 0;
	background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(198, 242, 78, 0.08), transparent 70%);
	transition: opacity var(--motion-ui) var(--tle-ease-out);
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.bg-natural-black:hover > .tle-ops-spot,
	.bg-natural-black:hover .tle-ops-spot {
		opacity: 1;
	}
}

/* ---- Card D typing ---- */
.tle-caret {
	display: inline-block;
	width: 1px;
	height: 0.95em;
	background: #737373;
	vertical-align: text-bottom;
	margin-left: 1px;
	opacity: 0;
}
html.js [data-typewriter].typing .tle-caret {
	opacity: 1;
	animation: tle-caret-blink 1s steps(1) infinite;
}
@keyframes tle-caret-blink {
	50% {
		opacity: 0;
	}
}
@media (prefers-reduced-motion: reduce) {
	html.js [data-typewriter].typing .tle-caret {
		animation: none;
	}
}

/* ---- Card E AI flow ---- */







/* ---- Reveal hardening: never leave content invisible ---- */
html.js .reveal-safe {
	opacity: 1 !important;
	transform: none !important;
}


/* ---- sr-only (not present in the compiled template CSS) ---- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* ================================================================
   Utilities used in TLE markup that the precompiled main.css lacks
   ================================================================ */
.bg-\[\#161614\] {
	background-color: #161614;
}
.bg-\[\#c6f24e\] {
	background-color: #c6f24e;
}
.bg-neutral-400 {
	background-color: #a1a1a1;
}
.border-white\/10 {
	border-color: rgba(255, 255, 255, 0.1);
}
.hover\:text-black:hover {
	color: #000;
}
.leading-snug {
	line-height: 1.375;
}
.mask-\[linear-gradient\(0deg\,rgba\(255\,255\,255\,0\)_0\%\,rgba\(255\,255\,255\,1\)_62\%\)\] {
	mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 62%);
	-webkit-mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 62%);
}
.max-w-xs {
	max-width: 20rem;
}
.max-w-sm {
	max-width: 24rem;
}
.max-w-md {
	max-width: 28rem;
}
.max-w-xl {
	max-width: 36rem;
}
.max-w-2xl {
	max-width: 42rem;
}
.max-w-3xl {
	max-width: 48rem;
}
.mt-2\.5 {
	margin-top: 0.625rem;
}
.mt-5 {
	margin-top: 1.25rem;
}
.pb-4 {
	padding-bottom: 1rem;
}
.pl-5 {
	padding-left: 1.25rem;
}
.pt-5 {
	padding-top: 1.25rem;
}
.pt-6 {
	padding-top: 1.5rem;
}
.pt-16 {
	padding-top: 4rem;
}
.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.text-\[\#c6f24e\] {
	color: #c6f24e;
}
.text-\[8px\] {
	font-size: 8px;
}
.text-\[9px\] {
	font-size: 9px;
}
.text-\[11px\] {
	font-size: 11px;
}
.text-\[13px\] {
	font-size: 13px;
}
.text-neutral-600 {
	color: #525252;
}
.text-neutral-800 {
	color: #262626;
}
.text-zinc-900 {
	color: #18181b;
}
.top-\[184\.85px\] {
	top: 184.85px;
}
.tracking-wide {
	letter-spacing: 0.025em;
}
.w-40 {
	width: 10rem;
}
@media (min-width: 640px) {
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 768px) {
	.md\:py-28 {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
}

/* Visible focus for accordion triggers (compiled ring utilities absent) */
[data-accordion-trigger]:focus-visible {
	outline: 2px solid #161614;
	outline-offset: 2px;
	border-radius: 8px;
}
/* ---- Journey cue (bento) ---- */
.tle-journey-cue {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 0;
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #737373;
}
.tle-journey-cue li {
	display: inline-flex;
	align-items: center;
}
.tle-journey-cue li + li::before {
	content: "→";
	color: #a8a396;
	margin: 0 10px;
}

/* ---- Services layered stage ---- */
.tle-services-stage {
	position: relative;
	--tle-word: clamp(150px, 17vw, 300px);
}
.tle-services-word {
	font-size: var(--tle-word);
	line-height: 0.8;
	font-weight: 500;
	letter-spacing: -0.06em;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	user-select: none;
	pointer-events: none;
	background-image: linear-gradient(180deg, #8c8879, rgba(140, 136, 121, 0));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.28;
}
.tle-services-stage > .grid {
	margin-top: calc(var(--tle-word) * -0.15);
}
@media (max-width: 1023px) {
	.tle-services-stage > .grid {
		margin-top: calc(var(--tle-word) * -0.12);
	}
}
@media (max-width: 767px) {
	.tle-services-stage {
		--tle-word: clamp(110px, 24vw, 150px);
	}
	.tle-services-stage > .grid {
		margin-top: calc(var(--tle-word) * -0.14);
	}
}

/* ---- Custom systems: closing band of the Services section ---- */
.tle-custom-band {
	position: relative;
	z-index: 2;
	margin-top: 56px;
	border-top: 2px solid #161614;
	padding-top: 40px;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 32px;
	align-items: start;
}
.tle-custom-eyebrow {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6f6f6f;
	margin-bottom: 12px;
}
.tle-custom-title {
	font-weight: 600;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: #000;
}
.tle-custom-copy {
	font-size: 1rem;
	line-height: 1.6;
	color: #404040;
	max-width: 46rem;
}
.tle-custom-actions {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 12px 26px;
	flex-wrap: wrap;
}




@media (max-width: 767px) {
	.tle-custom-band {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 40px;
		padding-top: 32px;
	}
}

/* ---- Method: balanced phase panels with step rows ---- */
.tle-phase-panel {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
}
.tle-step-row {
	border: 0;
	background: transparent;
	border-radius: 0;
	padding: 16px 0 4px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.tle-step-row + .tle-step-row {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 14px;
	padding-top: 22px;
}
.tle-step-num {
	color: #c6f24e;
	padding-top: 5px;
	flex: none;
}
.tle-method-close {
	margin-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tle-method-close .tle-phase-name {
	color: #c6f24e;
}


/* ================================================================
   Round 4: two-direction technology rails inside the journey
   ================================================================ */
.tle-connect {
	margin-top: 34px;
}
.tle-rails {
	margin-top: 24px;
	display: flex;
	gap: 0;
	align-items: stretch;
	border-bottom: 1px solid #e5e3dd;
	padding-bottom: 16px;
}
.tle-rail-h {
	border-left: 1px solid #e5e3dd;
	padding-left: 22px;
	margin-left: 22px;
}
.tle-rail-v,
.tle-rail-h {
	position: relative;
	outline: none;
}
.tle-rail-v:focus-visible,
.tle-rail-h:focus-visible {
	outline: 2px solid var(--tle-ink);
	outline-offset: 3px;
	border-radius: 12px;
}
.tle-rail-v {
	width: 30%;
	min-width: 0;
}
.tle-rail-h {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.tle-rail-tag {
	display: block;
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b6b64;
	margin-bottom: 10px;
}
.tle-rail-v-clip {
	height: 148px;
	overflow: hidden;
	mask-image: linear-gradient(180deg, transparent, black 14%, black 86%, transparent);
	-webkit-mask-image: linear-gradient(180deg, transparent, black 14%, black 86%, transparent);
}
.tle-rail-h-clip {
	height: 148px;
	display: flex;
	align-items: center;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.tle-rail-v-track {
	display: flex;
	flex-direction: column;
	animation: tle-rail-up 18s linear infinite;
	will-change: transform;
}
.tle-rail-h-track {
	display: flex;
	width: max-content;
	animation: tle-rail-left 82s linear infinite;
	will-change: transform;
}
@keyframes tle-rail-up {
	to {
		transform: translateY(-50%);
	}
}
@keyframes tle-rail-left {
	to {
		transform: translateX(-50%);
	}
}
.tle-vset {
	list-style: none;
	margin: 0;
	padding: 0 2px 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tle-hset {
	list-style: none;
	margin: 0;
	padding: 0 7px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.tle-tile {
	display: inline-flex;
	align-items: center;
	flex: none;
	gap: 10px;
	white-space: nowrap;
	background: #ffffff;
	border: 1px solid #e8e6e0;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #404040;
	box-shadow: 0 1px 3px rgba(10, 10, 10, 0.04);
	user-select: none;
}
.tle-tile img {
	width: 20px;
	height: 20px;
	flex: none;
	pointer-events: none;
}
/* hover / focus / touch pause the relevant track */
.tle-rail-v:hover .tle-rail-v-track,
.tle-rail-v:focus-visible .tle-rail-v-track,
.tle-rail-v.paused .tle-rail-v-track,
.tle-rail-h:hover .tle-rail-h-track,
.tle-rail-h:focus-visible .tle-rail-h-track,
.tle-rail-h.paused .tle-rail-h-track {
	animation-play-state: paused;
}
.tle-rails.doc-hidden .tle-rail-v-track,
.tle-rails.doc-hidden .tle-rail-h-track {
	animation-play-state: paused;
}
/* Reduced motion: rails stop moving and become scrollable instead. Heights
   stay fixed so the tiles cannot spill out of their box — an earlier
   `height: auto; overflow: visible` here collided with the fixed heights set
   further down and pushed the whole list over the content below. */
@media (prefers-reduced-motion: reduce) {
	.tle-rail-v-track,
	.tle-rail-h-track {
		animation: none;
	}
	.tle-rail-v-clip {
		overflow-y: auto;
		overscroll-behavior: contain;
		mask-image: none;
		-webkit-mask-image: none;
	}
	.tle-rail-h-clip {
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		align-items: flex-start;
		mask-image: none;
		-webkit-mask-image: none;
	}
	.tle-rail-v-track,
	.tle-rail-h-track {
		transform: none;
	}
	.tle-rail-v-clip,
	.tle-rail-h-clip {
		scrollbar-width: none;
	}
	.tle-rail-v-clip::-webkit-scrollbar,
	.tle-rail-h-clip::-webkit-scrollbar {
		display: none;
	}
	.tle-vset[aria-hidden="true"],
	.tle-hset[aria-hidden="true"] {
		display: none;
	}
	.tle-tile {
		scroll-snap-align: start;
	}
}
@media (max-width: 1023px) {
	.tle-rail-v {
		width: 34%;
	}
	.tle-tile {
		padding: 10px 13px;
		font-size: 13px;
		gap: 8px;
	}
	.tle-tile img {
		width: 18px;
		height: 18px;
	}
}
@media (max-width: 519px) {
	.tle-rails {
		padding-bottom: 12px;
	}
	.tle-rail-h {
		margin-left: 12px;
		padding-left: 12px;
	}
	.tle-rail-v {
		width: 34%;
	}
	.tle-rail-v-clip,
	.tle-rail-h-clip {
		height: 132px;
	}
	.tle-tile {
		padding: 9px 11px;
		font-size: 11px;
		gap: 7px;
	}
	.tle-tile img {
		width: 16px;
		height: 16px;
	}
}

/* ---- Stage chips: keep on one line ---- */
.tle-stage-chip {
	white-space: nowrap;
}
@media (max-width: 429px) {
	.tle-stage-chip {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 10.5px;
		letter-spacing: 0.01em;
		gap: 4px;
	}
}

/* ---- Search results / typing pill fit small screens ---- */
.tle-results,
[data-typewriter] {
	max-width: 100%;
}

/* ---- Mobile hero: keep actions clear of the watermark ---- */
@media (max-width: 640px) {
	#hero .tle-hero-actions {
		position: relative;
		z-index: 3;
		margin-bottom: 18px;
	}
}

/* ---- Nav toggle focus + contrast ---- */
[data-nav-toggle] {
	color: #26251f;
	border-radius: 10px;
}
[data-nav-toggle]:focus-visible {
	outline: 2px solid var(--tle-ink);
	outline-offset: 2px;
}

/* ---- Mobile hero: intrinsic height, watermark clear of actions ---- */
@media (max-width: 767px) {
	#hero > div > div {
		height: auto;
		min-height: calc(100svh - 34px);
		display: flex;
		flex-direction: column;
	}
	#hero > div > div > .z-10 {
		flex: 1 1 auto;
	}
	#hero .h-18 {
		margin-top: 30px;
		height: 78px;
	}
}


/* ================================================================
   Round 6: press feedback, focus indication, journey separators
   ================================================================ */

/* ---- Press feedback on real controls only ----
   Scale the clickable anchor itself. On the template sliding buttons the inner
   button-box keeps its own translate, so the two transforms compose. */
.ms-cta-secondary,
[data-nav-menu] a {
	transition:
		transform var(--motion-fast) var(--tle-ease-out),
		background-color var(--motion-fast) var(--tle-ease-out),
		color var(--motion-fast) var(--tle-ease-out),
		box-shadow var(--motion-fast) var(--tle-ease-out);
}
.ms-cta-secondary:active,
[data-nav-menu] a:active {
	transform: scale(0.97);
}
@media (prefers-reduced-motion: reduce) {
	.ms-cta-secondary:active,
	[data-nav-menu] a:active {
		transform: scale(0.99);
	}
}

/* ---- Service groups: keyboard focus indication only (never hover) ---- */
.tle-group {
	transition: box-shadow var(--motion-ui) var(--tle-ease-out);
}
.tle-group:focus-within {
	box-shadow:
		0 0 0 2px var(--tle-volt),
		0 0 0 3px rgba(22, 22, 20, 0.65);
}

/* ---- Journey separators: one explanatory stagger, words never move ---- */
html.js .tle-journey-cue li + li::before {
	opacity: 0.25;
	transform: translateX(-2px);
}
html.js .tle-journey-cue.is-visible li + li::before {
	animation: tle-sep-settle 200ms var(--tle-ease-out) forwards;
}
html.js .tle-journey-cue.is-visible li:nth-child(2)::before {
	animation-delay: 0ms;
}
html.js .tle-journey-cue.is-visible li:nth-child(3)::before {
	animation-delay: 70ms;
}
html.js .tle-journey-cue.is-visible li:nth-child(4)::before {
	animation-delay: 140ms;
}
html.js .tle-journey-cue.is-visible li:nth-child(5)::before {
	animation-delay: 210ms;
}
@keyframes tle-sep-settle {
	to {
		opacity: 1;
		transform: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	html.js .tle-journey-cue li + li::before {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* ---- Accessible link green on light surfaces (5.33:1 on #F0EFEC) ---- */
:root {
	--tle-link-green: #3a6b58;
}
.tle-link-green {
	color: var(--tle-link-green);
}
.tle-link-green:hover {
	color: #2b5647;
}
.tle-link-green:focus-visible {
	outline: 2px solid var(--tle-ink);
	outline-offset: 2px;
	border-radius: 4px;
}


/* ================================================================
   Round 7: hero recomposition (nav floats over the hero)
   ================================================================ */
.tle-hero-content {
	padding-top: 122px;
}
/* Resting height: fill the initial viewport, leaving only a ~16px cue of the
   next section. svh so mobile browser chrome cannot cause jumps; min-height
   on small screens so short viewports grow instead of clipping content. */
#hero > div {
	height: auto;
	min-height: calc(100vh - 18px);
	min-height: calc(100svh - 18px);
}
@media (min-width: 768px) {
	#hero > div {
		height: calc(100vh - 18px);
		height: calc(100svh - 18px);
		min-height: 0;
	}
	.tle-hero-content {
		padding-top: 148px;
	}
}
@media (min-width: 1024px) {
	.tle-hero-content {
		padding-top: 212px;
	}
}

/* ================================================================
   Round 7: shared sliding CTA system + focus hierarchy
   ================================================================ */
:root {
	--tle-focus: var(--tle-ink);
}
#hero,
#method,
#founder,
footer,
section[aria-label="Request an assessment"],
.bg-natural-black,
.ms-dark,
.tle-nav[data-theme="dark"] {
	--tle-focus: var(--tle-volt);
}

/* Primary: ink pill, volt tile slides, label follows */
.tle-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	width: fit-content;
	padding: 7px 20px 7px 7px;
	background: var(--tle-ink);
	color: #f2f1ec;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	white-space: nowrap;
	transition:
		transform var(--motion-fast) var(--tle-ease-out),
		background-color var(--motion-fast) var(--tle-ease-out);
}
.tle-btn-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: none;
	border-radius: 7px;
	background: var(--tle-volt);
	color: var(--tle-ink);
	transition: transform var(--motion-fast) var(--tle-ease-out);
}
.tle-btn-label {
	display: inline-block;
	transition: transform var(--motion-fast) var(--tle-ease-out);
}
.tle-btn:active {
	transform: scale(0.97);
}
.tle-btn:focus-visible {
	outline: 2px solid var(--tle-focus);
	outline-offset: 3px;
}
.tle-btn:focus-visible .tle-btn-tile {
	transform: translateX(3px);
}
@media (hover: hover) and (pointer: fine) {
	.tle-btn:hover {
		background: #26261f;
	}
	.tle-btn:hover .tle-btn-tile {
		transform: translateX(3px);
	}
	.tle-btn:hover .tle-btn-label {
		transform: translateX(1px);
	}
}

/* Secondary: quiet bordered ghost, arrow slides */
.tle-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	width: fit-content;
	padding: 9px 16px;
	background: transparent;
	color: #26251f;
	border: 1px solid rgba(22, 22, 20, 0.28);
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 500;
	white-space: nowrap;
	transition:
		transform var(--motion-fast) var(--tle-ease-out),
		border-color var(--motion-fast) var(--tle-ease-out),
		color var(--motion-fast) var(--tle-ease-out);
}
.tle-btn-ghost svg {
	flex: none;
	transition: transform var(--motion-fast) var(--tle-ease-out);
}
.tle-btn-ghost:active {
	transform: scale(0.97);
}
.tle-btn-ghost:focus-visible {
	outline: 2px solid var(--tle-focus);
	outline-offset: 3px;
}
.tle-btn-ghost:focus-visible svg {
	transform: translateX(3px);
}
@media (hover: hover) and (pointer: fine) {
	.tle-btn-ghost:hover {
		border-color: rgba(22, 22, 20, 0.6);
	}
	.tle-btn-ghost:hover svg {
		transform: translateX(3px);
	}
}
.tle-btn-ghost.on-dark {
	color: #e5e4de;
	border-color: rgba(255, 255, 255, 0.28);
}
@media (hover: hover) and (pointer: fine) {
	.tle-btn-ghost.on-dark:hover {
		border-color: rgba(255, 255, 255, 0.6);
		color: #ffffff;
	}
}
@media (prefers-reduced-motion: reduce) {
	.tle-btn:hover .tle-btn-tile,
	.tle-btn:hover .tle-btn-label,
	.tle-btn:focus-visible .tle-btn-tile,
	.tle-btn-ghost:hover svg,
	.tle-btn-ghost:focus-visible svg {
		transform: none;
	}
	.tle-btn:active,
	.tle-btn-ghost:active {
		transform: scale(0.99);
	}
}

/* Narrow screens: CTAs may wrap rather than overflow */
@media (max-width: 379px) {
	.tle-btn,
	.tle-btn-ghost {
		max-width: 100%;
		white-space: normal;
		text-align: left;
	}
}

/* ---- Focus hierarchy: branded single ring on the focused control ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--tle-focus);
	outline-offset: 2px;
	border-radius: 6px;
}
/* parent group glow stays subordinate to the control's own ring */
.tle-group:focus-within {
	box-shadow:
		0 0 0 1px rgba(198, 242, 78, 0.65),
		0 0 0 2px rgba(22, 22, 20, 0.35);
}


/* ---- Round 8: services intro-to-word-to-cards rhythm ---- */
.tle-services-stage {
	margin-top: 46px;
}
@media (max-width: 767px) {
	.tle-services-stage {
		margin-top: 28px;
	}
}

/* ================================================================
   Round 8: journey narrative, card hierarchy, AI desk, CTA slide
   ================================================================ */
:root {
	--tle-seq-step: 0s;
}
@media (min-width: 1024px) {
	:root {
		--tle-seq-step: 1.3s;
	}
}

/* Locally owned visually-hidden (not dependent on generated utilities) */
.tle-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;
}

/* ---- Bento card hierarchy ---- */
.tle-card-eyebrow {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b6b64;
}
.tle-card-title {
	margin-top: 6px;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}
.tle-card-copy {
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.45;
}
@media (max-width: 767px) {
	#systems .h-85 {
		height: 300px;
	}
}

/* ---- Ops nodes: complete workflow on mobile (two-row wrap) ---- */
@media (max-width: 639px) {
	.tle-ops-nodes {
		justify-content: flex-start;
		gap: 5px;
		row-gap: 6px;
	}
	.tle-ops-node {
		font-size: 8.5px;
		padding: 4px 8px;
		letter-spacing: 0.04em;
	}
}

/* ---- AI review workspace ---- */
.tle-ai-desk {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tle-ai-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid #ebe9e4;
	background: #fff;
	border-radius: 12px;
	padding: 9px 11px;
}
.tle-ai-tag {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #737373;
	border: 1px solid #e3e1db;
	border-radius: 999px;
	padding: 3px 8px;
	flex: none;
	margin-top: 1px;
}
.tle-ai-tag-ai {
	background: var(--tle-ink);
	color: var(--tle-volt);
	border-color: var(--tle-ink);
}
.tle-ai-review {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 2px;
}
.tle-ai-act {
	display: inline-flex;
	align-items: center;
	border-radius: 9px;
	border: 1px solid rgba(22, 22, 20, 0.18);
	color: #52524e;
	font-size: 12px;
	font-weight: 500;
	padding: 7px 13px;
	user-select: none;
}
.tle-ai-approve {
	background: var(--tle-volt);
	border-color: var(--tle-ink);
	color: var(--tle-ink);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 18px;
}
.tle-ai-done {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	border-radius: 999px;
	background: #f4f8e8;
	border: 1px solid rgba(22, 22, 20, 0.12);
	color: #2b2b28;
	font-size: 11px;
	font-weight: 500;
	padding: 4px 11px;
}
@keyframes tle-emph {
	0% {
		box-shadow: 0 0 0 0 rgba(198, 242, 78, 0);
	}
	40% {
		box-shadow: 0 0 0 3px rgba(198, 242, 78, 0.45);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(198, 242, 78, 0);
	}
}
@keyframes tle-pop {
	0% {
		transform: scale(0.6);
		opacity: 0.4;
	}
	60% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* ================================================================
   Round 8: real sliding CTA choreography
   Tile is absolutely positioned; JS measures --tle-travel per button
   (html.cta-ready). Transforms only; dimensions never change.
   ================================================================ */
.tle-btn {
	position: relative;
	gap: 0;
	padding: 7px 20px 7px 50px;
}
.tle-btn-tile {
	position: absolute;
	left: 8px;
	top: calc(50% - 15px);
}
html.cta-ready .tle-btn .tle-btn-tile {
	will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
	html.cta-ready .tle-btn:hover .tle-btn-tile,
	html.cta-ready .tle-btn:focus-visible .tle-btn-tile {
		transform: translateX(var(--tle-travel, 0px));
	}
	html.cta-ready .tle-btn:hover .tle-btn-label,
	html.cta-ready .tle-btn:focus-visible .tle-btn-label {
		transform: translateX(-34px);
	}
}
html.cta-ready .tle-btn:focus-visible .tle-btn-tile {
	transform: translateX(var(--tle-travel, 0px));
}
html.cta-ready .tle-btn:focus-visible .tle-btn-label {
	transform: translateX(-34px);
}
.tle-btn-sm {
	min-height: 38px;
	padding: 4px 14px 4px 40px;
	font-size: 0.88rem;
}
.tle-btn-sm .tle-btn-tile {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	left: 7px;
	top: calc(50% - 12px);
}
html.cta-ready .tle-btn-sm:hover .tle-btn-label,
html.cta-ready .tle-btn-sm:focus-visible .tle-btn-label {
	transform: translateX(-28px);
}
.tle-btn-block {
	width: 100%;
	justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
	.tle-btn-ghost:hover svg,
	.tle-btn-ghost:focus-visible svg {
		transform: translateX(6px);
	}
}
@media (prefers-reduced-motion: reduce) {
	html.cta-ready .tle-btn:hover .tle-btn-tile,
	html.cta-ready .tle-btn:focus-visible .tle-btn-tile,
	html.cta-ready .tle-btn:hover .tle-btn-label,
	html.cta-ready .tle-btn:focus-visible .tle-btn-label,
	html.cta-ready .tle-btn-sm:hover .tle-btn-label,
	html.cta-ready .tle-btn-sm:focus-visible .tle-btn-label {
		transform: none;
	}
}

/* ================================================================
   Round 9: deliberate CTA choreography
   ================================================================ */
:root {
	--tle-cta-duration: 460ms;
	--tle-cta-ease: cubic-bezier(0.6, 0, 0.3, 1);
}
.tle-btn {
	overflow: hidden;
}
.tle-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.09);
	clip-path: inset(0 100% 0 0);
	transition: clip-path var(--tle-cta-duration) var(--tle-cta-ease);
	pointer-events: none;
}
html.cta-ready .tle-btn .tle-btn-tile,
html.cta-ready .tle-btn .tle-btn-label {
	transition: transform var(--tle-cta-duration) var(--tle-cta-ease);
}
@media (hover: hover) and (pointer: fine) {
	html.cta-ready .tle-btn:hover::after {
		clip-path: inset(0 0 0 0);
	}
	html.cta-ready .tle-btn:hover .tle-btn-tile {
		transform: translateX(var(--tle-travel, 0px));
	}
	html.cta-ready .tle-btn:hover .tle-glyph {
		transform: rotate(180deg);
	}
}
html.cta-ready .tle-btn:focus-visible::after {
	clip-path: inset(0 0 0 0);
}
html.cta-ready .tle-btn:focus-visible .tle-btn-tile {
	transform: translateX(var(--tle-travel, 0px));
}
html.cta-ready .tle-btn:focus-visible .tle-glyph {
	transform: rotate(180deg);
}
.tle-btn-ghost {
	position: relative;
	overflow: hidden;
}
.tle-btn-ghost::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(22, 22, 20, 0.05);
	clip-path: inset(0 100% 0 0);
	transition: clip-path var(--tle-cta-duration) var(--tle-cta-ease);
	pointer-events: none;
}
.tle-btn-ghost.on-dark::after {
	background: rgba(255, 255, 255, 0.08);
}
.tle-btn-ghost svg {
	transition: transform var(--tle-cta-duration) var(--tle-cta-ease);
}
@media (hover: hover) and (pointer: fine) {
	.tle-btn-ghost:hover::after {
		clip-path: inset(0 0 0 0);
	}
}
.tle-btn-ghost:focus-visible::after {
	clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
	.tle-btn::after,
	.tle-btn-ghost::after {
		transition: none;
	}
	html.cta-ready .tle-btn:hover .tle-btn-tile,
	html.cta-ready .tle-btn:focus-visible .tle-btn-tile {
		transform: none;
	}
}

/* ---- Services group signals ---- */
.tle-stage-wrap {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
}
.tle-sig-acq {
	display: block;
	width: 64px;
	height: 2px;
	border-radius: 2px;
	background: rgba(22, 22, 20, 0.14);
	position: relative;
	overflow: hidden;
}
.tle-sig-acq::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--tle-ink);
	transform-origin: left;
	transform: scaleX(1);
}
html.js .tle-stage-wrap:not(.play) .tle-sig-acq::after {
	transform: scaleX(0);
}
html.js .tle-stage-wrap.play .tle-sig-acq::after {
	animation: tle-line-draw 0.9s var(--tle-ease-out) 0.2s both;
}
.tle-sig-loop {
	flex: none;
}
.tle-sig-loop-path {
	stroke-dasharray: 34;
	stroke-dashoffset: 0;
}
html.js .tle-stage-wrap:not(.play) .tle-sig-loop-path {
	stroke-dashoffset: 34;
}
html.js .tle-stage-wrap.play .tle-sig-loop-path {
	animation: tle-loop-draw 1s var(--tle-ease-in-out) 0.25s both;
}
@keyframes tle-loop-draw {
	from {
		stroke-dashoffset: 34;
	}
	to {
		stroke-dashoffset: 0;
	}
}
.tle-sig-ops {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	height: 12px;
	padding: 0 2px;
}
.tle-sig-ops-line {
	position: absolute;
	left: 4px;
	right: 4px;
	top: 5px;
	height: 2px;
	border-radius: 2px;
	background: rgba(22, 22, 20, 0.14);
}
.tle-sig-ops-dot {
	position: relative;
	z-index: 1;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #a3a39c;
}
.tle-sig-ops-eye {
	background: var(--tle-ink);
	width: 8px;
	height: 8px;
}
.tle-sig-ops-pulse {
	position: absolute;
	left: 2px;
	top: 3px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--tle-volt);
	border: 1px solid var(--tle-ink);
	opacity: 0;
}
html.js .tle-stage-wrap.play .tle-sig-ops-pulse {
	animation: tle-ops-sig-run 1.1s var(--tle-ease-in-out) 0.25s both;
}
@keyframes tle-ops-sig-run {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(34px);
	}
}

/* ---- Method outputs + activation + principle row ---- */
.tle-phase-output {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
	color: #d4d4d4;
	display: flex;
	align-items: center;
	gap: 8px;
}
.tle-phase-output-tag {
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tle-volt);
	border: 1px solid rgba(198, 242, 78, 0.35);
	border-radius: 999px;
	padding: 2px 7px;
	flex: none;
}
.tle-phase-panel {
	transition: border-color var(--motion-ui) var(--tle-ease-out);
}
html.js .tle-method-phases.play .tle-phase-panel:nth-child(1) {
	animation: tle-emph 0.7s var(--tle-ease-out) 0.2s both;
}
html.js .tle-method-phases.play .tle-phase-panel:nth-child(2) {
	animation: tle-emph 0.7s var(--tle-ease-out) 0.9s both;
}
html.js .tle-method-phases.play .tle-phase-panel:nth-child(3) {
	animation: tle-emph 0.7s var(--tle-ease-out) 1.6s both;
}
.tle-method-close-row {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

/* ---- Industry focus band ---- */
.tle-industry-band {
	margin-top: 44px;
	border-top: 1px solid #dedcd4;
	border-bottom: 1px solid #dedcd4;
	padding: 36px 0;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 24px 48px;
	align-items: center;
}
.tle-industry-title {
	margin-top: 8px;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	letter-spacing: -0.03em;
	color: #0a0a0a;
}
.tle-industry-copy {
	margin-top: 8px;
	font-size: 0.98rem;
	line-height: 1.6;
	color: #525252;
	max-width: 34rem;
}
.tle-industry-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	justify-self: end;
}
.tle-industry-cue {
	margin: 0;
}
@media (max-width: 767px) {
	.tle-industry-band {
		grid-template-columns: 1fr;
		padding: 26px 0;
		margin-top: 32px;
	}
	.tle-industry-side {
		justify-self: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	html.js .tle-stage-wrap:not(.play) .tle-sig-acq::after {
		transform: scaleX(1);
	}
	html.js .tle-stage-wrap:not(.play) .tle-sig-loop-path {
		stroke-dashoffset: 0;
	}
	html.js .tle-stage-wrap.play .tle-sig-acq::after,
	html.js .tle-stage-wrap.play .tle-sig-loop-path,
	html.js .tle-stage-wrap.play .tle-sig-ops-pulse,
	html.js .tle-method-phases.play .tle-phase-panel {
		animation: none;
	}
}

/* Scenario swap fade for the search result card */
.tle-results [data-scen-name],
.tle-results [data-scen-row="0"],
.tle-results [data-scen-row="1"],
.tle-results [data-scen-row="2"] {
	transition: opacity 160ms var(--tle-ease-out);
}
.tle-results.swapping [data-scen-name],
.tle-results.swapping [data-scen-row="0"],
.tle-results.swapping [data-scen-row="1"],
.tle-results.swapping [data-scen-row="2"] {
	opacity: 0;
}


/* ================================================================
   Round 10: wordmark, nav grid areas, toggle, category index
   ================================================================ */
.tle-wordmark {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	width: auto;
	border-radius: 12px;
}
.tle-wordmark-mark {
	display: inline-flex;
	align-items: flex-start;
	background: var(--tle-ink);
	border-radius: 10px;
	padding: 8px 13px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 1;
	color: #f2f1ec;
	border: 1px solid rgba(255, 255, 255, 0.14);
}
.tle-wordmark-mark sup {
	color: var(--tle-volt);
	font-size: 0.5em;
	line-height: 1;
	margin-top: 0.18em;
	margin-left: 2px;
}
.tle-nav-row {
	grid-template-areas: "logo links cta";
}
.tle-nav-row > :nth-child(1) {
	grid-area: logo;
}
.tle-nav-row > :nth-child(2) {
	grid-area: links;
}
.tle-nav-row > :nth-child(3) {
	grid-area: cta;
}
.tle-nav .tle-nav-link {
	padding: 8px 10px;
}
.tle-nav .space-x-8 > :not([hidden]) ~ :not([hidden]) {
	margin-left: 22px;
}
@media (max-width: 767px) {
	.tle-nav-row {
		grid-template-columns: auto 1fr;
		grid-template-areas: "logo trigger";
	}
	.tle-nav-row > :nth-child(1) {
		grid-area: logo;
	}
	.tle-nav-row > :last-child {
		grid-area: trigger;
		justify-self: end;
	}
}
.tle-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: #26251f;
}
.tle-nav[data-theme="dark"] .tle-nav-toggle {
	color: #f2f1ec;
}

/* rails pause when the band is offscreen */
.tle-rails.offscreen .tle-rail-v-track,
.tle-rails.offscreen .tle-rail-h-track {
	animation-play-state: paused;
}

/* ---- services.html category index ---- */
.tle-cat-index {
	position: sticky;
	top: 86px;
	z-index: 40;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 8px 4px;
	margin: 20px 0 0;
	background: rgba(240, 239, 236, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	scrollbar-width: none;
}
.tle-cat-index::-webkit-scrollbar {
	display: none;
}
.tle-cat-index a {
	flex: none;
	font-family: "DM Mono", "IBM Plex Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #52524e;
	border: 1px solid #dedcd4;
	border-radius: 999px;
	padding: 8px 14px;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	background: #fff;
	transition:
		background-color var(--motion-fast) var(--tle-ease-out),
		color var(--motion-fast) var(--tle-ease-out),
		border-color var(--motion-fast) var(--tle-ease-out);
}
.tle-cat-index a[aria-current="location"] {
	background: var(--tle-ink);
	border-color: var(--tle-ink);
	color: #f2f1ec;
}

/* ================================================================
   Final production pass
   ================================================================ */




/* ================================================================
   Touch devices: CTAs cannot hover, so play the slide once when the
   button first scrolls into view. One pass, then it rests.
   ================================================================ */
@media (hover: none), (pointer: coarse) {
	html.cta-ready .tle-btn.demo .tle-btn-tile {
		animation: tle-cta-demo-tile 1.5s var(--tle-cta-ease) both;
	}
	html.cta-ready .tle-btn.demo .tle-btn-label {
		animation: tle-cta-demo-label 1.5s var(--tle-cta-ease) both;
	}
	html.cta-ready .tle-btn.demo::after {
		animation: tle-cta-demo-sweep 1.5s var(--tle-cta-ease) both;
	}
	.tle-btn-ghost.demo svg {
		animation: tle-cta-demo-arrow 1.2s var(--tle-cta-ease) both;
	}
}
@keyframes tle-cta-demo-tile {
	0% {
		transform: translateX(0) rotate(0deg);
	}
	40%,
	60% {
		transform: translateX(var(--tle-travel, 0px)) rotate(180deg);
	}
	100% {
		transform: translateX(0) rotate(360deg);
	}
}
@keyframes tle-cta-demo-label {
	0% {
		transform: translateX(0);
	}
	40%,
	60% {
		transform: translateX(-34px);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes tle-cta-demo-sweep {
	0% {
		clip-path: inset(0 100% 0 0);
	}
	40%,
	60% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(0 0 0 100%);
	}
}
@keyframes tle-cta-demo-arrow {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(6px);
	}
}
@media (prefers-reduced-motion: reduce) {
	html.cta-ready .tle-btn.demo .tle-btn-tile,
	html.cta-ready .tle-btn.demo .tle-btn-label,
	html.cta-ready .tle-btn.demo::after,
	.tle-btn-ghost.demo svg {
		animation: none;
	}
}

/* Skip link: visible only when focused */
.tle-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
}
.tle-skip:focus {
	left: 20px;
	top: 20px;
	background: var(--tle-ink);
	color: #f2f1ec;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 500;
	outline: 2px solid var(--tle-volt);
	outline-offset: 2px;
}

/* ================================================================
   Founder portrait + CTA tile photo
   On "Chat with Tommy" buttons the volt tile cross-fades into Tommy's
   headshot as it travels — the template's move.
   ================================================================ */
.tle-founder-photo {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center 22%;
}


/* The headshot fills the tile and cross-fades with the glyph while the tile
   travels, so the photo arrives as the tile lands. Only "Chat with Tommy"
   buttons carry one. */
.tle-btn-tile {
	overflow: hidden;
}
.tle-tile-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	display: block;
	opacity: 0;
	pointer-events: none;
}
html.cta-ready .tle-btn .tle-tile-photo,
html.cta-ready .tle-btn .tle-glyph {
	transition:
		opacity var(--tle-cta-duration) var(--tle-cta-ease),
		transform var(--tle-cta-duration) var(--tle-cta-ease);
}
@media (hover: hover) and (pointer: fine) {
	html.cta-ready .tle-btn:hover .tle-tile-photo {
		opacity: 1;
	}
	html.cta-ready .tle-btn-photo:hover .tle-glyph {
		opacity: 0;
	}
}
html.cta-ready .tle-btn:focus-visible .tle-tile-photo {
	opacity: 1;
}
html.cta-ready .tle-btn-photo:focus-visible .tle-glyph {
	opacity: 0;
}

/* Touch devices never hover, so the demo pass shows the cross-fade once. */
@media (hover: none), (pointer: coarse) {
	html.cta-ready .tle-btn.demo .tle-tile-photo {
		animation: tle-cta-demo-photo 1.5s var(--tle-cta-ease) both;
	}
	html.cta-ready .tle-btn-photo.demo .tle-glyph {
		animation: tle-cta-demo-glyph 1.5s var(--tle-cta-ease) both;
	}
}
@keyframes tle-cta-demo-photo {
	0% {
		opacity: 0;
	}
	40%,
	60% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes tle-cta-demo-glyph {
	0% {
		opacity: 1;
	}
	40%,
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	html.cta-ready .tle-btn .tle-tile-photo,
	html.cta-ready .tle-btn .tle-glyph {
		transition: none;
	}
	html.cta-ready .tle-btn.demo .tle-tile-photo,
	html.cta-ready .tle-btn.demo .tle-glyph {
		animation: none;
	}
}

/* An ink pill on the near-black founder section has almost no edge against
   its background. The hairline gives the control a visible boundary without
   changing the brand treatment. */
.tle-btn.on-dark {
	border: 1px solid rgba(255, 255, 255, 0.34);
}
