/* =============================================================
   BBRain — Main Stylesheet
   Complete pixel-perfect implementation per Figma spec.
   Color surfaces are via CSS variables (defined in dark/light
   mode files); hero and nav use hardcoded values per spec.
============================================================= */

/* --------------------------------------------------
   RESET
-------------------------------------------------- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	scrollbar-gutter: stable;
	background-color: #000000;
}

body {
	font-family: 'Bricolage Grotesque', sans-serif;
	background-color: #000000;
	color: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100vw;
	position: relative;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: 'Bricolage Grotesque', sans-serif; }

/* --------------------------------------------------
   ACCESSIBILITY
-------------------------------------------------- */
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0;
	margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border-width: 0;
}

:focus-visible {
	outline: 2px solid #824BFE;
	outline-offset: 3px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------
   LAYOUT
   All containers use max-width 1280px and padding 0 48px
   to match the Problem section as the alignment anchor.
-------------------------------------------------- */
.container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 48px;
}

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

/* Default toggle icon state (dark is default: show sun) */
.toggle-icon--moon { display: none; }
.toggle-icon--sun  { display: flex; }
[data-theme="light"] .toggle-icon--sun  { display: none; }
[data-theme="light"] .toggle-icon--moon { display: flex; }

/* ============================================================
   NAVIGATION BAR
============================================================ */

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 50px;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	will-change: background, border-color, backdrop-filter, padding, box-shadow;
}

@media (min-width: 1050px) {
	.site-nav.scrolled {
		background: rgba(15, 5, 30, 0.80);
		border-color: rgba(255, 255, 255, 0.15);
		backdrop-filter: blur(24px) saturate(200%);
		-webkit-backdrop-filter: blur(24px) saturate(200%);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
		padding: 10px 20px;
		width: fit-content;
		margin: 12px auto;
		left: 0;
		right: 0;
	}

	.site-nav.scrolled .nav-links-wrapper {
		background: transparent;
		border-color: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		padding: 0;
		gap: 24px;
		box-shadow: none;
	}
}

.nav-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.nav-logo svg {
	height: 36px;
	width: auto;
	display: block;
}

.nav-links-wrapper {
	display: flex;
	align-items: center;
	gap: 32px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	padding: 10px 28px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	opacity: 1;
	will-change: background, border-color, backdrop-filter, padding, opacity;
}

.site-nav,
.nav-links-wrapper {
	transition:
		background 0.4s ease,
		border-color 0.4s ease,
		backdrop-filter 0.4s ease,
		-webkit-backdrop-filter 0.4s ease,
		padding 0.4s ease,
		box-shadow 0.4s ease,
		max-width 0.4s ease,
		margin 0.4s ease;
}

.nav-logo,
.nav-cta {
	transition: opacity 0.4s ease;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
}

.nav-links a {
	display: block;
	padding: 8px 16px;
	border-radius: 50px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
	transition: color 0.2s ease;
}

.nav-links a:hover { color: #F097FF; }

.nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	color: #ffffff;
	border-radius: 50px;
	padding: 12px 28px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	border: none;
}

.nav-cta:hover {
	opacity: 0.88;
}

.nav-toggle {
	display: none;
	width: 40px; height: 40px;
	align-items: center; justify-content: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: #ffffff;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	display: block;
	width: 18px; height: 1.5px;
	background: #ffffff; border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -6px; left: 0; }
.hamburger::after  { content: ''; position: absolute; top: 6px;  left: 0; }

.nav-toggle[aria-expanded="true"] .hamburger           { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before   { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] .hamburger::after    { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================================
   FLOATING THEME TOGGLE
============================================================ */
.theme-toggle-float {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 1000;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.toggle-track {
	display: flex;
	align-items: center;
	width: 58px;
	height: 30px;
	background: rgba(38, 32, 58, 0.92);
	border-radius: 50px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
	transition: background 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.toggle-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transform: translateX(28px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
}

[data-theme="light"] .toggle-thumb {
	transform: translateX(0);
}

.theme-toggle-float:hover .toggle-track {
	background: rgba(55, 45, 85, 0.95);
	border-color: rgba(130, 75, 254, 0.4);
}

/* ============================================================
   HERO SECTION
============================================================ */
.section--hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	background-color: #0a0010;
	margin-bottom: 0;
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.hero-video-wrapper::after {
	content: none;
}

.hero-video {
	position: absolute;
	top: 50%;
	right: 0;
	left: auto;
	transform: translateY(-50%);
	width: 100%;
	height: 120%;
	object-fit: cover;
	object-position: right center;
	display: block;
	opacity: 0.4;
}

.hero::after {
	content: none;
}

.hero-container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	padding-top: 72px;
	width: 100%;
}

.hero-content {
	position: relative;
	z-index: 3;
	margin-left: auto;
	margin-right: 0;
	max-width: 650px;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0;
}

.hero-headline {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 800;
	font-size: 72px;
	text-transform: uppercase;
	line-height: 1.0;
	text-align: right;
	width: 100%;
}

.hero-headline__line {
	display: block;
	color: #ffffff;
}

.hero-headline__line--accent {
	background: linear-gradient(90deg, #F69AFF 0%, #864DFE 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtext {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	text-align: right;
	margin-top: 24px;
	max-width: 520px;
	margin-left: auto;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	margin-top: 40px;
	justify-content: flex-end;
	width: 100%;
	flex-wrap: wrap;
}

.hero-btn-demo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #000000;
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-btn-demo:hover {
	transform: translateY(-1px);
	background: #f0efff;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-btn-explore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	padding: 14px 32px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	white-space: nowrap;
	backdrop-filter: blur(8px);
	transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.hero-btn-explore:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.6);
}

@media (min-width: 1280px) {
	.hero-video {
		width: 100%;
		height: 130%;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.hero-video {
		width: 100%;
		height: 120%;
		object-position: 70% center;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hero-video {
		width: 100%;
		height: 120%;
		object-position: 70% center;
	}
}

@media (max-width: 767px) {
	.hero-video {
		width: 100%;
		height: 100%;
		object-position: center center;
	}
}

.section--hero .animate-fade-up,
.section--hero .animate-fade-in,
.section--hero .animate-fade-right {
	opacity: 1;
	transform: none;
	transition: none;
}

/* ============================================================
   ECOSYSTEM MARQUEE SECTION
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.ecosystem-section {
	background: #000000;
	padding: 80px 0 20px;
	overflow: hidden;
}

.ecosystem-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	margin-bottom: 48px;
	text-align: center;
}

.ecosystem-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	max-width: 700px;
	text-align: center;
	margin: 0 auto 18px;
}

.marquee-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 36px;
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 0;
	width: max-content;
	animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 40px;
	white-space: nowrap;
}

.marquee-item img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.marquee-item span {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.marquee-divider {
	font-size: 20px;
	padding: 0 8px;
	flex-shrink: 0;
}

[data-theme="dark"] .marquee-item img,
.marquee-item img {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

[data-theme="dark"] .marquee-item span,
.marquee-item span {
	color: #ffffff;
}

[data-theme="dark"] .marquee-divider,
.marquee-divider {
	color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .ecosystem-heading,
.ecosystem-heading {
	color: #ffffff;
}

[data-theme="dark"] .ecosystem-section,
.ecosystem-section {
	background: #000000;
}

[data-theme="light"] .marquee-item img {
	filter: brightness(0);
	opacity: 0.8;
}

[data-theme="light"] .marquee-item span {
	color: #000000;
}

[data-theme="light"] .marquee-divider {
	color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .ecosystem-heading {
	color: #000000;
}

[data-theme="light"] .ecosystem-section {
	background: #F9F9F9;
}

@keyframes marquee-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.marquee-wrapper:hover .marquee-track {
	animation-play-state: paused;
}

@media (max-width: 1023px) {
	.ecosystem-section {
		padding: 60px 0 10px;
	}
	.ecosystem-container {
		padding: 0 32px;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.ecosystem-section {
		padding: 40px 0 10px;
	}
	.ecosystem-container {
		padding: 0 20px;
		width: 100%;
		margin-bottom: 32px;
	}
	.marquee-item {
		padding: 0 24px;
	}
	.marquee-item span {
		font-size: 14px;
	}
	.marquee-item img {
		width: 24px;
		height: 24px;
	}
}

/* ============================================================
   PROBLEM SECTION — ALIGNMENT ANCHOR
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.problem-section {
	background: #000000;
	padding: 80px 0 20px;
}

.problem-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.problem-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
	align-items: start;
}

.problem-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	text-transform: none;
	margin-bottom: 18px;
	letter-spacing: 0.02em;
}

.problem-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 18px;
}

.problem-right {
	padding-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.problem-text-primary {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.6;
	margin: 0 0 18px;
}

.problem-text-secondary {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin: 0 0 18px;
}

.problem-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	align-items: stretch;
	margin-top: 56px;
}

.prob-card-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 1.5px;
	clip-path: polygon(
		0 0,
		calc(100% - 36px) 0,
		100% 36px,
		100% 100%,
		36px 100%,
		0 calc(100% - 36px)
	);
	border-radius: 16px 0 16px 0;
	background: rgba(255, 255, 255, 0.15);
	cursor: pointer;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            filter 0.35s ease,
	            background 0.35s ease,
	            opacity 0.35s ease;
}

.problem-cards:hover .prob-card-wrap {
	transform: scale(0.93);
	opacity: 0.65;
}

.problem-cards:hover .prob-card-wrap:hover,
.prob-card-wrap:hover {
	transform: scale(1.07);
	opacity: 1;
	background: rgba(255, 255, 255, 0.85);
	filter: drop-shadow(0 20px 40px rgba(150, 90, 254, 0.65));
	z-index: 2;
}

.prob-card {
	position: relative;
	flex: 1;
	border-radius: 14px 0 14px 0;
	overflow: hidden;
	background: #2F2F33;
	backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	-webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	display: flex;
	flex-direction: column;
}

.prob-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #c084fc, #824BFE);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}

.prob-card-wrap:hover .prob-card::before {
	opacity: 1;
}

.prob-card__inner {
	position: relative;
	z-index: 1;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
}

.prob-card__tag {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	display: block;
	transition: color 0.3s ease;
}

.prob-card-wrap:hover .prob-card__tag {
	color: #ffffff;
}

.prob-card__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin: 0;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.prob-card-wrap:hover .prob-card__title {
	color: #ffffff;
}

.prob-card__body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
	transition: color 0.3s ease;
}

.prob-card-wrap:hover .prob-card__body {
	color: #ffffff;
}

[data-theme="light"] .problem-section {
	background: #F9F9F9;
}

[data-theme="light"] .problem-heading {
	color: #000000;
}

[data-theme="light"] .problem-text-primary {
	color: #000000;
}

[data-theme="light"] .problem-text-secondary {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .prob-card-wrap {
	background: rgba(130, 75, 254, 0.2);
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
}

[data-theme="light"] .prob-card-wrap:hover,
[data-theme="light"] .problem-cards:hover .prob-card-wrap:hover {
	background: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 20px 40px rgba(150, 90, 254, 0.4));
}

[data-theme="light"] .prob-card {
	background: #E0E2F9;
}

[data-theme="light"] .prob-card__tag {
	color: rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .prob-card__title {
	color: #824BFE;
}

[data-theme="light"] .prob-card__body {
	color: rgba(0, 0, 0, 0.65);
}

[data-theme="light"] .prob-card-wrap:hover .prob-card__tag {
	color: #ffffff;
}

[data-theme="light"] .prob-card-wrap:hover .prob-card__title {
	color: #ffffff;
}

[data-theme="light"] .prob-card-wrap:hover .prob-card__body {
	color: #ffffff;
}

@media (max-width: 1279px) {
	.problem-heading { font-size: 48px; margin-bottom: 18px; }
	.problem-cards { margin-bottom: 28px; }
}

@media (max-width: 1023px) {
	.problem-section {
		padding: 60px 0 10px;
	}
	.problem-container {
		padding: 0 32px;
		width: 100%;
	}
	.problem-label { font-size: 18px; margin-bottom: 12px; }
	.problem-heading { font-size: 36px; margin-bottom: 12px; }
	.problem-text-primary { font-size: 16px; margin-bottom: 12px; }
	.problem-text-secondary { font-size: 16px; margin-bottom: 12px; }
	.problem-top {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.problem-cards { grid-template-columns: repeat(2, 1fr); margin-bottom: 22px; }
}

@media (max-width: 768px) {
	.problem-section {
		padding: 40px 0 80px;
	}
	.problem-container {
		padding: 0 20px;
		width: 100%;
		text-align: center;
	}
	.problem-top {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 24px;
	}
	.problem-right {
		padding-top: 0;
		gap: 12px;
	}
	.problem-heading {
		font-size: 28px;
		line-height: 1.15;
		word-break: normal;
		overflow-wrap: normal;
		hyphens: none;
		white-space: normal;
	}
	.problem-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.prob-card-wrap { min-height: 220px; }
	.prob-card__inner { padding: 24px 20px; }
	.problem-cards:hover .prob-card-wrap,
	.problem-cards:hover .prob-card-wrap:hover,
	.prob-card-wrap:hover {
		transform: none;
		opacity: 1;
		filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
		background: rgba(255, 255, 255, 0.15);
		z-index: auto;
	}
	[data-theme="light"] .prob-card-wrap:hover,
	[data-theme="light"] .problem-cards:hover .prob-card-wrap:hover {
		background: rgba(130, 75, 254, 0.2);
		filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
	}
}

@media (max-width: 479px) {
	.problem-section { padding: 40px 0 40px; }
	.problem-label { font-size: 15px; margin-bottom: 12px; }
	.problem-text-primary { font-size: 15px; margin-bottom: 12px; }
	.problem-text-secondary { font-size: 15px; margin-bottom: 12px; }
	.problem-cards { grid-template-columns: 1fr; margin-bottom: 18px; }
	.prob-card__title { font-size: 18px; }
	.prob-card__tag { font-size: 13px; }
	.prob-card__body { font-size: 13px; }
}

/* ============================================================
   MULTI-FORMAT INTELLIGENCE SECTION
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.multi-format-section {
	background: #000000;
	padding: 80px 0 20px;
}

.multi-format-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.multi-format-diagram {
	position: relative;
	width: 100%;
	max-width: 580px;
	margin-bottom: 36px;
}

.diagram-svg {
	width: 100%;
	height: auto;
	display: block;
}

.multi-format-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.multi-format-label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	display: block;
	margin-bottom: 18px;
}

.multi-format-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 18px;
}

.multi-format-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0 0 18px;
}

.multi-format-example {
	background: linear-gradient(90deg, #DB8EFF 0%, #874EFE 100%);
	border-radius: 16px;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 36px;
}

.example-label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	display: block;
}

.example-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.6;
	margin: 0;
}

[data-theme="light"] .multi-format-section {
	background: #F9F9F9;
}

[data-theme="light"] .multi-format-heading {
	color: #000000;
}

[data-theme="light"] .multi-format-text {
	color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .multi-format-diagram {
	--node-fill: #4a4a4a;
	--node-stroke: #FCEBFF;
}

[data-theme="light"] .multi-format-diagram .diagram-svg text {
	fill: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1279px) {
	.multi-format-heading { font-size: 48px; margin-bottom: 18px; }
	.multi-format-diagram { margin-bottom: 28px; }
	.multi-format-example { margin-bottom: 28px; }
}

@media (max-width: 1023px) {
	.multi-format-section {
		padding: 60px 0 10px;
	}
	.multi-format-container {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		padding: 0 32px;
		width: 100%;
	}
	.multi-format-label { font-size: 18px; margin-bottom: 12px; }
	.multi-format-heading { font-size: 36px; margin-bottom: 12px; }
	.multi-format-text { font-size: 16px; margin-bottom: 12px; }
	.example-text { font-size: 16px; }
	.multi-format-diagram { margin-bottom: 22px; }
	.multi-format-example { margin-bottom: 22px; }
}

@media (max-width: 768px) {
	.multi-format-section {
		padding: 40px 0 40px;
	}
	.multi-format-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
		width: 100%;
		gap: 16px;
		text-align: center;
		align-items: center;
	}
	.multi-format-diagram {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.multi-format-content {
		width: 100%;
		max-width: 100%;
		align-items: center;
		text-align: center;
	}
	.multi-format-heading {
		font-size: 28px;
		margin-bottom: 12px;
		line-height: 1.2;
		word-break: normal;
		overflow-wrap: normal;
		hyphens: none;
		white-space: normal;
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
	.multi-format-text {
		text-align: center;
	}
	.multi-format-example {
		text-align: left;
	}
}

@media (max-width: 479px) {
	.multi-format-label { font-size: 15px; margin-bottom: 12px; }
	.multi-format-text { font-size: 15px; margin-bottom: 12px; }
	.example-text { font-size: 15px; }
	.multi-format-diagram { margin-bottom: 18px; }
	.multi-format-example { margin-bottom: 18px; }
}

/* ============================================================
   SECTION CONTAINER — IMAGES, SVGS, AND FLEX WRAPPING
============================================================ */
.problem-container img,
.problem-container svg,
.multi-format-container img,
.multi-format-container svg,
.ecosystem-container img,
.ecosystem-container svg {
	max-width: 100%;
	height: auto;
}

.multi-format-content,
.multi-format-example,
.problem-right {
	flex-wrap: wrap;
	gap: 16px;
}

@media (max-width: 768px) {
	.problem-container .problem-buttons,
	.multi-format-container .multi-format-buttons,
	.ecosystem-container .ecosystem-buttons {
		flex-direction: column;
		width: 100%;
	}
	.problem-container .problem-buttons .btn,
	.multi-format-container .multi-format-buttons .btn,
	.ecosystem-container .ecosystem-buttons .btn {
		width: 100%;
		text-align: center;
	}
}

/* ============================================================
   ECOSYSTEM SECTION TYPOGRAPHY
   ============================================================ */

@media (max-width: 1279px) {
	.ecosystem-heading { font-size: 28px; }
	.marquee-wrapper { margin-bottom: 24px; }
}

@media (max-width: 1023px) {
	.ecosystem-heading { font-size: 36px; margin-bottom: 12px; }
	.marquee-wrapper { margin-bottom: 22px; }
}

@media (max-width: 768px) {
	.ecosystem-heading { font-size: 28px; }
}

@media (max-width: 479px) {
	.marquee-wrapper { margin-bottom: 18px; }
}

/* ============================================================
   INTELLIGENCE / CORE PLATFORM SECTION
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.intelligence-section {
	background: #000000;
	padding: 80px 0 20px;
	overflow: hidden;
}

.intelligence-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.intelligence-left {
	overflow: visible;
}

.intelligence-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 18px;
}

.intelligence-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 36px;
}

.intelligence-accordion {
	display: flex;
	flex-direction: column;
}

.accordion-item {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.accordion-item:has(.accordion-trigger--active) {
	border-bottom-color: rgba(130,75,254,0.5);
}

.accordion-trigger {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	width: 100%;
	background: none;
	border: none;
	color: #ffffff;
	text-align: left;
	cursor: pointer;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.accordion-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	object-fit: contain;
}

.accordion-title {
	flex: 1;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.3;
}

.accordion-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: rgba(255,255,255,0.5);
	transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-trigger--active .accordion-chevron {
	transform: rotate(180deg);
	color: #ffffff;
}

.accordion-body {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-body--open {
	max-height: 200px;
	padding-bottom: 20px;
}

.accordion-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
	padding-left: 64px;
}

.intelligence-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.intelligence-illustration {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block;
}

[data-theme="light"] .intelligence-section {
	background: #F9F9F9;
}

[data-theme="light"] .intelligence-heading {
	color: #0a0a0a;
}

[data-theme="light"] .accordion-item {
	border-bottom-color: rgba(0,0,0,0.12);
}

[data-theme="light"] .accordion-item:has(.accordion-trigger--active) {
	border-bottom-color: rgba(130,75,254,0.5);
}

[data-theme="light"] .accordion-title {
	color: #0a0a0a;
}

[data-theme="light"] .accordion-chevron {
	color: rgba(0,0,0,0.4);
}

[data-theme="light"] .accordion-trigger--active .accordion-chevron {
	color: #0a0a0a;
}

[data-theme="light"] .accordion-text {
	color: rgba(0,0,0,0.6);
}

[data-theme="light"] .accordion-icon {
	filter: brightness(0);
}

.intelligence-illustration--light { display: none; }
[data-theme="light"] .intelligence-illustration--dark { display: none; }
[data-theme="light"] .intelligence-illustration--light { display: block; }

@media (max-width: 1279px) {
	.intelligence-heading { font-size: 48px; }
}

@media (max-width: 1023px) {
	.intelligence-section {
		padding: 60px 0 10px;
	}
	.intelligence-container {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0 32px;
	}
	.intelligence-heading { font-size: 36px; }
	.accordion-title { font-size: 15px; }
}

@media (max-width: 768px) {
	.intelligence-heading { font-size: 28px; }
	.intelligence-container { padding: 0 20px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-up,
.animate-fade-in,
.animate-fade-right {
	opacity: 0;
	transition: opacity 0.38s ease, transform 0.38s ease;
}

.animate-fade-up    { transform: translateY(32px); }
.animate-fade-in    { transform: scale(0.96); }
.animate-fade-right { transform: translateX(-32px); }

.animate-delay-1 { transition-delay: 80ms; }
.animate-delay-2 { transition-delay: 160ms; }
.animate-delay-3 { transition-delay: 240ms; }
.animate-delay-4 { transition-delay: 320ms; }
.animate-delay-5 { transition-delay: 400ms; }

.is-visible.animate-fade-up,
.is-visible.animate-fade-in,
.is-visible.animate-fade-right {
	opacity: 1;
	transform: none;
}

/* ============================================================
   MOBILE NAV (≤1049px)
============================================================ */
@media (max-width: 1049px) {
	.site-nav {
		background: rgba(15, 5, 30, 0.85);
		backdrop-filter: blur(24px) saturate(200%);
		-webkit-backdrop-filter: blur(24px) saturate(200%);
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 0;
		padding: 16px 24px;
		width: 100%;
		left: 0;
		right: 0;
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	}

	.site-nav.scrolled {
		top: 0;
		width: 100%;
		max-width: none;
		margin: 0;
		border-radius: 0;
		padding: 16px 24px;
	}

	.nav-links-wrapper {
		display: none;
		position: fixed;
		top: 64px; left: 0; right: 0;
		border-radius: 0;
		background: rgba(10, 5, 20, 0.97);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		padding: 1rem;
		z-index: 999;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.nav-links-wrapper.is-open { display: flex; }

	.site-nav.scrolled .nav-links-wrapper {
		background: rgba(10, 5, 20, 0.97);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border-color: transparent;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		padding: 1rem;
		border-radius: 0;
		gap: 0;
	}

	.nav-links {
		flex-direction: column;
		width: 100%;
		gap: 2px;
	}
	.nav-links a {
		padding: 12px 16px;
		border-radius: 8px;
		font-size: 15px;
	}
	.nav-cta    { display: none; }
	.nav-toggle { display: flex; }
}

/* ============================================================
   HERO RESPONSIVE
============================================================ */

@media (max-width: 1280px) {
	.hero-headline {
		font-size: 60px;
	}
	.hero-content {
		max-width: 580px;
	}
	.hero-subtext {
		font-size: 16px;
	}
	.hero-container {
		padding: 0 40px;
		padding-top: 72px;
	}
}

@media (max-width: 1023px) {
	.hero-container {
		padding: 0 32px;
		padding-top: 72px;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: auto;
		height: auto;
		padding: 120px 32px 80px;
	}
	.hero-container {
		padding: 0 20px;
		padding-top: 72px;
	}
	.hero-headline {
		font-size: 48px;
		line-height: 1.05;
		text-align: center;
	}
	.hero-content {
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
		align-items: center;
	}
	.hero-subtext {
		text-align: center;
		font-size: 15px;
		max-width: 500px;
		margin: 0 auto;
	}
	.hero-buttons {
		justify-content: center;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.hero-buttons {
		position: relative;
		z-index: 10;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		width: 100%;
	}
	.btn-primary {
		background: #ffffff;
		color: #000000;
		border: none;
		width: auto;
		padding: 14px 32px;
		position: relative;
		z-index: 10;
	}
	.btn-secondary {
		background: rgba(0, 0, 0, 0.7);
		color: #ffffff;
		border: 2px solid rgba(255, 255, 255, 0.8);
		width: auto;
		padding: 14px 32px;
		position: relative;
		z-index: 10;
	}
}

@media (max-width: 767px) {
	.hero {
		min-height: auto;
		height: auto;
		padding: 100px 20px 60px;
	}
	.hero-headline {
		font-size: 36px;
		line-height: 1.05;
		text-align: center;
	}
	.hero-content {
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
		align-items: center;
		gap: 16px;
	}
	.hero-subtext {
		text-align: center;
		font-size: 14px;
		max-width: 100%;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.hero-buttons a,
	.hero-buttons button {
		width: auto;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: auto;
		height: auto;
		padding: 90px 20px 50px;
	}
	.hero-headline {
		font-size: 30px;
	}
	.hero-subtext {
		font-size: 13px;
	}
}

/* ============================================================
   HOW IT WORKS — FIVE STAGES
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.hiw-section {
	background: #000000;
	padding: 120px 0 20px;
}

.hiw-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.hiw-timeline {
	position: relative;
}

.hiw-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	background: linear-gradient(to bottom, #F097FF, #874EFE);
	z-index: 0;
	pointer-events: none;
}

.hiw-row {
	display: grid;
	grid-template-columns: 1fr 56px 1fr;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hiw-col--left {
	padding-right: 24px;
}

.hiw-col--center {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.hiw-col--right {
	padding-left: 24px;
}

.hiw-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(to bottom, #F097FF, #874EFE);
	flex-shrink: 0;
	box-shadow: 0 0 10px 2px rgba(240,151,255,0.45), 0 0 24px 6px rgba(135,78,254,0.25);
	animation: hiw-dot-pulse 3s ease-in-out infinite;
}

.hiw-row:nth-child(1) .hiw-dot { animation-delay: 0s; }
.hiw-row:nth-child(2) .hiw-dot { animation-delay: 0.6s; }
.hiw-row:nth-child(3) .hiw-dot { animation-delay: 1.2s; }
.hiw-row:nth-child(4) .hiw-dot { animation-delay: 1.8s; }
.hiw-row:nth-child(5) .hiw-dot { animation-delay: 2.4s; }

.hiw-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 18px;
}

.hiw-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 24px;
}

.hiw-subtext {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	color: rgba(255,255,255,0.65);
	line-height: 1.6;
	padding-bottom: 36px;
}

.hiw-stage {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.hiw-num {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: clamp(80px, 20vw, 240px);
	line-height: 0.85;
	background: linear-gradient(to bottom, #DD89FE 0%, #000000 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	user-select: none;
}

.hiw-step-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 8px;
}

.hiw-step-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
}

.hiw-step-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
	margin: 0;
}

.hiw-step-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

[data-theme="light"] .hiw-section { background: #F9F9F9; }
[data-theme="light"] .hiw-heading { color: #0a0a0a; }
[data-theme="light"] .hiw-subtext { color: rgba(0,0,0,0.65); }
[data-theme="light"] .hiw-step-heading { color: #0a0a0a; }
[data-theme="light"] .hiw-step-text { color: rgba(0,0,0,0.65); }
[data-theme="light"] .hiw-num {
	background: linear-gradient(to bottom, #DD89FE 0%, #F9F9F9 80%);
	-webkit-background-clip: text;
	background-clip: text;
}

@media (max-width: 1279px) {
	.hiw-heading { font-size: 48px; }
}

@media (max-width: 1023px) {
	.hiw-section {
		padding: 60px 0 10px;
	}
	.hiw-container {
		padding: 0 32px;
	}
	.hiw-heading { font-size: 36px; }
	.hiw-step-heading { font-size: 15px; }
	.hiw-col--left { padding-right: 16px; }
	.hiw-col--right { padding-left: 16px; }
	.hiw-row { grid-template-columns: 1fr 40px 1fr; }
}

@media (max-width: 767px) {
	.hiw-section { padding: 48px 0 10px; }
	.hiw-container { padding: 0 20px; }
	.hiw-heading { font-size: 28px; }
	.hiw-line { display: none; }
	.hiw-row { display: block; padding-bottom: 40px; }
	.hiw-col--center { display: none; }
	.hiw-col--empty { display: none; }
	.hiw-col--left { padding-right: 0; }
	.hiw-col--right { padding-left: 0; }
	.hiw-num { font-size: clamp(70px, 18vw, 120px); }
}

@keyframes hiw-dot-pulse {
	0%, 100% {
		box-shadow: 0 0 10px 2px rgba(240,151,255,0.45), 0 0 24px 6px rgba(135,78,254,0.25);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 18px 6px rgba(240,151,255,0.9), 0 0 40px 14px rgba(135,78,254,0.6);
		transform: scale(1.35);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hiw-dot { animation: none; }
}
/* ============================================================
   BEHAVIORAL INTELLIGENCE SECTION
   Section: padding 80px 0 20px. behavioral-outer handles internal alignment.
============================================================ */
.behavioral-section {
	background: #000000;
	padding: 80px 48px 20px;
}

.behavioral-outer {
	max-width: 1280px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 2rem;
	padding: 48px 40px;
}

.behavioral-inner {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: center;
}

.behavioral-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 18px;
}

.behavioral-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 18px;
}

.behavioral-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.behavioral-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	align-items: stretch;
}

.behavioral-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	min-height: 260px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	-webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		inset 1px 0 0 rgba(255, 255, 255, 0.06),
		0 8px 40px rgba(0, 0, 0, 0.45),
		0 2px 12px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.behavioral-card:hover {
	transform: scale(1.04);
	box-shadow: 0 16px 48px rgba(150, 90, 254, 0.55);
	z-index: 2;
}

.behavioral-card__default {
	position: absolute;
	inset: 0;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 1;
	transition: opacity 0.25s ease;
	z-index: 1;
}

.behavioral-card:hover .behavioral-card__default {
	opacity: 0;
	pointer-events: none;
}

.behavioral-card__num {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #824BFE;
	display: block;
	line-height: 1;
}

.behavioral-card__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	display: block;
	line-height: 1.45;
}

.behavioral-card__hover {
	position: absolute;
	inset: 0;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	background: linear-gradient(to bottom, #D78BFF, #965AFE);
	border-radius: 14px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.behavioral-card:hover .behavioral-card__hover {
	opacity: 1;
}

.behavioral-card__hover-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.behavioral-card__hover-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
	margin: 0;
}

[data-theme="light"] .behavioral-section {
	background: #F9F9F9;
}

[data-theme="light"] .behavioral-outer {
	background: rgba(252, 235, 255, 0.75);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(215, 139, 255, 0.25);
}

[data-theme="light"] .behavioral-heading {
	color: #000000;
}

[data-theme="light"] .behavioral-text {
	color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .behavioral-card {
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(32px) saturate(160%) brightness(1.08);
	-webkit-backdrop-filter: blur(32px) saturate(160%) brightness(1.08);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		inset 1px 0 0 rgba(255, 255, 255, 0.5),
		0 8px 40px rgba(0, 0, 0, 0.08),
		0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .behavioral-card__title {
	color: rgba(0, 0, 0, 0.75);
}

@media (max-width: 1279px) {
	.behavioral-heading { font-size: 48px; }
	.behavioral-outer { padding: 40px 32px; }
}

@media (max-width: 1023px) {
	.behavioral-section { padding: 60px 32px 10px; }
	.behavioral-heading { font-size: 36px; }
	.behavioral-label { font-size: 18px; }
	.behavioral-text { font-size: 16px; }
	.behavioral-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.behavioral-outer { padding: 32px 24px; }
	.behavioral-card { min-height: 210px; }
	.behavioral-card__num { font-size: 22px; }
	.behavioral-card__hover-title { font-size: 14px; }
	.behavioral-card__hover-text { font-size: 12px; }
}

@media (max-width: 767px) {
	.behavioral-section { padding: 48px 20px 10px; }
	.behavioral-heading { font-size: 28px; margin-bottom: 12px; }
	.behavioral-outer {
		padding: 24px 16px;
		border-radius: 1.5rem;
	}
	.behavioral-inner { gap: 24px; }
	.behavioral-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.behavioral-card { min-height: 180px; }
	.behavioral-card__num { font-size: 20px; }
	.behavioral-card__hover-title { font-size: 14px; }
	.behavioral-card__hover-text { font-size: 12px; }
}

@media (max-width: 479px) {
	.behavioral-section { padding: 40px 16px 10px; }
	.behavioral-label { font-size: 15px; margin-bottom: 12px; }
	.behavioral-text { font-size: 15px; }
	.behavioral-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.behavioral-card { min-height: 160px; }
	.behavioral-card__default { padding: 14px 12px; }
	.behavioral-card__hover { padding: 14px 12px; gap: 8px; }
}

/* ============================================================
   AUDIENCE SEGMENTATION SECTION
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.aud-section {
	background: #000000;
	padding: 120px 0 20px;
}

.aud-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.aud-grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: start;
}

.aud-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 18px;
}

.aud-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0;
}

.aud-body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.aud-diagram {
	position: relative;
	width: 520px;
	height: 520px;
	max-width: 100%;
	margin: 36px auto 0;
	overflow: visible;
}

.aud-ring {
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.aud-ring--outer {
	width: 300px;
	height: 300px;
	background: rgba(81, 63, 91, 0.70);
}

.aud-ring--inner {
	width: 210px;
	height: 210px;
	background: rgba(199, 121, 211, 0.40);
}

.aud-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
	z-index: 2;
}

.aud-center__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}

.aud-node {
	position: absolute;
	transform: translate(-20%, -20%);
	z-index: 3;
}

.aud-node__circle {
	border-radius: 50%;
	background: linear-gradient(to bottom, #DB8EFF, #9155FE);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(145, 85, 254, 0.45);
}

.aud-node--lg .aud-node__circle { width: 72px; height: 72px; }
.aud-node--md .aud-node__circle { width: 58px; height: 58px; }
.aud-node--sm .aud-node__circle { width: 46px; height: 46px; }

.aud-node__circle img {
	max-width: 58%;
	max-height: 58%;
	object-fit: contain;
	display: block;
}

.aud-node__label {
	position: absolute;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
	pointer-events: none;
	width: 110px;
}

.aud-label--top {
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.aud-label--right {
	top: 50%;
	left: calc(100% + 12px);
	transform: translateY(-50%);
	text-align: left;
	width: 120px;
}

.aud-label--bottom {
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.aud-label--left {
	top: 50%;
	right: calc(100% + 12px);
	transform: translateY(-50%);
	text-align: right;
	width: 110px;
}

.aud-node--n1 { top: 18%; left: 38%; }
.aud-node--n2 { top: 20%; left: 60%; }
.aud-node--n3 { top: 40%; left: 70%; }
.aud-node--n4 { top: 60%; left: 74%; }
.aud-node--n5 { top: 70%; left: 56%; }
.aud-node--n6 { top: 68%; left: 28%; }
.aud-node--n7 { top: 50%; left: 18%; }
.aud-node--n8 { top: 30%; left: 22%; }

[data-theme="light"] .aud-section {
	background: #F9F9F9;
}

[data-theme="light"] .aud-heading {
	color: #000000;
}

[data-theme="light"] .aud-body {
	color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .aud-ring--outer {
	background: rgba(221, 172, 249, 0.30);
}

[data-theme="light"] .aud-node__label {
	color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1279px) {
	.aud-heading { font-size: 48px; }
	.aud-container { padding: 0 40px; }
	.aud-diagram { width: 460px; height: 460px; }
	.aud-ring--outer { width: 260px; height: 260px; }
	.aud-ring--inner { width: 190px; height: 190px; }
	.aud-center { width: 174px; height: 174px; }
}

@media (max-width: 1023px) {
	.aud-section { padding: 60px 0 40px; }
	.aud-container { padding: 0 32px; }
	.aud-heading { font-size: 36px; }
	.aud-label { font-size: 18px; }
	.aud-body { font-size: 16px; }
	.aud-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.aud-diagram { width: 420px; height: 420px; margin: 24px auto 0; }
	.aud-ring--outer { width: 240px; height: 240px; }
	.aud-ring--inner { width: 170px; height: 170px; }
	.aud-center { width: 153px; height: 153px; }
	.aud-node--lg .aud-node__circle { width: 60px; height: 60px; }
	.aud-node--md .aud-node__circle { width: 50px; height: 50px; }
	.aud-node--sm .aud-node__circle { width: 40px; height: 40px; }
	.aud-node__label { font-size: 12px; }
}

@media (max-width: 767px) {
	.aud-section { padding: 48px 0 32px; }
	.aud-container { padding: 0 20px; }
	.aud-heading { font-size: 28px; }
	.aud-body { font-size: 15px; }
	.aud-diagram { width: 340px; height: 340px; margin: 20px auto 0; }
	.aud-ring--outer { width: 190px; height: 190px; }
	.aud-ring--inner { width: 140px; height: 140px; }
	.aud-center { width: 124px; height: 124px; }
	.aud-node--lg .aud-node__circle { width: 52px; height: 52px; }
	.aud-node--md .aud-node__circle { width: 42px; height: 42px; }
	.aud-node--sm .aud-node__circle { width: 34px; height: 34px; }
	.aud-node__label { font-size: 11px; width: 80px; }
	.aud-label--right { width: 90px; }
	.aud-label--left { width: 80px; }
}

@media (max-width: 479px) {
	.aud-label { font-size: 15px; margin-bottom: 12px; }
	.aud-body { font-size: 14px; }
	.aud-diagram { width: 300px; height: 300px; }
	.aud-ring--outer { width: 170px; height: 170px; }
	.aud-ring--inner { width: 120px; height: 120px; }
	.aud-center { width: 110px; height: 110px; }
	.aud-node--lg .aud-node__circle { width: 46px; height: 46px; }
	.aud-node--md .aud-node__circle { width: 36px; height: 36px; }
	.aud-node--sm .aud-node__circle { width: 28px; height: 28px; }
	.aud-node__label { font-size: 10px; width: 70px; }
	.aud-label--right { width: 75px; left: calc(100% + 8px); }
	.aud-label--left { width: 70px; right: calc(100% + 8px); }
}

/* ============================================================
   SYSTEM ARCHITECTURE SECTION
   Section: no horizontal padding. Container: max-width 1280px, padding 0 48px.
============================================================ */
.sysarch-section {
	background: #000000;
	padding: 120px 0 20px;
}

.sysarch-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.sysarch-grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: start;
}

.sysarch-label {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 16px;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.sysarch-heading {
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.sysarch-body {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.sysarch-diagram-wrap {
	position: relative;
	width: 100%;
	margin: 48px auto 0;
}

.arch-wrapper {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.arch-bg {
	display: block;
	width: 100%;
	height: auto;
}

.arch-bg--dark  { display: block; }
.arch-bg--light { display: none;  }

[data-theme="light"] .sysarch-section  { background: #F9F9F9; }
[data-theme="light"] .sysarch-heading  { color: #000000; }
[data-theme="light"] .sysarch-body     { color: rgba(0, 0, 0, 0.7); }
[data-theme="light"] .arch-bg--dark    { display: none; }
[data-theme="light"] .arch-bg--light   { display: block; }
[data-theme="light"] .label-title      { color: #000000; }
[data-theme="light"] .label-body       { color: rgba(0, 0, 0, 0.7); }

.arch-labels {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.label {
	position: absolute;
	pointer-events: auto;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.label-tag {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #824BFE;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-bottom: 4px;
}

.label-title {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 6px;
	color: #ffffff;
}

.label-body {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .label-title { color: #0f0f0f; }
[data-theme="light"] .label-body  { color: rgba(0, 0, 0, 0.55); }

.lbl-intelligence { right: 64%; top:  4%; width: 22%; text-align: right; }
.lbl-events       { left:  60%; top:  7%; width: 22%; text-align: left;  }
.lbl-engagement   { right: 74%; top: 45%; width: 22%; text-align: right; }
.lbl-content      { right:  1%; top: 36%; width: 22%; text-align: left;  }
.lbl-api          { right: 80%; top: 74%; width: 22%; text-align: right; }
.lbl-profiles     { left:  53%; top: 61%; width: 22%; text-align: left;  }

@media (max-width: 1279px) {
	.label-tag   { font-size: 14px; }
	.label-title { font-size: 20px; }
	.label-body  { font-size: 12px; }
	.lbl-intelligence { right: 64%; top:  4%; width: 23%; }
	.lbl-events       { left:  59%; top:  7%; width: 23%; }
	.lbl-engagement   { right: 74%; top: 45%; width: 23%; }
	.lbl-content      { right:  1%; top: 36%; width: 23%; }
	.lbl-api          { right: 80%; top: 74%; width: 23%; }
	.lbl-profiles     { left:  53%; top: 61%; width: 23%; }
}

@media (max-width: 1023px) {
	.sysarch-section   { padding: 60px 0 40px; }
	.sysarch-container { padding: 0 32px; }
	.sysarch-heading   { font-size: 36px; }
	.sysarch-label     { font-size: 18px; }
	.sysarch-body      { font-size: 16px; }
	.sysarch-grid      { grid-template-columns: 1fr; gap: 24px; }
	.label-tag         { font-size: 12px; }
	.label-title       { font-size: 17px; }
	.label-body        { font-size: 11px; }
	.lbl-intelligence  { right: 64%; top:  3%; width: 25%; }
	.lbl-events        { left:  58%; top:  6%; width: 25%; }
	.lbl-engagement    { right: 74%; top: 44%; width: 25%; }
	.lbl-content       { right:  1%; top: 35%; width: 25%; }
	.lbl-api           { right: 80%; top: 73%; width: 25%; }
	.lbl-profiles      { left:  52%; top: 60%; width: 25%; }
}

@media (max-width: 767px) {
	.sysarch-section   { padding: 48px 0 32px; }
	.sysarch-container { padding: 0 20px; }
	.sysarch-heading   { font-size: 28px; }
	.sysarch-body      { font-size: 15px; }
	.label-tag         { font-size: 10px; margin-bottom: 2px; }
	.label-title       { font-size: 13px; margin-bottom: 3px; }
	.label-body        { font-size: 9px;  line-height: 1.4;  }
	.lbl-intelligence  { right: 64%; top:  3%; width: 28%; }
	.lbl-events        { left:  56%; top:  5%; width: 28%; }
	.lbl-engagement    { right: 74%; top: 43%; width: 28%; }
	.lbl-content       { right:  1%; top: 34%; width: 28%; }
	.lbl-api           { right: 80%; top: 72%; width: 28%; }
	.lbl-profiles      { left:  50%; top: 59%; width: 28%; }
}

@media (max-width: 479px) {
	.label-tag         { font-size: 8px;   margin-bottom: 1px; }
	.label-title       { font-size: 10px;  margin-bottom: 2px; }
	.label-body        { font-size: 7.5px; line-height: 1.3;  }
	.lbl-intelligence  { right: 64%; top:  2%; width: 30%; }
	.lbl-events        { left:  53%; top:  4%; width: 30%; }
	.lbl-engagement    { right: 74%; top: 42%; width: 30%; }
	.lbl-content       { right:  0%; top: 33%; width: 30%; }
	.lbl-api           { right: 80%; top: 71%; width: 30%; }
	.lbl-profiles      { left:  48%; top: 58%; width: 30%; }
}

/* ============================================================
   COMMERCIAL ADVANTAGE SECTION
============================================================ */
.cadv-section {
	position: relative;
	background: #000000;
	padding: 120px 48px 80px;
}

.cadv-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 250px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #C26EE5);
	z-index: 0;
	pointer-events: none;
}

[data-theme="light"] .cadv-section::after {
	background: linear-gradient(to bottom, rgba(249, 249, 249, 0), #C26EE5);
}

.cadv-container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}

.cadv-header {
	margin-bottom: 48px;
}

.cadv-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 18px;
}

.cadv-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0;
}

.cadv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.cadv-card--full {
	grid-column: 1 / -1;
}

.cadv-card {
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	-webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.05);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		inset 1px 0 0 rgba(255, 255, 255, 0.06),
		0 8px 40px rgba(0, 0, 0, 0.45),
		0 2px 12px rgba(0, 0, 0, 0.3);
}

.cadv-c1-inner {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: center;
	padding: 48px;
}

.cadv-card__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 14px;
}

.cadv-card__body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin: 0;
}

.cadv-table {
	display: grid;
	grid-template-columns: auto 1fr 1px auto;
	column-gap: 16px;
	row-gap: 20px;
	align-items: center;
}

.cadv-pill {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	background: #9357FE;
	color: #ffffff;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 8px;
	white-space: nowrap;
	text-align: left;
}

.cadv-desc {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	white-space: nowrap;
}

.cadv-sep {
	display: block;
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, 0.2);
	justify-self: center;
}

.cadv-replaced {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	white-space: nowrap;
}

.cadv-checkbox {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	min-width: 18px;
	background: #9357FE;
	border-radius: 4px;
}

.cadv-cn-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 36px 40px;
	min-height: 185px;
}

.cadv-cn-text {
	flex: 1;
	max-width: 52%;
	padding-right: 16px;
}

.cadv-cn-text--wide {
	max-width: 70%;
}

.cadv-num {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 120px;
	font-weight: 800;
	line-height: 0.85;
	background: linear-gradient(to bottom, #9357FE, #DD89FE);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	user-select: none;
}

[data-theme="light"] .cadv-section {
	background: #ffffff;
}

[data-theme="light"] .cadv-heading {
	color: #000000;
}

[data-theme="light"] .cadv-card {
	background: #E0E2F9;
	border: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

[data-theme="light"] .cadv-card--first {
	background: #FCEBFF;
}

[data-theme="light"] .cadv-card__title {
	color: #000000;
}

[data-theme="light"] .cadv-card__body {
	color: rgba(0, 0, 0, 0.65);
}

[data-theme="light"] .cadv-desc {
	color: rgba(0, 0, 0, 0.70);
}

[data-theme="light"] .cadv-replaced {
	color: rgba(0, 0, 0, 0.70);
}

[data-theme="light"] .cadv-sep {
	background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 1279px) {
	.cadv-heading { font-size: 48px; }
	.cadv-c1-inner { gap: 32px; padding: 40px; }
	.cadv-num { font-size: 100px; }
}

@media (max-width: 1023px) {
	.cadv-section { padding: 60px 32px 48px; }
	.cadv-label { font-size: 18px; }
	.cadv-heading { font-size: 36px; }
	.cadv-c1-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px;
	}
	.cadv-num { font-size: 90px; }
	.cadv-cn-inner { min-height: 160px; padding: 32px; }
	.cadv-cn-text { max-width: 60%; }
	.cadv-cn-text--wide { max-width: 72%; }
}

@media (max-width: 767px) {
	.cadv-section { padding: 48px 20px 40px; }
	.cadv-heading { font-size: 28px; }
	.cadv-header { margin-bottom: 28px; }
	.cadv-grid { grid-template-columns: 1fr; gap: 12px; }
	.cadv-table {
		grid-template-columns: 1fr auto;
		column-gap: 16px;
		row-gap: 5px;
	}
	.cadv-table > *:nth-child(1)  { grid-column: 1; grid-row: 1; }
	.cadv-table > *:nth-child(2)  { grid-column: 1; grid-row: 2; }
	.cadv-table > *:nth-child(3)  { display: none; }
	.cadv-table > *:nth-child(4)  { grid-column: 2; grid-row: 1 / 3; align-self: center; }
	.cadv-table > *:nth-child(5)  { grid-column: 1; grid-row: 3; margin-top: 18px; }
	.cadv-table > *:nth-child(6)  { grid-column: 1; grid-row: 4; }
	.cadv-table > *:nth-child(7)  { display: none; }
	.cadv-table > *:nth-child(8)  { grid-column: 2; grid-row: 3 / 5; align-self: center; }
	.cadv-table > *:nth-child(9)  { grid-column: 1; grid-row: 5; margin-top: 18px; }
	.cadv-table > *:nth-child(10) { grid-column: 1; grid-row: 6; }
	.cadv-table > *:nth-child(11) { display: none; }
	.cadv-table > *:nth-child(12) { grid-column: 2; grid-row: 5 / 7; align-self: center; }
	.cadv-table > *:nth-child(13) { grid-column: 1; grid-row: 7; margin-top: 18px; }
	.cadv-table > *:nth-child(14) { grid-column: 1; grid-row: 8; }
	.cadv-table > *:nth-child(15) { display: none; }
	.cadv-table > *:nth-child(16) { grid-column: 2; grid-row: 7 / 9; align-self: center; }
	.cadv-c1-inner { padding: 24px; gap: 20px; }
	.cadv-num { font-size: 80px; }
	.cadv-cn-inner { padding: 24px; min-height: 140px; }
	.cadv-cn-text { max-width: 62%; }
	.cadv-cn-text--wide { max-width: 75%; }
}

@media (max-width: 479px) {
	.cadv-section { padding: 40px 16px 40px; }
	.cadv-heading { font-size: 24px; }
	.cadv-card__title { font-size: 17px; }
	.cadv-card__body { font-size: 13px; }
	.cadv-num { font-size: 64px; }
	.cadv-pill { font-size: 12px; padding: 5px 10px; }
	.cadv-desc { font-size: 12px; }
	.cadv-replaced { font-size: 12px; gap: 6px; }
	.cadv-checkbox { width: 15px; height: 15px; min-width: 15px; }
	.cadv-cn-text { max-width: 68%; }
	.cadv-cn-text--wide { max-width: 78%; }
	.cadv-cn-inner { padding: 20px; }
}

/* ============================================================
   PLATFORM ANALYTICS SECTION
============================================================ */
.pana-section {
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden;
	background: #871599;
}

.pana-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 300px;
	background: linear-gradient(to bottom, #C26EE5, rgba(194, 110, 229, 0));
	z-index: 2;
	pointer-events: none;
}

.pana-section::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 250px;
	background: linear-gradient(to bottom, rgba(155, 40, 174, 0), #9B28AE);
	z-index: 2;
	pointer-events: none;
}

.pana-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

.pana-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #C26EE5, #DB8EFF 35%, #871599);
	opacity: 0.90;
	z-index: 1;
}

.pana-container {
	position: relative;
	z-index: 3;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.pana-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 48px;
}

.pana-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
}

.pana-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0;
}

.pana-body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0;
}

.pana-card {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	overflow: hidden;
}

.pana-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.pana-item {
	position: relative;
	padding: 36px 28px;
}

.pana-item__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 0 12px;
}

.pana-item__body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.55;
	margin: 0;
}

@media (min-width: 768px) {
	.pana-item:not(:nth-child(4n))::before {
		content: '';
		position: absolute;
		right: 0;
		top: 20px;
		bottom: 20px;
		width: 1px;
		background: rgba(255, 255, 255, 0.22);
	}
	.pana-item:nth-child(-n+4)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 20px;
		height: 1px;
		background: rgba(255, 255, 255, 0.22);
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.pana-item:not(:nth-child(2n))::before {
		content: '';
		position: absolute;
		right: 0;
		top: 16px;
		bottom: 16px;
		width: 1px;
		background: rgba(255, 255, 255, 0.22);
	}
	.pana-item:not(:nth-last-child(-n+2))::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 16px;
		right: 16px;
		height: 1px;
		background: rgba(255, 255, 255, 0.22);
	}
}

@media (max-width: 479px) {
	.pana-item:not(:last-child)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 16px;
		right: 16px;
		height: 1px;
		background: rgba(255, 255, 255, 0.22);
	}
}

@media (max-width: 1279px) {
	.pana-heading { font-size: 40px; }
	.pana-item { padding: 30px 24px; }
	.pana-item__title { font-size: 21px; }
	.pana-item__body { font-size: 15px; }
}

@media (max-width: 1023px) {
	.pana-section { padding: 60px 0 48px; }
	.pana-container { padding: 0 32px; }
	.pana-heading { font-size: 30px; }
	.pana-label { font-size: 18px; }
	.pana-body { font-size: 17px; }
	.pana-header {
		grid-template-columns: 1fr;
		gap: 20px;
		align-items: start;
		margin-bottom: 36px;
	}
	.pana-item { padding: 26px 20px; }
	.pana-item__title { font-size: 18px; }
	.pana-item__body { font-size: 14px; }
}

@media (max-width: 767px) {
	.pana-section { padding: 48px 0 40px; }
	.pana-container { padding: 0 20px; }
	.pana-heading { font-size: 24px; }
	.pana-grid { grid-template-columns: repeat(2, 1fr); }
	.pana-item { padding: 22px 18px; }
	.pana-item__title { font-size: 17px; }
	.pana-item__body { font-size: 14px; }
}

@media (max-width: 479px) {
	.pana-heading { font-size: 20px; }
	.pana-body { font-size: 15px; }
	.pana-grid { grid-template-columns: 1fr; }
	.pana-item { padding: 20px 16px; }
	.pana-item__title { font-size: 16px; }
	.pana-item__body { font-size: 14px; }
}

/* ================================================
   CTA / COMPETITIVE ADVANTAGE SECTION
   ================================================ */

.cta-section {
	position: relative;
	background: #000000;
	padding: 120px 0 100px;
	overflow: hidden;
	text-align: center;
}

[data-theme="light"] .cta-section {
	background: #F9F9F9;
}

.cta-blend {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 350px;
	background: linear-gradient(to bottom, #9B28AE, rgba(155, 40, 174, 0));
	z-index: 0;
	pointer-events: none;
}

[data-theme="light"] .cta-blend {
	background: linear-gradient(to bottom, #9B28AE, rgba(249, 249, 249, 0));
}

.cta-container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.cta-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.cta-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 72px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	text-align: center;
	margin: 0;
}

[data-theme="light"] .cta-heading {
	color: #000000;
}

.cta-vidword {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

.cta-vidword__canvas {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	pointer-events: none;
}

.cta-vidword__text {
	display: inline-block;
	visibility: hidden;
	white-space: nowrap;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.cta-body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	text-align: center;
	max-width: 580px;
	margin: 0;
}

[data-theme="light"] .cta-body {
	color: rgba(0,0,0,0.7);
}

.cta-buttons {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 32px;
	border-radius: 100px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.cta-btn--primary {
	background: #864DFE;
	color: #ffffff;
	border: none;
}

.cta-btn--primary:hover {
	background: linear-gradient(to right, #F69AFF, #864DFE);
	box-shadow: 0 0 32px rgba(246,154,255,0.55), 0 0 64px rgba(134,77,254,0.3);
	transform: translateY(-2px);
}

.cta-btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.4);
	position: relative;
	overflow: hidden;
}

[data-theme="light"] .cta-btn--secondary {
	color: #000000;
	border-color: rgba(0,0,0,0.3);
}

.cta-btn--secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
	transition: left 0.55s ease;
	pointer-events: none;
}

.cta-btn--secondary:hover::before {
	left: 160%;
}

.cta-btn--secondary:hover {
	border-color: rgba(255,255,255,0.75);
	transform: translateY(-2px);
}

[data-theme="light"] .cta-btn--secondary:hover {
	border-color: rgba(0,0,0,0.6);
}

@media (max-width: 1279px) {
	.cta-heading { font-size: 60px; }
	.cta-blend   { height: 420px; }
}

@media (max-width: 1023px) {
	.cta-section  { padding: 130px 0 100px; }
	.cta-container { padding: 0 32px; }
	.cta-heading  { font-size: 48px; }
	.cta-body     { font-size: 17px; }
	.cta-blend    { height: 360px; }
}

@media (max-width: 767px) {
	.cta-section  { padding: 100px 0 80px; }
	.cta-container { padding: 0 20px; }
	.cta-heading  { font-size: 36px; }
	.cta-body     { font-size: 16px; max-width: 100%; }
	.cta-blend    { height: 300px; }
	.cta-btn      { font-size: 15px; padding: 14px 26px; }
}

@media (max-width: 479px) {
	.cta-section  { padding: 80px 0 64px; }
	.cta-container { padding: 0 16px; }
	.cta-heading  { font-size: 28px; }
	.cta-body     { font-size: 15px; }
	.cta-content  { gap: 28px; }
	.cta-buttons  { gap: 12px; flex-direction: column; align-items: stretch; }
	.cta-btn      { font-size: 15px; padding: 15px 24px; justify-content: center; }
	.cta-blend    { height: 240px; }
}

/* ================================================
   BRAND ANIMATION SECTION
   ================================================ */

.brand-section {
	position: relative;
	background: #000000;
	padding: 80px 0 100px;
	text-align: center;
}

[data-theme="light"] .brand-section {
	background: #F9F9F9;
}

.brand-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.brand-video-wrap {
	width: 100%;
	max-width: 960px;
}

.brand-video {
	width: 100%;
	height: auto;
	display: block;
}

.brand-video--light { display: none; }

[data-theme="light"] .brand-video--dark  { display: none; }
[data-theme="light"] .brand-video--light { display: block; }

.brand-tagline {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

[data-theme="light"] .brand-tagline {
	color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 1023px) {
	.brand-section { padding: 64px 0 80px; }
	.brand-container { padding: 0 32px; }
	.brand-video-wrap { max-width: 720px; }
}

@media (max-width: 767px) {
	.brand-section { padding: 48px 0 64px; }
	.brand-container { padding: 0 20px; }
	.brand-tagline { font-size: 11px; letter-spacing: 0.18em; }
}

@media (max-width: 479px) {
	.brand-section { padding: 40px 0 56px; }
	.brand-container { padding: 0 16px; }
	.brand-tagline { font-size: 10px; letter-spacing: 0.15em; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
	background: #000000;
	padding: 80px 0 0;
}

[data-theme="light"] .site-footer {
	background: #F9F9F9;
}

.ft-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.ft-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 80px;
	align-items: start;
}

.ft-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 72px;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 28px;
	background: linear-gradient(to bottom, #DD89FE, #824BFE);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ft-desc {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 28px;
	max-width: 460px;
}

[data-theme="light"] .ft-desc {
	color: rgba(0, 0, 0, 0.7);
}

.ft-contact {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	line-height: 1.5;
	margin-bottom: 6px;
}

.ft-contact:last-of-type {
	margin-bottom: 32px;
}

[data-theme="light"] .ft-contact {
	color: rgba(0, 0, 0, 0.8);
}

.ft-socials {
	display: flex;
	gap: 12px;
}

.ft-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	border: 1.5px solid transparent;
	background: linear-gradient(#000000, #000000) padding-box,
	            linear-gradient(to right, #DD89FE, #824BFE) border-box;
	color: #824BFE;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.ft-social-link:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

[data-theme="light"] .ft-social-link {
	background: linear-gradient(#F9F9F9, #F9F9F9) padding-box,
	            linear-gradient(to right, #DD89FE, #824BFE) border-box;
}

.ft-cta-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 20px;
}

[data-theme="light"] .ft-cta-label {
	color: rgba(0, 0, 0, 0.5);
}

.ft-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 52px;
}

.ft-btn {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease, transform 0.2s ease;
	display: inline-flex;
	align-items: center;
}

.ft-btn:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.ft-btn--primary {
	background: #824BFE;
	color: #ffffff;
	border: none;
}

.ft-btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .ft-btn--secondary {
	color: #000000;
	border: 2px solid rgba(0, 0, 0, 0.7);
}

.ft-nav {
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-template-rows: repeat(2, auto);
	justify-content: start;
	gap: 16px 64px;
}

.ft-nav-link {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ft-nav-link:hover {
	color: #DD89FE;
}

[data-theme="light"] .ft-nav-link {
	color: rgba(0, 0, 0, 0.75);
}

[data-theme="light"] .ft-nav-link:hover {
	color: #824BFE;
}

.ft-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin: 64px 0 0;
}

[data-theme="light"] .ft-divider {
	border-top-color: rgba(0, 0, 0, 0.12);
}

.ft-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 0 32px;
	gap: 24px;
}

.ft-copy {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

[data-theme="light"] .ft-copy {
	color: rgba(0, 0, 0, 0.5);
}

.ft-legal {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ft-legal-link {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ft-legal-link:hover {
	color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .ft-legal-link {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .ft-legal-link:hover {
	color: rgba(0, 0, 0, 0.85);
}

.ft-legal-sep {
	color: rgba(255, 255, 255, 0.3);
	font-size: 14px;
}

[data-theme="light"] .ft-legal-sep {
	color: rgba(0, 0, 0, 0.3);
}

.ft-legal-link--btn {
	background: none;
	border: none;
	padding: 0;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: color 0.2s ease;
	line-height: inherit;
}

.ft-legal-link--btn:hover {
	color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .ft-legal-link--btn {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .ft-legal-link--btn:hover {
	color: rgba(0, 0, 0, 0.85);
}

@media (max-width: 1023px) {
	.ft-container    { padding: 0 32px; }
	.ft-grid         { grid-template-columns: 1fr; gap: 56px; }
	.ft-heading      { font-size: 56px; }
	.ft-desc         { font-size: 20px; }
	.ft-contact      { font-size: 16px; }
	.ft-cta-label    { font-size: 16px; }
	.ft-nav          { gap: 14px 48px; }
	.ft-nav-link     { font-size: 16px; }
}

@media (max-width: 767px) {
	.site-footer     { padding: 64px 0 0; }
	.ft-container    { padding: 0 20px; }
	.ft-heading      { font-size: 44px; }
	.ft-desc         { font-size: 18px; }
	.ft-contact      { font-size: 15px; }
	.ft-cta-label    { font-size: 15px; }
	.ft-cta-buttons  { flex-direction: column; align-items: flex-start; }
	.ft-btn          { width: 100%; justify-content: center; }
	.ft-nav          { grid-template-columns: repeat(2, auto); gap: 12px 40px; }
	.ft-nav-link     { font-size: 15px; }
	.ft-bottom       { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 479px) {
	.site-footer     { padding: 48px 0 0; }
	.ft-container    { padding: 0 16px; }
	.ft-heading      { font-size: 36px; }
	.ft-desc         { font-size: 16px; }
	.ft-contact      { font-size: 14px; }
	.ft-cta-label    { font-size: 14px; }
	.ft-nav          { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
	.ft-nav-link     { font-size: 14px; }
	.ft-legal        { gap: 8px; }
}

/* ACF managed images */
.nav-logo img {
	height: 40px;
	width: auto;
	max-width: 200px;
	display: block;
	object-fit: contain;
}

.ft-logo {
	height: 40px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.ft-logo--light {
	display: none;
}

[data-theme="light"] .ft-logo--dark {
	display: none;
}

[data-theme="light"] .ft-logo--light {
	display: block;
}

/* Global rule for all ACF image fields */
.acf-image img,
[class*="section"] img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* ============================================================
   DEMO REQUEST MODAL
   ============================================================ */

.demo-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	-webkit-overflow-scrolling: touch;
}

.demo-overlay.active {
	opacity: 1;
	visibility: visible;
}

.demo-modal {
	background: #0f0f14;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	width: 100%;
	max-width: 680px;
	max-height: 90vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
	transform: translateY(24px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
	z-index: 100000;
}

.demo-overlay.active .demo-modal {
	transform: translateY(0) scale(1);
}

.demo-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
	z-index: 10;
}

.demo-close:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.demo-modal-inner {
	padding: 40px;
}

.demo-modal-label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #824BFE;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 10px;
}

.demo-modal-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.demo-modal-subtitle {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin: 0 0 28px 0;
}

.demo-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.demo-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.demo-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.demo-form-group label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.demo-required {
	color: #824BFE;
	margin-left: 2px;
}

.demo-optional {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 400;
	font-size: 12px;
}

.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 12px 16px;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
	width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.demo-form-group input::placeholder,
.demo-form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.2);
}

.demo-form-group select option {
	background: #0f0f14;
	color: #ffffff;
}

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
	border-color: rgba(130, 75, 254, 0.6);
	background: rgba(130, 75, 254, 0.05);
}

.demo-form-group textarea {
	resize: none;
	height: 80px;
}

.demo-form-message {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 10px;
	display: none;
}

.demo-form-message.success {
	display: block;
	background: rgba(99, 153, 34, 0.1);
	border: 1px solid rgba(99, 153, 34, 0.3);
	color: #97C459;
}

.demo-form-message.error {
	display: block;
	background: rgba(220, 50, 50, 0.1);
	border: 1px solid rgba(220, 50, 50, 0.3);
	color: #ff6b6b;
}

.demo-submit {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: opacity 0.2s ease, transform 0.2s ease;
	width: 100%;
	margin-top: 4px;
}

.demo-submit:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

[data-theme="light"] .demo-modal {
	background: #ffffff;
	border-color: rgba(130, 75, 254, 0.3);
}

[data-theme="light"] .demo-modal-title {
	color: #000000;
}

[data-theme="light"] .demo-modal-subtitle {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .demo-close {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .demo-close:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #000000;
}

[data-theme="light"] .demo-form-group label {
	color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .demo-form-group input,
[data-theme="light"] .demo-form-group select,
[data-theme="light"] .demo-form-group textarea {
	background: rgba(0, 0, 0, 0.03);
	border-color: rgba(0, 0, 0, 0.12);
	color: #000000;
}

[data-theme="light"] .demo-form-group input::placeholder,
[data-theme="light"] .demo-form-group textarea::placeholder {
	color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .demo-form-group select option {
	background: #ffffff;
	color: #000000;
}

[data-theme="light"] .demo-optional {
	color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
	.demo-modal-inner {
		padding: 28px 20px;
	}
	.demo-modal-title {
		font-size: 24px;
	}
	.demo-form-row {
		grid-template-columns: 1fr;
	}
	.demo-modal {
		max-height: 90vh;
		overflow-y: auto;
	}
}

.demo-success-state {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 24px;
	gap: 20px;
}

.demo-success-state.visible {
	display: flex;
}

.demo-success-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.demo-success-icon svg {
	width: 32px;
	height: 32px;
	color: #ffffff;
}

.demo-success-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
}

.demo-success-text {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
	max-width: 360px;
}

.demo-success-close {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	border: none;
	border-radius: 50px;
	padding: 12px 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.2s ease, transform 0.2s ease;
	margin-top: 8px;
}

.demo-success-close:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

[data-theme="light"] .demo-success-title {
	color: #000000;
}

[data-theme="light"] .demo-success-text {
	color: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   PREVENT HORIZONTAL OVERFLOW AND PAGE SHIFT
   ============================================================ */

html,
body {
	max-width: 100%;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.site,
.site-main {
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

.site-nav,
.site-footer,
.hero,
.section--hero,
.ecosystem-section,
.problem-section,
.multi-format-section,
.intelligence-section,
.behavioral-section,
.aud-section,
.sysarch-section,
.cadv-section,
.pana-section,
.cta-section,
.brand-section {
	max-width: 100%;
	overflow-x: hidden;
	width: 100%;
}

.container,
.ecosystem-container,
.problem-container,
.multi-format-container,
.intelligence-container,
.behavioral-outer,
.aud-container,
.sysarch-container,
.cadv-container,
.pana-container,
.cta-container,
.brand-container,
.ft-container {
	max-width: 100%;
	box-sizing: border-box;
}

.marquee-wrapper {
	overflow: hidden;
	max-width: 100%;
	width: 100%;
}

.aud-diagram {
	overflow: visible;
	max-width: 100%;
	box-sizing: border-box;
}

.hero-video-wrapper,
.pana-video,
.pana-overlay {
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.brand-video-wrap {
	overflow: hidden;
	box-sizing: border-box;
}

.cta-blend,
.cadv-section::after,
.pana-section::before,
.pana-section::after {
	max-width: 100%;
	overflow: hidden;
}

.cadv-table,
.cadv-grid,
.behavioral-cards,
.pana-grid {
	max-width: 100%;
	box-sizing: border-box;
}

img,
video,
svg,
canvas,
iframe {
	max-width: 100%;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.hiw-timeline {
		overflow: hidden;
	}
	.aud-diagram {
		max-width: 100%;
	}
	.arch-wrapper {
		max-width: 100%;
		overflow: hidden;
	}
	.sysarch-diagram-wrap {
		max-width: 100%;
		overflow: hidden;
	}
	.behavioral-cards {
		width: 100%;
	}
	.cadv-grid {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.ft-grid {
		width: 100%;
	}
	.ft-nav {
		width: 100%;
	}
	.hero-content {
		width: 100%;
		box-sizing: border-box;
	}
	.hiw-row {
		width: 100%;
		box-sizing: border-box;
	}
	.cadv-c1-inner {
		width: 100%;
		box-sizing: border-box;
	}
	.cadv-cn-inner {
		width: 100%;
		box-sizing: border-box;
	}
}

html {
	background-color: #000000;
}

[data-theme="light"] html {
	background-color: #F9F9F9;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	background: rgba(15, 5, 30, 0.97);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 20px 32px;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
	transform: translateY(0);
}

.cookie-banner__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cookie-banner__text {
	flex: 1;
	min-width: 200px;
}

.cookie-banner__message {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	margin: 0;
}

.cookie-banner__link {
	color: #824BFE;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 500;
}

.cookie-banner__link:hover {
	color: #F097FF;
}

.cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.cookie-banner__btn {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	border: none;
	white-space: nowrap;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner__btn:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.cookie-banner__btn--accept {
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	color: #ffffff;
}

.cookie-banner__btn--decline {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--manage {
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

[data-theme="light"] .cookie-banner {
	background: rgba(255, 255, 255, 0.97);
	border-top-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cookie-banner__message {
	color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .cookie-banner__btn--decline {
	background: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.6);
	border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner__btn--manage {
	color: rgba(0, 0, 0, 0.6);
	border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
	.cookie-banner { padding: 16px 24px; }
	.cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
	.cookie-banner__actions { width: 100%; }
	.cookie-banner__btn { flex: 1; text-align: center; font-size: 13px; }
}

@media (max-width: 479px) {
	.cookie-banner { padding: 14px 16px; }
	.cookie-banner__message { font-size: 12px; }
	.cookie-banner__actions { flex-direction: column; gap: 8px; }
	.cookie-banner__btn { width: 100%; flex: none; padding: 12px 20px; }
}

/* ============================================================
   COOKIE PREFERENCE MODAL
   ============================================================ */

.cookie-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.cookie-modal {
	background: #0f0f14;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	width: 100%;
	max-width: 620px;
	max-height: 88vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
	transform: translateY(24px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.cookie-modal-overlay.is-open .cookie-modal {
	transform: translateY(0) scale(1);
}

.cookie-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
	z-index: 10;
	flex-shrink: 0;
}

.cookie-modal__close:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.cookie-modal__inner {
	padding: 40px;
}

.cookie-modal__label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #824BFE;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 10px;
}

.cookie-modal__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px;
	line-height: 1.2;
	padding-right: 40px;
}

.cookie-modal__subtitle {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin: 0 0 32px;
}

.cookie-modal__categories {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 32px;
}

.cookie-category {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.cookie-category:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.cookie-category__info {
	flex: 1;
}

.cookie-category__title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px;
	line-height: 1.3;
}

.cookie-category__desc {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin: 0;
}

.cookie-category__toggle-wrap {
	flex-shrink: 0;
	padding-top: 2px;
}

.cookie-category__always-on {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #824BFE;
	white-space: nowrap;
	background: rgba(130, 75, 254, 0.12);
	padding: 4px 10px;
	border-radius: 50px;
	border: 1px solid rgba(130, 75, 254, 0.3);
}

.cookie-toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.cookie-toggle__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-toggle__track {
	width: 48px;
	height: 26px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	transition: background 0.25s ease, border-color 0.25s ease;
	display: flex;
	align-items: center;
	padding: 3px;
}

.cookie-toggle__thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
	flex-shrink: 0;
}

.cookie-toggle__input:checked + .cookie-toggle__track {
	background: #824BFE;
	border-color: #824BFE;
}

.cookie-toggle__input:checked + .cookie-toggle__track .cookie-toggle__thumb {
	transform: translateX(22px);
	background: #ffffff;
}

.cookie-toggle__input:focus-visible + .cookie-toggle__track {
	outline: 2px solid #824BFE;
	outline-offset: 2px;
}

.cookie-modal__footer {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.cookie-modal__btn {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 50px;
	cursor: pointer;
	border: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.cookie-modal__btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.cookie-modal__btn--save {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-modal__btn--accept-all {
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	color: #ffffff;
}

[data-theme="light"] .cookie-modal {
	background: #ffffff;
	border-color: rgba(130, 75, 254, 0.2);
}

[data-theme="light"] .cookie-modal__close {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .cookie-modal__close:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #000000;
}

[data-theme="light"] .cookie-modal__title {
	color: #000000;
}

[data-theme="light"] .cookie-modal__subtitle {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .cookie-category {
	border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cookie-category:last-child {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cookie-category__title {
	color: #000000;
}

[data-theme="light"] .cookie-category__desc {
	color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .cookie-toggle__track {
	background: rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-toggle__thumb {
	background: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .cookie-modal__btn--save {
	background: rgba(0, 0, 0, 0.05);
	color: #000000;
	border-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
	.cookie-modal-overlay {
		align-items: flex-end;
		padding: 0;
	}
	.cookie-modal {
		max-width: 100%;
		max-height: 85vh;
		border-radius: 20px 20px 0 0;
		transform: translateY(100%);
	}
	.cookie-modal-overlay.is-open .cookie-modal {
		transform: translateY(0);
	}
	.cookie-modal__inner {
		padding: 28px 20px;
	}
	.cookie-modal__title {
		font-size: 20px;
	}
	.cookie-modal__footer {
		flex-direction: column;
	}
	.cookie-modal__btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 479px) {
	.cookie-modal__inner {
		padding: 24px 16px;
	}
	.cookie-modal__title {
		font-size: 18px;
	}
	.cookie-modal__subtitle {
		font-size: 13px;
	}
	.cookie-category__title {
		font-size: 15px;
	}
	.cookie-category__desc {
		font-size: 12px;
	}
	.cookie-category__header {
		gap: 16px;
	}
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.policy-page {
	background: #000000;
	min-height: 100vh;
	padding: 160px 0 100px;
}

[data-theme="light"] .policy-page {
	background: #F9F9F9;
}

.policy-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 48px;
}

.policy-header {
	margin-bottom: 64px;
}

.policy-label {
	display: block;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #824BFE;
	margin-bottom: 16px;
}

.policy-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 16px;
}

[data-theme="light"] .policy-heading {
	color: #000000;
}

.policy-updated {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

[data-theme="light"] .policy-updated {
	color: rgba(0, 0, 0, 0.45);
}

.policy-content h2 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 48px 0 16px;
	line-height: 1.3;
}

[data-theme="light"] .policy-content h2 {
	color: #000000;
}

.policy-content p {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
	margin: 0 0 20px;
}

[data-theme="light"] .policy-content p {
	color: rgba(0, 0, 0, 0.7);
}

.policy-content strong {
	color: #ffffff;
	font-weight: 600;
}

[data-theme="light"] .policy-content strong {
	color: #000000;
}

.policy-content a {
	color: #824BFE;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.policy-content a:hover {
	color: #F097FF;
}

@media (max-width: 1023px) {
	.policy-page { padding: 140px 0 80px; }
	.policy-container { padding: 0 32px; }
	.policy-heading { font-size: 48px; }
	.policy-header { margin-bottom: 48px; }
	.policy-content h2 { font-size: 20px; margin: 36px 0 12px; }
	.policy-content p { font-size: 15px; }
}

@media (max-width: 767px) {
	.policy-page { padding: 120px 0 60px; }
	.policy-container { padding: 0 20px; }
	.policy-heading { font-size: 36px; }
	.policy-label { font-size: 16px; }
	.policy-updated { font-size: 13px; }
	.policy-content h2 { font-size: 18px; margin: 28px 0 10px; }
	.policy-content p { font-size: 14px; line-height: 1.7; }
	.policy-header { margin-bottom: 36px; }
}

@media (max-width: 479px) {
	.policy-page { padding: 100px 0 48px; }
	.policy-container { padding: 0 16px; }
	.policy-heading { font-size: 28px; }
	.policy-content h2 { font-size: 16px; }
	.policy-content p { font-size: 13px; }
}

/* Policy page list styles */
.policy-content ul {
    list-style: disc;
    padding-left: 28px;
    margin: 0 0 20px;
}

.policy-content ol {
    list-style: decimal;
    padding-left: 28px;
    margin: 0 0 20px;
}

.policy-content li {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 8px;
}

[data-theme="light"] .policy-content li {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .policy-content ul,
[data-theme="light"] .policy-content ol {
    color: rgba(0, 0, 0, 0.7);
}

/* ============================================================
   404 PAGE
   ============================================================ */

.error-page {
	background: #000000;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 48px;
	text-align: center;
}

[data-theme="light"] .error-page {
	background: #F9F9F9;
}

.error-container {
	max-width: 600px;
	margin: 0 auto;
}

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

.error-code {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 160px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(to bottom, #DD89FE 0%, #824BFE 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	user-select: none;
}

.error-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.1;
}

[data-theme="light"] .error-heading {
	color: #000000;
}

.error-body {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin: 0;
	max-width: 440px;
}

[data-theme="light"] .error-body {
	color: rgba(0, 0, 0, 0.65);
}

.error-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #F69AFF 0%, #864DFE 100%);
	color: #ffffff;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 40px;
	border-radius: 50px;
	text-decoration: none;
	margin-top: 8px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.error-btn:hover {
	opacity: 0.88;
	transform: translateY(-2px);
}

@media (max-width: 1023px) {
	.error-page { padding: 100px 32px 60px; }
	.error-code { font-size: 120px; }
	.error-heading { font-size: 40px; }
	.error-body { font-size: 17px; }
}

@media (max-width: 767px) {
	.error-page { padding: 100px 20px 60px; align-items: flex-start; }
	.error-container { width: 100%; text-align: center; }
	.error-code { font-size: 100px; }
	.error-heading { font-size: 32px; }
	.error-body { font-size: 16px; max-width: 100%; }
	.error-btn { font-size: 15px; padding: 14px 32px; }
}

@media (max-width: 479px) {
	.error-page { padding: 80px 16px 48px; }
	.error-code { font-size: 80px; }
	.error-heading { font-size: 26px; }
	.error-body { font-size: 14px; }
	.error-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   LOGO SWITCHING
   ============================================================ */
.nav-logo__img--light {
	display: none !important;
}

.site-nav--inner .nav-logo__img--dark {
	display: block;
}

.site-nav--inner .nav-logo__img--light {
	display: none !important;
}

[data-theme="light"] .site-nav--inner .nav-logo__img--dark {
	display: none !important;
}

[data-theme="light"] .site-nav--inner .nav-logo__img--light {
	display: block !important;
}

/* Inner page nav pill — light mode before scroll */
[data-theme="light"] .site-nav--inner .nav-links-wrapper {
	background: rgba(0, 0, 0, 0.07);
	border-color: rgba(0, 0, 0, 0.18);
}

/* Inner page nav links — light mode */
[data-theme="light"] .site-nav--inner .nav-links a {
	color: #000000;
	text-shadow: none;
}

[data-theme="light"] .site-nav--inner .nav-links a:hover {
	color: #824BFE;
}

/* Inner page scrolled state — light mode */
@media (min-width: 1050px) {
	[data-theme="light"] .site-nav--inner.scrolled {
		background: rgba(255, 255, 255, 0.92);
		border-color: rgba(0, 0, 0, 0.1);
	}
	[data-theme="light"] .site-nav--inner.scrolled .nav-links-wrapper {
		background: transparent;
		border-color: transparent;
	}
	[data-theme="light"] .site-nav--inner.scrolled .nav-links a {
		color: #000000;
	}
}

/* Inner page mobile nav — light mode */
@media (max-width: 1049px) {
	.site-nav--inner {
		background: rgba(15, 5, 30, 0.97);
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 0;
		padding: 16px 24px;
		width: 100%;
	}
	[data-theme="light"] .site-nav--inner {
		background: rgba(255, 255, 255, 0.97);
		border-bottom-color: rgba(0, 0, 0, 0.1);
	}
	[data-theme="light"] .site-nav--inner .nav-toggle {
		border-color: rgba(0, 0, 0, 0.2);
		color: #000000;
	}
	[data-theme="light"] .site-nav--inner .hamburger,
	[data-theme="light"] .site-nav--inner .hamburger::before,
	[data-theme="light"] .site-nav--inner .hamburger::after {
		background: #000000;
	}
	[data-theme="light"] .site-nav--inner .nav-links-wrapper {
		background: rgba(255, 255, 255, 0.98);
		border-bottom-color: rgba(0, 0, 0, 0.08);
	}
	[data-theme="light"] .site-nav--inner .nav-links a {
		color: #000000;
	}
	[data-theme="light"] .site-nav--inner .nav-links a:hover {
		color: #824BFE;
	}
}

/* Footer legal links responsive */
@media (max-width: 767px) {
	.ft-legal { gap: 8px; justify-content: flex-start; }
	.ft-legal-link, .ft-legal-link--btn { font-size: 13px; }
	.ft-legal-sep { font-size: 13px; }
}

@media (max-width: 479px) {
	.ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px 0 24px; }
	.ft-legal { flex-wrap: wrap; gap: 6px 10px; }
	.ft-copy { font-size: 12px; }
	.ft-legal-link, .ft-legal-link--btn { font-size: 12px; }
}

/* Inner page nav logo responsive */
@media (max-width: 767px) {
	.nav-logo__img { height: 32px; width: auto; max-width: 160px; }
}

@media (max-width: 479px) {
	.nav-logo__img { height: 28px; width: auto; max-width: 140px; }
}