/* Root landing page — scoped under body.lp (Task 1) */

body.lp {
	background: #0f0f10;
	color: #222;
}

body.lp .site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid #ececec;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

body.lp main {
	display: block;
	max-width: none;
	margin: 0;
	padding: 0;
	flex: 1;
}

body.lp .lp-hero {
	position: relative;
	min-height: min(92vh, 820px);
	display: flex;
	align-items: flex-end;
	padding: 3rem 1.25rem 3.5rem;
	background:
		linear-gradient(180deg, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.82) 55%, #0f0f10 100%),
		url('/web/ogp.png?v=2') center / cover no-repeat;
	color: #fff;
}

body.lp .lp-hero__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

body.lp .lp-brand {
	margin: 0 0 0.75rem;
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

body.lp .lp-brand span {
	color: #e8465a;
}

body.lp .lp-lead {
	max-width: 36rem;
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

body.lp .lp-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

body.lp .lp-cta .btn {
	text-decoration: none;
}

body.lp .lp-cta .btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

body.lp .lp-cta .btn--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	text-decoration: none;
}

body.lp .lp-section .lp-cta a:not(.btn) {
	color: #e8465a;
	font-weight: 600;
	text-decoration: none;
}

body.lp .lp-section .lp-cta a:not(.btn):hover {
	color: #d13a4d;
	text-decoration: underline;
}

body.lp .lp-section {
	background: #f6f6f6;
	padding: 3.5rem 1.25rem;
}

body.lp .lp-section--dark {
	background: #161618;
	color: #f3f3f3;
}

body.lp .lp-section__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

body.lp .lp-section h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
}

body.lp .lp-section__lead {
	margin: 0 0 1.5rem;
	max-width: 40rem;
	color: #888;
	font-size: 1rem;
	line-height: 1.7;
}

body.lp .lp-section--dark .lp-section__lead,
body.lp .lp-section--dark p {
	color: rgba(243, 243, 243, 0.85);
	line-height: 1.7;
}

body.lp .lp-section--dark a {
	color: #ff9aab;
}

body.lp .lp-section--dark a:hover {
	color: #fff;
}

body.lp .lp-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

body.lp .lp-feature {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	padding: 1.25rem;
}

body.lp .lp-feature h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
}

body.lp .lp-feature p {
	margin: 0;
	color: #888;
	font-size: 0.95rem;
	line-height: 1.6;
}

body.lp .lp-feature a {
	display: inline-block;
	margin-top: 0.75rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: #e8465a;
	text-decoration: none;
}

body.lp .lp-feature a:hover {
	color: #d13a4d;
	text-decoration: underline;
}

body.lp .lp-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

@media (max-width: 720px) {
	body.lp .lp-steps {
		grid-template-columns: 1fr;
	}
}

body.lp .lp-step {
	background: #fff;
	border-radius: 10px;
	padding: 1.25rem;
	border: 1px solid #ececec;
}

body.lp .lp-step__num {
	color: #e8465a;
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

body.lp .lp-step h3 {
	margin: 0.35rem 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
}

body.lp .lp-step p {
	margin: 0;
	color: #888;
	font-size: 0.95rem;
	line-height: 1.6;
}

body.lp .site-footer {
	background: #fff;
	border-top: 1px solid #ececec;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
	body.lp .lp-hero__inner {
		animation: lp-rise 0.55s ease both;
	}

	body.lp .lp-reveal {
		opacity: 0;
		transform: translateY(12px);
		transition: opacity 0.45s ease, transform 0.45s ease;
	}

	body.lp .lp-reveal.is-in {
		opacity: 1;
		transform: none;
	}

	body.lp .lp-cta .btn {
		transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
	}

	@media (hover: hover) {
		body.lp .lp-cta .btn:hover {
			transform: translateY(-1px);
		}
	}
}

@keyframes lp-rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.lp .lp-hero__inner {
		animation: none;
	}

	body.lp .lp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	body.lp .lp-cta .btn {
		transition: none;
	}

	body.lp .lp-cta .btn:hover {
		transform: none;
	}
}
