/* ==========================================================================
   100XD — animated.css

   The visual instruments. Loaded after globals.css and reusing its tokens.
   One device per section, deliberately never the same twice in a row.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shared: the Lottie box
   -------------------------------------------------------------------------- */

/*
 * --ar is written by animated.js from the animation's real width/height, so a
 * container fits its artwork rather than the other way round. The 1 fallback
 * only applies for the instant before the animation reports in.
 *
 * --lot-max caps the height so a wide column cannot inflate an animation to
 * several hundred pixels of mostly-empty canvas; sections override it.
 */
.lot {
	display: block;
	width: 100%;
	aspect-ratio: var(--ar, 1);
	max-height: var(--lot-max, 320px);
	margin-inline: auto;
	opacity: 0;
	transition: opacity 0.7s var(--ease);
}
.lot.is-loaded { opacity: 1; }

/* object-fit on the SVG keeps the art undistorted when a cap bites, instead of
   stretching it to whatever the box became. */
.lot svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   1. HERO — layered planes

   Four planes at different rates. The subject sits between the mid and the
   foreground, so the foreground overtakes it as the reader scrolls. That
   overtaking is the move; without it this is just a picture.
   -------------------------------------------------------------------------- */

.phero {
	position: relative;
	isolation: isolate;
	overflow: clip;
	padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4.5rem));
	padding-bottom: clamp(2rem, 5vw, 4.5rem);

	/* The headline shares the row with the subject plane now, so it gets a
	   narrower column than the old full-bleed hero. Scale the display size to
	   that column, or the rotating word is wider than the line it sits on. */
	--fs-display: clamp(2.35rem, 4.4vw, 4.15rem);
}
@media (max-width: 900px) {
	.phero {
		padding-top: calc(var(--nav-h) + clamp(1.5rem, 5vw, 2.5rem));
		padding-bottom: clamp(2.5rem, 8vw, 4rem);
		--fs-display: clamp(2.15rem, 7.8vw, 3.2rem);
	}
}

.phero__planes {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.phero__plane {
	position: absolute;
	inset-inline: 0;
	will-change: transform;
	/* Parallaxed elements transition opacity only. A transform transition
	   eases every per-frame scroll write and reads as the plane lagging
	   a full second behind the thumb. */
	transition: opacity 0.8s var(--ease);
}

/* far: a soft horizon of institution silhouettes */
.phero__plane--far {
	top: 30%;
	height: 52%;
	opacity: 0.55;
}

/* mid: the pathway arcs */
.phero__plane--mid {
	top: 22%;
	height: 66%;
	opacity: 0.9;
}

/* front: overtakes the subject */
.phero__plane--front {
	bottom: -6%;
	height: 34%;
}

.phero__plane svg { width: 100%; height: 100%; display: block; }

.phero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

/* The subject plane: enlarged, centered with ambient glow and floating chips */
.phero__subject {
	position: relative;
	z-index: 1;
	will-change: transform;
	width: 100%;
	max-width: clamp(520px, 48vw, 720px);
	margin-inline: auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phero__subject .lot {
	width: 100%;
	aspect-ratio: 1 / 1;
	min-height: clamp(440px, 44vw, 680px);
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 20px 40px rgba(10, 14, 26, 0.08));
}

.phero__glow {
	position: absolute;
	inset: -10%;
	background: radial-gradient(circle at 52% 48%, rgba(26, 123, 255, 0.20) 0%, rgba(255, 193, 7, 0.14) 45%, transparent 72%);
	filter: blur(48px);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

/* Floating interactive chips */
.phero-chip {
	position: absolute;
	z-index: 3;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 30px -4px rgba(10, 14, 26, 0.09), 0 2px 6px rgba(10, 14, 26, 0.04);
	border-radius: var(--r-pill);
	padding: 0.55rem 1.15rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	white-space: nowrap;
	animation: pheroFloat 4.5s ease-in-out infinite;
}

.phero-chip--tl {
	top: 5%;
	left: -4%;
}

.phero-chip--br {
	bottom: 8%;
	right: -2%;
	animation-delay: -2.25s;
}

.phero-chip__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
	display: inline-block;
	animation: radarPulse 2s infinite;
}

.phero-chip__sparkle {
	color: var(--gold-500);
	font-size: 1rem;
	line-height: 1;
	display: inline-block;
	animation: iconSheen 3.2s ease-in-out infinite;
}

@keyframes pheroFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-9px); }
}

.phero__copy { position: relative; z-index: 3; }

@media (max-width: 900px) {
	.phero__inner {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
		gap: clamp(2rem, 6vw, 3rem);
	}
	.phero__copy {
		order: 1;
		max-width: 38rem;
		margin-inline: auto;
	}
	.phero__subject {
		order: 2;
		width: 100%;
		max-width: min(100%, clamp(320px, 86vw, 440px));
		margin-inline: auto;
	}
	.phero__subject .lot {
		min-height: auto;
		aspect-ratio: 1 / 1;
	}
	.phero__glow {
		inset: -14%;
		filter: blur(32px);
		background: radial-gradient(circle at 50% 50%, rgba(26, 123, 255, 0.22) 0%, rgba(255, 193, 7, 0.15) 48%, transparent 72%);
	}
	.phero__cta {
		justify-content: center;
		flex-direction: column;
		width: 100%;
		max-width: 360px;
		margin-inline: auto;
		gap: 0.85rem;
	}
	.phero__cta .btn {
		width: 100%;
		justify-content: center;
	}
	.phero__trust {
		margin-inline: auto;
		font-size: var(--fs-xs);
		line-height: 1.5;
	}
	.phero-chip {
		padding: 0.4rem 0.85rem;
		font-size: 0.75rem;
	}
	.phero-chip--tl {
		top: 1%;
		left: -1%;
	}
	.phero-chip--br {
		bottom: 3%;
		right: -1%;
	}
}

@media (max-width: 480px) {
	.phero__subject {
		max-width: min(100%, 320px);
	}
	.phero-chip {
		padding: 0.35rem 0.75rem;
		font-size: 0.72rem;
	}
	.phero-chip--tl {
		top: 4px;
		left: 4px;
	}
	.phero-chip--br {
		bottom: 4px;
		right: 4px;
	}
}

/* --------------------------------------------------------------------------
   2. PROBLEM — the scrubbed act
   -------------------------------------------------------------------------- */

.scrubsec {
	position: relative;
	isolation: isolate;
	clear: both;
	padding-block: var(--sec-y);
	overflow: clip;
}

.scrubsec__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
@media (max-width: 900px) {
	.scrubsec__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.25rem;
	}
}

.scrubsec__art {
	position: sticky;
	top: max(80px, calc(50vh - 380px));
	align-self: start;
	width: 100%;
	max-width: clamp(580px, 60vw, 820px);
	margin: 0 auto;
	filter: drop-shadow(0 32px 70px rgba(18, 115, 255, 0.15));
}
.scrubsec__art .lot {
	width: 100%;
	/* Was min-height clamp(560px, 60vw, 820px) with a 1.72x scale on top —
	   an 820px-tall box holding a figure that needed a third of it, which is
	   where most of this section's dead space came from. */
	--lot-max: clamp(300px, 34vw, 460px);
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scrubsec__art .lot svg {
	width: 100% !important;
	height: 100% !important;
	transform: scale(1.06);
	transform-origin: center 48%;
	overflow: visible !important;
}

@media (max-width: 900px) {
	.scrubsec__art {
		position: static;
		width: 100%;
		max-width: min(440px, 94vw);
		margin: 0 auto 1.5rem;
		filter: drop-shadow(0 16px 36px rgba(18, 115, 255, 0.1));
	}
	.scrubsec__art .lot {
		min-height: 360px;
		width: 100%;
		aspect-ratio: 1 / 1;
		overflow: visible;
	}
	.scrubsec__art .lot svg {
		transform: scale(1.45);
		transform-origin: center 48%;
	}
}

/* --------------------------------------------------------------------------
   3. PAN RAIL — the seven-stage model
   -------------------------------------------------------------------------- */

.panact {
	position: relative;
	isolation: isolate;
	clear: both;
}

.panact__stage {
	height: 100vh;
	height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.panact__head { padding-inline: var(--gutter); margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.panact__rail {
	display: flex;
	gap: clamp(1rem, 2vw, 1.75rem);
	padding-inline: var(--gutter);
	will-change: transform;
}

.stagecard {
	flex: 0 0 clamp(16rem, 23vw, 21rem);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: clamp(1.35rem, 2vw, 1.9rem);
	border-radius: var(--r-lg);
	background: var(--ground-raise);
	box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line-soft);
	transition: opacity 0.4s var(--ease);
}

.stagecard__n {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-30);
	letter-spacing: 0.08em;
}

.stagecard__bar {
	height: 3px;
	border-radius: 3px;
	background: var(--ink-12);
	overflow: hidden;
}
.stagecard__bar i {
	display: block;
	height: 100%;
	width: var(--w, 20%);
	border-radius: inherit;
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
}

.stagecard__name { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.035em; }
.stagecard__line { font-size: var(--fs-sm); font-weight: 600; color: var(--blue-600); }
.stagecard__body { font-size: var(--fs-sm); color: var(--ink-60); line-height: 1.55; }

/* Reduced motion / narrow rail: a real scroll region, so every card stays
   reachable without the transform doing the navigating. */
.panact.is-static .panact__stage { height: auto; display: block; padding-block: var(--sec-y); }
.panact.is-static .panact__rail {
	overflow-x: auto;
	scroll-snap-type: x proximity;
	transform: none !important;
	padding-bottom: 1rem;
	-webkit-overflow-scrolling: touch;
}
.panact.is-static .stagecard { scroll-snap-align: start; opacity: 1 !important; transform: none !important; }

@media (max-width: 900px) {
	.panact__stage {
		height: auto !important;
		display: block !important;
		padding-block: var(--sec-y) !important;
		overflow: visible !important;
	}
	.panact__rail {
		overflow-x: auto !important;
		scroll-snap-type: x proximity !important;
		transform: none !important;
		padding-bottom: 1.5rem !important;
		-webkit-overflow-scrolling: touch !important;
	}
	.stagecard {
		scroll-snap-align: start !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* --------------------------------------------------------------------------
   4. SERVICES — Stripe-Style Bento Grid (8 Premium Instruments)
   -------------------------------------------------------------------------- */

.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(1.25rem, 2.2vw, 1.85rem);
	align-items: stretch;
}

.bento-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ground-raise, #ffffff);
	border: 1px solid rgba(10, 14, 26, 0.08);
	border-radius: var(--r-lg, 24px);
	padding: clamp(1.5rem, 2.4vw, 2.25rem);
	box-shadow: 0 4px 14px rgba(10, 14, 26, 0.03), 0 1px 2px rgba(10, 14, 26, 0.02);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px -8px rgba(10, 14, 26, 0.10), 0 4px 12px rgba(10, 14, 26, 0.04);
	border-color: rgba(11, 95, 234, 0.25);
}

/* Col Spans */
.bento-card--c7 { grid-column: span 7; }
.bento-card--c5 { grid-column: span 5; }
.bento-card--c4 { grid-column: span 4; }
.bento-card--c12 { grid-column: span 12; }

/* Top Header */
.bento-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.65rem;
}

.bento-card__meta {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
}

.bento-card__n {
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--blue-600);
	letter-spacing: 0.04em;
	opacity: 0.85;
}

.bento-card__title {
	font-size: clamp(1.2rem, 1.8vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin: 0;
	line-height: 1.2;
}

/* Diagonal Arrow Action Button */
.bento-card__arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(10, 14, 26, 0.08);
	background: var(--ground, #f7f5f1);
	color: var(--ink-80);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover .bento-card__arrow {
	transform: translate(2px, -2px) scale(1.08);
	background: var(--blue-600);
	color: #fff;
	border-color: var(--blue-600);
}

/* Description */
.bento-card__lede {
	font-size: 0.9375rem;
	color: var(--ink-60);
	line-height: 1.55;
	margin: 0 0 1.25rem 0;
	max-width: 54ch;
}

/* Visual Stage */
.bento-card__stage {
	position: relative;
	width: 100%;
	min-height: 290px;
	border-radius: var(--r-md, 18px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 1.5rem 1.25rem 6.5rem;
	margin-top: auto;
	margin-bottom: 1.25rem;
	overflow: hidden;

	/*
	 * Was a flat --ground-sink panel (#efece5): a grey-beige rectangle sitting
	 * inside a white card, which framed every illustration in a visible box
	 * and read as a background the artwork had been pasted onto.
	 *
	 * A white-to-ground wash instead. The art now sits on light that fades
	 * into the card rather than on a slab with an edge, and each card's own
	 * colour glow reads through it instead of fighting the beige.
	 */
	background:
		radial-gradient(135% 105% at 50% 0%,
			#ffffff 0%,
			rgba(255, 255, 255, 0.55) 46%,
			rgba(255, 255, 255, 0) 78%),
		var(--ground, #f7f5f1);
	border: 1px solid rgba(10, 14, 26, 0.045);
}

.bento-card--c5 .bento-card__stage { min-height: 300px; padding-bottom: 6.5rem; }
.bento-card--c7 .bento-card__stage { min-height: 335px; padding-bottom: 7.25rem; }
.bento-card--c12 .bento-card__stage { min-height: 410px; padding: 2.25rem 1.75rem 12.5rem; }

/*
 * The stage reserves its lower area for the floating mockup, so the animation
 * gets the space above it and no more. Capping here rather than letting the
 * animation claim the full stage width is what stops a square illustration
 * from pushing the mockup off the bottom of the card.
 */
.bento-card__stage .lot { --lot-max: 168px; }
.bento-card--c7 .bento-card__stage .lot { --lot-max: 186px; }
.bento-card--c12 .bento-card__stage .lot { --lot-max: 230px; }

/* Stage Glows — Breathing Ambient Color Meshes */
@keyframes meshBreathe {
	0%, 100% { transform: scale(0.95); opacity: 0.70; }
	50% { transform: scale(1.15); opacity: 1; }
}

.bento-card__glow {
	position: absolute;
	inset: -20%;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(52px);
	z-index: 0;
	animation: meshBreathe 6s ease-in-out infinite;
	will-change: transform, opacity;
}

.bento-card--blue .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(18, 115, 255, 0.28) 0%, rgba(56, 189, 248, 0.16) 50%, transparent 75%);
	animation-delay: 0s;
}
.bento-card--gold .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(253, 197, 0, 0.30) 0%, rgba(249, 115, 22, 0.16) 50%, transparent 75%);
	animation-delay: 1.2s;
}
.bento-card--emerald .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.28) 0%, rgba(6, 182, 212, 0.16) 50%, transparent 75%);
	animation-delay: 2.4s;
}
.bento-card--indigo .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.28) 0%, rgba(168, 85, 247, 0.18) 50%, transparent 75%);
	animation-delay: 0.6s;
}
.bento-card--rose .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.28) 0%, rgba(251, 146, 60, 0.18) 50%, transparent 75%);
	animation-delay: 1.8s;
}
.bento-card--purple .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.28) 0%, rgba(59, 130, 246, 0.18) 50%, transparent 75%);
	animation-delay: 3.0s;
}
.bento-card--teal .bento-card__glow {
	background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.28) 0%, rgba(20, 184, 166, 0.18) 50%, transparent 75%);
	animation-delay: 1.5s;
}
.bento-card--flagship .bento-card__glow {
	background: radial-gradient(circle at 60% 40%, rgba(18, 115, 255, 0.28) 0%, rgba(253, 197, 0, 0.22) 40%, rgba(168, 85, 247, 0.20) 70%, transparent 85%);
	animation-delay: 2.1s;
}

/* Lottie Container in Bento — Dynamic Big & Proportional Hierarchy */
.bento-card .lot {
	position: relative;
	z-index: 1;
	width: clamp(150px, 13vw, 175px);
	height: clamp(150px, 13vw, 175px);
	aspect-ratio: 1;
	filter: drop-shadow(0 12px 24px rgba(10, 14, 26, 0.08));
	transition: transform 0.4s var(--ease);
}

.bento-card:hover .lot {
	transform: scale(1.08);
}

.bento-card--c5 .lot {
	width: clamp(180px, 16vw, 210px);
	height: clamp(180px, 16vw, 210px);
}

.bento-card--c7 .lot {
	width: clamp(215px, 20vw, 255px);
	height: clamp(215px, 20vw, 255px);
}

.bento-card--c12 .lot {
	width: clamp(255px, 25vw, 320px);
	height: clamp(255px, 25vw, 320px);
}

/* Micro-UI Floating Mockups — Always Live Floating Glass */
@keyframes liveFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
@keyframes liveFloatCentered {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-5px); }
}

.bento-mockup {
	position: absolute;
	z-index: 2;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow: 0 14px 32px -4px rgba(10, 14, 26, 0.09), 0 2px 8px rgba(10, 14, 26, 0.04);
	border-radius: var(--r-sm, 12px);
	padding: 0.75rem 1rem;
	pointer-events: none;
	animation: liveFloat 4.2s ease-in-out infinite;
	will-change: transform;
}

.bento-mockup--admission {
	bottom: 14px;
	right: 14px;
	left: auto;
	max-width: 270px;
	animation-delay: 0s;
}

.bento-mockup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.35rem;
}

.bento-mockup__badge {
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.bento-mockup__badge--success {
	background: rgba(16, 185, 129, 0.14);
	color: #059669;
}

/* Always Live Radar Pulse Dots */
@keyframes radarPulse {
	0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.75); }
	70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
	100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes radarPulseIndigo {
	0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.75); }
	70% { box-shadow: 0 0 0 8px rgba(79, 70, 229, 0); }
	100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

@keyframes radarPulseBlue {
	0% { box-shadow: 0 0 0 0 rgba(18, 115, 255, 0.75); }
	70% { box-shadow: 0 0 0 8px rgba(18, 115, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(18, 115, 255, 0); }
}

.bento-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	display: inline-block;
}

.bento-mockup__badge--success .bento-dot {
	animation: radarPulse 2s infinite;
}

.bento-dot--indigo {
	background: #4f46e5;
	animation: radarPulseIndigo 2s infinite;
	margin-right: 4px;
}

.bento-dot--blue {
	background: var(--blue-600);
	animation: radarPulseBlue 2s infinite;
	margin-right: 4px;
}

.bento-mockup__time {
	font-size: 0.6875rem;
	color: var(--ink-45);
	font-family: var(--font-mono);
}

.bento-mockup__title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.25;
}

.bento-mockup__sub {
	font-size: 0.6875rem;
	color: var(--ink-60);
	margin-top: 0.15rem;
}

/* Funding Mockup */
.bento-mockup--funding {
	bottom: 14px;
	left: 14px;
	right: 14px;
	animation-delay: 1.4s;
}
.bento-mockup__label {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--ink-45);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.bento-mockup__val {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--ink);
	margin: 0.2rem 0;
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}
.bento-mockup__val span {
	font-size: 0.75rem;
	font-weight: 500;
	color: #d97706;
}
.bento-barwrap {
	width: 100%;
	height: 5px;
	background: rgba(10, 14, 26, 0.08);
	border-radius: 999px;
	overflow: hidden;
	margin: 0.4rem 0;
}

/* Live Funding Meter Shimmer */
@keyframes meterShimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.bento-bar {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #f59e0b 0%, #fef08a 50%, #f59e0b 100%);
	background-size: 200% 100%;
	animation: meterShimmer 3.2s ease-in-out infinite;
}
.bento-mockup__footer {
	display: flex;
	justify-content: space-between;
	font-size: 0.6875rem;
	color: var(--ink-60);
	font-weight: 500;
}

/* Pill Mockup */
@keyframes iconSheen {
	0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
	50% { transform: scale(1.22) rotate(-6deg); filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.75)); }
}

.bento-mockup--pill {
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.65rem;
	white-space: nowrap;
	width: max-content;
	max-width: 90%;
	animation: liveFloatCentered 4.2s ease-in-out infinite;
}
.bento-card--emerald .bento-mockup--pill { animation-delay: 0.7s; }
.bento-card--rose .bento-mockup--pill { animation-delay: 1.1s; }

.bento-pill-icon {
	display: inline-block;
	font-size: 1.15rem;
	line-height: 1;
	animation: iconSheen 3.2s ease-in-out infinite;
}

/* Pass Mockup */
.bento-mockup--pass {
	bottom: 14px;
	right: 14px;
	left: 14px;
	animation-delay: 2.1s;
}
.bento-mockup__tag {
	font-size: 0.6875rem;
	font-weight: 700;
	color: #4f46e5;
	background: rgba(99, 102, 241, 0.12);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
}
.bento-mockup__code {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--ink-45);
}

/* Career Mockup — Live Sparkline Pulse */
@keyframes sparkPulse {
	0%, 100% {
		transform: scaleY(1);
		opacity: 0.9;
		filter: drop-shadow(0 0 0 rgba(124, 58, 237, 0));
	}
	50% {
		transform: scaleY(1.08);
		opacity: 1;
		filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.75));
	}
}

.bento-mockup--career {
	bottom: 14px;
	left: 14px;
	right: 14px;
	animation-delay: 2.8s;
}
.bento-mockup__score {
	font-size: 0.8125rem;
	font-weight: 800;
	color: #7c3aed;
}
.bento-sparkline {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 28px;
	margin: 0.4rem 0;
}
.bento-sparkline span {
	flex: 1;
	background: rgba(139, 92, 246, 0.35);
	border-radius: 2px 2px 0 0;
	transform-origin: bottom;
}
.bento-sparkline span.is-lead {
	background: #7c3aed;
	animation: sparkPulse 2.2s ease-in-out infinite;
}

/* Checklist Mockup */
@keyframes checkPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.5); }
	50% { transform: scale(1.08); box-shadow: 0 0 0 5px rgba(2, 132, 199, 0); }
}

.bento-mockup--checklist {
	bottom: 14px;
	left: 14px;
	right: 14px;
	display: grid;
	gap: 0.35rem;
	animation-delay: 0.4s;
}
.bento-check-row {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ink-80);
	display: flex;
	align-items: center;
	gap: 0.45rem;
}
.bento-check-circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0284c7;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.625rem;
	font-weight: 900;
	animation: checkPulse 3s ease-in-out infinite;
}
.bento-check-row:nth-child(2) .bento-check-circle { animation-delay: 0.6s; }
.bento-check-row:nth-child(3) .bento-check-circle { animation-delay: 1.2s; }

/* Tags in footer */
.bento-card__footer {
	margin-top: auto;
}
.bento-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.bento-card__tags span {
	font-size: 0.75rem;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: var(--ground, #f7f5f1);
	border: 1px solid rgba(10, 14, 26, 0.05);
	color: var(--ink-60);
	font-weight: 500;
}

/* Flagship 100XD Learn2Earn Layout */
@keyframes flagshipStageGlow {
	0%, 100% {
		border-left-color: var(--blue-600);
		box-shadow: 0 4px 12px rgba(18, 115, 255, 0.08);
	}
	50% {
		border-left-color: #0ea5e9;
		box-shadow: 0 6px 20px rgba(14, 165, 233, 0.22);
	}
}

.bento-card--flagship {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}
.bento-card--flagship .bento-card__stage {
	margin: 0;
	height: 100%;
	min-height: 400px;
}
.bento-flagship-ledger {
	position: absolute;
	bottom: 14px;
	left: 14px;
	right: 14px;
	display: grid;
	gap: 0.4rem;
	animation: liveFloat 4.2s ease-in-out infinite;
	animation-delay: 1.8s;
}
.bento-ledger-step {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.9rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
	font-size: 0.75rem;
	font-weight: 600;
}
.bento-ledger-step--active {
	background: #fff;
	box-shadow: 0 4px 12px rgba(10, 14, 26, 0.06);
	border-left: 3px solid var(--blue-600);
	animation: flagshipStageGlow 2.8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1080px) {
	.bento-card--c7 { grid-column: span 6; }
	.bento-card--c5 { grid-column: span 6; }
	.bento-card--c4 { grid-column: span 4; }
	.bento-card--flagship {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 860px) {
	.bento-card--c7, .bento-card--c5, .bento-card--c4, .bento-card--c12 {
		grid-column: span 12;
	}
	.bento-card {
		padding: clamp(1.4rem, 4vw, 1.85rem);
	}
	.bento-card .lot {
		width: min(210px, 58vw);
		height: min(210px, 58vw);
	}
	.bento-card--c12 .lot {
		width: min(250px, 65vw);
		height: min(250px, 65vw);
	}
	.bento-card--flagship {
		grid-template-columns: minmax(0, 1fr);
	}
	.bento-card--flagship .bento-card__stage {
		min-height: 350px;
		padding-bottom: 9.5rem;
	}
}

@media (max-width: 600px) {
	.bento-card {
		padding: 1.35rem 1.15rem;
		border-radius: var(--r-md);
	}
	.bento-card__title {
		font-size: 1.2rem;
	}
	.bento-card__lede {
		font-size: 0.875rem;
		line-height: 1.52;
		margin-bottom: 1.15rem;
	}
	.bento-card__stage {
		min-height: 280px;
		padding: 1.25rem 0.75rem 6.5rem;
		border-radius: var(--r-sm);
	}
	.bento-card .lot {
		width: min(165px, 45vw);
		height: min(165px, 45vw);
	}
	.bento-card--c7 .bento-card__stage,
	.bento-card--c12 .bento-card__stage {
		min-height: 330px;
		padding-bottom: 9rem;
	}
	.bento-card--c7 .lot,
	.bento-card--c12 .lot {
		width: min(190px, 50vw);
		height: min(190px, 50vw);
	}
	.bento-mockup {
		padding: 0.55rem 0.75rem;
		border-radius: 10px;
	}
	.bento-mockup--admission {
		left: 8px;
		right: 8px;
		bottom: 8px;
		max-width: none;
	}
	.bento-mockup--funding,
	.bento-mockup--pass,
	.bento-mockup--career,
	.bento-mockup--checklist,
	.bento-flagship-ledger {
		left: 8px;
		right: 8px;
		bottom: 8px;
	}
	.bento-mockup--pill {
		max-width: 94%;
		padding: 0.5rem 0.75rem;
	}
	.bento-ledger-step {
		font-size: 0.6875rem;
		padding: 0.35rem 0.6rem;
	}
	.bento-card__tags span {
		font-size: 0.7188rem;
		padding: 0.22rem 0.6rem;
	}
}

@media (max-width: 420px) {
	.bento-card {
		padding: 1.15rem 0.95rem;
	}
	.bento-card__title {
		font-size: 1.125rem;
	}
	.bento-card__stage {
		min-height: 270px;
		padding: 1rem 0.5rem 6.25rem;
	}
	.bento-card--c7 .bento-card__stage {
		min-height: 310px;
		padding-bottom: 8.5rem;
	}
	.bento-card--c12 .bento-card__stage {
		min-height: 345px;
		padding-bottom: 9.75rem;
	}
	.bento-card .lot {
		width: min(145px, 42vw);
		height: min(145px, 42vw);
	}
	.bento-card__tags span {
		font-size: 0.6875rem;
		padding: 0.18rem 0.5rem;
	}
}

/* --------------------------------------------------------------------------
   5. THE ROUTE COMPARATOR — the signature move
   -------------------------------------------------------------------------- */

.cmp {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: start;
}
@media (max-width: 960px) { .cmp { grid-template-columns: minmax(0, 1fr); } }

.cmp__panel {
	position: sticky;
	top: calc(var(--nav-h) + 2rem);
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	border-radius: var(--r-lg);
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(26,123,255,0.10), transparent 60%),
		var(--ground-raise);
	box-shadow: var(--sh-md), inset 0 0 0 1px rgba(255,255,255,0.6);
}
@media (max-width: 960px) { .cmp__panel { position: static; } }

.cmp__field { margin-bottom: 1.6rem; }
.cmp__label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-45);
	margin-bottom: 0.7rem;
}

/* Range input, themed in both engines. */
.cmp__range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	outline: none;
	cursor: pointer;
}
.cmp__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(10,14,26,0.22), inset 0 0 0 1px var(--ink-12);
	cursor: grab;
	transition: transform 0.2s var(--ease);
}
.cmp__range::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.cmp__range::-moz-range-thumb {
	width: 22px; height: 22px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(10,14,26,0.22), inset 0 0 0 1px var(--ink-12);
	cursor: grab;
}

.cmp__goals { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cmp__goal {
	padding: 0.55rem 0.95rem;
	border-radius: var(--r-pill);
	background: var(--ink-07);
	font-size: var(--fs-xs);
	font-weight: 600;
	color: var(--ink-60);
	transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.cmp__goal:hover { background: var(--ink-12); color: var(--ink); }
.cmp__goal.is-on {
	background: linear-gradient(120deg, var(--blue-600), var(--blue-500));
	color: #fff;
}

.cmp__readout {
	margin-top: 1.6rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line-soft);
	font-size: var(--fs-sm);
	color: var(--ink-60);
}
.cmp__readout strong { color: var(--ink); font-weight: 700; }

.cmp__list { display: grid; gap: 0.85rem; }

.cmp__route {
	display: grid;
	gap: 0.9rem;
	padding: clamp(1.15rem, 1.8vw, 1.6rem);
	border-radius: var(--r-lg);
	background: var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease),
	            background 0.5s var(--ease);
}
.cmp__route.is-best {
	background:
		radial-gradient(120% 130% at 100% 0%, rgba(255,193,7,0.14), transparent 58%),
		var(--ground-raise);
	box-shadow: var(--sh-md), inset 0 0 0 1px transparent;
	transform: translateX(4px);
}
@media (max-width: 600px) {
	.cmp__route.is-best { transform: translateY(-2px); }
}

.cmp__rhead { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.cmp__id {
	display: grid;
	place-items: center;
	width: 26px; height: 26px;
	flex: none;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: 700;
}
.cmp__route.is-best .cmp__id { background: linear-gradient(130deg, var(--blue-600), var(--gold-500)); }
.cmp__rname { font-size: var(--fs-h4); font-weight: 600; }
.cmp__rank {
	margin-left: auto;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-30);
}
.cmp__route.is-best .cmp__rank { color: var(--blue-600); }

.cmp__steps { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.cmp__step {
	padding: 0.35rem 0.7rem;
	border-radius: var(--r-pill);
	background: var(--ink-07);
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
}
.cmp__arrow { color: var(--ink-30); font-size: 0.7rem; }

.cmp__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem 1rem;
}
@media (max-width: 520px) { .cmp__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.cmp__metric { display: grid; gap: 0.35rem; }
.cmp__mlabel {
	display: flex;
	justify-content: space-between;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-45);
}
.cmp__mlabel b { color: var(--ink); font-variant-numeric: tabular-nums; }
.cmp__track { height: 4px; border-radius: 4px; background: var(--ink-07); overflow: hidden; }
.cmp__fill {
	display: block;
	height: 100%;
	width: var(--v, 0%);
	border-radius: inherit;
	background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
	transition: width 0.75s var(--ease);
}
.cmp__route.is-best .cmp__fill { background: linear-gradient(90deg, var(--blue-600), var(--gold-500)); }

/* --------------------------------------------------------------------------
   6. THE ROUTE MAP
   -------------------------------------------------------------------------- */

.rmap {
	position: relative;
	border-radius: var(--r-lg);
	background:
		radial-gradient(70% 90% at 50% 0%, rgba(26,123,255,0.07), transparent 65%),
		var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	padding: clamp(1rem, 2.5vw, 2rem);
	overflow: hidden;
}

.rmap svg { width: 100%; height: auto; display: block; overflow: visible; }

.rm__grid line { stroke: var(--ink-07); stroke-width: 1; }

.rm__arc {
	fill: none;
	stroke: url(#rmArc);
	stroke-width: 1.6;
	stroke-linecap: round;
}

.rm__pin { fill: var(--blue-600); }
.rm__pin--src { fill: var(--ink-30); }

.rm__halo {
	fill: var(--blue-500);
	opacity: 0;
	transform-origin: center;
}
.is-drawn .rm__halo { animation: rmPulse 3.4s var(--ease-io) infinite; animation-delay: var(--d, 0ms); }

@keyframes rmPulse {
	0%   { opacity: 0.30; transform: scale(0.6); }
	70%  { opacity: 0; transform: scale(1.7); }
	100% { opacity: 0; transform: scale(1.7); }
}

.rm__label {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 600;
	fill: var(--ink-80);
	opacity: 0;
	transition: opacity 0.6s var(--ease);
	transition-delay: var(--d, 0ms);
}
.is-drawn .rm__label { opacity: 1; }

.rmap__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 1rem;
	font-size: var(--fs-xs);
	color: var(--ink-45);
}
.rmap__legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.rmap__legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); }
.rmap__legend i.src { background: var(--ink-30); }

@media (max-width: 640px) {
	.rm__label { font-size: 22px; }
}

/* --------------------------------------------------------------------------
   7. ROI flow
   -------------------------------------------------------------------------- */

.roiflow {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
@media (max-width: 900px) { .roiflow { grid-template-columns: minmax(0, 1fr); } }

.roiflow__art {
	border-radius: var(--r-lg);
	background:
		radial-gradient(80% 80% at 50% 20%, rgba(255,193,7,0.12), transparent 68%),
		var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	padding: 1.25rem;
}
/* The art panel sizes to the animation now, not to a guessed 4:3 box. */
.roiflow__art .lot { --lot-max: clamp(200px, 22vw, 300px); }

.roiflow__stat {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
}
.roiflow__stat small { font-size: var(--fs-sm); color: var(--ink-45); font-weight: 600; letter-spacing: 0; }

/* --------------------------------------------------------------------------
   8. What is 100XD — 5-Entity Animated Showcase & Synthesis
   -------------------------------------------------------------------------- */

.what-showcase {
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
	margin-top: 2rem;
}
.what-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(0.85rem, 1.35vw, 1.35rem);
}
@media (max-width: 1100px) {
	.what-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 768px) {
	.what-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 500px) {
	.what-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.what-card {
	position: relative;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(10, 14, 26, 0.08);
	border-radius: 20px;
	padding: clamp(1.15rem, 1.6vw, 1.4rem);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(10, 14, 26, 0.04);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.what-card:hover {
	transform: translateY(-4px);
	border-color: rgba(18, 115, 255, 0.3);
	box-shadow: 0 16px 40px rgba(18, 115, 255, 0.1);
}
.what-card__art {
	width: 100%;
	aspect-ratio: 16 / 11;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.85rem;
	background: linear-gradient(145deg, rgba(18, 115, 255, 0.03), rgba(240, 246, 255, 0.6));
	border-radius: 14px;
	overflow: hidden;
}
.what-card__art .lot {
	width: 84%;
	height: 84%;
}
.what-card__art .lot svg {
	width: 100% !important;
	height: 100% !important;
}
.what-card__tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-50);
	background: rgba(10, 14, 26, 0.05);
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	margin-bottom: 0.5rem;
}
.what-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink-90);
	margin: 0 0 0.25rem 0;
}
.what-card__does {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--blue-600);
	margin: 0 0 0.5rem 0;
	line-height: 1.35;
}
.what-card__desc {
	font-size: 0.8125rem;
	color: var(--ink-60);
	line-height: 1.45;
	margin: 0;
}

/* The Synthesis Hero Banner */
.what-synthesis {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 255, 0.78));
	border: 1px solid rgba(18, 115, 255, 0.22);
	border-radius: 26px;
	padding: clamp(1.75rem, 3.5vw, 3rem);
	box-shadow: 0 16px 48px rgba(18, 115, 255, 0.08);
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
	position: relative;
	overflow: hidden;
}
@media (max-width: 900px) {
	.what-synthesis {
		grid-template-columns: minmax(0, 1fr);
		padding: clamp(1.5rem, 4vw, 2rem);
	}
}
.what-synthesis__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--blue-600);
	background: rgba(18, 115, 255, 0.1);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	margin-bottom: 0.85rem;
}
.what-synthesis__title {
	font-size: clamp(1.4rem, 2.5vw, 2.1rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: var(--ink-90);
	margin: 0 0 1rem 0;
}
.what-synthesis__body {
	font-size: var(--fs-lede);
	color: var(--ink-70);
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
	max-width: 54ch;
}
.what-synthesis__art {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.what-synthesis__art .lot {
	width: 100%;
	max-width: 380px;
	aspect-ratio: 16 / 11;
}
.what-synthesis__quote {
	font-size: 0.9375rem;
	font-style: italic;
	color: var(--ink-70);
	margin-top: 1rem;
	line-height: 1.5;
	max-width: 38ch;
}
.what-synthesis__quote span {
	display: block;
	font-style: normal;
	font-weight: 600;
	color: var(--blue-600);
	margin-top: 0.25rem;
}
