/*
 * Block: cy/redesign-vp-intelligence
 * Source: Figma o7TW9TI14xVpo4cvpexryD node 393:2101.
 *
 * Outer white band with a nested rounded sand card (#f3f2ee, 12px
 * radius). Inside the sand card: centered eyebrow/H2/lead, then a
 * second nested off-white (#f7f6f4) card that's a 2-col split — bullet
 * list with hairline dividers and bright-blue circle checks on the
 * left, blue quote card on the right.
 *
 * The nested-card structure mirrors the hero's composition (cards
 * sitting on a white page) — both sections read as modular panels the
 * designer can rearrange without touching background art.
 */

.vpi {
	background: #fcfcfb;
	padding: 40px;
	box-sizing: border-box;
}

.vpi__inner {
	max-width: 1376px;
	margin: 0 auto;
	background: #f3f2ee;
	border-radius: 12px;
	padding: 64px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	box-sizing: border-box;
}

.vpi__header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
}

.vpi__eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1.4px;
	line-height: 1.25;
	color: #0094ff;
	text-transform: uppercase;
	margin: 0;
}

.vpi__heading {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 48px;
	line-height: 1.15;
	letter-spacing: -0.96px;
	color: var(--brand-dark-navy, #093055);
	margin: 0;
	max-width: 900px;
}

.vpi__lead {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.58;
	letter-spacing: -0.36px;
	color: #6a757e;
	margin: 0;
	max-width: 640px;
}

.vpi__split {
	background: #f7f6f4;
	border-radius: 16px;
	padding: 40px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 524px);
	gap: 24px;
	align-items: stretch;
	box-sizing: border-box;
}

.vpi__list-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vpi__list-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	color: var(--brand-dark-navy, #093055);
	margin: 0;
}

.vpi__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.vpi__bullet {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	margin: 0;
	border-bottom: 1px solid rgba(9, 48, 85, 0.1);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.4px;
	color: var(--brand-dark-navy, #093055);
}

.vpi__bullet:first-child {
	border-top: 1px solid rgba(9, 48, 85, 0.1);
}

.vpi__check {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: #0094ff;
}

.vpi__quote {
	background: rgba(0, 99, 218, 0.85);
	color: var(--color-off-white);
	border-radius: clamp(30px, calc(12px + 1.8vw), 38px);
	padding: 32px;
	min-height: 397px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
}

.vpi__quote-body,
.vpi__quote-emphasis {
	font-family: var(--font-body);
	font-size: 22px;
	line-height: 1.68;
	letter-spacing: -0.22px;
	margin: 0;
}

.vpi__quote-body {
	font-weight: 500;
}

.vpi__quote-emphasis {
	font-weight: 700;
	color: var(--color-mint);
}


/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.vpi { padding: 24px; }
	.vpi__inner { padding: 48px 28px 28px; }
	.vpi__split { padding: 28px; gap: 20px; }
	.vpi__heading { font-size: 38px; letter-spacing: -0.76px; }
	.vpi__bullet { font-size: 18px; }
	.vpi__quote-body, .vpi__quote-emphasis { font-size: 19px; line-height: 1.55; }
}

@media (max-width: 900px) {
	.vpi__split { grid-template-columns: 1fr; }
	.vpi__quote { min-height: 0; }
}

@media (max-width: 640px) {
	.vpi { padding: 16px; }
	.vpi__inner { padding: 36px 20px 20px; border-radius: 10px; }
	.vpi__heading { font-size: 28px; letter-spacing: -0.56px; }
	.vpi__lead { font-size: 16px; }
	.vpi__split { padding: 20px; border-radius: 14px; }
	.vpi__list-title { font-size: 19px; }
	.vpi__bullet { font-size: 16px; padding: 14px 0; gap: 12px; }
	.vpi__quote { padding: 24px; }
	.vpi__quote-body, .vpi__quote-emphasis { font-size: 17px; }
}
