@property --unblur {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 0%;
}

/***************************************************
*	General
***************************************************/

:root {
	--c-bg: rgb(249, 246, 241);
	--c-text: rgb(88, 88, 89);
	--c-blue: rgb(59, 130, 246);
	--c-dark-bg: rgb(3, 70, 137);
	--c-dark-hi: rgb(0, 170, 204);
	--c-azure: rgb(19, 102, 196);
	--c-teal-deep: rgb(0, 145, 179);
	--c-red: rgb(207, 44, 31);
	--f-headliner: "Instrument Serif";
	--f-regular: "Geist";
	--v-border-radius-normal: 12px;
	--v-max-width: 1700px;
	--v-box-shadow: 0px 2px 4px rgba(130, 118, 99, 0.20);
	--v-sub-border: 0.5px solid rgba(0,0,0,0.23);
	--header-height: 60px;
	--header-offset-start: 3rem;
	--header-offset-stick: 1rem;
}

html,
body {
	padding: 0;
	margin: 0;
	background-color: var(--c-bg);
	font-family: var(--f-regular);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55em;
	color: var(--c-text);
}

* {
	box-sizing: border-box;
	position: relative;
}

p {
	margin: 0;
	padding: 0;
	line-height: 1.75em;
}

#container {
	margin: 0 auto;
	position: relative;
	margin-top: calc(-1 * (var(--header-height) + var(--header-offset-start)));
	/* Guard against stray horizontal scroll from hero transforms / marquees.
	   `clip` (not `hidden`) avoids creating a scroll container, so the sticky header is unaffected. */
	overflow-x: clip;
}

.content-wrapper {
	max-width: var(--v-max-width);
	margin: 0 auto;
	padding: 0px 1.5rem;
}

h1,
h2,
h3,
h4 {
	font-family: var(--f-headliner);
	line-height: 1em;
	font-weight: 100;
	margin: 0;
	padding: 0;
}

#container > .content-wrapper > h3 {
	font-size: clamp(3rem, 4vw, 5rem);
	color: black;
	text-align: center;
}

#container > .content-wrapper > h3:first-child {
	border: 0;
}

#container > .content-wrapper > h3 + h4 {
	font-size: 1.35em;
	font-weight: 400;
	font-family: var(--f-regular);
	margin-top: 0.7rem;
	text-align: center;
	line-height: 1.4em;
}

.on-dark-bg p {
	color: var(--c-bg);
}

.button {
	border: 2px solid var(--c-blue);
	color: var(--c-blue);
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 5px;
	background-color: white;
	font-weight: 600;
	font-size: 0.96rem;
	line-height: 1.25em;
	background-image: linear-gradient(var(--c-blue), var(--c-blue));
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size .5s, color .5s;
	display: inline-block;
}

.button:hover {
  background-size: 100% 100%;
  color: #fff;
}

.on-dark-bg .button {
	border: 0;
	background-color: var(--c-blue);
	color: white;
	background-image: linear-gradient(white, white);
}

.on-dark-bg .button:hover {
  color: var(--c-blue);
}

/***************************************************
*	Helpers
***************************************************/

.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 3rem !important; }
.mt-3 { margin-top: 4rem !important; }
.mt-4 { margin-top: 5rem !important; }
.mt-5 { margin-top: 8rem !important; }

.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 3rem !important; }
.mb-3 { margin-bottom: 4rem !important; }
.mb-4 { margin-bottom: 5rem !important; }

.ml-1 { margin-left: 1rem !important; }
.ml-2 { margin-left: 3rem !important; }
.ml-3 { margin-left: 4rem !important; }
.ml-4 { margin-left: 5rem !important; }

.mr-1 { margin-right: 1rem !important; }
.mr-2 { margin-right: 3rem !important; }
.mr-3 { margin-right: 4rem !important; }
.mr-4 { margin-right: 5rem !important; }

.m-1 { margin: 1rem !important; }
.m-2 { margin: 3rem !important; }
.m-3 { margin: 4rem !important; }
.m-4 { margin: 5rem !important; }
.m-5 { margin: 8rem !important; }

/***************************************************
*	Header
***************************************************/

#header {
	position: sticky;
	top: var(--header-offset-stick);
	width: calc(100% - 2rem);
	background-color: rgba(255, 255, 255, 0.84);
	padding: 0px 0.75rem;
	display: flex;
	border-radius: var(--v-border-radius-normal);
	height: var(--header-height);
	z-index: 1000;
	max-width: calc(var(--v-max-width) - 3rem);
	margin: 0 auto;
	margin-top: var(--header-offset-start);
	box-shadow: var(--v-box-shadow);
	backdrop-filter: blur(7px);
	border: 2px solid rgba(255, 255, 255, 0.52);
}

#header-right,
#header-left {
	flex: 1 1 0;
	display: flex;
	align-items: center;
}

#header-right {
	justify-content: flex-end;
	gap: 0.75rem;
}

#header #header-logo {
	height: 25px;
	margin-left: 0.75rem;
}

#header-logo-link {
	display: inherit;
}

#header-right .cta-primary {
	background-color: var(--c-blue);
	padding: 0.35rem 1rem;
	color: white;
	font-size: 0.85em;
	font-weight: 600;
	text-decoration: none;
	border-radius: calc(var(--v-border-radius-normal) * 0.5);
	background-image: linear-gradient(rgb(226, 248, 255), rgb(226, 248, 255));
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size .5s, color .5s;
	display: inline-block;
}

#header-right .cta-primary:hover {
  background-size: 100% 100%;
  color: var(--c-blue);
}

#header-nav {
	display: flex;
	align-items: center;
}

#header-nav ul {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

#header-nav a {
	color: var(--c-text);
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 500;
	transition: color .3s;
}

#header-nav a:hover,
#header-nav a.active {
	color: var(--c-blue);
}

#header-nav a.active {
	font-weight: 700;
}

#nav-toggle {
	display: none;
	border: 0;
	background: none;
	padding: 0.25rem;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--c-dark-bg);
	cursor: pointer;
}

#nav-toggle .ph-x { display: none; }
#header.nav-open #nav-toggle .ph-x { display: inline; }
#header.nav-open #nav-toggle .ph-list { display: none; }

@media (max-width: 768px) {
	#nav-toggle {
		display: inline-flex;
		align-items: center;
	}

	/* Let the dropdown anchor to #header instead of the (empty-looking) nav box. */
	#header-nav {
		position: static;
	}

	#header-nav ul {
		display: none;
		position: absolute;
		top: calc(100% + 0.5rem);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem;
		background-color: rgba(255, 255, 255, 0.96);
		border: 2px solid rgba(255, 255, 255, 0.52);
		border-radius: var(--v-border-radius-normal);
		box-shadow: var(--v-box-shadow);
		backdrop-filter: blur(7px);
	}

	#header.nav-open #header-nav ul {
		display: flex;
	}

	#header-nav a {
		display: block;
		padding: 0.75rem 1rem;
		border-radius: calc(var(--v-border-radius-normal) * 0.5);
	}

	#header-nav a:hover,
	#header-nav a.active {
		background-color: rgba(59, 130, 246, 0.08);
	}
}

/***************************************************
*	Hero
***************************************************/

#main-hero {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: clamp(600px, 85vh, 1200px);
	background: #ffbdbd;
	background: linear-gradient(180deg, rgb(243, 136, 136) 0%, rgb(255, 230, 230) 66%);
	padding: 3rem 1rem;
	border-bottom: var(--v-sub-border);
	overflow: hidden;
}

#main-hero h1 {
	font-size: clamp(80px,10vw,150px);
	line-height: 0.95em;
	margin-top: 6rem;
	margin-bottom: 0.75rem;
	color: black;
	white-space-collapse: collapse;
	text-shadow: 0px 2px 1px white;
	user-select: none;
}

#main-hero h1 img {
	height: 0.20em;
	white-space-collapse: collapse;
	margin-left: -0.025em;
	user-select: none;
}

#main-hero h2 {
	font-size: clamp(35px,5.5vw,55px);
	line-height: 1em;
	text-wrap-style: pretty;
	margin-bottom: 0.75rem;
	color: var(--c-red);
	text-shadow: 0px 2px 1px white;
	user-select: none;
}

#main-hero .button {
	font-size: 1.25rem;
	user-select: none;
}

/***************************************************
*	Hero Bubbles
***************************************************/

.hero-bubbles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	contain: layout paint;
}

.hero-bubbles.back { z-index: 1; }
#main-hero > .content-wrapper { z-index: 2; }
.hero-bubbles.front { z-index: 3; }

.bubble {
	position: absolute;
	bottom: -160px;
	pointer-events: none;
	will-change: transform, opacity;
}

.bubble > div {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 14px;
	padding: 12px 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
	white-space: nowrap;
	font-family: var(--f-regular);
}

.hero-bubbles.front .bubble > div {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-bubbles.back .bubble {
	filter: blur(2px);
}

@keyframes bubble-rise {
	0% {
		transform: translateY(0) translateX(0) scale(var(--b-s, 1));
		opacity: 0;
	}
	2% {
		opacity: var(--b-o, 0.5);
	}
	33% {
		transform: translateY(calc(var(--b-ty) * 0.33)) translateX(var(--b-sx, 12px)) scale(var(--b-s, 1));
	}
	66% {
		transform: translateY(calc(var(--b-ty) * 0.66)) translateX(calc(var(--b-sx, 12px) * -0.6)) scale(var(--b-s, 1));
	}
	92% {
		opacity: var(--b-o, 0.5);
	}
	100% {
		transform: translateY(var(--b-ty)) translateX(0) scale(var(--b-s, 1));
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-bubbles { display: none; }
}

.bubble .bb-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
}

.bubble .bb-icon i {
	font-size: 28px;
	color: var(--c-dark-hi);
}

.bubble .bb-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--c-text);
}

.bubble .bb-stat i {
	font-size: 22px;
	color: var(--c-dark-hi);
}

.bubble .bb-badge {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-text);
}

.bubble .bb-badge i {
	font-size: 18px;
	color: var(--c-blue);
}

.bubble .bb-badge.green i {
	color: rgb(4, 202, 179);
}

.bubble .bb-card {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bubble .bb-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e0e7ff, #c4b5fd);
	flex-shrink: 0;
}

.bubble .bb-lines {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bubble .bb-lines .ln {
	height: 6px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.1);
}

.bubble .bb-lines .ln.w1 { width: 58px; }
.bubble .bb-lines .ln.w2 { width: 36px; }

.bubble .bb-chart {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 42px;
	padding: 10px;
}

.bubble .bb-chart .br {
	width: 8px;
	background: var(--c-dark-hi);
	border-radius: 2px;
	opacity: 0.65;
}

.bubble .bb-img {
	padding: 0;
	border-radius: 50%;
	overflow: hidden;
	line-height: 0;
}

.bubble .bb-img img {
	width: var(--img-size, 80px);
	height: var(--img-size, 80px);
	object-fit: cover;
	display: block;
}

/***************************************************
*	Cards
***************************************************/

.cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}

.cards .card {
	flex-grow: 1;
	background-color: white;
	--unblur-bg: white;
	padding: 2rem 2rem;
	border-radius: var(--v-border-radius-normal);
	box-shadow: var(--v-box-shadow);
}

.cards .card > i[class^="ph-"] {
	font-size: 40px;
	padding: 0;
	margin: 0;
	color: var(--c-dark-hi);
	display: block;
}

.cards .card h4 {
	font-size: 2em;
	margin-top: 0.75em;
	color: black;
}

.cards .card h4 + p {
	font-size: 1.2em;
	margin: 0.5em 0;
	line-height: 1.25em;
}

.cards .card ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.cards .card ul li {
	position: relative;
	padding-left: 1.36rem;
	font-size: 0.95rem;
	line-height: 1.45em;
	font-weight: 600;
	color: var(--c-text);
}

.cards .card ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: none;
	color: rgb(19, 203, 40);
	font-size: 1rem;
	top: 0.05em;
}

.cards .card img.thumb {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.cards .card img.thumb + h4 {
	margin-top: 0.45em;
}

/***************************************************
*	Mid-cta
***************************************************/

#mid-cta {
	background-color: var(--c-dark-bg);
	padding: 7rem 0;
	display: block;
}

#mid-cta > .content-wrapper {
	display: flex;
	gap: 1rem;
}

#mid-cta > .content-wrapper > .left {
	flex-basis: 50%;
}

#mid-cta > .content-wrapper > .left h3 {
	color: var(--c-dark-hi);
	font-size: clamp(35px,6vw,60px);
	margin-bottom: 0.75rem;
}

#mid-cta > .content-wrapper > .left h4 {
	color: white;
	font-size: 1.5rem;
	font-family: var(--f-regular);
	font-weight: 500;
}

#mid-cta > .content-wrapper > .right {
	flex-basis: 50%;
	font-size: 1.4rem;
}

#mid-cta > .content-wrapper > .right .button {
	border: 0;
}

/***************************************************
*	How it works
***************************************************/

#section-how-it-works {
	background-color: white;
	--unblur-bg: white;
	border-top: var(--v-sub-border);
	border-bottom: var(--v-sub-border);
	height: clamp(300px, 50vh, 600px);
}

#section-how-it-works > .content-wrapper {
	display: flex;
	gap: 2rem;
	align-items: center;
	height: 100%;
}

#section-how-it-works > .content-wrapper > .left {
	flex-basis: 50%;
}

#section-how-it-works > .content-wrapper > .left h3 {
	font-size: 4rem;
	margin-bottom: 0.5em;
	color: black;
}

#section-how-it-works > .content-wrapper > .left p {
	font-size: 1.35em;
}

#section-how-it-works > .content-wrapper > .right {
	flex-basis: 50%;
}

#section-how-it-works > .content-wrapper > .right img {
	width: 100%;
}

/***************************************************
*	One-pane
***************************************************/

#one-pane {
	background-color: white;
	border-top: 1px solid var(--v-sub-border);
	box-shadow: inset 0 -20px 20px -20px #00000074;
	overflow: hidden;
}

#one-pane > .content-wrapper {
	display: flex;
	align-items: center;
}

#one-pane > .content-wrapper .left {
	flex-basis: 50%;
	flex-shrink: 0;
	align-self: flex-end;
	margin-left: -5%;
}

#one-pane > .content-wrapper .left img {
	width: 120%;
	max-width: none;
	display: block;
}

#one-pane > .content-wrapper .right {
	flex-basis: 50%;
	padding: 3rem 0;
}

#one-pane > .content-wrapper .right h3 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

#one-pane > .content-wrapper .right h3 i {
	color: black;
	font-weight: 600;
}

#one-pane > .content-wrapper .right p {
	font-size: 1.15rem;
}

/***************************************************
*	Scrolling Qs
***************************************************/

#scrolling-questions {
	background-color: var(--c-dark-bg);
	padding: 2rem 0;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

#scrolling-questions .track {
	display: inline-flex;
	gap: 4rem;
	animation: scroll-questions 60s linear infinite;
}

#scrolling-questions span {
	color: white;
	font-size: 1.25rem;
	opacity: 0.85;
	white-space: nowrap;
}

/* subtle separator dot */
#scrolling-questions span::after {
	content: "•";
	margin-left: 4rem;
	color: var(--c-dark-hi);
}

@keyframes scroll-questions {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0%); }
}

#scrolling-data {
	background-color: white;
	padding: 2rem 0;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: var(--v-sub-border);
}

#scrolling-data .track {
	display: inline-flex;
	gap: 4rem;
	animation: scroll-data 70s linear infinite;
}

#scrolling-data span {
	color: black;
	opacity: 0.6;
	font-size: 1.20rem;
	white-space: nowrap;
}

#scrolling-data span::after {
	content: "•";
	margin-left: 4rem;
	opacity: 0.85;
	color: var(--c-dark-bg);
}

@keyframes scroll-data {
	from { transform: translateX(0%); }
	to   { transform: translateX(-50%); }
}

/***************************************************
*	Punch
***************************************************/

#punch {
	background: linear-gradient(160deg, rgba(0,0,0,1) 0%, rgba(9,9,121,1) 50%, rgb(217,0,255) 100%);
	background-size: 200% 200%;
	padding: 7rem 0;
	text-align: center;
	animation: punch-move 4s ease-in-out infinite;
}

@keyframes punch-move {
	0%, 100% { background-position: 0% 0%; }
	50% { background-position: 100% 100%; }
}

#punch .h1,
#punch .h2 {
	color: white;
	font-size: 4.5rem;
	display: block;
	font-family: var(--f-headliner);
	line-height: 1em;
	margin: 0.75rem 0;
}

#punch p {
	font-size: 1.52rem;
}

#punch .heart {
	height: 3.25rem;
	animation: heart-throb 2s ease-in-out infinite;
}

@keyframes heart-throb {
	0%, 18%, 100% { transform: scale(1); }
	6% { transform: scale(1.18); }
	12% { transform: scale(1.12); }
}

/***************************************************
*	Iconic Cards
***************************************************/

.iconic-cards {
	display: flex;
	gap: 40px 20px;
	flex-wrap: wrap;
}

.iconic-cards > div {
	flex-basis: calc(33.3% - 20px);
	flex-grow: 1;
	/* border-left: 3px solid var(--accent, var(--c-blue)); */
}

.iconic-cards > div > h5 {
	font-size: 20px;
	margin: 0;
	color: black;
	margin-bottom: 0.5rem;
}

.iconic-cards > div > i {
	display: block;
	font-size: 40px;
	margin-bottom: 6px;
	color: var(--accent, var(--c-blue));
}

.iconic-cards > div > p {
	line-height: 1.4em;
}

.iconic-cards > div img.pi {
	width: 100%;
	display: block;
	margin-bottom: 1rem;
	border-radius: 10px;
}

/***************************************************
*	Animate on Scroll
***************************************************/

.will-animate {
	transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
	transition-delay: var(--animate-delay, 0s);
}

.will-animate.blurry {
	filter: blur(10px);
}

.do-animate.blurry {
	filter: blur(0px);
}

.will-animate.fly-in {
	transform: scale(1.06) scaleX(1.09);
	opacity: 0;
}

.do-animate.fly-in {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.text-unblur::after {
	content: '';
	position: absolute;
	inset: -15px -30px;
	background: var(--unblur-bg, var(--c-bg));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	pointer-events: none;
	--unblur: 0%;
	-webkit-mask-image: linear-gradient(to right, transparent var(--unblur), black calc(var(--unblur) + 20%));
	mask-image: linear-gradient(to right, transparent var(--unblur), black calc(var(--unblur) + 20%));
	transition: --unblur 1.25s ease-out;
	transition-delay: calc(var(--animate-delay, 0s) + 0.3s);
}

.text-unblur.do-animate::after {
	--unblur: 120%;
}

@media (prefers-reduced-motion: reduce) {
	.will-animate {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.text-unblur::after { display: none; }
}

/***************************************************
*	Footer
***************************************************/

#footer {
	background-color: rgb(11, 16, 26);
	padding: 2rem 0 0rem 0;
	color: rgb(80, 80, 88);
	font-size: 13px;
	position: relative;
}

#footer > .content-wrapper {
	padding-bottom: 0;
	margin-bottom: 0;
}

#footer-logo {
	position: relative;
	margin-top: 7rem;
	max-width: var(--v-max-width);
	margin-left: auto;
	display: block;
	margin-right: auto;
	opacity: 0.5;
}

/***************************************************
*	Responsive
***************************************************/

/* ---------- Tablet ( ≤ 1024px ) ---------- */
@media (max-width: 1024px) {
	/* Card grids: 3 → 2 columns */
	.cards {
		grid-template-columns: 1fr 1fr;
	}

	/* Iconic feature cards: 3 → 2 per row */
	.iconic-cards > div {
		flex-basis: calc(50% - 10px);
	}

	#punch {
		padding: 5.5rem 0;
	}

	#punch .h1,
	#punch .h2 {
		font-size: 3.4rem;
	}

	#section-how-it-works > .content-wrapper > .left h3 {
		font-size: 3rem;
	}
}

/* ---------- Phone / portrait tablet ( ≤ 768px ) ---------- */
@media (max-width: 768px) {
	/* Card grids collapse to a single column */
	.cards {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.cards .card {
		padding: 1.5rem;
	}

	.cards .card h4 {
		font-size: 1.7em;
	}

	.cards .card img.thumb {
		height: 200px;
	}

	/* Iconic feature cards stack full-width */
	.iconic-cards {
		gap: 32px;
	}

	.iconic-cards > div {
		flex-basis: 100%;
	}

	/* Section headings */
	#container > .content-wrapper > h3 {
		font-size: clamp(2.25rem, 8vw, 3rem);
	}

	#container > .content-wrapper > h4 {
		line-height: 1.3em;
	}

	#container > .content-wrapper > h3 + h4 {
		font-size: 1.3em;
	}

	/* Hero */
	#main-hero {
		padding: 2rem 1rem;
	}

	#main-hero h1 {
		font-size: clamp(2.75rem, 11vw, 5rem);
		margin-top: 3rem;
	}

	#main-hero h2 {
		font-size: clamp(1.25rem, 5vw, 2rem);
	}

	#main-hero .button {
		font-size: 1.1rem;
	}

	/* Tighten the large vertical rhythm on small screens */
	.mt-4 { margin-top: 3.5rem !important; }
	.mt-5 { margin-top: 4.5rem !important; }

	/* Trailing product image: less dead space above it */
	#container > .content-wrapper > img {
		margin-top: 4rem !important;
	}

	/* Stack the two-column content sections (defensive — rules predate current HTML) */
	#section-how-it-works {
		height: auto;
		padding: 3.5rem 0;
	}

	#mid-cta {
		padding: 4rem 0;
	}

	#section-how-it-works > .content-wrapper,
	#mid-cta > .content-wrapper,
	#one-pane > .content-wrapper {
		flex-direction: column;
		gap: 2rem;
	}

	#section-how-it-works > .content-wrapper > .left,
	#section-how-it-works > .content-wrapper > .right,
	#mid-cta > .content-wrapper > .left,
	#mid-cta > .content-wrapper > .right,
	#one-pane > .content-wrapper .left,
	#one-pane > .content-wrapper .right {
		flex-basis: auto;
		width: 100%;
	}

	#section-how-it-works > .content-wrapper > .left h3 {
		font-size: 2.5rem;
	}

	/* One-pane image is over-sized & negatively offset for desktop */
	#one-pane > .content-wrapper .left {
		margin-left: 0;
		align-self: center;
	}

	#one-pane > .content-wrapper .left img {
		width: 100%;
	}

	/* Scrolling marquees: denser spacing & smaller type */
	#scrolling-questions,
	#scrolling-data {
		padding: 1.5rem 0;
	}

	#scrolling-questions .track,
	#scrolling-data .track {
		gap: 2.5rem;
	}

	#scrolling-questions span { font-size: 1.05rem; }
	#scrolling-data span { font-size: 1rem; }

	#scrolling-questions span::after,
	#scrolling-data span::after {
		margin-left: 2.5rem;
	}

	/* Punch */
	#punch {
		padding: 4rem 0;
	}

	#punch .h1,
	#punch .h2 {
		font-size: 2.4rem;
	}

	#punch p {
		font-size: 1.15rem;
	}

	/* Footer logo */
	#footer-logo {
		margin-top: 3rem;
		width: calc(100% - 50px);
	}
}

/* ---------- Small phones ( ≤ 480px ) ---------- */
@media (max-width: 480px) {
	.content-wrapper {
		padding: 0 1rem;
	}

	#main-hero h1 {
		font-size: clamp(2.25rem, 10vw, 3rem);
		margin-top: 2rem;
	}

	#main-hero h2 {
		font-size: 1.2rem;
	}

	.cards .card h4 {
		font-size: 1.5em;
	}

	#punch .h1,
	#punch .h2 {
		font-size: 2rem;
	}

	#header #header-logo {
		height: 22px;
	}

	#header-right .cta-primary {
		padding: 0.3rem 0.75rem;
		font-size: 0.8em;
	}
}

/***************************************************
*	Demo request modal
***************************************************/

.demo-modal {
	/* Restore the native modal-dialog fixed positioning that the global
	   `* { position: relative; }` rule overrides. Without this the dialog is
	   positioned against the document instead of the viewport, so opening it
	   (and focusing the first field) scrolls the page to the top. */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	border: none;
	border-radius: var(--v-border-radius-normal);
	padding: 0;
	width: min(92vw, 480px);
	max-height: 90vh;
	overflow: auto;
	background: var(--c-bg);
	color: var(--c-text);
	box-shadow: 0 20px 60px rgba(3, 70, 137, 0.28);
}

.demo-modal::backdrop {
	background: rgba(3, 70, 137, 0.45);
	backdrop-filter: blur(3px);
}

.demo-form,
.demo-form-success {
	padding: 2rem;
	position: relative;
}

.demo-modal-close {
	position: absolute;
	top: 0.6rem;
	right: 0.9rem;
	border: none;
	background: none;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
	color: var(--c-text);
}

.demo-form-title {
	font-family: var(--f-headliner);
	font-size: 1.9rem;
	margin: 0 0 0.25rem;
	color: var(--c-dark-bg);
}

.demo-form-sub {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
}

.demo-field {
	margin-bottom: 0.85rem;
	display: flex;
	flex-direction: column;
}

.demo-field label {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.demo-optional {
	font-weight: 400;
	opacity: 0.55;
}

.demo-field input,
.demo-field textarea {
	font-family: var(--f-regular);
	font-size: 1rem;
	padding: 0.6rem 0.7rem;
	border: var(--v-sub-border);
	border-radius: 6px;
	background: white;
	color: var(--c-text);
	width: 100%;
	box-sizing: border-box;
}

.demo-field input:focus,
.demo-field textarea:focus {
	outline: 2px solid var(--c-blue);
	border-color: transparent;
}

.demo-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.demo-form-submit {
	font-family: var(--f-regular);
	margin-top: 0.5rem;
	width: 100%;
	cursor: pointer;
}

.demo-form-submit:disabled {
	opacity: 0.6;
	cursor: default;
}

.demo-form-error {
	background: rgba(207, 44, 31, 0.08);
	color: var(--c-red);
	border: 1px solid rgba(207, 44, 31, 0.3);
	border-radius: 6px;
	padding: 0.6rem 0.7rem;
	font-size: 0.9rem;
	margin-bottom: 0.85rem;
}

.demo-form-legal {
	font-size: 0.75rem;
	opacity: 0.55;
	margin: 0.75rem 0 0;
	text-align: center;
}

.demo-form-success {
	text-align: center;
}

.demo-form-success h2 {
	font-family: var(--f-headliner);
	color: var(--c-dark-bg);
}

/* Hide the floating reCAPTCHA v3 badge. Google permits this when the
   "Protected by reCAPTCHA" attribution is shown in the form flow, which
   .demo-form-legal provides. Use visibility (Google's snippet), not display. */
.grecaptcha-badge {
	visibility: hidden;
}

/***************************************************
*	Subpages (About, Use Cases)
***************************************************/

.page-head {
	/* #container pulls itself up behind the sticky header (negative margin);
	   the homepage hero absorbs that, subpages restore the space here. */
	padding: calc(var(--header-height) + var(--header-offset-start) + 5rem) 1.5rem 3rem;
	text-align: center;
	background: linear-gradient(180deg, rgb(255, 219, 219) 0%, var(--c-bg) 100%);
}

.page-head h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	color: black;
}

.page-head p {
	font-size: 1.72em;
	max-width: 700px;
	margin: 0.35rem auto 0;
	color: black;
}

.mission-statement {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 1.15em;
}

.team-bios {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.team-bio {
	display: flex;
	align-items: flex-start;
	gap: 1.75rem;
	background-color: white;
	--unblur-bg: white;
	padding: 1.75rem 2rem;
	border-radius: var(--v-border-radius-normal);
	box-shadow: var(--v-box-shadow);
	text-align: left;
}

.team-bio img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--v-box-shadow);
	border: 4px solid white;
	flex-shrink: 0;
}

.team-bio h5 {
	font-family: var(--f-regular);
	font-size: 1.25em;
	font-weight: 600;
	color: black;
	margin: 0 0 0.15rem;
}

.team-bio .role {
	font-size: 0.9em;
	font-weight: 600;
	color: var(--c-blue);
	margin: 0;
}

.team-bio .bio {
	margin-top: 0.85rem;
	line-height: 1.7em;
}

@media (max-width: 600px) {
	.team-bio {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.1rem;
	}
}

/***************************************************
*	Use Cases — sticky two-column, by industry
***************************************************/

.uc-sections {
	margin-top: 1.5rem;
}

.uc-section {
	display: grid;
	grid-template-columns: minmax(200px, 300px) 1fr;
	gap: 2rem 3.5rem;
	padding: 3.5rem 0;
	/* default grid align (stretch): the aside cell grows to the row height so
	   its inner sticky element has room to travel. Do NOT set align-items: start. */
}

.uc-section + .uc-section {
	border-top: var(--v-sub-border);
}

.uc-aside-inner {
	position: sticky;
	/* Clear the sticky site header (height + its stuck offset) plus a little air. */
	top: calc(var(--header-offset-stick) + var(--header-height) + 1.5rem);
}

.uc-aside-inner > i {
	font-size: 48px;
	line-height: 1;
	color: var(--uc-accent, var(--c-dark-hi));
	display: block;
	margin-bottom: 1rem;
}

.uc-aside-inner h3 {
	font-size: clamp(2rem, 3vw, 2.75rem);
	color: black;
	text-align: left;
	line-height: 1em;
}

.uc-aside-inner p {
	margin-top: 0.75rem;
	font-size: 1.05em;
	line-height: 1.5em;
	max-width: 34ch;
}

.uc-list {
	display: flex;
	flex-direction: column;
}

.uc-item {
	display: flex;
	gap: 1.25rem;
	padding: 1.6rem 0;
}

.uc-item + .uc-item {
	border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.uc-item-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.04);
	background: color-mix(in srgb, var(--uc-accent, var(--c-dark-hi)) 12%, white);
}

.uc-item-icon i {
	font-size: 26px;
	color: var(--uc-accent, var(--c-dark-hi));
}

.uc-item-body h4 {
	font-family: var(--f-regular);
	font-size: 1.25em;
	font-weight: 600;
	color: black;
}

.uc-item-body > p {
	margin: 0.35rem 0 0;
	line-height: 1.6em;
}

.uc-item-body ul {
	list-style: none;
	padding: 0;
	margin: 0.85rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1.5rem;
}

.uc-item-body ul li {
	padding-left: 1.05rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--c-text);
}

.uc-item-body ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--uc-accent, var(--c-dark-hi));
}

@media (max-width: 860px) {
	.uc-section {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 2.5rem 0;
	}

	/* Stacked: the industry header sits above its list, no longer sticky. */
	.uc-aside-inner {
		position: static;
		top: auto;
	}

	.uc-aside-inner > i {
		margin-bottom: 0.5rem;
	}
}
