:root {
	--nav-height: 68px;
	--container: 1200px;

	--bg: #0b0f15;
	--bg-2: #0f141c;
	--surface: #141b25;
	--text: #e9f0ff;
	--muted: #98a6c3;
	--primary: #0b74ff;
	--accent: #3ec2c1;
	--border: rgba(255, 255, 255, 0.12);

	--shadow-1: 0 6px 18px rgba(0, 0, 0, 0.25);
	--shadow-2: 0 12px 36px rgba(0, 0, 0, 0.35);
	--r-xl: 26px;
	--r: 16px;
	--r-sm: 12px;

	--gform-h: 520px;

	/* Notion Calendar crop (desktop) */
	--nc-crop-w: 980px;
	--nc-crop-h: 920px;
	--nc-iframe-w: 1400px;
	--nc-iframe-h: 1100px;
	--nc-shift-x: -210px;
	--nc-shift-y: -90px;
}
@media (max-width: 960px) {
	:root {
		--gform-h: 560px;
	}
}

* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: auto;
}
body {
	font:
		16px/1.6 Inter,
		system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial,
		sans-serif;
	color: var(--text);
	background:
		radial-gradient(120vw 60vh at 50% -10%, #1b2433 0%, transparent 60%),
		radial-gradient(
			90vw 50vh at 10% 10%,
			rgba(62, 194, 193, 0.12),
			transparent 55%
		),
		radial-gradient(
			100vw 70vh at 90% 0%,
			rgba(11, 116, 255, 0.18),
			transparent 60%
		),
		var(--bg);
	min-height: 100vh;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--text);
	text-decoration: none;
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}
.section {
	padding: 88px 0;
}
.section--tight {
	padding: 40px 0;
}
section,
header {
	scroll-margin-top: calc(var(--nav-height) + 20px);
}

#benefits.section {
	padding-top: 28px;
}

@media (max-width: 768px) {
	#meeting.section {
		padding-bottom: 0;
	}
	#contact.section {
		padding-top: 20px;
		padding-bottom: 30px;
	}
}

/* NAV */
.nav {
	position: fixed;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: min(1120px, calc(100% - 28px));
	height: var(--nav-height);
	z-index: 100;
	pointer-events: none;
}
.nav__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(20, 24, 34, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: var(--shadow-1);
	pointer-events: auto;
	transition: background 0.25s;
	overflow: hidden;
}
.scrolled .nav__inner {
	background: rgba(20, 24, 34, 0.5);
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 6px;
	flex: 0 0 auto;
}
.brand img {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}
.brand__name {
	font-weight: 800;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

.menu {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	white-space: nowrap;
	min-width: 0;
	flex: 1;
	justify-content: space-between;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	padding-right: 10px;
}
.menu::-webkit-scrollbar {
	display: none;
}
.menu::before {
	content: '';
	flex: 0 0 8px;
}
.menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 700;
	color: #e0e7ff;
	border: 1px solid transparent;
	transition:
		background 0.25s,
		transform 0.2s,
		border-color 0.25s;
	flex: 0 0 auto;
	scroll-snap-align: center;
}
.menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.menu a.active {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.25);
}
.menu .btn {
	margin-left: auto;
	height: calc(var(--nav-height) - 16px);
	line-height: calc(var(--nav-height) - 16px);
	padding: 0 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), #0a3f87);
	color: #fff;
	border: none;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* --- Clean, dedicated style for the top-right call-to-action --- */
.menu .btn.nav__cta {
	background: linear-gradient(135deg, var(--primary), #0a3f87);
	color: #fff;
	border: none;
	box-shadow: none;
	border-radius: 999px;
	height: calc(var(--nav-height) - 16px);
	line-height: calc(var(--nav-height) - 16px);
	padding: 0 20px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: filter 0.25s ease;
	position: relative;
	z-index: 5;
	overflow: hidden;
	isolation: isolate;
	clip-path: inset(0 round 999px);
}

/* disable any background overlay or hover motion */
.menu .btn.nav__cta:hover {
	filter: brightness(0.92);
	transform: none !important;
	background: linear-gradient(135deg, var(--primary), #0a3f87);
}

/* prevent inherited hover overlay from menu links */
.menu a.btn.nav__cta:hover {
	background: linear-gradient(135deg, var(--primary), #0a3f87);
}

/* ensure no weird blend with navbar backdrop */
.nav__inner .btn.nav__cta {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.menu {
	padding-right: 10px; /* keep spacing for links */
}

.menu .btn.nav__cta {
	margin-right: -10px; /* visually offset the padding */
}

.menu .cta-icon,
.menu .cta-icon img {
	display: none;
}
.menu .cta-label {
	display: inline;
}
@media (max-width: 560px) {
	.brand__name {
		display: none;
	}
}
@media (max-width: 440px) {
	.menu a {
		font-size: 14px;
		padding: 8px 12px;
	}
	.menu .cta-label {
		display: none;
	}
	.menu .cta-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.menu .btn {
		height: 40px;
		line-height: 40px;
	}
}

/* ========== PILL NAV (scoped) ========== */
.pill-nav-container {
	position: fixed;
	top: 14px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	z-index: 130;
}
@media (max-width: 768px) {
	.pill-nav-container {
		left: 0;
		right: 0;
	}
}

.pill-nav {
	--nav-h: 42px;
	--logo: 36px;
	--pill-pad-x: 18px;
	--pill-gap: 3px;
	width: max-content;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}
@media (max-width: 768px) {
	.pill-nav {
		width: 100%;
		justify-content: space-between;
		padding: 0 1rem;
		background: transparent;
	}
}
/* QuantIB theme tokens */
.pill-nav.quantib-theme {
	--base: #060010;
	--pill-bg: #ffffff;
	--hover-text: #ffffff;
	--pill-text: #060010;
}

/* Items strip */
.pill-nav .pill-nav-items {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--nav-h);
	background: var(--base, #000);
	border-radius: 9999px;
}

/* Logo */
.pill-nav .pill-logo {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--base, #000);
	padding: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.pill-nav .pill-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
	transition: transform 0.5s ease-in-out;
}
.pill-nav .pill-logo:hover img {
	transform: rotate(360deg);
}

/* List */
.pill-nav .pill-list {
	list-style: none;
	display: flex;
	align-items: stretch;
	gap: var(--pill-gap);
	margin: 0;
	padding: 3px;
	height: 100%;
}
.pill-nav .pill-list > li {
	display: flex;
	height: 100%;
}

/* Pills (scoped) */
.pill-nav .pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 var(--pill-pad-x);
	background: var(--pill-bg, #fff);
	color: var(--pill-text, var(--base, #000));
	text-decoration: none;
	border-radius: 9999px;
	box-sizing: border-box;
	font-weight: 600;
	font-size: 16px;
	line-height: 0;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.pill-nav .pill .hover-circle {
	position: absolute;
	left: 50%;
	bottom: 0;
	border-radius: 50%;
	background: var(--base, #000);
	z-index: 1;
	display: block;
	pointer-events: none;
	will-change: transform;
}
.pill-nav .pill .label-stack {
	position: relative;
	display: inline-block;
	line-height: 1;
	z-index: 2;
}
.pill-nav .pill .pill-label {
	position: relative;
	z-index: 2;
	display: inline-block;
	line-height: 1;
	will-change: transform;
}
.pill-nav .pill .pill-label-hover {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--hover-text, #fff);
	z-index: 3;
	display: inline-block;
	will-change: transform, opacity;
}

/* Hide the active dot entirely */
.pill-nav .pill.is-active::after {
	display: none !important;
}

/* Visibility helpers (scoped to nav) */
.pill-nav-container .desktop-only {
	display: block;
}
.pill-nav-container .mobile-only {
	display: none;
}
@media (max-width: 768px) {
	.pill-nav-container .desktop-only {
		display: none;
	}
	.pill-nav-container .mobile-only {
		display: block;
	}
}

/* Burger button */
.pill-nav-container .mobile-menu-button {
	width: var(--nav-h);
	height: var(--nav-h);
	border-radius: 50%;
	background: var(--base, #000);
	border: none;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	cursor: pointer;
	padding: 0;
	position: relative;
}
@media (max-width: 768px) {
	.pill-nav-container .mobile-menu-button {
		display: flex;
	}
}
.pill-nav-container .hamburger-line {
	width: 16px;
	height: 2px;
	background: var(--pill-bg, #fff);
	border-radius: 1px;
	transition: all 0.2s ease;
	transform-origin: center;
}

/* Mobile popover */
.pill-nav-container .mobile-menu-popover {
	position: absolute;
	top: 3em;
	left: 1rem;
	right: 1rem;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 27px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	transform-origin: top center;
	visibility: hidden;
}
.pill-nav-container .mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 3px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pill-nav-container .mobile-menu-popover .mobile-menu-link {
	display: block;
	padding: 12px 16px;
	color: var(--text);
	background-color: var(--surface);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}
.pill-nav-container .mobile-menu-popover .mobile-menu-link:hover {
	background-color: var(--primary);
	color: #ffffff;
	transform: none;
}

/* HERO */
.hero {
	position: relative;
	isolation: isolate;
	padding-top: calc(var(--nav-height) + 40px);
	padding-bottom: 50px;
	background:
		radial-gradient(
			70% 70% at 80% -10%,
			rgba(62, 194, 193, 0.18),
			transparent 60%
		),
		var(--bg-2);
	border-bottom: 1px solid var(--border);
}
.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: start;
}

.hero__panel .field {
	display: flex;
	gap: 10px;
	margin: 10px 0;
}

.eyebrow {
	color: #107cc5;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.9rem;
}
h1 {
	font-size: clamp(26px, 8vw, 56px);
	line-height: 1.1;
	margin: 0.35em 0 0.3em;
	overflow-wrap: break-word;
	word-break: break-word;
}
.lead {
	font-size: clamp(16px, 2.2vw, 20px);
	color: var(--muted);
	margin: 0 0 22px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 9999px;
	background: linear-gradient(135deg, var(--primary), #0636a2);
	color: #fff;
	border: none;
	font-weight: 800;
	letter-spacing: 0.2px;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.2s,
		filter 0.2s;
	white-space: nowrap;
}
.btn:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}
.btn--ghost {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
}
.badges {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0;
}

.badges svg,
.badges img {
	filter: brightness(0) invert(1);
	/* optional smooth transition for hover or load */
	transition: filter 0.3s ease;
}

.badge {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
}
/* Existing block — extend it like this */
.badge .i {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--primary), #0a3f87);
	display: flex; /* center the SVG */
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.badge .i .badge-icon {
	width: 20px; /* crisp size */
	height: 20px;
	display: block;
	opacity: 0.95;
}
.hero__panel {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--border);
	border-radius: var(--r);
	box-shadow: var(--shadow-2);
	padding: 18px;
	backdrop-filter: blur(8px);
	align-self: start;
	margin-top: var(--hero-panel-offset, 12px);
}
.hero__panel h3 {
	margin: 0 0 12px;
}

/* Center the buttons in .hero-cta-row */
.hero-cta-row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.hero-cta-row .btn {
	padding: 0.8rem 1.6rem;
	border-radius: 9999px; /* pill-shaped aesthetic */
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.02em;
	/* Fade in/out + smooth motion */
	opacity: 0.92;
	transition:
		opacity 0.75s ease,
		transform 0.75s ease,
		box-shadow 0.75s ease,
		background 0.75s ease,
		border-color 0.75s ease,
		filter 0.75s ease;
}

.hero-cta-row .btn:hover {
	opacity: 1;
	filter: none; /* prevent global brightness flicker */
}

/* Primary CTA button style */
.hero-cta-row .btn-primary {
	background: linear-gradient(135deg, #3a86ff, #5b5f97);
	color: #fff;
	border: none;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	margin-left: -10px;
	z-index: 1;
}

.hero-cta-row .btn-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: -1; /* stays below text */
	pointer-events: none;
	background: linear-gradient(135deg, #5b5f97, #3a86ff);
	opacity: 0;
	transition: opacity 0.75s ease;
}
.hero-cta-row .btn-primary:hover::before {
	opacity: 1;
}

.hero-cta-row .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(58, 134, 255, 0.25);
}

.hero-cta-row .btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-cta-row .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	border-color: #fff;
}

.gform-embed {
	position: relative;
	width: 100%;
	height: var(--gform-h);
	border-radius: 12px;
	overflow: hidden;
	background: #0e1520;
	border: 1px solid var(--border);
}
.gform-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* QFORM */
/* ——— Hero form tweaks ——— */
.qform-title {
	text-align: center;
	margin-top: 0;
}

/* keep native semantics but visually hide labels */
.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.qform .field {
	margin-bottom: 12px;
}
.qform input,
.qform select,
.qform textarea,
.qform button {
	font: inherit;
	color: var(--text);
}

.qform input,
.qform select,
.qform textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px 14px;
	outline: none;
}
.qform input::placeholder,
.qform textarea::placeholder {
	color: var(--muted);
}

/* Textarea: allow only vertical growth; never smaller than default */
.qform textarea {
	resize: vertical; /* only vertical */
	min-height: 132px; /* default floor (don’t allow shrink below this) */
	line-height: 1.45;
}

/* centered status + note */
.qform-status {
	margin: 6px 0 10px;
	min-height: 1.2em;
	text-align: center;
	color: var(--muted);
}
.qform-note {
	text-align: center;
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 10px;
}

/* Center the big submit button inside the hero form */
.qform .qform-submit {
	width: 100%;
	display: inline-flex; /* the base .btn uses flex; keep it inline */
	justify-content: center; /* <-- centers the text inside the flex button */
	border-radius: 9999px;
	text-align: center; /* fallback */
}

/* SHARED / reveal + tilt */
.reveal {
	opacity: 0;
	transform: translateY(16px) scale(0.98);
	filter: saturate(0.9);
	transition:
		opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		filter 0.8s;
}
.reveal--visible {
	opacity: 1;
	transform: none;
	filter: none;
}
body.intro .nav,
body.intro .pill-nav-container,
body.intro .hero .container > :not(.intro-wrap),
body.intro section:not(.hero) {
	opacity: 0;
	pointer-events: none;
}
body.intro .intro-wrap {
	min-height: 36vh;
}
.intro-wrap {
	min-height: auto;
}
.headline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25ch;
}
.headline .word {
	display: inline-block;
	white-space: nowrap;
}
.headline .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(40px) rotateX(65deg) scale(0.96);
	filter: blur(6px);
}
.headline .char.in {
	animation: charIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes charIn {
	to {
		opacity: 1;
		transform: none;
		filter: blur(0);
	}
}
.card,
.step,
.stat {
	position: relative;
	transform-style: preserve-3d;
}
.card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 18px;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.35s;
}
@media (hover: hover) and (pointer: fine) {
	.card:hover {
		box-shadow: var(--shadow-2);
	}
}
.card:active {
	box-shadow: var(--shadow-2);
}
.card-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
}
.card-contact > .btn,
.card-contact > .social-icons-wrapper {
	margin-top: auto;
}
.social-icons-wrapper {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}
.btn-social {
	padding: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.btn-social::before {
	display: none !important; /* remove primary button gradient overlay */
}
.btn-instagram {
	background: radial-gradient(
		circle at 30% 107%,
		#fdf497 0%,
		#fdf497 5%,
		#fd5949 45%,
		#d6249f 60%,
		#285aeb 90%
	);
}
.btn-youtube {
	background: #ff0000;
}
.btn-tiktok {
	background: #000000;
}
.btn-linkedin {
	background: #0a66c2;
}

.social-icon {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
	display: block; /* removes bottom gap */
}
.tiktok-shadow {
	filter: brightness(0) invert(1) drop-shadow(-1.5px -1.5px 0 #25f4ee)
		drop-shadow(1.5px 1.5px 0 #fe2c55);
}
.tilt::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	pointer-events: none;
	background: radial-gradient(
		400px 180px at var(--mx, 50%) var(--my, 50%),
		rgba(255, 255, 255, 0.12),
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
	.tilt:hover::after {
		opacity: 1;
	}
}
.tilt:active::after {
	opacity: 1;
}
.sh {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.sh h2 {
	margin: 0;
	font-size: clamp(22px, 6vw, 32px);
}
.sh p {
	margin: 6px 0 0;
	color: var(--muted);
}
.pill {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #dfe7ff;
	font-weight: 700;
	font-size: 0.85rem;
	border: 1px solid var(--border);
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.stat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px;
	text-align: center;
}
.stat b {
	display: block;
	font-size: clamp(22px, 6vw, 30px);
}
.stat span {
	color: var(--muted);
}

/* REVIEWS */
.testi-fade {
	position: relative;
	overflow: hidden;
}
.testi-fade::before,
.testi-fade::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 48px;
	z-index: 2;
	pointer-events: none;
}
.testi-fade::before {
	left: 0;
	background: linear-gradient(90deg, var(--bg) 0%, rgba(11, 15, 21, 0) 100%);
}
.testi-fade::after {
	right: 0;
	background: linear-gradient(270deg, var(--bg) 0%, rgba(11, 15, 21, 0) 100%);
}
.testi-marquee {
	--gap: 1rem;
	position: relative;
}
.testi-row {
	display: flex;
	gap: var(--gap);
	overflow-x: hidden;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
	/* Add side padding to allow first/last items to center natively.
	   We will calculate it dynamically in JS, but provide a fallback */
	padding-inline: calc(50vw - 280px);
}
.testi-row::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}
.testi-track {
	display: flex;
	gap: var(--gap);
}
@media (hover: hover) and (pointer: fine) {
	.testi-track:hover .quote {
		filter: brightness(0.25);
	}
	.testi-track .quote:hover {
		filter: brightness(1);
	}
}
.testi-track.is-resuming {
	animation: fadeInResume 0.8s ease forwards;
}
@keyframes fadeInResume {
	from {
		opacity: 0;
		filter: blur(4px);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}
.quote {
	min-width: clamp(260px, 80vw, 560px);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px;
	transition: filter 0.4s ease;
}
.quote footer {
	margin-top: 10px;
	color: var(--muted);
	font-weight: 600;
}

/* FAQ */
.faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.faq__item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: 12px;
}
.faq__q {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 16px;
	font-weight: 800;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text);
	cursor: pointer;
	list-style: none; /* Hide default triangle on modern browsers */
	outline: none;
	-webkit-tap-highlight-color: transparent;
}
.faq__q::-webkit-details-marker {
	display: none; /* Hide default triangle on Safari/Chrome */
}

/* FAQ Icon Geometry */
.faq-icon {
	width: 24px;
	height: 24px;
	position: relative;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	color: var(--text);
}
.faq-line-1,
.faq-line-2 {
	position: absolute;
	width: 2px;
	background-color: currentColor;
	border-radius: 2px;
	left: 11px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}
/* V State (closed) */
.faq-line-1 {
	top: 6px;
	height: 12px;
	transform: translate(-3.5px, 2px) rotate(-45deg);
}
.faq-line-2 {
	top: 6px;
	height: 12px;
	transform: translate(3.5px, 2px) rotate(45deg);
}

/* X State (open) */
.faq__item[open] .faq-icon {
	transform: rotate(180deg);
}
.faq__item[open] .faq-line-1,
.faq__item[open] .faq-line-2 {
	top: 2px;
	height: 20px;
}
.faq__item[open] .faq-line-1 {
	transform: translate(0, 0) rotate(-45deg);
}
.faq__item[open] .faq-line-2 {
	transform: translate(0, 0) rotate(45deg);
}

.faq__a {
	padding: 0 16px 16px;
	display: none;
	color: var(--muted);
}
.faq__item[open] .faq__a {
	display: block;
}

/* Notion Calendar (cropped) — bigger glow by ~15% */
.nc-wrap {
	position: relative;
}
.nc-wrap::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -80px;
	width: min(1035px, 94vw);
	height: 483px;
	border-radius: 999px;
	background: radial-gradient(
		closest-side,
		rgba(11, 116, 255, 0.32),
		rgba(62, 194, 193, 0.2) 55%,
		rgba(11, 15, 21, 0) 70%
	);
	filter: blur(38px);
	pointer-events: none;
	z-index: 0;
}
.nc-crop {
	position: relative;
	z-index: 1;
	width: min(var(--nc-crop-w), 100%);
	height: var(--nc-crop-h);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
}
.nc-crop iframe {
	position: absolute;
	inset: 0;
	width: var(--nc-iframe-w);
	height: var(--nc-iframe-h);
	transform: translate(var(--nc-shift-x), var(--nc-shift-y));
	border: 0;
}
@media (max-width: 900px) {
	.nc-crop {
		width: 100%;
		height: 700px;
		border-radius: 12px;
	}
	.nc-crop iframe {
		width: 100% !important;
		height: 100% !important;
		transform: none !important;
	}
}

/* COOKIES + footer etc (unchanged) */

/* Ensure Cookiebot widget aligns perfectly with Calendly button, even on narrow mobile screens */
#CookiebotWidget {
	bottom: 14px !important;
	left: 14px !important;
	margin: 0 !important;
	transform: scale(0.9166667) !important;
	transform-origin: center center !important;
}

/* Force the widget's inner floating button to remain a circle on narrow screens */
#CookiebotWidget .CookiebotWidget-btn,
#CookiebotWidget .CookiebotWidget-body {
	border-radius: 999px !important;
}
.calendly-floating-badge {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 190;
	height: 44px;
	width: 44px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, var(--primary), #0636a2);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s;
}
.calendly-floating-badge:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: var(--shadow-2);
}
.calendly-floating-badge i {
	font-size: 18px;
}

@media (max-width: 960px) {
	.hero__grid {
		grid-template-columns: 1fr;
	}
	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-3 {
		grid-template-columns: 1fr;
	}
	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.faq {
		grid-template-columns: 1fr;
	}
}
@media (prefers-reduced-motion: reduce) {
	.reveal,
	.card,
	.menu a,
	.testi-track {
		transition: none;
		animation: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* ===================== OUR PROCESS — Feature Slider (Scroll Snap) ===================== */
/* Center the whole slider area in the page container */
#process .fs {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	width: 100%;
}

/* Viewport uses native horizontal scrolling + scroll snap */
#process .fs-viewport {
	--panel-w: clamp(860px, 78vw, 1000px);
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	height: clamp(520px, 62vh, 720px);
	max-width: min(1100px, 96vw);
	margin-inline: auto;
	padding-inline: max(0px, calc((100% - var(--panel-w)) / 2));
	scroll-padding-inline: max(0px, calc((100% - var(--panel-w)) / 2));
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none; /* IE/Edge legacy */
	scrollbar-width: none; /* Firefox */
	/* Soft edge fade like Apple */
	mask-image: linear-gradient(
		to right,
		transparent,
		#000 3%,
		#000 97%,
		transparent
	);
	-webkit-mask-image: linear-gradient(
		to right,
		transparent,
		#000 3%,
		#000 97%,
		transparent
	);
}
#process .fs-viewport::-webkit-scrollbar {
	display: none;
}

/* Track is a single row of slides */
#process .fs-track {
	display: flex;
	align-items: stretch;
	height: 100%;
	gap: clamp(8px, 1.6vw, 14px); /* small gutter between slides */
	margin: 0; /* reset UL default margin */
	padding: 0; /* reset UL default padding */
	list-style: none; /* no bullets */
}

/* Side spacers so first/last slides can center perfectly */
#process .fs-track::before,
#process .fs-track::after {
	content: '';
	flex: 0 0 var(--sidepad, 0px);
}

/* Each slide is one page; snap to center */
#process .fs-slide {
	flex: 0 0 var(--panel-w);
	height: 100%;
	display: grid;
	place-items: center;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	padding: 0;
	user-select: none;
	-webkit-user-select: none;
	cursor: grab;
}
#process .fs-viewport:active .fs-slide {
	cursor: grabbing;
}

/* Wider tiles, centered content */
#process .fs-slide .panel-box {
	width: var(--panel-w);
	max-width: none;
	min-height: clamp(420px, 56vh, 640px);
	padding: clamp(26px, 3.6vw, 36px);
	border-radius: 22px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: var(--shadow-1);
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	align-content: start;
	gap: clamp(10px, 1.4vw, 16px);
	text-align: center;
}

#process .fs-slide .panel-box h3 {
	margin: 6px 0 2px;
	font-size: clamp(22px, 3.2vw, 34px);
	line-height: 1.2;
}
#process .fs-slide .panel-box p {
	color: var(--muted);
	margin: 0 auto;
	max-width: 720px;
}
#process .fs-slide .panel-box ul {
	list-style: none;
	margin: 10px auto 0;
	padding: 0;
	max-width: 620px;
}
#process .fs-slide .panel-box li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: center;
}
#process .fs-slide .panel-box li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 999px;
	margin-top: 0.55em;
	background: rgba(255, 255, 255, 0.7);
	flex: 0 0 8px;
}

/* top meta (step chip + kicker pill) */
#process .panel-box .num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.05);
	color: #dfe7ff;
	font-weight: 800;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	margin: 0 auto;
}
#process .panel-box .kicker {
	display: inline-block;
	margin: 6px auto 0;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.06);
	text-transform: none;
	letter-spacing: 0.02em;
	font-weight: 700;
	color: #e9f0ff;
}

/* Controls — refined, glassy */
#process .fs-controls {
	position: static;
	margin: 16px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

/* === Gallery nav bar styles (scoped to Process) === */
#process .nav-wrapper {
	display: flex;
	align-items: center;
	gap: 18px;
}
#process .dot-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border);
	border-radius: 60px;
	padding: 0 28px;
	height: 60px;
	gap: 18px;
	box-shadow: var(--shadow-1);
}
#process .dot-container .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	flex: 0 0 auto;
}
#process .dot-container .dot.active {
	width: 44px;
	height: 12px;
	border-radius: 12px;
	background: #e9f0ff; /* match site text tone */
}
#process .control-btn {
	position: relative;
	height: 60px;
	width: 60px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	flex: 0 0 auto;
	/* Match HERO .btn-primary gradient + motion */
	background: linear-gradient(135deg, #3a86ff, #5b5f97);
	color: #fff;
	box-shadow: 0 6px 15px rgba(58, 134, 255, 0.25);
	transition:
		transform 0.75s ease,
		box-shadow 0.75s ease,
		filter 0.75s ease,
		background 0.75s ease;
	overflow: hidden;
	isolation: isolate;
}
#process .control-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: -1; /* sit under icon */
	pointer-events: none;
	/* reversed gradient on hover like HERO */
	background: linear-gradient(135deg, #5b5f97, #3a86ff);
	opacity: 0;
	transition: opacity 0.75s ease;
}
#process .control-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(58, 134, 255, 0.35);
}
#process .control-btn:hover::before {
	opacity: 1;
}
#process .control-btn svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
	display: block;
}

/* Dots */
#process .fs-pager {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	position: relative;
	overflow: hidden;
}

/* Progress fill inside pager (flush left, grows to active) */
#process .fs-pager .fs-progress {
	position: absolute;
	top: 50%;
	left: 12px; /* aligns with pager inner padding */
	height: 6px; /* slim progress height */
	width: var(--progress-w, 24px);
	transform: translateY(-50%);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	pointer-events: none;
	z-index: 0;
}
#process .fs-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	position: relative;
	z-index: 1;
	border: none;
	background: rgba(255, 255, 255, 0.28);
	opacity: 0.9;
	box-shadow: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}
#process .fs-dot.is-active {
	opacity: 1;
}

/* Chevron and pause buttons */
#process .fs-nav {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-weight: 800;
	transition:
		transform 0.2s ease,
		filter 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}
#process .fs-next {
	width: 48px;
	height: 32px;
	border-radius: 999px;
	line-height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#process .fs-prev {
	display: none;
} /* Apple-like, only "next" visible */
#process .fs-nav:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.4);
}

#process .fs-pause {
	background: transparent;
	border: none;
	width: auto;
	height: auto;
	padding: 0;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#process .fs-pause:hover {
	transform: none;
}

/* Standalone primary-style pill for Process pause button (clone of HERO primary) */
/* Match HERO primary visual */
/* Minimalist dark circle pause/play button */
.btn-hero-pause {
	width: 22px;
	height: 22px;
	min-height: 22px;
	padding: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: none;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.15s ease;
}
.btn-hero-pause:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}
.btn-hero-pause::before,
.btn-hero-pause:hover::before {
	display: none;
}
.btn-hero-pause svg {
	width: 12px;
	height: 12px;
	fill: #fff;
	display: block;
}

#process .fs-pause .icon-play,
#process .fs-pause .icon-pause {
	width: 12px;
	height: 12px;
	fill: #fff;
}

/* show play icon only when paused */
#process .fs .icon-play {
	display: none;
}
#process .fs.is-paused .icon-play {
	display: block;
}
#process .fs.is-paused .icon-pause {
	display: none;
}

@media (max-width: 640px) {
	#process .fs-controls {
		bottom: 14px;
	}
	/* Allow full-height slide content on small screens */
	#process .fs-viewport {
		height: auto;
		overflow-y: visible;
		/* Mobile: slightly narrower tiles for large phones and exact centering */
		--panel-w: 88vw;
		/* Remove viewport side padding; rely on side spacers for centering */
		padding-inline: 0;
		scroll-padding-inline: 0;
		/* Disable mask on mobile to avoid Safari snapping quirks */
		mask-image: none;
		-webkit-mask-image: none;
		/* Keep strict snapping */
		scroll-snap-type: x mandatory;
	}
	#process .fs-slide {
		height: auto;
		align-items: stretch;
	}
	#process .fs-slide .panel-box {
		max-width: 100%;
		min-height: min(66vh, 560px);
	}
	#process .fs-track {
		gap: 6px; /* smaller gutter on mobile */
	}
}

/* Centered animation well inside each tile */
#process .panel-anim {
	display: grid;
	place-items: center;
	height: 180px;
	margin: 12px auto 6px;
}
#process .panel-anim svg {
	width: clamp(200px, 42%, 280px);
	height: auto;
	opacity: 0.96;
}

/* --- Animations --- */
@keyframes loupeSweep {
	0% {
		transform: translateX(-18%) rotate(0deg);
	}
	50% {
		transform: translateX(18%) rotate(3deg);
	}
	100% {
		transform: translateX(-18%) rotate(0deg);
	}
}
@keyframes pulse {
	0%,
	100% {
		opacity: 0.55;
	}
	50% {
		opacity: 1;
	}
}
@keyframes barsUpA {
	from {
		transform: scaleY(0.2);
	}
	to {
		transform: scaleY(0.9);
	}
}
@keyframes barsUpB {
	from {
		transform: scaleY(0.2);
	}
	to {
		transform: scaleY(0.7);
	}
}
@keyframes barsUpC {
	from {
		transform: scaleY(0.2);
	}
	to {
		transform: scaleY(1);
	}
}
@keyframes draw {
	from {
		stroke-dashoffset: 260;
	}
	to {
		stroke-dashoffset: 0;
	}
}

/* Slide‑specific hooks */
#process .anim-search .glass {
	animation: loupeSweep 2.8s ease-in-out infinite;
	transform-origin: center;
}
#process .anim-search .highlight {
	animation: pulse 2s ease-in-out infinite;
}
#process .anim-lessons .page {
	transform-origin: left center;
	animation: pulse 2.4s ease-in-out infinite;
}
#process .anim-bars .bar-a {
	transform-origin: bottom center;
	animation: barsUpA 1.4s ease-out 0.15s both;
}
#process .anim-bars .bar-b {
	transform-origin: bottom center;
	animation: barsUpB 1.4s ease-out 0.3s both;
}
#process .anim-bars .bar-c {
	transform-origin: bottom center;
	animation: barsUpC 1.4s ease-out 0.45s both;
}
#process .anim-check .path {
	stroke-dasharray: 260;
	stroke-dashoffset: 260;
	animation: draw 1.6s ease-out 0.2s forwards;
}

/* ===================== PRIVACY POLICY ===================== */
.uc-privacy-policy-wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}

.uc-privacy-policy-wrapper .uc-privacy-policy {
	color: var(--text);
	font-family: inherit;
	line-height: 1.6;
}

.uc-privacy-policy-wrapper .uc-privacy-policy h1,
.uc-privacy-policy-wrapper .uc-privacy-policy h2,
.uc-privacy-policy-wrapper .uc-privacy-policy h3,
.uc-privacy-policy-wrapper .uc-privacy-policy h4,
.uc-privacy-policy-wrapper .uc-privacy-policy h5,
.uc-privacy-policy-wrapper .uc-privacy-policy h6 {
	color: #fff;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.2;
}

.uc-privacy-policy-wrapper .uc-privacy-policy p,
.uc-privacy-policy-wrapper .uc-privacy-policy ul,
.uc-privacy-policy-wrapper .uc-privacy-policy ol {
	margin-bottom: 1em;
}

.uc-privacy-policy-wrapper .uc-privacy-policy p {
	text-align: justify;
}

.uc-privacy-policy-wrapper .uc-privacy-policy a {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-color: rgba(11, 116, 255, 0.4);
	text-underline-offset: 3px;
	transition: text-decoration-color 0.2s ease;
}

.uc-privacy-policy-wrapper .uc-privacy-policy a:hover {
	text-decoration-color: var(--primary);
}

.uc-privacy-policy-wrapper .uc-privacy-policy ul,
.uc-privacy-policy-wrapper .uc-privacy-policy ol {
	padding-left: 20px;
}

.uc-privacy-policy-wrapper .uc-privacy-policy table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
	overflow-x: auto;
	display: block; /* Allows horizontal scrolling on small screens */
}

.uc-privacy-policy-wrapper .uc-privacy-policy th,
.uc-privacy-policy-wrapper .uc-privacy-policy td {
	border: 1px solid var(--border);
	padding: 10px 14px;
	text-align: left;
}

.uc-privacy-policy-wrapper .uc-privacy-policy th {
	background: rgba(255, 255, 255, 0.05);
	font-weight: 600;
	color: #fff;
}

@media (max-width: 768px) {
	.uc-privacy-policy-wrapper {
		padding: 24px;
	}
}
