/* =========================================================
   METAPEPS — PREMIUM ABOUT PAGE
========================================================= */

.metapeps-about {
	--mp-orange: #FC710C;
	--mp-orange-dark: #d95700;
	--mp-dark: #071019;
	--mp-dark-2: #0b1620;
	--mp-text: #17212b;
	--mp-muted: #687480;
	--mp-light: #f7f9fb;
	--mp-border: rgba(7,16,25,.10);
	background: #fff;
	color: var(--mp-text);
	overflow: hidden;
}

.about-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}


/* HERO */

.about-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 80% 50%, rgba(252,113,12,.16), transparent 30%),
		linear-gradient(135deg, #071019 0%, #0b1823 55%, #101d27 100%);
	color: #fff;
	overflow: hidden;
}

.about-hero__glow {
	position: absolute;
	width: 500px;
	height: 500px;
	right: -180px;
	top: 80px;
	border-radius: 50%;
	background: rgba(252,113,12,.12);
	filter: blur(70px);
}

.about-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 60px;
}

.about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .22em;
	color: var(--mp-orange);
	text-transform: uppercase;
	margin-bottom: 18px;
}

.about-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--mp-orange);
}

.about-hero h1 {
	font-size: clamp(48px, 6vw, 82px);
	line-height: .96;
	letter-spacing: -.045em;
	margin: 0 0 28px;
	font-weight: 800;
}

.about-hero h1 span,
.about-heading h2 span,
.about-standard__content h2 span,
.about-cta h2 span {
	color: var(--mp-orange);
}

.about-hero__lead {
	max-width: 600px;
	color: rgba(255,255,255,.72);
	font-size: 18px;
	line-height: 1.75;
	margin-bottom: 34px;
}

.about-hero__actions,
.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: .25s ease;
}

.about-btn--primary {
	background: var(--mp-orange);
	color: #fff;
	box-shadow: 0 12px 35px rgba(252,113,12,.25);
}

.about-btn--primary:hover {
	background: #ff8124;
	transform: translateY(-2px);
	color: #fff;
}

.about-btn--ghost {
	border: 1px solid rgba(255,255,255,.22);
	color: #fff;
}

.about-btn--ghost:hover {
	background: rgba(255,255,255,.07);
	color: #fff;
}

.about-hero__visual {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-orbit {
	position: absolute;
	border: 1px solid rgba(252,113,12,.18);
	border-radius: 50%;
}

.about-orbit--one {
	width: 430px;
	height: 430px;
}

.about-orbit--two {
	width: 310px;
	height: 310px;
	border-color: rgba(255,255,255,.08);
}

.about-hero-card {
	position: relative;
	z-index: 3;
	width: 300px;
	min-height: 370px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
	backdrop-filter: blur(18px);
	box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.about-hero-card__top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .18em;
	color: rgba(255,255,255,.6);
}

.about-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mp-orange);
	box-shadow: 0 0 15px var(--mp-orange);
}

.about-hero-card__symbol {
	width: 150px;
	height: 150px;
	margin: auto;
	display: grid;
	place-items: center;
	border: 1px solid rgba(252,113,12,.45);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(252,113,12,.2), transparent 65%);
}

.about-hero-card__symbol span {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -.06em;
	color: #fff;
}

.about-hero-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.about-hero-card__bottom strong {
	font-size: 21px;
	letter-spacing: .08em;
}

.about-hero-card__bottom span {
	font-size: 11px;
	color: rgba(255,255,255,.5);
}


/* INTRO */

.about-intro {
	padding: 130px 0;
	background: #fff;
}

.about-intro__grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 70px;
}

.about-section-label {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
	color: #8b969f;
}

.about-section-label span:first-child {
	color: var(--mp-orange);
	font-size: 13px;
}

.about-intro__content {
	max-width: 780px;
}

.about-intro h2,
.about-heading h2,
.about-standard__content h2,
.about-cta h2 {
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.02;
	letter-spacing: -.04em;
	margin: 0 0 30px;
	color: var(--mp-dark);
}

.about-large-text {
	font-size: 22px;
	line-height: 1.65;
	color: #27333e;
}

.about-intro p:not(.about-large-text) {
	color: var(--mp-muted);
	font-size: 16px;
	line-height: 1.8;
}


/* VALUES */

.about-values {
	padding: 120px 0;
	background: var(--mp-light);
}

.about-heading {
	max-width: 700px;
	margin-bottom: 55px;
}

.about-heading p {
	color: var(--mp-muted);
	font-size: 17px;
	line-height: 1.75;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.about-value-card {
	position: relative;
	padding: 32px;
	min-height: 320px;
	background: #fff;
	border: 1px solid var(--mp-border);
	border-radius: 14px;
	transition: .3s ease;
}

.about-value-card:hover {
	transform: translateY(-7px);
	border-color: rgba(252,113,12,.35);
	box-shadow: 0 20px 45px rgba(7,16,25,.08);
}

.about-value-card__number {
	position: absolute;
	top: 25px;
	right: 25px;
	font-size: 11px;
	font-weight: 800;
	color: #b8c0c6;
}

.about-value-card__icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	margin-bottom: 40px;
	border-radius: 12px;
	background: rgba(252,113,12,.09);
}

.about-value-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--mp-orange);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.about-value-card h3 {
	margin: 0 0 13px;
	font-size: 19px;
	color: var(--mp-dark);
}

.about-value-card p {
	margin: 0;
	color: var(--mp-muted);
	line-height: 1.7;
	font-size: 14px;
}


/* STANDARD */

.about-standard {
	position: relative;
	padding: 130px 0;
	background: var(--mp-dark);
	color: #fff;
	overflow: hidden;
}

.about-standard__pattern {
	position: absolute;
	inset: 0;
	opacity: .25;
	background-image:
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 50px 50px;
}

.about-standard__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 100px;
}

.lab-card {
	position: relative;
	padding: 28px;
	min-height: 420px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: rgba(255,255,255,.045);
	backdrop-filter: blur(15px);
}

.lab-card__header,
.lab-card__data {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lab-card__header {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .18em;
	color: rgba(255,255,255,.55);
}

.lab-card__header span:last-child {
	color: var(--mp-orange);
}

.lab-card__line {
	height: 1px;
	margin: 25px 0;
	background: rgba(255,255,255,.1);
}

.lab-card__graphic {
	position: relative;
	height: 230px;
	display: grid;
	place-items: center;
}

.lab-circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(252,113,12,.35);
}

.lab-circle--one {
	width: 190px;
	height: 190px;
}

.lab-circle--two {
	width: 120px;
	height: 120px;
	border-color: rgba(255,255,255,.18);
}

.lab-center {
	position: relative;
	z-index: 2;
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--mp-orange);
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 0 45px rgba(252,113,12,.3);
}

.lab-card__data {
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.1);
}

.lab-card__data div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.lab-card__data span {
	font-size: 8px;
	letter-spacing: .15em;
	color: rgba(255,255,255,.4);
}

.lab-card__data strong {
	font-size: 12px;
	color: #fff;
}

.about-standard__content h2 {
	color: #fff;
}

.about-standard__content > p {
	max-width: 650px;
	color: rgba(255,255,255,.62);
	font-size: 16px;
	line-height: 1.8;
}

.about-check-list {
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
	display: grid;
	gap: 16px;
}

.about-check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,.8);
	font-size: 14px;
}

.about-check-list li span {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(252,113,12,.15);
	color: var(--mp-orange);
	font-size: 12px;
	font-weight: 800;
}


/* TRANSPARENCY */

.about-transparency {
	padding: 130px 0;
	background: #fff;
}

.about-heading--center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.about-heading--center .about-eyebrow {
	justify-content: center;
}

.about-transparency__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--mp-border);
	border-left: 1px solid var(--mp-border);
}

.transparency-item {
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 20px;
	padding: 35px;
	border-right: 1px solid var(--mp-border);
	border-bottom: 1px solid var(--mp-border);
}

.transparency-item__icon {
	font-size: 11px;
	font-weight: 900;
	color: var(--mp-orange);
}

.transparency-item h3 {
	margin: 0 0 9px;
	font-size: 18px;
	color: var(--mp-dark);
}

.transparency-item p {
	margin: 0;
	color: var(--mp-muted);
	font-size: 14px;
	line-height: 1.7;
}


/* CTA */

.about-cta {
	position: relative;
	padding: 100px 0;
	background: #f5f7f8;
	overflow: hidden;
}

.about-cta__glow {
	position: absolute;
	width: 450px;
	height: 450px;
	right: -200px;
	top: -100px;
	border-radius: 50%;
	background: rgba(252,113,12,.10);
	filter: blur(60px);
}

.about-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.about-cta h2 {
	margin-bottom: 20px;
}

.about-cta p {
	max-width: 650px;
	margin: 0;
	color: var(--mp-muted);
	line-height: 1.75;
}

.about-btn--outline {
	border: 1px solid rgba(7,16,25,.15);
	color: var(--mp-dark);
}

.about-btn--outline:hover {
	background: #fff;
	color: var(--mp-dark);
}


/* DISCLAIMER */

.about-disclaimer {
	padding: 35px 0;
	background: #071019;
	color: #fff;
}

.about-disclaimer .about-container {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.about-disclaimer__icon {
	flex: 0 0 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(252,113,12,.5);
	border-radius: 50%;
	color: var(--mp-orange);
	font-weight: 900;
}

.about-disclaimer strong {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	letter-spacing: .15em;
	color: var(--mp-orange);
}

.about-disclaimer p {
	max-width: 900px;
	margin: 0;
	color: rgba(255,255,255,.5);
	font-size: 12px;
	line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

	.about-hero__inner,
	.about-standard__grid {
		grid-template-columns: 1fr;
	}

	.about-hero {
		padding: 100px 0;
	}

	.about-hero__visual {
		min-height: 400px;
	}

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

	.about-intro__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

}


@media (max-width: 650px) {

	.about-container {
		width: min(100% - 28px, 1180px);
	}

	.about-hero h1 {
		font-size: 48px;
	}

	.about-hero__visual {
		min-height: 350px;
	}

	.about-orbit--one {
		width: 300px;
		height: 300px;
	}

	.about-orbit--two {
		width: 220px;
		height: 220px;
	}

	.about-hero-card {
		width: 250px;
		min-height: 310px;
	}

	.about-values__grid,
	.about-transparency__grid {
		grid-template-columns: 1fr;
	}

	.about-intro,
	.about-values,
	.about-standard,
	.about-transparency {
		padding: 80px 0;
	}

	.about-standard__grid {
		gap: 55px;
	}

	.lab-card {
		min-height: 350px;
	}

	.about-cta {
		padding: 75px 0;
	}

	.about-cta__actions,
	.about-hero__actions {
		width: 100%;
		flex-direction: column;
	}

	.about-btn {
		width: 100%;
	}

}