

.about-story {
	position: relative;
	overflow: hidden;
}
.about-story .glow--brand {
	width: 560px;
	height: 560px;
	top: -120px;
	right: -180px;
	opacity: 0.35;
	animation: drift 20s ease-in-out infinite;
}
.about-story .glow--violet {
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: -140px;
	opacity: 0.25;
	animation: drift 24s ease-in-out infinite reverse;
}

.about-story__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: var(--sp-12);
	align-items: center;
}
@media (min-width: 1024px) {
	.about-story__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-16); }
}

.about-story__copy .eyebrow { margin-bottom: var(--sp-5); }

.about-story__heading {
	font-size: clamp(2rem, 5vw, var(--fs-4xl));
	letter-spacing: -0.03em;
	margin: 0 0 var(--sp-6);
	line-height: 1.05;
}
.about-story__heading .accent { color: var(--brand-500); }

.about-story__body {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}
.about-story__body p {
	color: var(--text-2);
	font-size: var(--fs-lg);
	line-height: 1.7;
	max-width: 58ch;
}
.about-story__body strong { color: var(--text); font-weight: 600; }

.about-story__tagline {
	margin-top: var(--sp-5);
	font-family: var(--font-mono);
	font-size: var(--fs-sm);
	color: var(--text-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.about-story__tagline span { color: var(--brand-400); }

.about-story__visual {
	position: relative;
}

.about-story__visual-inner {
	position: relative;
	background: linear-gradient(140deg, var(--raised2), var(--raised));
	border: 1px solid var(--border-strong);
	border-radius: var(--r-2xl);
	padding: var(--sp-8);
	overflow: hidden;
}
.about-story__visual-inner .dotgrid {
	border-radius: var(--r-2xl);
}

.about-panel__image {
	position: relative;
	width: 100%;
	margin: 0 0 var(--sp-6);
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--border);
}
.about-panel__image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.about-panel__pill {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	padding: var(--sp-3) var(--sp-4);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--text-2);
	letter-spacing: 0.04em;
	animation: floaty 7s ease-in-out infinite;
}
.about-panel__pill:last-child { animation-delay: 3s; }
.about-panel__pill + .about-panel__pill { margin-top: var(--sp-3); }
.about-panel__pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand-500);
	flex-shrink: 0;
	box-shadow: 0 0 8px var(--brand-glow);
}

.about-stats {
	background: var(--bg2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding-block: clamp(3rem, 6vw, 5rem);
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-6);
	text-align: center;
}
@media (min-width: 640px) {
	.about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.about-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
}

.about-stat__num {
	font-family: var(--font-mono);
	font-size: clamp(2.4rem, 5vw, 3.25rem);
	font-weight: 700;
	color: var(--brand-500);
	line-height: 1;
	letter-spacing: -0.04em;
}

.about-stat__label {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

@media (min-width: 640px) {
	.about-stat + .about-stat {
		border-left: 1px solid var(--border);
		padding-left: var(--sp-6);
	}
}

.about-values {
	position: relative;
	overflow: hidden;
}
.about-values .glow--violet {
	width: 480px;
	height: 480px;
	bottom: -120px;
	right: -160px;
	opacity: 0.2;
}

.about-values__grid {
	display: grid;
	gap: var(--sp-5);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.about-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.about-values__grid { grid-template-columns: repeat(5, 1fr); }
}

.value-card {
	position: relative;
	background: var(--raised);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: var(--sp-6);
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
	overflow: hidden;
}
.value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--brand-500), transparent);
	border-radius: var(--r-xl) var(--r-xl) 0 0;
	opacity: 0;
	transition: opacity var(--dur);
}
.value-card:hover {
	transform: translateY(-4px);
	border-color: rgba(249, 2, 42, 0.3);
	box-shadow: var(--shadow-md);
}
.value-card:hover::before { opacity: 1; }

.value-card__number {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--brand-400);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.value-card__title {
	font-family: var(--font-display);
	font-size: var(--fs-xl);
	font-weight: 600;
	margin: 0;
	line-height: 1.2;
}
.value-card__desc {
	color: var(--text-2);
	font-size: var(--fs-sm);
	line-height: 1.65;
	margin: 0;
}

.about-approach {
	background: var(--bg2);
}

.about-approach__grid {
	display: grid;
	gap: var(--sp-5);
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.about-approach__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.about-approach__grid { grid-template-columns: repeat(3, 1fr); }
}

.approach-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	padding: var(--sp-6);
	background: var(--raised);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	transition: transform var(--dur) var(--ease), border-color var(--dur);
}
.approach-card:hover {
	transform: translateY(-3px);
	border-color: var(--border-strong);
}

.approach-card__step {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
}
.approach-card__index {
	width: 36px;
	height: 36px;
	border-radius: var(--r-full);
	border: 1px solid rgba(249, 2, 42, 0.35);
	background: rgba(249, 2, 42, 0.08);
	display: grid;
	place-items: center;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	font-weight: 700;
	color: var(--brand-400);
	flex-shrink: 0;
}

.approach-card__icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: rgba(249, 2, 42, 0.10);
	border: 1px solid rgba(249, 2, 42, 0.22);
	display: grid;
	place-items: center;
	color: var(--brand-400);
	flex-shrink: 0;
}
.approach-card__icon-wrap svg { width: 22px; height: 22px; }

.approach-card__title {
	font-size: var(--fs-xl);
	font-weight: 600;
	margin: 0;
}
.approach-card__desc {
	color: var(--text-2);
	font-size: var(--fs-base);
	line-height: 1.65;
	margin: 0;
}

.about-team-cta {
	margin-top: var(--sp-10);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-5);
	flex-wrap: wrap;
}

.page-hero--about .page-hero__title {
	font-size: clamp(2.4rem, 6vw, var(--fs-5xl));
	letter-spacing: -0.04em;
}
.page-hero--about .page-hero__inner {
	display: grid;
	gap: var(--sp-8);
	align-items: center;
}
@media (min-width: 1024px) {
	.page-hero--about .page-hero__inner {
		grid-template-columns: 1fr;
	}
}

.page-hero__deco {
	display: none;
}
@media (min-width: 1024px) {
	.page-hero__deco {
		display: flex;
		justify-content: flex-end;
	}
}

.page-hero__deco svg {
	width: 200px;
	height: 200px;
	opacity: 0.45;
	overflow: visible;
}
.page-hero__deco .node {
	animation: twinkle 4s ease-in-out infinite;
}
.page-hero__deco .node:nth-child(2) { animation-delay: 0.9s; }
.page-hero__deco .node:nth-child(3) { animation-delay: 1.8s; }
