/* Littlebird-structure chrome for nuhello home (scoped under .lb-chrome)
 *
 * Brand Central colour roles (match original nuhello.com button usage):
 *   --brand-green  Delightful Green  → Start free, Build, Learn more, Get Started, Read more
 *   --brand-purple Impact Purple     → Login, Book a demo / secondary solid CTAs
 *   --brand-olive  Hello Olive       → body ink, dark UI chrome
 *   --brand-lime   Bold Lime         → illustration accents only
 *   --black / --white                → partners + footer bands; text on brand fills
 *   --cream                          → light marketing canvas
 * Button hover: green → --brand-green-hover, purple → --brand-purple-hover
 */
.lb-chrome {
	/* Official palette */
	--brand-green: #49bc31;
	--brand-green-hover: #3aa326;
	--brand-purple: #3f215b;
	--brand-purple-hover: #5a3478;
	--brand-olive: #22281e;
	--brand-lime: #cfff92;
	--black: #000;
	--white: #fff;

	/* Semantic aliases */
	--ink: var(--brand-olive);
	--muted: rgba(34, 40, 30, 0.8);
	--cream: #fffdf5;
	--panel: #f9f4e7;
	--line: rgba(34, 40, 30, 0.1);

	/* Nuhello UiCore type scale — use these everywhere on this page */
	--type-h1: 72px;
	--type-h2: 48px;
	--type-h3: 24px;
	--type-h4: 21px;
	--type-nav: 14px;
	--type-body: 15px;
	--type-lead: 16px;
	--type-small: 13px;
	--type-meta: 12px;
	--type-ls: -0.027em;
	color: var(--ink);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-body);
	line-height: 1.875;
	background-color: var(--cream);
	box-sizing: border-box;
	width: 100%;
}
.lb-chrome *,
.lb-chrome *::before,
.lb-chrome *::after {
	box-sizing: border-box;
}
.lb-chrome a {
	color: inherit;
}

/* Exact Littlebird .nav_wrap (Webflow shared CSS) */
.lb-chrome .nav_wrap {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	max-width: 1408px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	transform: none !important;
	display: flex;
	align-items: center;
	padding: 8px 16px 0;
	box-sizing: border-box;
}
/* Exact Littlebird soft glass (inline site CSS @ min-width 992px) */
.lb-chrome .nav_wrap > * {
	position: relative;
	z-index: 2;
}
.lb-chrome .nav_wrap > .nav-blur {
	left: 0;
	right: 0;
	height: 96px;
	pointer-events: none;
	position: fixed !important;
	z-index: 1 !important;
	top: 0 !important;
	transform: none !important;
	background: transparent;
	border: 0;
}
.lb-chrome .nav-blur i {
	position: absolute;
	inset: 0;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}
.lb-chrome .nav-blur i.c {
	background: linear-gradient(rgba(255, 253, 245, 0.6), rgba(255, 253, 245, 0));
	-webkit-mask-image: linear-gradient(#000 0, #000 30%, transparent 85%);
	mask-image: linear-gradient(#000 0, #000 30%, transparent 85%);
	opacity: 0;
	transition: opacity 0.4s;
}
html.nav-scrolled .lb-chrome .nav-blur i.c,
.lb-chrome.nav-scrolled .nav-blur i.c {
	opacity: 1;
}
.lb-chrome .nav-blur i.a {
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	-webkit-mask-image: linear-gradient(#000 0, #000 35%, transparent 80%);
	mask-image: linear-gradient(#000 0, #000 35%, transparent 80%);
	transition:
		backdrop-filter 0.4s,
		-webkit-backdrop-filter 0.4s;
	background: transparent;
}
html.nav-scrolled .lb-chrome .nav-blur i.a,
.lb-chrome.nav-scrolled .nav-blur i.a {
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
/* Light nav over the black logo-rail band */
html.nav-on-dark .lb-chrome .nav-blur i.c,
.lb-chrome.nav-on-dark .nav-blur i.c {
	background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
	opacity: 1;
}
html.nav-on-dark .lb-chrome .nav-blur i.a,
.lb-chrome.nav-on-dark .nav-blur i.a {
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
html.nav-on-dark .lb-chrome .nav_logo,
.lb-chrome.nav-on-dark .nav_logo {
	filter: brightness(0) invert(1);
}
html.nav-on-dark .lb-chrome .nav_dd_toggle,
.lb-chrome.nav-on-dark .nav_dd_toggle {
	color: rgba(255, 255, 255, 0.72);
}
html.nav-on-dark .lb-chrome .nav_dd_toggle:hover,
.lb-chrome.nav-on-dark .nav_dd_toggle:hover {
	color: #fff;
}
html.nav-on-dark .lb-chrome .nav_divider,
.lb-chrome.nav-on-dark .nav_divider {
	background: rgba(255, 255, 255, 0.22);
}
html.nav-on-dark .lb-chrome .nav_cta_login,
.lb-chrome.nav-on-dark .nav_cta_login {
	background: var(--brand-purple);
	color: var(--white) !important;
	border-color: transparent;
}
html.nav-on-dark .lb-chrome .nav_cta_login:hover,
.lb-chrome.nav-on-dark .nav_cta_login:hover {
	background: var(--brand-purple-hover);
}
html.nav-on-dark .lb-chrome .nav_cta:not(.nav_cta_login),
.lb-chrome.nav-on-dark .nav_cta:not(.nav_cta_login) {
	background: var(--brand-green);
	color: var(--white) !important;
}
html.nav-on-dark .lb-chrome .nav_cta:not(.nav_cta_login):hover,
.lb-chrome.nav-on-dark .nav_cta:not(.nav_cta_login):hover {
	background: var(--brand-green-hover);
}
html.nav-on-dark .lb-chrome .nav_burger_bar,
.lb-chrome.nav-on-dark .nav_burger_bar {
	background: #fff;
}
.lb-chrome .nav_side {
	flex: 1 1 0%;
	display: flex;
	align-items: center;
	padding: 16px 24px;
}
.lb-chrome .nav_side_right {
	justify-content: flex-end;
	padding: 0 8px;
	gap: 6px;
}
.lb-chrome .nav_logo_link {
	display: flex;
	align-items: center;
}
.lb-chrome .nav_logo {
	height: 22px;
	width: auto;
	display: block;
}
.lb-chrome .nav_links {
	display: none;
	align-items: center;
	column-gap: 20px;
	gap: 20px;
	padding: 16px 24px;
}
.lb-chrome .nav_divider {
	display: inline-block;
	width: 1px;
	height: 12px;
	background: rgba(34, 40, 30, 0.15);
	flex: none;
}
.lb-chrome .nav_dropdown {
	position: relative;
	display: flex;
	align-items: center;
}
.lb-chrome .nav_dd_toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(34, 40, 30, 0.65);
	background: transparent;
	border: 0;
	padding: 0;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-nav);
	line-height: 20px;
	text-decoration: none;
	cursor: pointer;
}
.lb-chrome .nav_dd_toggle:hover {
	color: var(--ink);
}
.lb-chrome .nav_toggle_label {
	margin: 0;
}
.lb-chrome .nav_dd_caret {
	width: 9px;
	height: 9px;
	opacity: 0.7;
	display: none;
}
.lb-chrome .nav_dd_panel {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 50;
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 6px);
	transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lb-chrome .nav_dropdown:hover .nav_dd_panel,
.lb-chrome .nav_dropdown:focus-within .nav_dd_panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.lb-chrome .nav_dd_card {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 244px;
	padding: 8px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 12px 32px -8px rgba(34, 40, 30, 0.16), 0 2px 6px -2px rgba(34, 40, 30, 0.08);
}
.lb-chrome .nav_mega_card {
	display: flex;
	overflow: hidden;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 12px 32px -8px rgba(34, 40, 30, 0.16), 0 2px 6px -2px rgba(34, 40, 30, 0.08);
}
.lb-chrome .nav_mega_intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 264px;
	flex-shrink: 0;
	padding: 28px 26px;
	background: var(--panel);
}
.lb-chrome .nav_mega_intro_title {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h3);
	font-weight: 400;
	letter-spacing: var(--type-ls);
	line-height: 1.2;
}
.lb-chrome .nav_mega_intro_desc {
	margin: 0;
	max-width: 230px;
	color: rgba(34, 40, 30, 0.6);
	font-size: var(--type-small);
	line-height: 1.45;
}
/* Two columns, fill down then across — e.g. Solutions: 3 + 3 */
.lb-chrome .nav_mega_items {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
	grid-template-rows: repeat(3, auto);
	grid-auto-flow: column;
	gap: 2px 12px;
	min-width: 480px;
	padding: 14px;
}
/* Integrations: single column — only a few items */
.lb-chrome .nav_mega_items.nav_mega_items_single {
	grid-template-columns: minmax(240px, 1fr);
	grid-template-rows: none;
	grid-auto-flow: row;
	min-width: 280px;
}
.lb-chrome .nav_dd_item {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 9px 12px;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.14s;
}
.lb-chrome .nav_dd_item:hover {
	background: rgba(34, 40, 30, 0.05);
}
.lb-chrome .nav_dd_item_title {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-nav);
	line-height: 20px;
}
.lb-chrome .nav_dd_badge {
	display: inline-flex;
	align-items: center;
	padding: 1px 6px;
	border-radius: 4px;
	background: var(--brand-green, #49bc31);
	color: #fff;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lb-chrome .nav_dd_item_desc {
	margin: 0;
	color: rgba(34, 40, 30, 0.55);
	font-size: var(--type-meta);
	line-height: 16px;
}
.lb-chrome .nav_cta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 6px 14px;
	border-radius: 99px;
	background: var(--brand-green);
	color: var(--white) !important;
	text-decoration: none;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-nav);
	line-height: 20px;
	white-space: nowrap;
	transition: background-color 0.15s;
}
.lb-chrome .nav_cta:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .nav_cta_login {
	background: var(--brand-purple);
	color: var(--white) !important;
	border: 1px solid transparent;
}
.lb-chrome .nav_cta_login:hover {
	background: var(--brand-purple-hover);
}
.lb-chrome .nav_burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	margin-left: 4px;
	padding: 8px;
	border-radius: 10px;
	cursor: pointer;
	background: transparent;
	border: 0;
}
.lb-chrome .nav_burger_bar {
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform 0.2s, opacity 0.2s;
}
.lb-chrome .nav_burger.is-open .nav_burger_bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.lb-chrome .nav_burger.is-open .nav_burger_bar:nth-child(2) {
	opacity: 0;
}
.lb-chrome .nav_burger.is-open .nav_burger_bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.lb-chrome .nav_mobile {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 12px;
	right: 12px;
	z-index: 60;
	flex-direction: column;
	gap: 2px;
	padding: 12px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 12px 32px -8px rgba(34, 40, 30, 0.16);
}
.lb-chrome .nav_mobile.is-open {
	display: flex;
}
.lb-chrome .nav_mobile_label {
	margin: 8px 0 0;
	padding: 6px 14px 2px;
	color: rgba(34, 40, 30, 0.45);
	font-size: 11px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.lb-chrome .nav_mobile_link {
	display: block;
	padding: 11px 14px;
	border-radius: 10px;
	color: var(--ink);
	text-decoration: none;
	font-size: var(--type-lead);
	line-height: 1.5;
}
.lb-chrome .nav_mobile_link:hover {
	background: rgba(34, 40, 30, 0.05);
}

.lb-chrome .cards_section {
	position: relative;
	z-index: 5;
	width: 100%;
	background: var(--cream);
	overflow-x: clip;
	overflow-y: visible;
	/* Match feature-section bottom pad (160/120) ? cream gap above black rail */
	padding-bottom: 120px;
}
.lb-chrome .section_hero {
	position: relative;
	display: flex;
	flex-direction: column;
	/* Tall first viewport — similar to full-bleed SaaS heroes */
	min-height: min(94vh, 1080px);
	/* Clip sky sideways; keep bottom open so the demo shadow isn't cut off
	   into the “No need…” section */
	overflow-x: clip;
	overflow-y: visible;
	background: var(--cream);
	padding: 16px 16px 0;
}
.lb-chrome .hero_vid {
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 100vw;
	max-width: none;
	/* Keep the old 16:9 plate height when the hero is short */
	min-height: calc(100vw * 9 / 16);
	pointer-events: none;
	overflow: hidden;
	transform: translateX(-50%);
	/* Original soft oval fade into the cards stage — but solid through the header
	   (no top transparent linear-gradient). */
	-webkit-mask-image: radial-gradient(
		140% 92% at 50% -8%,
		#000 35%,
		rgba(0, 0, 0, 0.85) 55%,
		rgba(0, 0, 0, 0.55) 72%,
		rgba(0, 0, 0, 0.25) 86%,
		transparent 100%
	);
	mask-image: radial-gradient(
		140% 92% at 50% -8%,
		#000 35%,
		rgba(0, 0, 0, 0.85) 55%,
		rgba(0, 0, 0, 0.55) 72%,
		rgba(0, 0, 0, 0.25) 86%,
		transparent 100%
	);
}
.lb-chrome .hero_sky_base {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	z-index: 0;
}
.lb-chrome .hero_sky_drift {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 1;
}
.lb-chrome .hero_sky_drift_track {
	--hero-sky-loop-gap: 14vw;
	display: flex;
	width: max-content;
	height: 100%;
	will-change: transform;
	/* Start shifted left so motion toward 0 reads as drifting right, then repeats */
	animation: hero-sky-drift-right 140s linear infinite;
}
.lb-chrome .hero_sky_drift_track img {
	display: block;
	height: 100%;
	width: auto;
	max-width: none;
	flex: 0 0 auto;
	min-width: 100vw;
	/* Space between loop copies — base layer shows through */
	margin-right: var(--hero-sky-loop-gap);
}
@keyframes hero-sky-drift-right {
	from {
		transform: translate3d(-50%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
@media (prefers-reduced-motion: reduce) {
	.lb-chrome .hero_sky_drift_track {
		animation: none;
		transform: translate3d(-25%, 0, 0);
	}
}
.lb-chrome .hero_content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 920px;
	margin: clamp(132px, 16vh, 200px) auto 0;
}
.lb-chrome .hero_eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35em;
	margin: 0 0 18px;
	max-width: 40rem;
	/* Same type treatment as .hero_subhead (“Automate chat…”) */
	color: rgba(34, 40, 30, 0.8);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	text-wrap: pretty;
}
.lb-chrome .hero_eyebrow_faces {
	display: inline-block;
	width: auto;
	height: 1.35em;
	margin: 0;
	vertical-align: middle;
	object-fit: contain;
}
.lb-chrome .hero_heading {
	margin: 0 0 20px;
	max-width: 920px;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: 56px;
	font-weight: 400;
	letter-spacing: var(--type-ls);
	line-height: 1.15;
	text-wrap: pretty;
}
.lb-chrome .hero_subhead {
	margin: 0 0 40px;
	max-width: 580px;
	color: rgba(34, 40, 30, 0.8);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	text-wrap: pretty;
}
.lb-chrome .hero_url_form {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 640px;
}
.lb-chrome .hero_url_form .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.lb-chrome .hero_url_form input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	padding: 14px 20px;
	/* Idle: same frosted pill as Recall / Meetings / Routines tab bar */
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #646464;
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.4;
	outline: none;
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease;
}
.lb-chrome .hero_url_form input::placeholder {
	color: #646464;
	opacity: 1;
	font-weight: 500;
}
.lb-chrome .hero_url_form input:hover:not(:focus) {
	border-color: rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.07);
}
.lb-chrome .hero_url_form input:focus {
	border: 1.5px solid var(--ink);
	background: #fff;
	color: var(--ink);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 0 0 3px rgba(34, 40, 30, 0.08);
}
.lb-chrome .cta_group {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
}
.lb-chrome .btn_primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--brand-green);
	color: var(--white) !important;
	text-decoration: none;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	line-height: 24px;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.12);
	transition: background-color 0.15s ease;
}
.lb-chrome .hero_url_form .btn_primary {
	flex: 0 0 auto;
	width: auto;
}
.lb-chrome .btn_primary:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .hero_demo {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1240px;
	/* Sit lower in the tall hero, like the reference mockup */
	margin: auto auto 0;
	padding: clamp(56px, 7vh, 96px) 12px 0;
}
.lb-chrome .hero_embed {
	display: block;
	width: 100%;
	height: 620px;
	border: 0;
	background: transparent;
	pointer-events: auto;
}
.lb-chrome .hero_mock {
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #fffaf2;
	box-shadow: 0 30px 80px rgba(40, 20, 60, 0.14);
	padding: 22px;
	min-height: 360px;
	text-align: left;
}
.lb-chrome .hero_mock_bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}
.lb-chrome .hero_mock_pill {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(73, 188, 49, 0.14);
	color: var(--brand-green);
	font-size: var(--type-small);
	font-weight: 600;
}
.lb-chrome .hero_mock_time {
	color: rgba(34, 40, 30, 0.45);
	font-size: var(--type-small);
}
.lb-chrome .hero_mock_cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.lb-chrome .hero_mock_card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 18px;
}
.lb-chrome .hero_mock_card--wide {
	max-width: 640px;
}
.lb-chrome .hero_mock_label {
	margin: 0 0 10px;
	color: rgba(34, 40, 30, 0.45);
	font-size: var(--type-meta);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lb-chrome .hero_mock_card ul,
.lb-chrome .hero_mock_card ol {
	margin: 0;
	padding-left: 1.15rem;
	color: var(--ink);
	font-size: var(--type-body);
	line-height: 1.55;
}
.lb-chrome .hero_mock_card li + li {
	margin-top: 8px;
}
.lb-chrome .hero_mock_greeting {
	margin: 0;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h3);
	line-height: 1.2;
	letter-spacing: var(--type-ls);
	color: var(--ink);
}
.lb-chrome .hero_mock_sub {
	margin: 6px 0 18px;
	color: rgba(34, 40, 30, 0.5);
	font-size: var(--type-body);
}
@keyframes lb-panel-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Scroll stage: cards collapse to top-center, then fan out to rest positions */
.lb-chrome .cards_stage {
	position: relative;
	left: 50%;
	width: 1440px;
	max-width: 1440px;
	height: 882px;
	margin: 0;
	transform: translateX(-50%);
}
.lb-chrome .cards_rays {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	width: 1600px;
	max-width: none;
	height: auto;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-mask-image: radial-gradient(
		circle nearest-side at 50% 50%,
		black 40%,
		rgba(0, 0, 0, 0.5) 70%,
		transparent 98%
	);
	mask-image: radial-gradient(
		circle nearest-side at 50% 50%,
		black 40%,
		rgba(0, 0, 0, 0.5) 70%,
		transparent 98%
	);
}
.lb-chrome .lb_card {
	position: absolute;
	z-index: 2;
	max-width: none;
	height: auto;
	display: block;
	opacity: 0;
	pointer-events: none;
	user-select: none;
}
.lb-chrome .lb_card.solution_glimpse {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	box-sizing: border-box;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(34, 40, 30, 0.1);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 28px -12px rgba(34, 40, 30, 0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.lb-chrome .solution_glimpse_label {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: 14px;
	line-height: 1.25;
	letter-spacing: var(--type-ls);
}
.lb-chrome .solution_glimpse_text {
	margin: 0;
	color: rgba(34, 40, 30, 0.58);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: 12.5px;
	line-height: 1.35;
}
.lb-chrome .card_p0 {
	width: 225px;
	top: 62px;
	left: 633px;
}
.lb-chrome .card_p1 {
	width: 188px;
	top: 144px;
	left: 81px;
}
.lb-chrome .card_p2 {
	width: 235px;
	top: 172px;
	left: 364px;
}
.lb-chrome .card_p3 {
	width: 199px;
	top: 187px;
	left: 844px;
}
.lb-chrome .card_p4 {
	width: 197px;
	top: 217px;
	left: 1117px;
}
.lb-chrome .card_p5 {
	width: 235px;
	top: 388px;
	left: 95px;
}
.lb-chrome .card_p6 {
	width: 184px;
	top: 497px;
	left: 1152px;
}
.lb-chrome .card_p7 {
	width: 197px;
	top: 589px;
	left: 137px;
}
.lb-chrome .card_p8 {
	width: 151px;
	top: 668px;
	left: 416px;
}
.lb-chrome .card_p9 {
	width: 197px;
	top: 706px;
	left: 652px;
}
.lb-chrome .card_p10 {
	width: 158px;
	top: 676px;
	left: 916px;
}
.lb-chrome .cards_heading_wrap {
	position: absolute;
	z-index: 5;
	top: 55%;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 620px;
	padding-top: 10px;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.95);
	transition:
		opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lb-chrome .cards_heading_wrap.is-in {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.lb-chrome .recall_heading {
	margin: 0 0 16px;
	max-width: 450px;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h2);
	font-weight: 400;
	letter-spacing: var(--type-ls);
	line-height: 1.175;
	text-wrap: balance;
}
.lb-chrome .memory_subhead {
	margin: 0;
	max-width: 500px;
	color: rgba(0, 0, 0, 0.7);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
	.lb-chrome .lb_card {
		opacity: 1 !important;
		transform: none !important;
	}
	.lb-chrome .cards_heading_wrap {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
		transition: none;
	}
}
@keyframes lb-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes lb-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@media (min-width: 992px) {
	.lb-chrome .nav_links {
		display: flex;
	}
	.lb-chrome .nav_burger,
	.lb-chrome .nav_mobile {
		display: none !important;
	}
	.lb-chrome .nav_dd_caret {
		display: block;
	}
}

@media (max-width: 991px) {
	.lb-chrome {
		--type-h1: 60px;
		--type-h2: 34px;
		--type-h3: 21px;
		--type-lead: 15px;
	}
	.lb-chrome .section_hero {
		min-height: min(88vh, 900px);
	}
	.lb-chrome .hero_content {
		margin-top: 96px;
		padding: 0 12px;
	}
	.lb-chrome .hero_heading {
		margin-bottom: 16px;
		font-size: 42px;
	}
	.lb-chrome .hero_subhead {
		margin-bottom: 32px;
	}
	.lb-chrome .hero_demo {
		margin-top: 40px;
		padding-top: 40px;
	}
	.lb-chrome .hero_url_form {
		flex-direction: column;
		max-width: 420px;
	}
	.lb-chrome .hero_url_form .btn_primary {
		width: 100%;
	}
	.lb-chrome .hero_mock_cols {
		grid-template-columns: 1fr;
	}
	.lb-chrome .cards_stage {
		transform-origin: 50% 0;
		height: 573px;
		transform: translateX(-50%) scale(0.65);
	}
	.lb-chrome .cards_heading_wrap {
		top: 85%;
	}
	.lb-chrome .recall_heading {
		max-width: 550px;
	}
	.lb-chrome .nav_side {
		padding: 0 8px;
	}
	.lb-chrome .nav_cta_login {
		display: none;
	}
}

@media (max-width: 991px) {
	.lb-chrome .cards_section {
		/* Match .section_apps mobile bottom pad */
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.lb-chrome {
		--type-h1: 40px;
		--type-h2: 26px;
		--type-h3: 20px;
		--type-lead: 15px;
		--type-body: 14px;
	}
	.lb-chrome .hero_heading {
		font-size: 34px;
	}
	.lb-chrome .cards_stage {
		height: 635px;
		transform: translateX(-50%) scale(0.72);
	}
	.lb-chrome .cards_heading_wrap {
		top: 78%;
	}
}

@media (max-width: 479px) {
	.lb-chrome .cards_stage {
		height: 441px;
		transform: translateX(-50%) scale(0.5);
	}
	.lb-chrome .cards_rays {
		top: -170px;
	}
	.lb-chrome .cards_heading_wrap {
		top: 110%;
	}
}

/* ?? Social proof / logo rail (Linear ? Framer style) ?? */
.lb-chrome .logo_rail {
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 48px;
	width: 100%;
	max-width: none;
	margin: 0;
	/* Equal vertical pad so title + logos sit centered in the band */
	padding: 140px 16px;
	background: var(--black);
	overflow: visible;
	box-sizing: border-box;
}
.lb-chrome .logo_rail_title {
	margin: 0;
	max-width: 40rem;
	padding: 0 16px;
	color: rgba(255, 255, 255, 0.72);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.875;
	text-align: center;
	text-wrap: balance;
}
.lb-chrome .logo_rail_inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0 48px;
	gap: 40px 48px;
	width: 100%;
	max-width: 1100px;
	box-sizing: border-box;
	overflow: visible;
}
.lb-chrome .logo_rail_cell {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 168px;
	height: 48px;
	overflow: visible;
}
.lb-chrome .logo_rail_cell img {
	display: block;
	/* Height-locked wordmarks ? never crop; scale only shrinks */
	width: auto;
	height: calc(32px * var(--logo-scale, 1));
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}
@media (max-width: 991px) {
	.lb-chrome .logo_rail {
		padding: 48px 16px;
		gap: 32px;
	}
}
@media (max-width: 767px) {
	.lb-chrome .logo_rail {
		gap: 28px;
	}
	.lb-chrome .logo_rail_inner {
		padding: 0 16px;
		gap: 32px 24px;
	}
	.lb-chrome .logo_rail_cell {
		width: 140px;
		height: 40px;
	}
	.lb-chrome .logo_rail_cell img {
		width: auto;
		height: calc(28px * var(--logo-scale, 1));
		max-width: 100%;
		max-height: 100%;
	}
}

/* ?? Apps feature section ?? */
.lb-chrome .section_apps {
	position: relative;
	width: 100%;
	background-color: var(--cream);
	padding: 160px 16px 120px;
	overflow-x: clip;
}
.lb-chrome .apps_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 56px;
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
}
.lb-chrome .apps_left {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 48px;
	width: 560px;
}
.lb-chrome .apps_textgroup {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.lb-chrome .features-title {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h2);
	font-weight: 400;
	line-height: 1.175;
	letter-spacing: var(--type-ls);
	text-wrap: pretty;
}
/* Green highlighter — marks the problem the section solves */
.lb-chrome .features_mark {
	display: inline;
	padding: 0.08em 0.18em;
	margin: 0 -0.04em;
	background: var(--brand-green);
	color: var(--ink);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.lb-chrome .features_subhead {
	margin: 0;
	max-width: 549px;
	color: rgba(34, 40, 30, 0.6);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
}
.lb-chrome .features_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0 0;
	padding: 0;
	list-style: none;
	max-width: 549px;
}
.lb-chrome .features_tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border: 1px solid rgba(34, 40, 30, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	color: var(--ink);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-meta);
	line-height: 1.2;
}
.lb-chrome .apps_quote_card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	padding: 16px 20px 20px;
	border-radius: 12px;
	background-color: #fbf8ef;
}
.lb-chrome .apps_quote_mark {
	display: none;
	margin: 0;
	color: rgba(34, 40, 30, 0.35);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: 40px;
	line-height: 1;
}
.lb-chrome .apps_quote_body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 20px;
	min-width: 0;
}
.lb-chrome .features_quote_text {
	margin: 0;
	color: rgba(34, 40, 30, 0.8);
	font-size: var(--type-lead);
	line-height: 1.5;
}
.lb-chrome .apps_quote_author {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.lb-chrome .features_quote_name {
	margin: 0;
	color: rgba(34, 40, 30, 0.8);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	line-height: 1.5;
}
.lb-chrome .features_quote_role {
	margin: 0;
	color: rgba(34, 40, 30, 0.8);
	font-size: var(--type-small);
	line-height: 1.5;
}
.lb-chrome .apps_avatar {
	position: absolute;
	bottom: 21px;
	left: -40px;
	width: 49px;
	height: 49px;
	object-fit: cover;
	border-radius: 8px;
}
.lb-chrome .meet_btn {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	padding: 9px 19px;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	background: var(--brand-green);
	transition: background-color 0.15s ease;
}
.lb-chrome .meet_btn:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .meet_btn_text {
	margin: 0;
	color: var(--white);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	line-height: 24px;
}
.lb-chrome .meet_btn_arrow_icon {
	flex-shrink: 0;
	width: auto;
	height: 12px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.lb-chrome .apps_embed_wrap {
	position: relative;
	flex-shrink: 0;
	width: 583px;
	max-width: 100%;
	aspect-ratio: 583 / 604;
	border-radius: 16px;
	overflow: hidden;
	background: #f4efe3;
}
.lb-chrome .apps_embed {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	pointer-events: none;
	overflow: hidden;
}
.lb-chrome .meet_embed_wrap {
	position: relative;
	flex-shrink: 0;
	width: 583px;
	max-width: 100%;
	aspect-ratio: 583 / 546;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #fbf8ef;
	overflow: hidden;
}
.lb-chrome .meet_text {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 32px;
	width: 560px;
}

@media (max-width: 991px) {
	.lb-chrome .section_apps {
		padding: 56px 16px 40px;
	}
	.lb-chrome .apps_wrap {
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 40px;
		padding-left: 24px;
		padding-right: 24px;
	}
	.lb-chrome .apps_left {
		display: contents;
		width: 100%;
	}
	.lb-chrome .feat_o1 {
		order: 1;
		width: 100%;
		max-width: 500px;
	}
	.lb-chrome .feat_o2 {
		order: 2;
		align-self: center;
	}
	.lb-chrome .feat_o3 {
		order: 0;
		width: 100%;
		max-width: 583px;
		aspect-ratio: 583 / 540;
	}
	.lb-chrome .feat_o4 {
		order: 4;
		max-width: 500px;
	}
	.lb-chrome .meet_embed_wrap {
		order: 0;
		width: 100%;
		max-width: 583px;
	}
	.lb-chrome .meet_text {
		order: 1;
		width: 100%;
		max-width: 500px;
		align-items: center;
	}
	.lb-chrome .meet_text .apps_textgroup {
		align-items: center;
	}
	.lb-chrome .meet_text .meet_btn {
		align-self: center;
	}
	.lb-chrome .apps_textgroup {
		align-items: center;
	}
	.lb-chrome .features-title,
	.lb-chrome .features_subhead {
		text-align: center;
	}
	.lb-chrome .features_tags {
		justify-content: center;
	}
	.lb-chrome .apps_avatar {
		left: 16px;
		bottom: auto;
		top: -20px;
	}
	.lb-chrome .apps_quote_card {
		margin-top: 12px;
		padding-top: 36px;
	}
}


/* ?? Testimonials marquee ?? */
.lb-chrome .section_testimonials {
	width: 100%;
	padding: 4rem 0 5rem;
	background-color: var(--cream);
	overflow: hidden;
}
.lb-chrome .testimonials_pad {
	padding: 0 3rem;
}
.lb-chrome .testimonials_header {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}
.lb-chrome .testimonials_title {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h2);
	font-weight: 400;
	line-height: 1.175;
	letter-spacing: var(--type-ls);
	text-wrap: balance;
}
.lb-chrome .testimonials_subhead {
	margin: 1.5rem 0 0;
	color: rgba(34, 40, 30, 0.65);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	letter-spacing: 0;
	text-wrap: balance;
}
.lb-chrome .testimonials-marquee_viewport {
	margin-top: 3rem;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.lb-chrome .testimonials-marquee {
	display: flex;
	width: max-content;
	gap: 1.25rem;
	padding-left: 1.25rem;
	animation: testimonials-marquee 55s linear infinite;
}
.lb-chrome .testimonials-marquee:hover {
	animation-play-state: paused;
}
.lb-chrome .testimonials-marquee_item {
	flex: 0 0 auto;
	width: min(22rem, 78vw);
}
.lb-chrome .card-testimonial {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 22rem;
	padding: 1.75rem;
	border-radius: 1.5rem;
	background: #f4efe3;
	border: 1px solid rgba(34, 40, 30, 0.08);
	box-sizing: border-box;
}
.lb-chrome .card-testimonial_logo {
	display: block;
	height: 1.75rem;
	width: auto;
	max-width: 8rem;
	object-fit: contain;
	object-position: left center;
}
.lb-chrome .card-testimonial_quote {
	margin: 0;
	flex: 1 1 auto;
	color: var(--ink);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	letter-spacing: 0;
}
.lb-chrome .card-testimonial_logo + .card-testimonial_quote {
	margin-top: 2rem;
}
.lb-chrome .profile_wrapper {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 1.75rem;
}
.lb-chrome .profile_image {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(34, 40, 30, 0.06);
}
.lb-chrome .media-full-size {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lb-chrome .profile_name {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
}
.lb-chrome .profile_role {
	margin: 0.2rem 0 0;
	color: rgba(34, 40, 30, 0.55);
	font-size: var(--type-small);
	line-height: 1.25;
}
.lb-chrome .testimonials_pad--cta {
	margin-top: 3rem;
	text-align: center;
}
.lb-chrome .testimonials_cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	background: var(--brand-green);
	color: var(--white);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.lb-chrome .testimonials_cta:hover {
	background: var(--brand-green-hover);
}
@keyframes testimonials-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.lb-chrome .testimonials-marquee {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		justify-content: center;
		padding: 0 1.5rem;
	}
	.lb-chrome .testimonials-marquee_item[aria-hidden='true'] {
		display: none;
	}
}
@media (max-width: 767px) {
	.lb-chrome .testimonials_pad {
		padding: 0 1.25rem;
	}
	.lb-chrome .card-testimonial {
		min-height: 20rem;
		padding: 1.35rem;
	}
	.lb-chrome .card-testimonial_logo + .card-testimonial_quote {
		margin-top: 1.5rem;
	}
}

/* ?? Expertise carousel ?? */
.lb-chrome .carousel_section {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 4rem 0 5rem;
	overflow: clip;
	background: var(--cream);
	color: var(--ink);
}
.lb-chrome .carousel_pad {
	padding: 0 3rem;
}
.lb-chrome .carousel_header {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}
.lb-chrome .carousel_title {
	margin: 0;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h2);
	font-weight: 400;
	line-height: 1.175;
	letter-spacing: var(--type-ls);
	text-wrap: balance;
}
.lb-chrome .carousel_subhead {
	margin: 1.5rem 0 0;
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	letter-spacing: 0;
	color: rgba(34, 40, 30, 0.6);
	text-wrap: pretty;
}
.lb-chrome .carousel_component {
	position: relative;
	max-width: 80rem;
	margin: 3rem auto 0;
	padding: 0 3rem;
}
.lb-chrome .carousel_track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem;
	padding: 0.25rem 0 0.5rem;
}
.lb-chrome .carousel_track::-webkit-scrollbar {
	display: none;
}
.lb-chrome .carousel_slide {
	min-width: 0;
}
.lb-chrome .card-icon {
	display: flex;
	flex-direction: column;
	min-height: 18rem;
	height: 100%;
	padding: 1.75rem;
	border-radius: 1.5rem;
	background: var(--panel);
	border: 1px solid var(--line);
	box-sizing: border-box;
}
.lb-chrome .card-icon_image {
	display: block;
	width: 40px;
	height: 40px;
}
.lb-chrome .card-icon_title {
	margin: 2rem 0 0;
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h3);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: var(--type-ls);
}
.lb-chrome .card-icon_body {
	margin: 0.75rem 0 0;
	font-size: var(--type-lead);
	line-height: 1.5;
	letter-spacing: 0;
	color: rgba(34, 40, 30, 0.6);
}
.lb-chrome .carousel_nav {
	display: none;
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: var(--brand-purple);
	color: var(--white);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
}
.lb-chrome .carousel_nav--prev {
	left: 0.5rem;
}
.lb-chrome .carousel_nav--next {
	right: 0.5rem;
}
.lb-chrome .carousel_pad--cta {
	margin-top: 3rem;
	text-align: center;
}
.lb-chrome .carousel_cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.4rem;
	border-radius: 999px;
	background: var(--brand-green);
	color: var(--white);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.lb-chrome .carousel_cta:hover {
	background: var(--brand-green-hover);
}
@media (max-width: 991px) {
	.lb-chrome .carousel_component {
		padding-left: 2.75rem;
		padding-right: 2.75rem;
	}
	.lb-chrome .carousel_track {
		display: flex;
		gap: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.lb-chrome .carousel_slide {
		flex: 0 0 min(22rem, 85vw);
		scroll-snap-align: start;
	}
	.lb-chrome .carousel_nav {
		display: block;
	}
}
@media (max-width: 767px) {
	.lb-chrome .carousel_pad,
	.lb-chrome .carousel_component {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.lb-chrome .carousel_component {
		padding-left: 2.75rem;
		padding-right: 2.75rem;
	}
	.lb-chrome .card-icon_title {
		margin-top: 1.5rem;
	}
}

/* ?? Privacy / security ?? */
.lb-chrome .section_priv {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 48px;
	width: 100%;
	padding: 100px 16px;
	background-color: var(--cream);
}
.lb-chrome .utility-text-align-center {
	display: flex;
	flex-flow: column;
	align-self: center;
	gap: 10px;
	text-align: center;
}
.lb-chrome .privacy-title {
	margin: 0;
	max-width: 720px;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h2);
	font-weight: 400;
	line-height: 1.175;
	letter-spacing: var(--type-ls);
	text-align: center;
	text-wrap: pretty;
}
.lb-chrome .privacy_subhead {
	margin: 0;
	max-width: 549px;
	align-self: center;
	color: rgba(34, 40, 30, 0.6);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.5;
	text-align: center;
}
.lb-chrome .privacy-grid {
	display: flex;
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	width: auto;
	max-width: 1100px;
	margin: 0 0 20px;
}
.lb-chrome .privacy_card_home {
	display: flex;
	flex: 1;
	flex-flow: column;
	gap: 30px;
}
.lb-chrome .privacy_card_home--cert {
	gap: 18px;
}
.lb-chrome .privacy_cert_badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 180px;
	padding: 28px 20px;
	border: 1px solid rgba(34, 40, 30, 0.12);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 227, 0.7));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.lb-chrome .privacy_cert_lock {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(63, 33, 91, 0.08);
	color: var(--brand-purple, #3f215b);
}
.lb-chrome .privacy_cert_name {
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h3);
	letter-spacing: var(--type-ls);
	line-height: 1.2;
	text-align: center;
}
.lb-chrome .privacy_img {
	min-width: 300px;
	height: 250px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
}
.lb-chrome .privacy_textgroup_2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	max-width: 600px;
}
.lb-chrome .privacy_subh {
	margin: 0 0 2px;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-h3);
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: var(--type-ls);
	text-align: center;
}
.lb-chrome .privacy_desc {
	margin: 0;
	min-width: 300px;
	align-self: center;
	color: rgba(34, 40, 30, 0.6);
	font-size: var(--type-lead);
	line-height: 1.5;
	text-align: center;
	text-wrap: balance;
}
.lb-chrome .privacy_btn {
	display: inline-flex;
	align-items: center;
	align-self: auto;
	gap: 8px;
	padding: 9px 19px;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	background: var(--brand-green);
	transition: background-color 0.15s ease;
}
.lb-chrome .privacy_btn:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .privacy_btn .meet_btn_text {
	color: var(--white);
}

@media (max-width: 991px) {
	.lb-chrome .section_priv {
		gap: 40px;
	}
	.lb-chrome .privacy-grid {
		flex-flow: column;
		max-width: 660px;
		margin-bottom: 32px;
	}
	.lb-chrome .privacy_card_home {
		flex-flow: row;
		align-items: center;
		gap: 40px;
	}
	.lb-chrome .privacy_cert_badge {
		width: 220px;
		min-width: 220px;
		min-height: 160px;
		flex-shrink: 0;
	}
	.lb-chrome .privacy_img {
		width: 190px;
		min-width: 290px;
		height: 200px;
		flex-shrink: 0;
	}
	.lb-chrome .privacy_img.img_2 {
		min-width: 360px;
	}
	.lb-chrome .privacy_textgroup_2 {
		align-items: flex-start;
		min-width: 240px;
	}
	.lb-chrome .privacy_subh {
		text-align: left;
	}
	.lb-chrome .privacy_desc {
		text-align: left;
		min-width: 0;
	}
	.lb-chrome .privacy_btn {
		align-self: center;
		padding: 6px 14px;
	}
}

@media (max-width: 767px) {
	.lb-chrome .privacy_card_home {
		flex-flow: column;
		gap: 20px;
	}
	.lb-chrome .privacy_cert_badge {
		width: 100%;
		min-width: 0;
	}
	.lb-chrome .privacy_img,
	.lb-chrome .privacy_img.img_2 {
		width: 100%;
		min-width: 290px;
	}
	.lb-chrome .privacy_textgroup_2 {
		align-items: center;
		max-width: 500px;
	}
	.lb-chrome .privacy_subh,
	.lb-chrome .privacy_desc {
		text-align: center;
	}
}

@media (max-width: 479px) {
	.lb-chrome .privacy-title {
		min-width: 310px;
	}
}

/* ?? FAQ ?? */
.lb-chrome .faq_section {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	width: 100%;
	/* No bottom pad — closing CTA owns the equal gap above its heading */
	padding: 96px 16px 0;
	background-color: var(--cream);
}
.lb-chrome .faq_v_wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	row-gap: 40px;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.lb-chrome .faq_head_v {
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}
.lb-chrome .faq__list {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-self: stretch;
	gap: 12px;
	width: 100%;
	margin-top: 0;
	text-align: left;
}
.lb-chrome .faq-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
	width: 100%;
	padding: 10px 0;
	cursor: pointer;
}
.lb-chrome .faq__left {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}
.lb-chrome .faq__title {
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-lead);
	font-weight: 400;
	line-height: 1.4;
	cursor: pointer;
}
.lb-chrome .faq-row[aria-expanded='true'] .faq__title,
.lb-chrome .faq-row.is-open .faq__title {
	color: var(--brand-purple);
}
.lb-chrome .faq-answer {
	display: block;
	overflow: hidden;
	max-height: 0;
	margin: 16px 0 0;
	color: var(--muted);
	font-size: var(--type-lead);
	line-height: 1.5;
	transition: max-height 0.35s ease;
}
.lb-chrome .faq-answer a {
	color: var(--ink);
	text-underline-offset: 2px;
}
.lb-chrome .faq__plus {
	flex-shrink: 0;
	width: 16px;
	min-width: 16px;
	height: 16px;
	margin-top: 2px;
	opacity: 0.6;
	object-fit: contain;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.lb-chrome .faq-row.is-open .faq__plus {
	transform: rotate(45deg);
}

@media (max-width: 767px) {
	.lb-chrome .faq_v_wrap {
		width: 90%;
	}
	.lb-chrome .faq__list {
		gap: 8px;
	}
}

@media (max-width: 479px) {
	.lb-chrome .faq_section {
		padding: 64px 16px 0;
	}
	.lb-chrome .faq_v_wrap {
		width: 100%;
		row-gap: 28px;
	}
	.lb-chrome .faq__list {
		gap: 4px;
	}
}

/* ?? Closing CTA ?? */
.lb-chrome .section_closing_cta {
	width: 100%;
	/* Equal air above the heading and below the illustration */
	padding: 120px 3rem;
	background-color: var(--cream);
}
.lb-chrome .closing_cta_inner {
	max-width: 80rem;
	margin: 0 auto;
}
.lb-chrome .cta_header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
	justify-content: space-between;
	column-gap: clamp(3rem, 8vw, 7rem);
	row-gap: 1.5rem;
	align-items: end;
}
.lb-chrome .cta_header_content:last-child {
	justify-self: end;
	text-align: left;
}
.lb-chrome .closing_cta_title {
	margin: 0;
	color: var(--ink);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: var(--type-ls);
}
.lb-chrome .closing_cta_faces {
	/* Match nuhello.com inline faces: ~1.05em tall, no side margin */
	display: inline;
	width: auto;
	height: 1.05em;
	margin: 0 0 0.2em;
	vertical-align: middle;
	object-fit: contain;
}
.lb-chrome .closing_cta_subhead {
	margin: 0;
	max-width: 22rem;
	color: rgba(34, 40, 30, 0.7);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-lead);
	line-height: 1.45;
	letter-spacing: 0;
}
.lb-chrome .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}
.lb-chrome .closing_cta_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.4rem;
	border-radius: 999px;
	background: var(--brand-green);
	color: var(--white);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition:
		background-color 0.15s ease,
		transform 0.15s ease;
}
.lb-chrome .closing_cta_btn:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .closing_cta_btn--ghost {
	background: var(--brand-purple);
	color: var(--white);
}
.lb-chrome .closing_cta_btn--ghost:hover {
	background: var(--brand-purple-hover);
}
.lb-chrome .cta_illus_embed {
	margin-top: 3rem;
	width: 100%;
	line-height: 0;
}
.lb-chrome .cta_illus_embed svg {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 991px) {
	.lb-chrome .section_closing_cta {
		padding: 40px 1.25rem;
	}
	.lb-chrome .cta_header {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	.lb-chrome .cta_header_content:last-child {
		justify-self: start;
	}
	.lb-chrome .button-group {
		margin-top: 1rem;
	}
	.lb-chrome .cta_illus_embed {
		margin-top: 2rem;
	}
}

/* ?? Footer — same #000 band as partners / logo rail ?? */
.lb-chrome .section_footer {
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 70px;
	width: 100%;
	/* Match .section_apps vertical rhythm (160 / 120) */
	padding: 160px 132px 120px;
	overflow: hidden;
	background-color: var(--black);
	color: var(--white);
}
.lb-chrome.lb-chrome--footer {
	background-color: var(--black);
}
.lb-chrome .footer_container {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: center;
	gap: 40px;
	width: 100%;
	max-width: 1180px;
}
.lb-chrome .footer_nav {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	width: 100%;
}
.lb-chrome .footer_brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 260px;
	min-width: 220px;
}
.lb-chrome .footer_logo_link {
	display: inline-flex;
	width: fit-content;
	text-decoration: none;
}
.lb-chrome .footer_logo {
	width: 135px;
	height: auto;
	filter: brightness(0) invert(1);
}
.lb-chrome .footer_tagline {
	margin: 0;
	max-width: 28ch;
	color: rgba(255, 255, 255, 0.72);
	font-family: 'ChatFlow Delight Regular', sans-serif;
	font-size: var(--type-body);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
}
.lb-chrome .footer_col {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 180px;
}
.lb-chrome .footer_col--feedback {
	width: 240px;
}
.lb-chrome .footer_col_head {
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: var(--type-body);
	font-weight: 600;
	line-height: 1.5;
}
.lb-chrome .footer_feedback_body {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--type-body);
	line-height: 1.5;
}
.lb-chrome .footer_feedback_cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 4px;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--brand-green);
	color: var(--white);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: var(--type-nav);
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.lb-chrome .footer_feedback_cta:hover {
	background: var(--brand-green-hover);
}
.lb-chrome .footer_list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.lb-chrome .footer_link {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: var(--type-body);
	line-height: 1.4;
	text-decoration: none;
}
.lb-chrome .footer_link:hover {
	color: #fff;
	opacity: 1;
}
.lb-chrome .footer_bottom {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 32px;
	width: 100%;
}
.lb-chrome .footer_bottom_line {
	flex: auto;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.12);
}
.lb-chrome .footer_badges {
	flex-shrink: 0;
	width: auto;
	height: 40px;
	object-fit: contain;
	opacity: 0.9;
}
.lb-chrome .footer_legal {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	width: 100%;
}
.lb-chrome .footer_legal_copy {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: var(--type-nav);
	line-height: 1.4;
}
.lb-chrome .footer_legal_links {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	gap: 24px;
}
.lb-chrome .footer_legal_link {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: var(--type-nav);
	line-height: 1.4;
	text-decoration: none;
}
.lb-chrome .footer_legal_link:hover {
	color: #fff;
}
.lb-chrome .footer_vid {
	position: absolute;
	z-index: 0;
	left: 50%;
	bottom: 0;
	width: 100vw;
	max-width: none;
	height: 460px;
	object-fit: cover;
	pointer-events: none;
	transform: translateX(-50%);
	-webkit-mask-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 18%, #000 42% 100%);
	mask-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 18%, #000 42% 100%);
}
/* Soft bloom layer under the wordmark (Littlebird footer_ls) */
.lb-chrome .footer_vid--soft {
	z-index: 0;
	height: 520px;
	opacity: 0.9;
	filter: blur(28px) saturate(1.05);
	transform: translateX(-50%) scale(1.12);
	-webkit-mask-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 55% 100%);
	mask-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 55% 100%);
}
.lb-chrome .footer_vid--sharp {
	z-index: 0;
	opacity: 0.95;
}
/* Giant brand mark ? Littlebird?s footer_logo_big treatment */
.lb-chrome .footer_logo_big {
	position: relative;
	z-index: 1;
	align-self: center;
	flex: 1 1 auto;
	width: min(1190px, 92vw);
	margin: 8px auto -40px;
	padding: 0;
	opacity: 0.88;
	pointer-events: none;
	user-select: none;
	color: rgba(255, 255, 255, 0.88);
	font-family: 'ChatFlow Delight Bold', sans-serif;
	font-size: clamp(4.5rem, 14vw, 9.5rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 0.9;
	text-align: center;
}
.lb-chrome .is_hidden_md {
	display: block;
}

@media (min-width: 1440px) {
	.lb-chrome .footer_logo_big {
		width: 1190px;
		margin-bottom: -20px;
	}
}

@media (max-width: 991px) {
	.lb-chrome .section_footer {
		padding: 56px 24px 40px;
		gap: 48px;
	}
	.lb-chrome .footer_nav {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 32px;
	}
	.lb-chrome .footer_brand {
		flex-flow: column;
		gap: 16px;
		width: 100%;
		min-height: auto;
		align-items: flex-start;
	}
	.lb-chrome .footer_tagline {
		max-width: 36ch;
	}
	.lb-chrome .footer_col,
	.lb-chrome .footer_col--feedback {
		width: calc(50% - 16px);
	}
	.lb-chrome .footer_bottom {
		justify-content: flex-start;
	}
	.lb-chrome .is_hidden_md {
		display: none;
	}
	.lb-chrome .footer_legal_links {
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
	}
	.lb-chrome .footer_vid {
		height: 260px;
	}
	.lb-chrome .footer_vid--soft {
		height: 320px;
		filter: blur(18px) saturate(1.05);
	}
	.lb-chrome .footer_logo_big {
		width: min(920px, 96vw);
		margin-bottom: -24px;
	}
}

/* ?? Cluely-style page enter + scroll reveal ?? */
html.lb-motion .lb-chrome [data-enter-load],
html.lb-motion .lb-chrome [data-enter-item] {
	opacity: 0;
	transform: translate3d(0, 22px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: calc(var(--enter-i, 0) * 75ms);
	will-change: opacity, transform;
}
html.lb-motion .lb-chrome.is-ready [data-enter-load],
html.lb-motion .lb-chrome [data-enter-section].is-in [data-enter-item] {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
html.lb-motion .lb-chrome.is-ready [data-enter-load] {
	transition-delay: calc(40ms + var(--enter-i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
	html.lb-motion .lb-chrome [data-enter-load],
	html.lb-motion .lb-chrome [data-enter-item] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
