/* Landing Page */

.landing {
	max-width: 560px;
	margin: 2rem auto;
	padding: 0 1rem;
	text-align: center;
}

.landing-banner {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius, 12px);
	margin-bottom: 1.5rem;
	object-fit: cover;
}

.landing-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1.25rem;
	line-height: 1.3;
}

.landing-text {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--text-muted);
	margin-bottom: 2rem;
}

.landing-cta {
	margin: 0;
}

.landing-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--accent-gradient);
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	border-radius: 14px;
	box-shadow: 0 4px 20px var(--accent-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.landing-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px var(--accent-shadow);
	color: var(--text-light);
}

.landing-button:active {
	transform: translateY(0);
}
