/**
 * Homepage-specific styles.
 */

.ll-hero {
	position: relative;
	min-height: calc(100vh - var(--ll-header-h));
	display: flex;
	align-items: center;
	padding: var(--ll-space-2xl) 0 var(--ll-space-3xl);
	overflow: hidden;
	background:
		radial-gradient(ellipse 55% 45% at 15% 10%, var(--ll-bg-glow-a), transparent 70%),
		radial-gradient(ellipse 45% 40% at 85% 30%, var(--ll-bg-glow-b), transparent 70%),
		var(--ll-canvas);
}

.ll-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: var(--ll-space-2xl);
	align-items: center;
}

.ll-hero__brand-mark {
	margin-bottom: var(--ll-space-lg);
}

.ll-hero__brand-mark img {
	height: 44px;
	width: auto;
}

.ll-hero h1 {
	margin: 0 0 1rem;
	max-width: 14ch;
}

.ll-hero__sub {
	color: var(--ll-muted);
	font-size: 1.1rem;
	max-width: 34rem;
	margin-bottom: var(--ll-space-xl);
}

.ll-hero__visual {
	position: relative;
}

.ll-dash-mock {
	background: var(--ll-surface);
	border: 1px solid var(--ll-border);
	border-radius: var(--ll-radius);
	border-top: 3px solid var(--ll-accent);
	padding: var(--ll-space-lg);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.ll-dash-mock__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--ll-space-md);
}

.ll-dash-mock__title {
	font-family: var(--ll-display);
	font-weight: 600;
	font-size: 0.95rem;
}

.ll-dash-mock__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: var(--ll-space-md);
}

.ll-dash-mock__stat {
	background: rgba(12, 14, 20, 0.65);
	border: 1px solid var(--ll-border);
	border-radius: var(--ll-radius-sm);
	padding: 12px;
	text-align: center;
}

.ll-dash-mock__stat strong {
	display: block;
	font-family: var(--ll-display);
	font-size: 1.5rem;
	color: var(--ll-accent);
	font-weight: 600;
}

.ll-dash-mock__stat span {
	font-size: 0.7rem;
	color: var(--ll-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ll-dash-mock__chart {
	height: 88px;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding: 8px 0;
	margin-bottom: var(--ll-space-md);
	border-bottom: 1px solid var(--ll-border);
}

.ll-dash-mock__bar-col {
	flex: 1;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, var(--ll-accent), rgba(34, 211, 238, 0.25));
	min-height: 12px;
}

.ll-dash-mock__bar-col.is-call {
	background: linear-gradient(180deg, var(--ll-cold), rgba(96, 165, 250, 0.25));
}

.ll-dash-mock__rows {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ll-dash-mock__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 0.8rem;
	color: var(--ll-muted);
	padding: 6px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.ll-dash-mock__row:last-child {
	border-bottom: none;
}

.ll-problem {
	border-top: 1px solid var(--ll-border);
	border-bottom: 1px solid var(--ll-border);
	background: var(--ll-canvas-deep);
}

.ll-problem__quote {
	font-family: var(--ll-display);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 500;
	line-height: 1.4;
	color: var(--ll-text);
	max-width: 40rem;
	margin: 0;
}

.ll-how-steps {
	counter-reset: ll-step;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--ll-space-lg);
}

.ll-how-steps li {
	counter-increment: ll-step;
	padding-top: var(--ll-space-md);
}

.ll-how-steps li::before {
	content: counter(ll-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: var(--ll-space-md);
	border-radius: var(--ll-radius-sm);
	background: rgba(34, 211, 238, 0.1);
	border: 1px solid var(--ll-border-accent);
	color: var(--ll-accent);
	font-family: var(--ll-display);
	font-weight: 600;
	font-size: 0.95rem;
}

.ll-how-steps h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

.ll-how-steps p {
	margin: 0;
	color: var(--ll-muted);
	font-size: 0.95rem;
}

.ll-verticals {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ll-verticals span {
	padding: 8px 14px;
	border: 1px solid var(--ll-border);
	border-radius: var(--ll-radius-sm);
	font-size: 0.875rem;
	color: var(--ll-muted);
	background: rgba(20, 23, 32, 0.6);
}

.ll-family {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ll-space-lg);
}

.ll-family__card h3 {
	margin: 0 0 0.35rem;
}

.ll-family__card p {
	margin: 0;
	color: var(--ll-muted);
	font-size: 0.95rem;
}

.ll-family__role {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ll-accent);
}

@media (max-width: 991.98px) {
	.ll-hero {
		min-height: 0;
		padding-top: var(--ll-space-xl);
	}

	.ll-hero__grid {
		grid-template-columns: 1fr;
		gap: var(--ll-space-xl);
	}

	.ll-hero h1 {
		max-width: none;
	}

	.ll-how-steps {
		grid-template-columns: 1fr;
	}

	.ll-family {
		grid-template-columns: 1fr;
	}
}
