/* ===== ABOUT PAGE OVERRIDES ===== */
main.about-main {
	padding: 0;
	min-height: 0;
}

/* ===== SHARED SECTION TOKENS ===== */
.section {
	padding: 5rem 0;
}

.section--alt {
	background: var(--bg-light);
}

.section--dark {
	background: var(--bg-dark);
	color: #fff;
}

.eyebrow {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.625rem, 3.5vw, 2.375rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 1rem;
	color: inherit;
	max-width: none;
}

.section-desc {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--text-muted);
	max-width: 36rem;
	margin-bottom: 2rem;
}

.section-header {
	margin-bottom: 3.5rem;
}

.section-header.centered {
	text-align: center;
}

.section-header.centered .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.btn-lg {
	padding: 0.8125rem 1.875rem;
	font-size: 1rem;
	border-radius: 0.5rem;
}

.btn-ghost-white {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
}

.btn-ghost-white:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: #fff !important;
}

.btn-outline-primary {
	background: transparent !important;
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
	background: var(--primary) !important;
	color: #fff !important;
}

.fade-up {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: none;
}

/* ===== PAGE HERO ===== */
.about-hero {
	background: var(--bg-dark) center / cover no-repeat;
	color: #fff;
	padding: 6rem 0 5rem;
	position: relative;
	overflow: hidden;
}

.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.52) 60%, rgba(246, 153, 50, 0.18) 100%);
	pointer-events: none;
}

.about-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 52rem;
}

.about-hero-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #fff;
	max-width: none;
}

.about-hero-title span {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero-sub {
	font-size: clamp(1rem, 1.75vw, 1.1875rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	max-width: 42rem;
	margin-bottom: 2.5rem;
}

.about-hero-actions {
	display: flex;
	gap: 0.875rem;
	flex-wrap: wrap;
}

/* ===== PURPOSE ===== */
.purpose-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.purpose-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
}

.purpose-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.purpose-card--alt::before {
	background: linear-gradient(90deg, var(--secondary), #e6522b);
}

.purpose-img {
	width: 100%;
	height: 14rem;
	object-fit: contain;
	object-position: center;
	display: block;
	margin-bottom: 1.5rem;
}

.purpose-card h3 {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 0.875rem;
	color: var(--text);
}

.purpose-card p {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--text-muted);
	max-width: none;
}

/* ===== WHAT MAKES US UNIQUE ===== */
.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.pillar-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 2rem 1.75rem;
	transition: box-shadow 0.25s, transform 0.25s;
}

.pillar-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-0.125rem);
}

.pillar-img {
	width: 100%;
	height: 10rem;
	object-fit: contain;
	object-position: center;
	display: block;
	margin-bottom: 1.25rem;
}

.pillar-num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
	display: block;
}

.pillar-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
	color: var(--text);
	line-height: 1.35;
}

.pillar-card p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--text-muted);
	max-width: none;
}

/* ===== STATS BAR ===== */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	overflow: hidden;
	background: var(--bg);
}

.stats-bar-item {
	padding: 2.5rem 1.5rem;
	text-align: center;
	position: relative;
}

.stats-bar-item + .stats-bar-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: var(--border);
}

.stats-bar-num {
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-variant-numeric: tabular-nums;
}

.stats-bar-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	line-height: 1.4;
}

/* ===== TEAM ===== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.team-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	overflow: hidden;
	transition: box-shadow 0.25s;
}

.team-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.team-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top;
	display: block;
	background: var(--bg-light);
}

.team-avatar {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(246, 153, 50, 0.12), rgba(246, 97, 50, 0.08));
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -0.02em;
}

.team-body {
	padding: 1.5rem 1.5rem 1.75rem;
}

.team-name-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.team-name {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0;
}

.team-title {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 0.03em;
	margin-bottom: 0.875rem;
}

.team-bio {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--text-muted);
	max-width: none;
}

.team-linkedin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	background: #0077b5;
	color: #fff;
	border-radius: 0.3125rem;
	transition: opacity 0.2s, transform 0.2s;
}

.team-linkedin:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.team-linkedin svg {
	width: 0.875rem;
	height: 0.875rem;
	flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
	background: var(--bg-dark);
	color: #fff;
	text-align: center;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(246, 153, 50, 0.2) 0%, transparent 60%),
		radial-gradient(ellipse 40% 60% at 80% 100%, rgba(246, 97, 50, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.cta-banner .container {
	position: relative;
	z-index: 1;
}

.cta-banner .eyebrow {
	margin-bottom: 1rem;
}

.cta-banner .section-title {
	color: #fff;
	margin-bottom: 1rem;
}

.cta-banner .section-desc {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto 2.5rem;
}

.cta-banner-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 64em) {
	.pillars-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 48em) {
	.section {
		padding: 3.5rem 0;
	}

	.section-header {
		margin-bottom: 2.5rem;
	}

	.purpose-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 1rem;
	}

	.stats-bar-item:nth-child(odd)::before {
		display: none;
	}

	.stats-bar-item:nth-child(3),
	.stats-bar-item:nth-child(4) {
		border-top: 1px solid var(--border);
	}

	.stats-bar-item + .stats-bar-item::before {
		display: none;
	}

	.stats-bar-item:nth-child(even)::before {
		content: "";
		position: absolute;
		left: 0;
		top: 20%;
		height: 60%;
		width: 1px;
		background: var(--border);
		display: block;
	}

	.team-grid {
		grid-template-columns: 1fr;
		max-width: 26rem;
		margin: 0 auto;
	}

	.about-hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 30em) {
	.stats-bar {
		grid-template-columns: 1fr;
	}

	.stats-bar-item + .stats-bar-item::before,
	.stats-bar-item:nth-child(even)::before {
		display: none;
	}

	.stats-bar-item {
		border-top: 1px solid var(--border);
	}

	.stats-bar-item:first-child {
		border-top: none;
	}
}
