/**
 * Homepage — interactive, futuristic layout on brand tokens.
 */

.ll-home {
	--ll-accent-blue: #5b9cff;
	--ll-glass: rgba(18, 26, 43, 0.72);
	--ll-glass-border: rgba(148, 163, 184, 0.14);
	--ll-glow-gold: rgba(232, 163, 23, 0.35);
	--ll-glow-blue: rgba(91, 156, 255, 0.28);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.ll-hero {
	position: relative;
	min-height: calc(100vh - var(--ll-header-h));
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 60% at 20% 20%, rgba(232, 163, 23, 0.18), transparent 55%),
		radial-gradient(ellipse 70% 50% at 85% 75%, rgba(91, 156, 255, 0.12), transparent 50%),
		var(--ll-canvas-deep);
	color: var(--ll-ink);
	isolation: isolate;
}

.ll-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.55) 48%, rgba(11, 18, 32, 0.88) 100%);
	pointer-events: none;
	z-index: 2;
}

.ll-hero__ambient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.ll-hero__mesh {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 75%);
}

.ll-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	will-change: transform;
}

.ll-hero__orb--gold {
	width: min(420px, 55vw);
	height: min(420px, 55vw);
	top: 8%;
	left: -8%;
	background: var(--ll-glow-gold);
	animation: ll-orb-float 14s ease-in-out infinite;
}

.ll-hero__orb--blue {
	width: min(360px, 45vw);
	height: min(360px, 45vw);
	bottom: 5%;
	right: -5%;
	background: var(--ll-glow-blue);
	animation: ll-orb-float 18s ease-in-out infinite reverse;
}

.ll-hero__scanline {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(255, 255, 255, 0.012) 2px,
		rgba(255, 255, 255, 0.012) 4px
	);
	opacity: 0.4;
}

@keyframes ll-orb-float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(24px, -18px) scale(1.06);
	}
}

.ll-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.ll-hero__preview,
.ll-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ll-hero__preview {
	background:
		linear-gradient(120deg, rgba(232, 163, 23, 0.55) 0%, rgba(232, 163, 23, 0.12) 38%, rgba(11, 18, 32, 0.96) 100%),
		url("../images/og-default.png") center/cover no-repeat;
	transform: scale(1.04);
	transition: opacity 420ms ease;
	z-index: 1;
}

.ll-hero__preview.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.ll-hero__video {
	opacity: 0;
	transition: opacity 420ms ease;
	transform: scale(1.04);
}

.ll-hero__video.is-ready {
	opacity: 0.45;
}

.ll-hero__layout {
	position: relative;
	z-index: 3;
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
	width: min(calc(100% - 2rem), 1180px);
}

@media (min-width: 960px) {
	.ll-hero__layout {
		grid-template-columns: 1.05fr 0.95fr;
	}
}

.ll-hero__content {
	text-align: center;
	padding: clamp(1rem, 2vw, 1.5rem) 0;
}

@media (min-width: 960px) {
	.ll-hero__content {
		text-align: left;
	}
}

.ll-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.9rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ll-accent);
}

.ll-hero__pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ll-accent);
	box-shadow: 0 0 0 0 rgba(232, 163, 23, 0.55);
	animation: ll-pulse-ring 2.4s ease-out infinite;
}

@keyframes ll-pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(232, 163, 23, 0.55);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(232, 163, 23, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(232, 163, 23, 0);
	}
}

.ll-hero h1 {
	font-size: clamp(2.1rem, 4.8vw, 3.5rem);
	margin: 0 auto var(--ll-space-md);
	line-height: 1.06;
	letter-spacing: -0.025em;
	max-width: 16ch;
	background: linear-gradient(135deg, var(--ll-ink) 0%, rgba(244, 247, 251, 0.82) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@media (min-width: 960px) {
	.ll-hero h1 {
		margin-inline: 0;
		max-width: 14ch;
	}
}

.ll-hero__support {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(244, 247, 251, 0.82);
	max-width: 52ch;
	margin: 0 auto;
}

@media (min-width: 960px) {
	.ll-hero__support {
		margin-inline: 0;
	}
}

.ll-hero .ll-cta-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.85rem;
	margin-top: 1.8rem;
	justify-content: flex-start;
}

.ll-hero .ll-cta-row .ll-btn {
	width: 100%;
}

@media (min-width: 520px) {
	.ll-hero .ll-cta-row {
		display: flex;
		flex-wrap: wrap;
	}

	.ll-hero .ll-cta-row .ll-btn {
		width: auto;
	}
}

/* Hero live panel */
.ll-hero-panel {
	position: relative;
	border-radius: 18px;
	background: var(--ll-glass);
	border: 1px solid var(--ll-glass-border);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ll-hero-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(232, 163, 23, 0.08), transparent 42%, rgba(91, 156, 255, 0.06));
	pointer-events: none;
}

.ll-hero-panel__chrome {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 1;
}

.ll-hero-panel__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(148, 163, 184, 0.35);
}

.ll-hero-panel__dot:nth-child(1) {
	background: #f87171;
}

.ll-hero-panel__dot:nth-child(2) {
	background: var(--ll-accent);
}

.ll-hero-panel__dot:nth-child(3) {
	background: var(--ll-success);
}

.ll-hero-panel__title {
	margin-left: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ll-muted);
}

.ll-hero-panel__live {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ll-success);
}

.ll-hero-panel__live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ll-success);
	animation: ll-pulse-ring 2s ease-out infinite;
}

.ll-hero-panel__tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 1;
}

.ll-hero-panel__tab {
	appearance: none;
	border: 0;
	background: rgba(11, 18, 32, 0.55);
	color: var(--ll-muted);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.75rem 0.85rem;
	cursor: pointer;
	transition: color var(--ll-transition), background var(--ll-transition);
}

.ll-hero-panel__tab:hover,
.ll-hero-panel__tab:focus-visible {
	color: var(--ll-ink);
	background: rgba(232, 163, 23, 0.08);
	outline: none;
}

.ll-hero-panel__tab.is-active {
	color: var(--ll-accent);
	background: rgba(232, 163, 23, 0.12);
	box-shadow: inset 0 -2px 0 var(--ll-accent);
}

.ll-hero-panel__body {
	padding: 1.25rem 1.25rem 1.35rem;
	position: relative;
	z-index: 1;
	min-height: 220px;
}

.ll-hero-panel__view {
	animation: ll-panel-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ll-hero-panel__view[hidden] {
	display: none;
}

@keyframes ll-panel-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

.ll-hero-metric__value {
	font-family: var(--ll-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1;
	color: var(--ll-ink);
}

.ll-hero-metric__value--success {
	color: var(--ll-success);
}

.ll-hero-progress {
	height: 6px;
	border-radius: 999px;
	background: rgba(244, 247, 251, 0.08);
	margin: 1rem 0 1.25rem;
	overflow: hidden;
}

.ll-hero-progress__bar {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-blue));
	transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-hero-progress__bar.is-animated {
	width: var(--progress, 82%);
}

.ll-hero-signals {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.ll-hero-signal {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: rgba(244, 247, 251, 0.88);
}

.ll-hero-signal__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	position: relative;
}

.ll-hero-signal.is-ok .ll-hero-signal__icon::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--ll-success);
}

.ll-hero-signal.is-warn .ll-hero-signal__icon::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--ll-accent);
}

.ll-hero-spark {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 56px;
	margin: 0.5rem 0 1rem;
}

.ll-hero-spark i {
	display: block;
	flex: 1;
	min-width: 4px;
	height: var(--h, 50%);
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, var(--ll-accent), rgba(232, 163, 23, 0.35));
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc(var(--i, 0) * 60ms);
}

.ll-hero-spark.is-animated i {
	transform: scaleY(1);
}

.ll-hero-spark i:nth-child(1) { --i: 0; }
.ll-hero-spark i:nth-child(2) { --i: 1; }
.ll-hero-spark i:nth-child(3) { --i: 2; }
.ll-hero-spark i:nth-child(4) { --i: 3; }
.ll-hero-spark i:nth-child(5) { --i: 4; }
.ll-hero-spark i:nth-child(6) { --i: 5; }
.ll-hero-spark i:nth-child(7) { --i: 6; }

.ll-hero-panel__note {
	margin: 0;
	font-size: 0.78rem;
	color: var(--ll-muted);
	line-height: 1.5;
}

.ll-hero__stats {
	position: relative;
	z-index: 3;
	display: grid;
	gap: 0.75rem;
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: 1fr;
}

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

.ll-stat-chip {
	display: grid;
	gap: 0.25rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: rgba(18, 26, 43, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	backdrop-filter: blur(8px);
}

.ll-stat-chip strong {
	font-family: var(--ll-display);
	font-size: 1.35rem;
	color: var(--ll-accent);
	line-height: 1.1;
}

.ll-stat-chip span {
	font-size: 0.82rem;
	color: var(--ll-muted);
	line-height: 1.4;
}

/* Trusted regions strip */
.ll-trusted-regions {
	position: relative;
	z-index: 2;
	padding: 0.65rem 0;
	margin-bottom: var(--ll-space-md);
	background: var(--ll-canvas);
}

.ll-trusted-regions__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem 1.25rem;
	min-height: 2.75rem;
}

.ll-trusted-regions__label {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ll-muted);
	white-space: nowrap;
}

.ll-trusted-regions__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ll-trusted-regions__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	font-size: 0.82rem;
	line-height: 1.2;
	color: rgba(244, 247, 251, 0.88);
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.ll-trusted-regions__item:hover {
	border-color: rgba(232, 163, 23, 0.28);
	background: rgba(232, 163, 23, 0.06);
}

.ll-trusted-regions__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
}

.ll-trusted-regions__name {
	font-weight: 600;
}

@media (max-width: 639px) {
	.ll-trusted-regions__inner {
		flex-direction: column;
		gap: 0.55rem;
	}

	.ll-trusted-regions__label {
		white-space: normal;
		text-align: center;
	}
}

/* -------------------------------------------------------------------------- */
/* Intro                                                                      */
/* -------------------------------------------------------------------------- */

.ll-intro-section {
	position: relative;
	z-index: 10;
	margin-top: -2rem;
	padding-bottom: clamp(3rem, 5vw, 5rem);
}

.ll-intro-card__badge {
	display: inline-block;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ll-accent);
	background: rgba(232, 163, 23, 0.12);
	border: 1px solid rgba(232, 163, 23, 0.25);
}

.ll-intro-pipeline {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem 0.85rem;
	padding-top: var(--ll-space-md);
	margin-top: 0.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-intro-pipeline__step {
	display: grid;
	gap: 0.1rem;
	text-align: center;
	min-width: 5.5rem;
}

.ll-intro-pipeline__step strong {
	font-family: var(--ll-display);
	font-size: 0.92rem;
	color: var(--ll-ink);
	font-weight: 600;
}

.ll-intro-pipeline__step span {
	font-size: 0.78rem;
	color: var(--ll-muted);
	line-height: 1.35;
}

.ll-intro-pipeline__sep {
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-blue));
	opacity: 0.55;
	flex-shrink: 0;
}

@media (max-width: 519px) {
	.ll-intro-pipeline__sep {
		display: none;
	}

	.ll-intro-pipeline__step {
		flex: 1 1 calc(33.333% - 0.5rem);
		min-width: 0;
	}
}

/* -------------------------------------------------------------------------- */
/* Homepage CTA strips (audit glass + quote neon)                               */
/* -------------------------------------------------------------------------- */

.ll-home-cta-section {
	position: relative;
}

.ll-home-cta-strip {
	position: relative;
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	align-items: center;
	padding: clamp(1.35rem, 3vw, 2rem);
	border-radius: 22px;
	overflow: hidden;
	isolation: isolate;
	transition:
		border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
	.ll-home-cta-strip {
		grid-template-columns: 1fr auto;
		gap: clamp(1.5rem, 3vw, 2.5rem);
	}
}

.ll-home-cta-strip__copy {
	position: relative;
	z-index: 2;
	text-align: left;
}

.ll-home-cta-strip__action {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.65rem;
}

@media (min-width: 768px) {
	.ll-home-cta-strip__action {
		align-items: center;
		justify-content: center;
		min-width: min(100%, 280px);
		text-align: center;
	}
}

.ll-home-cta-strip__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ll-accent);
}

.ll-home-cta-strip__eyebrow--quote {
	color: var(--ll-accent-blue);
}

.ll-home-cta-strip__title {
	margin: 0 0 0.65rem;
	font-family: var(--ll-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ll-ink);
}

.ll-home-cta-strip__text {
	margin: 0 0 0.85rem;
	max-width: 52ch;
	font-size: 0.96rem;
	line-height: 1.65;
	color: rgba(244, 247, 251, 0.82);
}

.ll-home-cta-strip__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ll-home-cta-strip__tags li {
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(244, 247, 251, 0.78);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-home-cta-strip__tags--quote li {
	border-color: rgba(91, 156, 255, 0.22);
	background: rgba(91, 156, 255, 0.08);
	color: rgba(196, 218, 255, 0.92);
}

.ll-home-cta-strip__btn {
	width: 100%;
	white-space: normal;
	text-align: center;
}

@media (min-width: 768px) {
	.ll-home-cta-strip__btn {
		min-width: 240px;
	}
}

.ll-home-cta-strip__note {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--ll-muted);
	max-width: 26ch;
}

.ll-home-cta-strip__note a {
	color: var(--ll-accent-blue);
	font-weight: 600;
}

.ll-home-cta-strip__note a:hover {
	color: var(--ll-ink);
}

/* Audit — glass morphism */
.ll-home-cta-strip--audit {
	background: rgba(18, 26, 43, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.18);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ll-home-cta-strip--audit .ll-home-cta-strip__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.ll-home-cta-strip--audit .ll-home-cta-strip__mesh {
	position: absolute;
	inset: 0;
	opacity: 0.4;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 90% 80% at 20% 50%, #000 15%, transparent 70%);
}

.ll-home-cta-strip--audit .ll-home-cta-strip__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(48px);
	pointer-events: none;
}

.ll-home-cta-strip--audit .ll-home-cta-strip__orb--gold {
	width: 220px;
	height: 220px;
	top: -40%;
	left: -6%;
	background: var(--ll-glow-gold);
	animation: ll-cta-orb-drift 12s ease-in-out infinite;
}

.ll-home-cta-strip--audit .ll-home-cta-strip__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	z-index: 1;
	background: radial-gradient(
		480px circle at var(--mouse-x, 50%) var(--mouse-y, 40%),
		rgba(232, 163, 23, 0.16),
		rgba(91, 156, 255, 0.08) 50%,
		transparent 68%
	);
}

.ll-home-cta-strip--audit .ll-home-cta-strip__scan {
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 163, 23, 0.7), rgba(91, 156, 255, 0.45), transparent);
	opacity: 0.75;
	pointer-events: none;
	z-index: 1;
	animation: ll-cta-scan-sweep 5s ease-in-out infinite;
}

.ll-home-cta-strip--audit:hover,
.ll-home-cta-strip--audit:focus-within {
	border-color: rgba(232, 163, 23, 0.32);
	box-shadow:
		0 28px 56px rgba(0, 0, 0, 0.35),
		0 0 40px rgba(232, 163, 23, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

.ll-home-cta-strip--audit:hover .ll-home-cta-strip__glow,
.ll-home-cta-strip--audit:focus-within .ll-home-cta-strip__glow {
	opacity: 1;
}

.ll-home-cta-strip__btn--pulse {
	animation: ll-cta-btn-pulse 3.5s ease-in-out infinite;
}

.ll-home-cta-strip--audit:hover .ll-home-cta-strip__btn--pulse {
	animation: none;
}

/* Quote — neon frame + circuit grid */
.ll-home-cta-strip--quote {
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(91, 156, 255, 0.12), transparent 55%),
		var(--ll-surface-raised);
	border: 1px solid rgba(91, 156, 255, 0.14);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.ll-home-cta-strip--quote .ll-home-cta-strip__frame {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: conic-gradient(
		from var(--ll-quote-frame-angle, 0deg),
		rgba(91, 156, 255, 0.85),
		rgba(232, 163, 23, 0.65),
		rgba(91, 156, 255, 0.35),
		rgba(91, 156, 255, 0.85)
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.55;
	animation: ll-quote-frame-spin 10s linear infinite;
	pointer-events: none;
	z-index: 0;
}

.ll-home-cta-strip--quote .ll-home-cta-strip__grid-bg {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(91, 156, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(91, 156, 255, 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: linear-gradient(135deg, #000 20%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

.ll-home-cta-strip--quote .ll-home-cta-strip__glow--quote {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	z-index: 1;
	background: radial-gradient(
		520px circle at var(--mouse-x, 70%) var(--mouse-y, 50%),
		rgba(91, 156, 255, 0.18),
		rgba(232, 163, 23, 0.06) 55%,
		transparent 70%
	);
}

.ll-home-cta-strip--quote .ll-home-cta-strip__nodes {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	flex-direction: column;
	gap: 0.65rem;
	pointer-events: none;
	z-index: 1;
}

@media (min-width: 768px) {
	.ll-home-cta-strip--quote .ll-home-cta-strip__nodes {
		display: flex;
		right: calc(280px + 2.5rem);
	}
}

.ll-home-cta-strip--quote .ll-home-cta-strip__nodes span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ll-accent-blue);
	box-shadow: 0 0 12px rgba(91, 156, 255, 0.75);
	animation: ll-cta-node-pulse 2.2s ease-in-out infinite;
}

.ll-home-cta-strip--quote .ll-home-cta-strip__nodes span:nth-child(2) {
	animation-delay: 0.35s;
}

.ll-home-cta-strip--quote .ll-home-cta-strip__nodes span:nth-child(3) {
	animation-delay: 0.7s;
}

.ll-home-cta-strip--quote:hover,
.ll-home-cta-strip--quote:focus-within {
	border-color: rgba(91, 156, 255, 0.35);
	box-shadow:
		0 28px 56px rgba(0, 0, 0, 0.38),
		0 0 48px rgba(91, 156, 255, 0.12);
	transform: translateY(-2px);
}

.ll-home-cta-strip--quote:hover .ll-home-cta-strip__glow--quote,
.ll-home-cta-strip--quote:focus-within .ll-home-cta-strip__glow--quote {
	opacity: 1;
}

.ll-home-cta-strip--quote:hover .ll-home-cta-strip__frame,
.ll-home-cta-strip--quote:focus-within .ll-home-cta-strip__frame {
	opacity: 0.9;
}

.ll-home-cta-strip__btn--shimmer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ll-accent-blue) 0%, #4a8ae8 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.ll-home-cta-strip__btn--shimmer::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 80%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	animation: ll-cta-shimmer 4s ease-in-out infinite;
	pointer-events: none;
}

.ll-home-cta-strip--quote:hover .ll-home-cta-strip__btn--shimmer::after {
	animation-duration: 2.5s;
}

@keyframes ll-cta-orb-drift {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(12%, 8%);
	}
}

@keyframes ll-cta-scan-sweep {
	0%,
	100% {
		left: -100%;
		opacity: 0;
	}
	15% {
		opacity: 0.75;
	}
	50% {
		left: 120%;
		opacity: 0.75;
	}
	65% {
		opacity: 0;
	}
}

@keyframes ll-cta-btn-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(232, 163, 23, 0.35);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(232, 163, 23, 0);
	}
}

@keyframes ll-quote-frame-spin {
	to {
		--ll-quote-frame-angle: 360deg;
	}
}

@property --ll-quote-frame-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

@keyframes ll-cta-node-pulse {
	0%,
	100% {
		opacity: 0.35;
		transform: scale(0.85);
	}
	50% {
		opacity: 1;
		transform: scale(1.15);
	}
}

@keyframes ll-cta-shimmer {
	0%,
	100% {
		left: -120%;
	}
	45% {
		left: 140%;
	}
}

/* -------------------------------------------------------------------------- */
/* Bento stack                                                                */
/* -------------------------------------------------------------------------- */

.ll-stack-section {
	position: relative;
}

.ll-stack-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(900px, 90%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 163, 23, 0.35), transparent);
}

.ll-bento-grid {
	display: grid;
	gap: var(--ll-space-lg);
	align-items: stretch;
}

@media (min-width: 900px) {
	.ll-bento-grid {
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}
}

.ll-bento-card {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: 20px;
	background: var(--ll-surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	transform-style: preserve-3d;
}

.ll-bento-card__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.ll-bento-card--seo .ll-bento-card__glow {
	background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(232, 163, 23, 0.12), transparent 45%);
}

.ll-bento-card--ledger .ll-bento-card__glow {
	background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(91, 156, 255, 0.12), transparent 45%);
}

.ll-bento-card:hover {
	border-color: rgba(232, 163, 23, 0.28);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.ll-bento-card--ledger:hover {
	border-color: rgba(91, 156, 255, 0.28);
}

.ll-bento-card:hover .ll-bento-card__glow {
	opacity: 1;
}

.ll-bento-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: var(--ll-accent);
	background: rgba(232, 163, 23, 0.1);
	border: 1px solid rgba(232, 163, 23, 0.2);
	position: relative;
	z-index: 1;
}

.ll-bento-card--ledger .ll-bento-card__icon {
	color: var(--ll-accent-blue);
	background: rgba(91, 156, 255, 0.1);
	border-color: rgba(91, 156, 255, 0.2);
}

.ll-bento-card__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ll-accent);
	position: relative;
	z-index: 1;
}

.ll-bento-card--ledger .ll-bento-card__label {
	color: var(--ll-accent-blue);
}

.ll-bento-card__title {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	margin: 0;
	line-height: 1.25;
	position: relative;
	z-index: 1;
}

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

.ll-bento-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0.25rem 0 0.75rem;
	padding: 0;
	position: relative;
	z-index: 1;
}

.ll-bento-card__tags li {
	padding: 0.25rem 0.55rem;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--ll-muted);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.ll-bento-card .ll-btn {
	position: relative;
	z-index: 1;
	align-self: flex-start;
}

.ll-bento-bridge {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: 48px;
}

@media (min-width: 900px) {
	.ll-bento-bridge {
		display: flex;
	}
}

.ll-bento-bridge__line {
	width: 2px;
	height: 36px;
	background: linear-gradient(180deg, transparent, var(--ll-accent), var(--ll-accent-blue), transparent);
	opacity: 0.6;
}

.ll-bento-bridge__node {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ll-accent), var(--ll-accent-blue));
	box-shadow: 0 0 20px rgba(232, 163, 23, 0.4);
	animation: ll-pulse-ring 2.8s ease-out infinite;
}

/* Bento stack                                                                */
.ll-proof-visual-grid {
	display: grid;
	gap: var(--ll-space-lg);
	margin-top: var(--ll-space-xl);
}

@media (min-width: 900px) {
	.ll-proof-visual-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ll-proof-visual {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--ll-transition), box-shadow 0.35s ease;
}

.ll-proof-visual:hover {
	transform: translateY(-6px);
	border-color: rgba(232, 163, 23, 0.28);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.ll-proof-visual__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.ll-proof-visual__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, 0.75) 100%);
	pointer-events: none;
}

.ll-proof-visual__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-proof-visual:hover .ll-proof-visual__media img {
	transform: scale(1.05);
}

.ll-proof-visual__body {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.25rem 1.25rem 1.35rem;
	flex: 1;
}

.ll-proof-visual__title {
	margin: 0;
	font-family: var(--ll-display);
	font-size: 1.1rem;
	line-height: 1.3;
	color: var(--ll-ink);
}

.ll-proof-visual__body p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--ll-muted);
	flex: 1;
}

.ll-proof-visual__link {
	margin-top: auto;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ll-accent);
}

.ll-proof-visual__link:hover {
	color: var(--ll-accent-hover);
}

/* Testimonials */
.ll-testimonials-section {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ll-testimonials-grid {
	display: grid;
	gap: var(--ll-space-md);
	margin-top: var(--ll-space-xl);
}

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

.ll-testimonial-card {
	margin: 0;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border-radius: 16px;
	background: var(--ll-surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	min-height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--ll-transition);
}

.ll-testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	font-family: var(--ll-display);
	font-size: 4rem;
	line-height: 1;
	color: rgba(232, 163, 23, 0.12);
	pointer-events: none;
}

.ll-testimonial-card--blue::before {
	color: rgba(91, 156, 255, 0.14);
}

.ll-testimonial-card--green::before {
	color: rgba(52, 211, 153, 0.14);
}

.ll-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 163, 23, 0.22);
}

.ll-testimonial-card--blue:hover {
	border-color: rgba(91, 156, 255, 0.28);
}

.ll-testimonial-card--green:hover {
	border-color: rgba(52, 211, 153, 0.28);
}

.ll-testimonial-card__stars {
	position: relative;
	z-index: 1;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	color: var(--ll-accent);
	line-height: 1;
}

.ll-testimonial-card__quote {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(244, 247, 251, 0.9);
	position: relative;
	z-index: 1;
}

.ll-testimonial-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: auto;
	position: relative;
	z-index: 1;
}

.ll-testimonial-card__avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ll-display);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ll-accent-text);
	background: linear-gradient(135deg, var(--ll-accent), var(--ll-accent-hover));
}

.ll-testimonial-card--blue .ll-testimonial-card__avatar {
	background: linear-gradient(135deg, var(--ll-accent-blue), #7eb3ff);
	color: var(--ll-canvas);
}

.ll-testimonial-card--green .ll-testimonial-card__avatar {
	background: linear-gradient(135deg, var(--ll-success), #6ee7b7);
	color: var(--ll-canvas-deep);
}

.ll-testimonial-card__cite {
	font-style: normal;
	display: grid;
	gap: 0.15rem;
}

.ll-testimonial-card__cite strong {
	font-size: 0.92rem;
	color: var(--ll-ink);
}

.ll-testimonial-card__cite span {
	font-size: 0.78rem;
	color: var(--ll-muted);
	line-height: 1.4;
}

/* SEO content — 3-column cards */
.ll-seo-content-section {
	padding-top: 0;
}

.ll-seo-cards-grid {
	display: grid;
	gap: var(--ll-space-md);
	margin-top: var(--ll-space-xl);
}

@media (min-width: 900px) {
	.ll-seo-cards-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: stretch;
	}
}

.ll-seo-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: clamp(1.35rem, 3vw, 1.75rem);
	border-radius: 16px;
	background: var(--ll-surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.08);
	min-height: 100%;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--ll-transition), box-shadow 0.35s ease;
}

.ll-seo-card:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 163, 23, 0.24);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.ll-seo-card__title {
	margin: 0;
	font-family: var(--ll-display);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.35;
	color: var(--ll-ink);
}

.ll-seo-card__text {
	margin: 0;
	flex: 1;
	color: rgba(244, 247, 251, 0.85);
	line-height: 1.7;
	font-size: 0.95rem;
}

.ll-seo-card__link {
	margin-top: auto;
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--ll-accent);
}

.ll-seo-card__link:hover {
	color: var(--ll-accent-hover);
}

/* Case studies */
.ll-case-section {
	padding-top: 0;
}

.ll-case-grid--home {
	margin-top: var(--ll-space-xl);
}

@media (min-width: 900px) {
	.ll-case-grid--home {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ll-case-card--home {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-height: 100%;
	padding: clamp(1.35rem, 3vw, 1.75rem);
	border-radius: 16px;
	background: var(--ll-surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--ll-transition), box-shadow 0.35s ease;
}

.ll-case-card--home:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 163, 23, 0.24);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.ll-case-card__title {
	margin: 0;
	font-family: var(--ll-display);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.35;
	color: var(--ll-ink);
}

.ll-case-card__client {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ll-accent);
	letter-spacing: 0.04em;
}

.ll-case-card__summary {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--ll-muted);
}

.ll-case-card__points {
	margin: 0.25rem 0 0.75rem;
	padding-left: 1.1rem;
	color: rgba(244, 247, 251, 0.85);
	font-size: 0.88rem;
	line-height: 1.55;
}

.ll-case-card__points li + li {
	margin-top: 0.35rem;
}

.ll-case-card__link {
	margin-top: auto;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ll-accent);
}

.ll-case-card__link:hover {
	color: var(--ll-accent-hover);
}

/* CTA contact — plain copy + glow form panel */
.ll-cta-split {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

@media (min-width: 900px) {
	.ll-cta-split {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}

.ll-cta-split__copy {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (min-width: 900px) {
	.ll-cta-split__copy {
		justify-content: center;
		padding-right: clamp(0.5rem, 2vw, 1.5rem);
	}
}

.ll-cta-split__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ll-accent);
}

.ll-cta-split__copy .ll-cta-title {
	text-align: left;
	margin-bottom: 0.85rem;
}

.ll-cta-split__secondary {
	margin: 0 0 1.25rem;
	color: rgba(244, 247, 251, 0.82);
	line-height: 1.7;
	font-size: 0.98rem;
	max-width: 46ch;
}

.ll-cta-split__helps {
	margin-bottom: 1.25rem;
	padding: 1rem 1.1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.ll-cta-split__helps-title {
	margin: 0 0 0.65rem;
	font-family: var(--ll-display);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ll-ink);
}

.ll-cta-split__helps-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.ll-cta-split__helps-list li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--ll-muted);
}

.ll-cta-split__helps-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--ll-accent);
	box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.15);
}

.ll-cta-split__note {
	margin: 1rem 0 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--ll-muted);
	max-width: 46ch;
}

.ll-cta-box--form {
	max-width: none;
	width: 100%;
	text-align: left;
	align-items: stretch;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0;
}

@media (min-width: 900px) {
	.ll-cta-box--form {
		height: 100%;
	}
}

.ll-cta-box__lead {
	margin: 0 0 1rem;
	color: var(--ll-muted);
	line-height: 1.7;
	font-size: 1rem;
	max-width: 42ch;
}

.ll-cta-box__email {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	color: var(--ll-muted);
}

.ll-cta-box__email a {
	color: var(--ll-accent);
	font-weight: 700;
}

.ll-cta-box__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.ll-cta-box__links a {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ll-muted);
}

.ll-cta-box__links a:hover {
	color: var(--ll-ink);
}

.ll-cta-box__form {
	position: relative;
	z-index: 1;
}

.ll-form--compact {
	max-width: none;
	margin: 0;
}

.ll-form--compact textarea {
	min-height: 110px;
}

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

/* Legacy proof card hover (shared styles) */
.ll-proof-card {
	border-radius: 14px;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--ll-transition);
}

.ll-proof-card:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 163, 23, 0.22);
}


.ll-industry-marquee {
	margin-top: var(--ll-space-xl);
	padding: 0.85rem 0;
	border-block: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ll-industry-marquee__track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	animation: ll-marquee 28s linear infinite;
}

.ll-industry-marquee__track span {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(148, 163, 184, 0.55);
	white-space: nowrap;
}

@keyframes ll-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* -------------------------------------------------------------------------- */
/* FAQ shell — retained for other templates referencing growth styles */

/* -------------------------------------------------------------------------- */
/* CTA glow box                                                               */
/* -------------------------------------------------------------------------- */

.ll-cta-box--glow {
	position: relative;
	overflow: hidden;
	border: none;
	background: transparent;
	box-shadow: none;
}

.ll-cta-box--glow::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: conic-gradient(from 0deg, var(--ll-accent), var(--ll-accent-blue), var(--ll-accent));
	animation: ll-cta-spin 8s linear infinite;
	opacity: 0.35;
	z-index: 0;
}

.ll-cta-box--glow::after {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: calc(24px - 2px);
	background: var(--ll-surface-raised);
	z-index: 0;
}

.ll-cta-box--glow > * {
	position: relative;
	z-index: 1;
}

@keyframes ll-cta-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Stagger reveal delays */
.ll-reveal[data-reveal-delay="100"] {
	transition-delay: 0.1s;
}

.ll-reveal[data-reveal-delay="140"] {
	transition-delay: 0.14s;
}

.ll-reveal[data-reveal-delay="160"] {
	transition-delay: 0.16s;
}

.ll-reveal[data-reveal-delay="220"] {
	transition-delay: 0.22s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.ll-hero__orb,
	.ll-hero__pulse,
	.ll-hero-panel__live-dot,
	.ll-bento-bridge__node,
	.ll-industry-marquee__track,
	.ll-cta-box--glow::before,
	.ll-home-cta-strip--audit .ll-home-cta-strip__orb,
	.ll-home-cta-strip--audit .ll-home-cta-strip__scan,
	.ll-home-cta-strip--quote .ll-home-cta-strip__frame,
	.ll-home-cta-strip--quote .ll-home-cta-strip__nodes span,
	.ll-home-cta-strip__btn--pulse,
	.ll-home-cta-strip__btn--shimmer::after {
		animation: none !important;
	}

	.ll-hero-spark i {
		transform: scaleY(1);
	}

	.ll-hero-progress__bar {
		width: var(--progress, 82%);
	}
}
