/**
 * uxneuron — about.css
 *
 * Story section (with the decorative spinning-orbit visual), values grid
 * (reuses .valcard from base.css) and team grid (reuses .member/.avatar
 * from base.css). Hero reuses .page-hero from layout.css; stats reuse
 * .stats-grid from base.css; CTA band reuses .cta-band from base.css.
 *
 * @package uxneuron
 */

.story-section {
	max-width: var( --container-max );
	margin: 0 auto;
	padding: 50px var( --section-x ) 30px;
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: center;
}

.story-visual {
	position: relative;
	height: 380px;
	border-radius: var( --radius-2xl );
	overflow: hidden;
	background: var( --color-dark );
	display: flex;
	align-items: center;
	justify-content: center;
}

.story-visual__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-visual__orbit--inner {
	width: 300px;
	height: 300px;
}

.story-visual__orbit--outer {
	width: 440px;
	height: 440px;
	border-color: rgba(255,255,255,.07);
	animation-direction: reverse;
	animation-duration: 44s;
}

.story-copy__heading {
	font-weight: 800;
	font-size: 38px;
	line-height: 1.1;
	letter-spacing: -.02em;
	margin: 0 0 20px;
}

.story-copy__paragraph {
	font-size: 17px;
	line-height: 1.7;
	color: var( --color-text-soft );
	margin: 0 0 16px;
}

.story-copy__paragraph:last-child {
	margin-bottom: 0;
}

.values-section {
	background: #fff;
	border-top: 1px solid var( --color-border-soft );
	border-bottom: 1px solid var( --color-border-soft );
	padding: 90px var( --section-x );
}

.values-section__head {
	margin-bottom: 50px;
	max-width: 600px;
}

.values-section__heading {
	font-weight: 800;
	font-size: 46px;
	line-height: 1.08;
	letter-spacing: -.02em;
	margin: 0;
}

.valcard__title {
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 10px;
}

.valcard__desc {
	font-size: 15px;
	line-height: 1.6;
	color: var( --color-text-muted );
	margin: 0;
}

.team-section {
	max-width: var( --container-max );
	margin: 0 auto;
	padding: 90px var( --section-x );
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.member__name {
	font-weight: 700;
	font-size: 19px;
	margin: 0 0 3px;
}

.member__role {
	font-size: 14.5px;
	color: var( --color-primary );
	font-weight: 600;
	margin: 0;
}
