/* About page — SPA-canonical styles. Mirrors components/About.jsx exactly. */

/* ── Hero ────────────────────────────────────────────────────────── */
.va-about-hero {
	padding: 140px 48px 64px;
	background: var(--paper);
}

.va-about-hero-inner {
	max-width: 1240px;
	margin: 0 auto;
}

.va-about-hero-title {
	margin: 20px 0 0;
	font-size: clamp(72px, 8vw, 124px);
	line-height: 0.95;
	letter-spacing: -0.025em;
	font-weight: 400;
	max-width: 1100px;
}

.va-about-hero-lede {
	margin-top: 28px;
	max-width: 720px;
	font-size: 22px;
}

/* ── Founder cards ───────────────────────────────────────────────── */
/* WP template puts the cards directly under .va-about-founders (no extra
 * wrapper); we make the section itself the 2-col grid. SPA wraps the same
 * cards in a `<div style="display:grid; grid-template-columns:1fr 1fr; gap:48px">`
 * inside a `max-width: 1240` container — visually the same result. */
.va-about-founders {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 24px 48px 64px;
}

.va-about-founder {
	background: var(--paper-warm);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}

.va-about-founder-img {
	width: 100%;
	aspect-ratio: 5 / 4;
	background: var(--stone-soft);
	overflow: hidden;
}

.va-about-founder-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.va-about-founder-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.va-about-founder-name {
	margin: 0;
	font-size: 40px;
	letter-spacing: -0.015em;
	line-height: 1.05;
	font-weight: 400;
}

.va-about-founder-body p {
	margin: 8px 0 0;
	font-size: 16px;
	color: var(--ink);
	line-height: 1.6;
}

.va-about-founder-links {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
}

.va-about-founder-links a {
	color: var(--terracotta);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

/* ── Why we built this (dark ionian block) ───────────────────────── */
.va-about-why {
	padding: 72px 48px;
	background: var(--ionian-deep);
	color: #fff;
}

.va-about-why-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.va-about-why .eyebrow-light {
	color: rgba(255, 255, 255, 0.6);
}

.va-about-why-title {
	margin: 16px 0 28px;
	font-size: clamp(44px, 5vw, 72px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: #fff;
	font-weight: 400;
}

.va-about-why-lede {
	max-width: 760px;
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.65;
}

/* ── Ecosystem & partners strip ──────────────────────────────────── */
.va-about-ecosystem {
	padding: 64px 48px;
	background: var(--paper-warm);
}

.va-about-ecosystem-grid {
	max-width: 1240px;
	margin: 32px auto 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.va-about-ecosystem-cell {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	background: var(--paper);
	border: 1px solid var(--line);
}

.va-about-ecosystem-badge {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	font-family: var(--font-mono);
}

.va-about-ecosystem-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

/* ── Mobile: matches SPA at window.innerWidth <= 900 ─────────────── */
@media (max-width: 900px) {
	.va-about-hero {
		padding: 100px 24px 40px;
	}
	.va-about-hero-title {
		font-size: clamp(44px, 12vw, 64px);
	}
	.va-about-hero-lede {
		font-size: 18px;
	}
	.va-about-founders {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 16px 24px 40px;
	}
	.va-about-founder-img {
		aspect-ratio: 4 / 3;
	}
	.va-about-founder-body {
		padding: 24px;
	}
	.va-about-founder-name {
		font-size: 32px;
	}
	.va-about-founder-body p {
		font-size: 15px;
	}
	.va-about-why {
		padding: 48px 24px;
	}
	.va-about-why-title {
		font-size: clamp(32px, 8vw, 44px);
	}
	.va-about-ecosystem {
		padding: 40px 24px;
	}
	.va-about-ecosystem-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}
