/* ==========================================================================
   Who We Are — editorial two-column section with layered visual composition
   Reference desktop width: 1440px. --brand-blue / --font-manrope are
   defined once in style.css :root and imported here, not redefined.
   ========================================================================== */
.who-we-are {
	position: relative;
	overflow-x: clip;
	background: #fafbfd;
	font-family: var(--font-manrope);
}

/* ==========================================================================
   Background texture — quiet, on-brand (dots mirror the benefits section;
   glow ties the blue composition to the page instead of floating on white)
   ========================================================================== */
.who-we-are__dots {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background-image: radial-gradient(#dfe6f0 2px, transparent 2px);
	background-size: 22px 22px;
	mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
}
.who-we-are__dots--tl { top: 0; left: 0; width: 360px; height: 360px; }
.who-we-are__dots--br { bottom: 0; right: 0; width: 300px; height: 300px; }

.who-we-are__glow {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	top: 50%;
	left: 50%;
	width: 700px;
	height: 700px;
	transform: translate(-50%, -50%);
	background: radial-gradient(closest-side, rgba(30, 94, 255, .06), transparent 70%);
}

.who-we-are__container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 96px 24px;
	display: grid;
	grid-template-columns: 44% 56%;
	column-gap: 48px;
	align-items: center;
}

/* ==========================================================================
   Left column — text
   ========================================================================== */
.who-we-are__eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--brand-blue);
	margin-bottom: 12px;
}

.who-we-are__headline {
	font-size: clamp(32px, 2.8vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.5px;
	color: #1a1a2e;
	max-width: 18ch;
	margin-bottom: 20px;
}
.who-we-are__accent { color: var(--brand-blue); }

.who-we-are__body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #5a6270;
	max-width: 52ch;
	margin-bottom: 32px;
}

.who-we-are__checklist {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
	border-left: 4px solid var(--brand-blue);
	padding: 28px 32px;
	width: fit-content;
	margin-bottom: 40px;
}
.who-we-are__checklist ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 20px;
	column-gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.who-we-are__checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
}
.who-we-are__checklist li span:last-child {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a2e;
	white-space: nowrap;
}
.who-we-are__check {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 5px;
	background: var(--brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.who-we-are__check svg { width: 13px; height: 13px; fill: #fff; }

.who-we-are__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-blue);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 32px;
	border-radius: 8px;
	transition: background 150ms ease, transform 150ms ease;
}
.who-we-are__cta:hover {
	background: color-mix(in srgb, var(--brand-blue) 92%, black);
	transform: translateY(-1px);
}
.who-we-are__cta:focus-visible { outline: 3px solid var(--brand-blue); outline-offset: 3px; }

/* ==========================================================================
   Right column — 3-layer composition
   ========================================================================== */
.who-we-are__visual {
	position: relative;
	height: 440px;
	align-self: center;
}

.who-we-are__block {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 360px;
	height: 400px;
	max-width: 100%;
	border-radius: 32px 32px 32px 64px;
	overflow: hidden;
	background: var(--brand-blue);
	z-index: 1;
}
.who-we-are__block::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .25);
	z-index: 1;
}
.who-we-are__block img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.2);
	filter: blur(32px);
	opacity: 0;
	transition: opacity 1s ease;
}
.who-we-are__block img.is-active { opacity: 1; }

.who-we-are__photo {
	position: absolute;
	top: 60px;
	right: 150px;
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
	z-index: 2;
}
.who-we-are__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 1s ease;
}
.who-we-are__photo img.is-active { opacity: 1; }

.who-we-are__caption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 1;
	padding: 16px 18px 14px;
	min-height: 56px;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(0deg, rgba(9, 20, 60, .82) 0%, rgba(9, 20, 60, .4) 65%, transparent 100%);
}
.who-we-are__caption span {
	position: absolute;
	left: 18px; right: 18px; bottom: 14px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	opacity: 0;
	transition: opacity 1s ease;
}
.who-we-are__caption span.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
	.who-we-are__photo img, .who-we-are__caption span, .who-we-are__block img { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.who-we-are__container { grid-template-columns: 1fr; }
	.who-we-are__visual { height: 420px; width: 100%; margin-top: 56px; max-width: 400px; margin-left: auto; margin-right: auto; }
	.who-we-are__block {
		left: 0; right: 0; width: 100%; height: 380px;
		border-radius: 32px 32px 32px 64px;
	}
	.who-we-are__photo { left: 7.5%; right: auto; top: 40px; width: 85%; height: 300px; }
	.who-we-are__checklist { width: 100%; }
}

@media (max-width: 767px) {
	.who-we-are__container { padding: 64px 20px; }
	.who-we-are__headline { max-width: 100%; }
	.who-we-are__visual { height: auto; margin-top: 48px; padding-bottom: 0; }
	.who-we-are__block {
		position: relative; top: auto; left: auto; right: auto;
		width: 100%; height: 260px; border-radius: 24px;
	}
	.who-we-are__photo {
		position: relative; top: auto; left: auto; right: auto;
		width: 88%; height: 220px;
		margin: -200px auto 0;
	}
}

@media (max-width: 480px) {
	.who-we-are__checklist ul { grid-template-columns: 1fr; }
	.who-we-are__checklist li span:last-child { white-space: normal; }
}

/* ==========================================================================
   Desktop refinements (>=1024px only — mobile/tablet untouched)
   +2px headings, plus a wider text column so the copy runs closer to the
   photo instead of stopping ~290px short of it. The 56/44 split keeps the
   grid's total width identical, so the visual column's right edge — and the
   photo, which is positioned from that edge — does not move.
   ========================================================================== */
@media (min-width: 1024px) {
	.who-we-are__headline { font-size: clamp(34px, calc(2.8vw + 2px), 44px); }
	.who-we-are__container { grid-template-columns: 56% 44%; }
	.who-we-are__headline,
	.who-we-are__body { max-width: none; }
	.who-we-are__body { font-size: 18px; }
	.who-we-are__checklist li span:last-child { font-size: 16px; }
}
