/* ═══════════════════════════════════════════════════════════════════════════
   About page — shared tokens & layout shell
═══════════════════════════════════════════════════════════════════════════ */

.about-page {
	display: flex;
	flex-direction: column;
}

/* Shared section label (eyebrow text) */
.about-section-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ef4444;
	margin-bottom: 0.875rem;
}

.about-section-header {
	margin-bottom: 3.5rem;
	text-align: center;
}

.about-section-title {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fafafa;
	margin: 0;
	line-height: 1.2;
}

/* Shared buttons */
.about-btn {
	display: inline-block;
	padding: 0.75rem 1.625rem;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}

.about-btn--primary {
	background: #ef4444;
	color: #fff;
}
.about-btn--primary:hover { background: #dc2626; }

.about-btn--ghost {
	background: transparent;
	color: #a1a1aa;
	border: 1px solid #27272a;
}
.about-btn--ghost:hover { border-color: #52525b; color: #e4e4e7; }

.about-btn--white {
	background: #fafafa;
	color: #0a0a0a;
}
.about-btn--white:hover { background: #e4e4e7; }

/* ═══════════════════════════════════════════════════════════════════════════
   Hero
═══════════════════════════════════════════════════════════════════════════ */

.about-hero {
	background-color: #0a0a0a;
	background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
	background-size: 30px 30px;
	padding: 7rem 2rem 6rem;
}

.about-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.about-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ef4444;
	border: 1px solid rgba(239,68,68,0.3);
	padding: 0.375rem 0.875rem;
	border-radius: 999px;
	margin-bottom: 2rem;
}

.about-hero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ef4444;
	animation: about-pulse 2s ease-in-out infinite;
}

@keyframes about-pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.3; }
}

.about-hero__title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fafafa;
	margin: 0 0 1.5rem;
	line-height: 1.05;
}

.about-hero__title-accent { color: #ef4444; }

.about-hero__lead {
	font-size: clamp(1rem, 2vw, 1.1875rem);
	color: #71717a;
	line-height: 1.75;
	margin: 0 0 2.5rem;
	max-width: 640px;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   Stats strip
═══════════════════════════════════════════════════════════════════════════ */

.about-stats {
	padding: 0 2rem 5rem;
}

.about-stats__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.about-stat {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 2.25rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	position: relative;
	overflow: hidden;
}

.about-stat::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top left, rgba(239,68,68,0.06), transparent 65%);
	pointer-events: none;
}

.about-stat__num {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fafafa;
	line-height: 1;
}

.about-stat__label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #ef4444;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 0.25rem;
}

.about-stat__desc {
	font-size: 0.875rem;
	color: #52525b;
	line-height: 1.55;
	margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Mission
═══════════════════════════════════════════════════════════════════════════ */

.about-mission {
	padding: 7rem 2rem;
}

.about-mission__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.about-mission__copy .about-section-label {
	margin-bottom: 1.25rem;
}

.about-mission__title {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fafafa;
	line-height: 1.25;
	margin: 0;
}

.about-mission__body p {
	font-size: 1rem;
	color: #71717a;
	line-height: 1.8;
	margin: 0 0 1.25rem;
}
.about-mission__body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   How it works
═══════════════════════════════════════════════════════════════════════════ */

.about-how {
	padding: 7rem 2rem;
	background: #0d0d0d;
	border-top: 1px solid #18181b;
	border-bottom: 1px solid #18181b;
}

.about-how__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.about-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.about-step {
	background: #111113;
	border: 1px solid #1e1e1e;
	border-radius: 16px;
	padding: 2.25rem 2rem;
	position: relative;
	transition: border-color 0.2s, transform 0.2s;
}

.about-step:hover {
	border-color: rgba(239,68,68,0.3);
	transform: translateY(-3px);
}

.about-step__num {
	display: block;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #1e1e1e;
	line-height: 1;
	margin-bottom: 1.5rem;
	font-variant-numeric: tabular-nums;
}

.about-step__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #fafafa;
	margin: 0 0 0.625rem;
}

.about-step__desc {
	font-size: 0.9375rem;
	color: #71717a;
	line-height: 1.7;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Values
═══════════════════════════════════════════════════════════════════════════ */

.about-values {
	padding: 7rem 2rem;
}

.about-values__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.about-values__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.about-value-card {
	background: #111113;
	border: 1px solid #1e1e1e;
	border-radius: 16px;
	padding: 2.25rem 2rem;
	transition: border-color 0.2s;
}

.about-value-card:hover {
	border-color: rgba(239,68,68,0.25);
}

.about-value-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(239,68,68,0.1);
	color: #ef4444;
	margin-bottom: 1.25rem;
	flex-shrink: 0;
}

.about-value-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #fafafa;
	margin: 0 0 0.625rem;
}

.about-value-card__desc {
	font-size: 0.9375rem;
	color: #71717a;
	line-height: 1.7;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA banner
═══════════════════════════════════════════════════════════════════════════ */

.about-cta {
	background: #ef4444;
	padding: 6rem 2rem;
}

.about-cta__inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.about-cta__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	margin: 0 0 1rem;
}

.about-cta__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.1;
}

.about-cta__sub {
	font-size: 1.0625rem;
	color: rgba(255,255,255,0.75);
	margin: 0 0 2.25rem;
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive
═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
	.about-steps,
	.about-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.about-hero { padding: 5rem 1.5rem 4rem; }

	.about-mission__inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

	.about-mission,
	.about-how,
	.about-values { padding: 5rem 1.5rem; }

	.about-cta { padding: 4.5rem 1.5rem; }

	.about-steps,
	.about-values__grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
	.about-hero__title { font-size: 2.25rem; }
	.about-hero__actions { flex-direction: column; }
	.about-btn { text-align: center; }
}

