.section {
	margin: 4.5rem 0;
	scroll-margin-top: 90px;
}

.label {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
	display: inline-block;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.intro {
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Hero */
.hero {
	text-align: center;
	padding-top: 4rem;
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: clamp(2.4rem, 5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
	color: var(--accent-primary);
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 700px;
	margin: 0 auto 3rem;
	line-height: 1.6;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-top: 2rem;
}

.hero-pill {
	padding: 0.5rem 1rem;
	border-radius: 50px;
	background: rgba(12, 74, 82, 0.08);
	border: 1px solid rgba(12, 74, 82, 0.15);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.85rem;
	transition: var(--transition);
}

.hero-pill:hover {
	background: rgba(12, 74, 82, 0.12);
	transform: translateY(-1px);
	cursor: default;
}

/* Founding story */
.founding-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 3rem;
	margin-top: 3rem;
	box-shadow: var(--shadow-soft);
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: flex-start;
}

.founding-label {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

.founding-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
	color: var(--text-primary);
}

.founding-text {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.founder-highlight {
	background: #0A0A0A;
	color: var(--white);
	border-radius: var(--radius-md);
	padding: 2rem;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.95rem;
	line-height: 1.7;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.founder-highlight strong {
	color: var(--accent-soft);
	font-size: 1.1rem;
	display: block;
	margin-bottom: 1rem;
	font-family: "Inter", sans-serif;
}

/* Grid helpers */
.grid {
	display: grid;
	gap: 2rem;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Team cards */
.person-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: var(--transition);
	height: 100%;
}

.person-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-heavy);
	border-color: rgba(12, 74, 82, 0.3);
}

.person-header {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 0.5rem;
}

.avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #F1F1F1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.person-name {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.person-role {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "IBM Plex Mono", monospace;
	color: var(--accent-primary);
	font-weight: 600;
}

.person-bio {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	flex-grow: 1;
}

.person-meta {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-style: italic;
	border-top: 1px solid var(--border-light);
	padding-top: 1rem;
	margin-top: 0.5rem;
}

.person-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.pill-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	padding: 0.5rem 0.875rem;
	border-radius: 50px;
	background: var(--accent-soft);
	color: var(--accent-primary);
	text-decoration: none;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 500;
	transition: var(--transition);
}

.pill-link:hover {
	text-decoration: none;
	background: #CDE6E3;
	transform: translateY(-1px);
}

/* Methodology */
.methodology {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 3rem;
	box-shadow: var(--shadow-soft);
}

.methodology-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.method-card {
	padding: 1.75rem;
	border-radius: var(--radius-md);
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: #FDFBF5;
	font-size: 1rem;
	transition: var(--transition);
	height: 100%;
}

.method-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--accent-primary);
}

.method-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.method-card p {
	color: var(--text-muted);
	line-height: 1.6;
	font-size: 0.95rem;
}

.method-label {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-primary);
	margin-bottom: 0.75rem;
	font-weight: 600;
	display: block;
}

/* Timeline */
.timeline {
	position: relative;
	margin-top: 2rem;
	max-width: 800px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 2px;
	background: rgba(12, 74, 82, 0.2);
}

.timeline-item {
	position: relative;
	padding-left: 3rem;
	margin-bottom: 2rem;
}

.timeline-dot {
	position: absolute;
	left: 5px;
	top: 0.35rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--accent-soft);
	border: 3px solid var(--accent-primary);
	z-index: 1;
}

.timeline-year {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-primary);
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.timeline-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.timeline-text {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Governance card */
.governance {
	background: linear-gradient(135deg, #0C4A52 0%, #0A0A0A 100%);
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: 3rem;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: center;
	box-shadow: var(--shadow-heavy);
}

.governance h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.governance p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	line-height: 1.7;
}

.governance-list {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 1rem;
	list-style: none;
	padding-left: 0;
}

.governance-list li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.governance-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--accent-soft);
	font-weight: bold;
}

.governance-badge {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-soft);
	margin-bottom: 0.5rem;
	display: block;
}

/* CTA */
.cta {
	margin: 4rem auto;
	text-align: center;
	max-width: 700px;
}

.cta p {
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
	.nav-links {
		order: 3;
		width: 100%;
		justify-content: center;
		margin-top: 1rem;
		display: none;
	}

	.nav-links.active {
		display: flex;
	}

	.menu-toggle {
		display: flex;
	}

	.btn-cta {
		order: 2;
		margin-left: auto;
	}
}

@media (max-width: 840px) {
	.founding-card {
		grid-template-columns: minmax(0, 1fr);
		padding: 2.5rem;
		gap: 2.5rem;
	}

	.governance {
		grid-template-columns: minmax(0, 1fr);
		padding: 2.5rem;
		gap: 2rem;
	}

	.section {
		margin: 3.5rem 0;
	}

	.hero {
		padding-top: 3rem;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 0;
		background: var(--white);
		padding: 1rem;
		border-radius: var(--radius-sm);
		margin-top: 1rem;
		border: 1px solid var(--border-light);
	}

	.nav-links a {
		padding: 0.75rem;
		width: 100%;
		text-align: center;
	}

	.nav-links.active {
		display: flex;
	}

	.methodology {
		padding: 2rem;
	}

	.methodology-grid {
		grid-template-columns: 1fr;
	}

	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.person-card {
		padding: 1.75rem;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}
}

@media (max-width: 600px) {
	.hero {
		padding-top: 2.5rem;
	}

	.founder-highlight {
		font-size: 0.9rem;
		padding: 1.5rem;
	}

	.methodology {
		padding: 1.75rem;
	}

	.governance {
		padding: 2rem 1.75rem;
	}

	.founding-card {
		padding: 2rem 1.5rem;
	}

	.timeline-item {
		padding-left: 2.5rem;
	}
}

@media print {
	header,
	.btn-cta,
	.cta,
	footer,
	.menu-toggle {
		display: none !important;
	}

	body {
		background: #fff !important;
		color: #000 !important;
		font-size: 12pt !important;
	}

	.section {
		margin: 2rem 0 !important;
	}

	.founding-card,
	.person-card,
	.methodology,
	.governance {
		box-shadow: none !important;
		border: 1px solid #ddd !important;
		break-inside: avoid;
	}

	.hero {
		padding-top: 1rem !important;
	}

	.container {
		max-width: 100% !important;
		padding: 0 1rem !important;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.person-card,
.method-card,
.timeline-item {
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
}

.person-card:nth-child(1) { animation-delay: 0.1s; }
.person-card:nth-child(2) { animation-delay: 0.2s; }
.person-card:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
