/*
 * /start/ — the ACF-driven sections below the landing stage.
 *
 * Kept out of main.css so that file stays a byte-identical copy of
 * bitfa.fund's and can be re-synced. Only uses variables the fund design
 * system already defines.
 */

/* The landing stage sizes itself to one viewport; there is now content under
   it, so let the page scroll normally. */
body.landing-page .landing-stage { min-height: 0; }

.start-intro__video,
.start-step__media {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--dark-2, #1e2125);
}

.start-intro__video {
	max-width: 860px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}

.start-intro__video video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.start-intro__desc {
	max-width: 720px;
	margin: 28px auto 0;
	text-align: center;
	color: var(--muted);
	line-height: 2.1;
}

.start-intro__desc p { margin: 0 0 8px; }

.start-intro__cta {
	margin-top: 28px;
	text-align: center;
}

/* ── Roadmap steps ── */

.start-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
	margin-top: 34px;
}

.start-step {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s;
}

.start-step:hover {
	border-color: var(--primary);
	transform: translateY(-3px);
}

.start-step__media {
	aspect-ratio: 16 / 9;
	border-radius: 0;
}

.start-step__media video,
.start-step__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.start-step__body {
	padding: 20px;
	position: relative;
	flex: 1;
}

.start-step__num {
	position: absolute;
	inset-inline-end: 20px;
	top: 18px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	opacity: .7;
}

.start-step__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
	padding-inline-end: 28px;
}

.start-step__desc {
	font-size: 14px;
	line-height: 2;
	color: var(--muted);
	margin: 0;
}

.start-step__link {
	display: inline-block;
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

/* ── SEO text block ── */

.start-seobox__body {
	color: var(--muted);
	line-height: 2.1;
}

.start-seobox__body h2,
.start-seobox__body h3 {
	color: var(--ink, inherit);
	margin: 24px 0 10px;
}

@media (max-width: 560px) {
	.start-steps__grid { grid-template-columns: 1fr; }
}
