/* About page */
.about-page .about-hero__card {
	isolation: isolate;
}

.about-page .about-hero__content {
	position: relative;
	z-index: 2;
}

.about-page .about-hero__visual {
	isolation: isolate;
}

.about-page .about-hero__visual::before {
	content: "";
	position: absolute;
	z-index: -2;
	inset: 50% auto auto 50%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 196, 20, 0.22), rgba(198, 164, 59, 0.08) 48%, transparent 72%);
	transform: translate(-50%, -50%);
}

.about-page .about-brand-mark {
	width: 132px;
	height: 132px;
	border-color: rgba(255, 229, 107, 0.38);
	border-radius: 40px;
	background: radial-gradient(circle at 30% 20%, rgba(255, 229, 107, 0.32), transparent 48%), linear-gradient(145deg, rgba(255, 196, 20, 0.2), rgba(255, 255, 255, 0.06));
	box-shadow: 0 24px 70px rgba(198, 164, 59, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: var(--gold);
	font-size: inherit;
}

.about-page .about-trust-node {
	color: var(--green);
}

.about-page .about-stats,
.about-page .about-values {
	margin-block-end: 72px;
}

.about-page .about-section-heading {
	max-width: 760px;
	margin: 0 auto 30px;
	text-align: center;
}

.about-page .about-section-heading h2 {
	margin: 0;
	color: var(--text);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 900;
	line-height: 1.5;
}

.about-page .about-section-heading p {
	margin: 12px 0 0;
	color: var(--muted);
	line-height: 2;
}

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

.about-page .about-value-card {
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.about-page .about-value-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0.62;
}

.about-page .about-value-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	margin-block-end: 20px;
	border: 1px solid rgba(255, 196, 20, 0.25);
	border-radius: 17px;
	background: rgba(255, 196, 20, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	font-size: 24px;
}

.about-page .about-value-card h3 {
	margin: 0 0 10px;
	color: var(--text);
	font-size: 19px;
	font-weight: 900;
}

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

.about-page .about-page-content {
	margin-block-end: 40px;
}

@media (max-width: 992px) {
	.about-page .about-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.about-page .about-hero__visual {
		min-height: 260px;
	}

	.about-page .about-brand-mark {
		width: 96px;
		height: 96px;
		border-radius: 30px;
	}

	.about-page .about-brand-mark svg {
		width: 58px;
		height: 58px;
	}

	.about-page .about-stats,
	.about-page .about-values {
		margin-block-end: 48px;
	}

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