/*
Theme Name: VirtAva
Theme URI: https://virtava.com/
Author: Limoette Technologies LLC
Author URI: https://limoettetechnologies.com/
Description: A premium, responsive WordPress theme for VirtAva—the AI avatar operating system for branded virtual representatives.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virtava
Tags: custom-logo, custom-menu, featured-images, full-width-template, block-styles, wide-blocks, accessibility-ready, translation-ready
*/

:root {
	--va-bg: #060711;
	--va-bg-deep: #03040a;
	--va-surface: #0d0f1c;
	--va-surface-2: #121526;
	--va-surface-3: #181b31;
	--va-line: rgba(255, 255, 255, 0.1);
	--va-line-bright: rgba(255, 255, 255, 0.18);
	--va-text: #f6f7ff;
	--va-muted: #a6abc1;
	--va-soft: #727890;
	--va-violet: #8b5cf6;
	--va-violet-2: #b69cff;
	--va-cyan: #29e7cd;
	--va-pink: #ff4fd8;
	--va-orange: #ff9364;
	--va-gradient: linear-gradient(120deg, var(--va-cyan), #a98cff 50%, var(--va-pink));
	--va-gradient-violet: linear-gradient(135deg, #6941d9, #a86cff 55%, #f155d4);
	--va-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
	--va-glow: 0 0 40px rgba(139, 92, 246, 0.28);
	--va-radius: 24px;
	--va-radius-sm: 16px;
	--va-shell: 1240px;
	--va-header: 82px;
	--va-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--va-bg-deep);
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(83, 46, 171, 0.12), transparent 28rem),
		radial-gradient(circle at 92% 30%, rgba(41, 231, 205, 0.05), transparent 25rem),
		var(--va-bg);
	color: var(--va-text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: var(--va-violet);
	color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

img,
svg {
	display: block;
	max-width: 100%;
}

p,
h1,
h2,
h3,
h4 {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 650;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3.3rem, 6.3vw, 6.6rem);
}

h2 {
	font-size: clamp(2.45rem, 4.4vw, 4.65rem);
}

h3 {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.site-shell {
	width: min(calc(100% - 48px), var(--va-shell));
	margin-inline: auto;
}

.narrow-shell {
	max-width: 920px;
}

.section {
	position: relative;
	padding: clamp(96px, 11vw, 160px) 0;
}

.panel {
	position: relative;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
		var(--va-surface);
	border: 1px solid var(--va-line);
	border-radius: var(--va-radius);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto !important;
	background: #fff;
	color: #111;
	font-weight: 700;
	border-radius: 8px;
}

:focus-visible {
	outline: 2px solid var(--va-cyan);
	outline-offset: 4px;
}

.announcement-bar {
	position: relative;
	z-index: 60;
	min-height: 38px;
	background: rgba(7, 8, 18, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	color: var(--va-muted);
	font-size: 0.73rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.announcement-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 38px;
}

.announcement-inner a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
	color: var(--va-text);
}

.announcement-inner a .icon {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

.announcement-inner a:hover .icon {
	transform: translateX(3px);
}

.status-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--va-cyan);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(41, 231, 205, 0.08), 0 0 14px var(--va-cyan);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--va-header);
	background: rgba(6, 7, 17, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 32px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 52px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.brand-symbol {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(182, 156, 255, 0.35);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(139, 92, 246, 0.27), rgba(41, 231, 205, 0.06));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.11), 0 0 24px rgba(139, 92, 246, 0.18);
	overflow: hidden;
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
	content: "";
	position: absolute;
	border: 1px solid rgba(41, 231, 205, 0.2);
	border-radius: 50%;
}

.brand-symbol::before {
	width: 34px;
	height: 34px;
}

.brand-symbol::after {
	width: 24px;
	height: 24px;
}

.brand-symbol i {
	width: 50px;
	height: 14px;
	transform: rotate(-24deg);
}

.brand-symbol b {
	position: relative;
	z-index: 1;
	font-size: 1.15rem;
	font-weight: 800;
	font-style: normal;
	line-height: 1;
	background: var(--va-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.brand-word {
	font-size: 1.43rem;
	font-weight: 730;
	letter-spacing: -0.055em;
	line-height: 1;
}

.brand-word span {
	background: var(--va-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.2vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	position: relative;
	display: block;
	padding: 12px 0;
	color: #c4c7d8;
	font-size: 0.86rem;
	font-weight: 580;
}

.primary-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 7px;
	height: 1px;
	background: var(--va-gradient);
	transition: right 0.25s var(--va-ease);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: #fff;
}

.primary-menu > li > a:hover::after,
.primary-menu .current-menu-item > a::after {
	right: 0;
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 210px;
	margin: 0;
	padding: 10px;
	background: rgba(13, 15, 28, 0.98);
	border: 1px solid var(--va-line);
	border-radius: 14px;
	list-style: none;
	box-shadow: var(--va-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 0.2s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.primary-menu .sub-menu a {
	padding: 9px 10px;
	border-radius: 8px;
}

.primary-menu .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	background: var(--va-surface);
	border: 1px solid var(--va-line);
	border-radius: 12px;
	cursor: pointer;
}

.menu-toggle .icon {
	width: 22px;
	height: 22px;
}

.menu-icon-close {
	display: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 25px;
	background: var(--va-gradient-violet);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	box-shadow: 0 10px 35px rgba(118, 66, 221, 0.28), inset 0 1px rgba(255, 255, 255, 0.23);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 690;
	letter-spacing: -0.01em;
	line-height: 1;
	transition: transform 0.25s var(--va-ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.button .icon {
	width: 18px;
	height: 18px;
	transition: transform 0.25s var(--va-ease);
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 42px rgba(118, 66, 221, 0.38), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button:hover .icon {
	transform: translateX(3px);
}

.button-small {
	min-height: 42px;
	padding: 0 18px;
	font-size: 0.79rem;
}

.button-ghost {
	background: rgba(255, 255, 255, 0.025);
	border-color: var(--va-line-bright);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
	color: var(--va-text);
}

.button-ghost:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(182, 156, 255, 0.42);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.header-cta {
	flex: 0 0 auto;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	color: var(--va-violet-2);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--va-gradient);
	box-shadow: 0 0 10px rgba(41, 231, 205, 0.45);
}

.hero-section {
	position: relative;
	min-height: calc(100svh - 38px - var(--va-header));
	padding: clamp(70px, 8vw, 120px) 0 0;
	overflow: hidden;
}

.hero-grid-bg,
.final-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
	background-size: 52px 52px;
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
	pointer-events: none;
}

.hero-grid-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--va-bg) 0%, transparent 30%, transparent 70%, var(--va-bg) 100%);
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	pointer-events: none;
}

.hero-orb-one {
	top: 7%;
	right: -7%;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 68%);
}

.hero-orb-two {
	bottom: -35%;
	left: 13%;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, rgba(41, 231, 205, 0.07), transparent 68%);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
	align-items: center;
	gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
	padding-bottom: 50px;
}

.hero-copy h1 {
	max-width: 790px;
	margin-bottom: 28px;
	background: linear-gradient(115deg, #fff 12%, #eeecff 56%, #afa8c7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lede {
	max-width: 660px;
	margin-bottom: 36px;
	color: var(--va-muted);
	font-size: clamp(1.04rem, 1.35vw, 1.2rem);
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
}

.play-dot {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	margin-left: -8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.play-dot .icon {
	width: 15px;
	height: 15px;
}

.hero-proof {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-top: 52px;
	padding-top: 27px;
	border-top: 1px solid var(--va-line);
}

.hero-proof > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 124px;
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid var(--va-line);
}

.hero-proof > div:last-child {
	padding-right: 0;
	margin-right: 0;
	border: 0;
}

.hero-proof strong {
	font-size: 1.17rem;
	font-weight: 720;
	letter-spacing: -0.03em;
}

.hero-proof span {
	color: var(--va-soft);
	font-size: 0.68rem;
	letter-spacing: 0.04em;
}

.hero-visual {
	position: relative;
	max-width: 565px;
	justify-self: end;
}

.visual-aura {
	position: absolute;
	inset: 5% -15% -5%;
	background:
		radial-gradient(circle at 50% 38%, rgba(139, 92, 246, 0.23), transparent 54%),
		radial-gradient(circle at 75% 70%, rgba(41, 231, 205, 0.08), transparent 38%);
	filter: blur(10px);
}

.avatar-console {
	position: relative;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.055), transparent 32%),
		rgba(10, 12, 24, 0.82);
	border: 1px solid rgba(182, 156, 255, 0.23);
	border-radius: 28px;
	box-shadow: var(--va-shadow), 0 0 80px rgba(87, 50, 165, 0.18), inset 0 1px rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	overflow: hidden;
}

.avatar-console::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(112deg, transparent 0 47%, rgba(255, 255, 255, 0.026) 48%, transparent 49%);
	pointer-events: none;
}

.console-header {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px 17px;
	border-bottom: 1px solid var(--va-line);
}

.console-header > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.console-label {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.57rem;
	letter-spacing: 0.16em;
}

.console-header strong {
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.online-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 11px;
	background: rgba(41, 231, 205, 0.055);
	border: 1px solid rgba(41, 231, 205, 0.16);
	border-radius: 999px;
	color: #a8fff2;
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.6rem;
	font-weight: 650;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.online-pill i {
	width: 6px;
	height: 6px;
	background: var(--va-cyan);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--va-cyan);
	animation: va-pulse 2s ease-in-out infinite;
}

.avatar-stage {
	position: relative;
	height: 500px;
	background:
		linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px),
		radial-gradient(circle at 50% 48%, rgba(83, 48, 157, 0.22), transparent 54%);
	background-size: 32px 32px, 32px 32px, auto;
	overflow: hidden;
}

.avatar-stage::before,
.avatar-stage::after {
	content: "";
	position: absolute;
	z-index: 2;
	left: 22px;
	right: 22px;
	height: 16px;
	border-color: rgba(41, 231, 205, 0.32);
	pointer-events: none;
}

.avatar-stage::before {
	top: 20px;
	border-top: 1px solid;
	border-left: 1px solid;
	border-right: 1px solid;
}

.avatar-stage::after {
	bottom: 20px;
	border-bottom: 1px solid;
	border-left: 1px solid;
	border-right: 1px solid;
}

.hero-avatar {
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: min(92%, 460px);
	transform: translateX(-50%);
}

.avatar-rings {
	transform-origin: 230px 238px;
	animation: va-spin 22s linear infinite;
}

.visor,
.temple-nodes {
	animation: va-visor 3s ease-in-out infinite;
}

.stage-scan {
	position: absolute;
	z-index: 3;
	left: 8%;
	right: 8%;
	top: 16%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--va-cyan), transparent);
	box-shadow: 0 0 14px var(--va-cyan);
	opacity: 0.5;
	animation: va-scan 5.5s ease-in-out infinite;
	pointer-events: none;
}

.stage-readout {
	position: absolute;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 7px;
	color: rgba(199, 255, 247, 0.6);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	letter-spacing: 0.12em;
	line-height: 1.5;
}

.stage-readout i {
	width: 5px;
	height: 5px;
	background: var(--va-cyan);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--va-cyan);
}

.readout-left {
	left: 35px;
	top: 29%;
}

.readout-right {
	right: 35px;
	top: 42%;
	text-align: right;
}

.voice-card {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 56px 1fr 38px;
	align-items: center;
	gap: 14px;
	margin: -38px 18px 18px;
	padding: 13px 14px;
	background: rgba(13, 15, 30, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(18px);
}

.voice-card p {
	margin: 0;
	color: #d9dbea;
	font-size: 0.75rem;
	line-height: 1.5;
}

.voice-card p span {
	display: block;
	margin-bottom: 2px;
	color: var(--va-cyan);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.54rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.voice-bars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	height: 27px;
}

.voice-bars i {
	display: block;
	width: 2px;
	height: 8px;
	background: var(--va-gradient-violet);
	border-radius: 2px;
	transform-origin: center;
	animation: va-bars 1.2s ease-in-out infinite;
}

.voice-bars i:nth-child(2),
.voice-bars i:nth-child(8) { animation-delay: -0.8s; }
.voice-bars i:nth-child(3),
.voice-bars i:nth-child(7) { animation-delay: -0.45s; }
.voice-bars i:nth-child(4),
.voice-bars i:nth-child(6) { animation-delay: -0.2s; }
.voice-bars i:nth-child(5) { animation-delay: -0.65s; }

.avatar-console.voice-paused .voice-bars i {
	animation-play-state: paused;
	height: 3px;
}

.voice-button {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	padding: 0;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(41, 231, 205, 0.12));
	border: 1px solid rgba(182, 156, 255, 0.25);
	border-radius: 50%;
	cursor: pointer;
}

.voice-button .icon {
	width: 16px;
	height: 16px;
}

.console-footer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--va-line);
}

.console-footer span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 42px;
	border-right: 1px solid var(--va-line);
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.49rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.console-footer span:last-child {
	border: 0;
}

.console-footer i {
	width: 4px;
	height: 4px;
	background: var(--va-cyan);
	border-radius: 50%;
	box-shadow: 0 0 6px var(--va-cyan);
}

.role-ticker {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.5fr repeat(5, 1fr);
	margin-top: 76px;
	border-top: 1px solid var(--va-line);
	border-bottom: 1px solid var(--va-line);
}

.role-ticker > span,
.role-ticker > div {
	display: flex;
	align-items: center;
	min-height: 66px;
	border-right: 1px solid var(--va-line);
	font-size: 0.72rem;
}

.role-ticker > span {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.role-ticker > div {
	justify-content: center;
	gap: 8px;
	color: #c7cad9;
	font-weight: 600;
}

.role-ticker > div:last-child {
	border: 0;
}

.role-ticker i {
	width: 5px;
	height: 5px;
	background: var(--va-violet);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--va-violet);
}

.section-heading {
	margin-bottom: clamp(48px, 6vw, 78px);
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
	align-items: end;
	gap: 70px;
}

.section-heading h2 {
	max-width: 790px;
	margin-bottom: 0;
}

.section-heading > p,
.split-heading > p {
	margin: 0 0 5px;
	color: var(--va-muted);
	line-height: 1.75;
}

.centered-heading {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.centered-heading .eyebrow {
	justify-content: center;
}

.centered-heading h2 {
	margin-inline: auto;
	margin-bottom: 24px;
}

.centered-heading > p {
	max-width: 680px;
	margin-inline: auto;
}

.platform-section {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.012), transparent 42%);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.process-card {
	min-height: 330px;
	padding: 28px;
	overflow: hidden;
	transition: transform 0.35s var(--va-ease), border-color 0.35s ease, background 0.35s ease;
}

.process-card::after {
	content: "";
	position: absolute;
	right: -60px;
	bottom: -70px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 68%);
	transition: transform 0.4s var(--va-ease);
}

.process-card:hover {
	transform: translateY(-7px);
	border-color: rgba(182, 156, 255, 0.28);
	background-color: var(--va-surface-2);
}

.process-card:hover::after {
	transform: scale(1.25);
}

.step-number {
	position: absolute;
	top: 25px;
	right: 25px;
	color: rgba(255, 255, 255, 0.2);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.64rem;
	letter-spacing: 0.12em;
}

.icon-box {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 54px;
	background: linear-gradient(145deg, rgba(139, 92, 246, 0.19), rgba(41, 231, 205, 0.06));
	border: 1px solid rgba(182, 156, 255, 0.2);
	border-radius: 15px;
	color: var(--va-violet-2);
}

.icon-box .icon {
	width: 24px;
	height: 24px;
}

.process-card h3 {
	margin-bottom: 15px;
}

.process-card p {
	margin: 0;
	color: var(--va-muted);
	font-size: 0.89rem;
	line-height: 1.7;
}

.os-section {
	background:
		radial-gradient(circle at 72% 50%, rgba(96, 56, 179, 0.12), transparent 32rem),
		var(--va-bg-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.045);
	border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.os-grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.77fr) minmax(570px, 1.23fr);
	align-items: center;
	gap: clamp(60px, 8vw, 120px);
}

.os-copy h2 {
	margin-bottom: 26px;
}

.os-copy > p:not(.eyebrow) {
	margin-bottom: 33px;
	color: var(--va-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #d7d9e7;
	font-size: 0.88rem;
}

.check-list .icon {
	width: 19px;
	height: 19px;
	padding: 3px;
	background: rgba(41, 231, 205, 0.07);
	border: 1px solid rgba(41, 231, 205, 0.18);
	border-radius: 50%;
	color: var(--va-cyan);
}

.os-visual {
	position: relative;
	height: 620px;
	background:
		linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px),
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%);
	background-size: 38px 38px, 38px 38px, auto;
	overflow: hidden;
}

.os-visual::before,
.os-visual::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(139, 92, 246, 0.13);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.os-visual::before {
	width: 500px;
	height: 500px;
}

.os-visual::after {
	width: 370px;
	height: 370px;
	border-style: dashed;
	animation: va-spin-centered 35s linear infinite;
}

.os-core {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	display: grid;
	place-items: center;
	width: 132px;
	height: 132px;
	transform: translate(-50%, -50%);
}

.core-rings,
.core-rings i {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(41, 231, 205, 0.22);
	border-radius: 50%;
}

.core-rings {
	animation: va-spin 16s linear infinite;
}

.core-rings i:nth-child(1) {
	inset: 12px;
	border-color: rgba(139, 92, 246, 0.32);
	border-style: dashed;
}

.core-rings i:nth-child(2) {
	inset: 25px;
	border-color: rgba(41, 231, 205, 0.27);
}

.core-rings i:nth-child(3) {
	inset: -10px 46px;
	border-color: rgba(255, 79, 216, 0.18);
}

.core-mark {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: radial-gradient(circle at 40% 30%, #7f58d8, #211a42 62%, #090b17);
	border: 1px solid rgba(182, 156, 255, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 38px rgba(139, 92, 246, 0.42), inset 0 1px rgba(255, 255, 255, 0.24);
}

.core-mark span {
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1;
}

.core-mark small {
	margin-top: 4px;
	color: var(--va-cyan);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.4rem;
	letter-spacing: 0.18em;
}

.layer-card {
	position: absolute;
	z-index: 4;
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	gap: 12px;
	min-width: 270px;
	padding: 12px 14px;
	background: rgba(14, 17, 32, 0.9);
	border: 1px solid var(--va-line);
	border-radius: 13px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
	transition: transform 0.3s var(--va-ease), border-color 0.3s ease;
}

.layer-card:hover {
	transform: translateX(4px);
	border-color: rgba(182, 156, 255, 0.35);
}

.layer-card > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: rgba(139, 92, 246, 0.11);
	border: 1px solid rgba(139, 92, 246, 0.18);
	border-radius: 11px;
	color: var(--va-violet-2);
}

.layer-card > span .icon {
	width: 21px;
	height: 21px;
}

.layer-card > div {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.layer-card small {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.49rem;
}

.layer-card strong {
	font-size: 0.83rem;
	letter-spacing: -0.01em;
}

.layer-card > i {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.47rem;
	font-style: normal;
	letter-spacing: 0.02em;
}

.layer-one { top: 48px; left: 55px; }
.layer-two { top: 132px; right: 35px; }
.layer-three { top: 278px; left: 35px; }
.layer-four { bottom: 130px; right: 35px; }
.layer-five { bottom: 42px; left: 80px; }

.roles-section {
	background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.025), transparent);
}

.roles-grid {
	display: grid;
	grid-template-columns: 1.16fr 1fr 1fr;
	grid-auto-rows: minmax(275px, auto);
	gap: 15px;
}

.role-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	overflow: hidden;
	transition: transform 0.35s var(--va-ease), border-color 0.35s ease;
}

.role-card::after {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 170px;
	height: 170px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 68%);
	pointer-events: none;
}

.role-card:hover {
	transform: translateY(-5px);
	border-color: rgba(182, 156, 255, 0.3);
}

.featured-role {
	grid-row: span 2;
	padding: 34px;
	background:
		linear-gradient(150deg, rgba(139, 92, 246, 0.13), transparent 52%),
		var(--va-surface);
	border-color: rgba(139, 92, 246, 0.25);
}

.featured-role::before {
	content: "";
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 95px;
	height: 230px;
	background:
		linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000, transparent);
	mask-image: linear-gradient(to bottom, transparent, #000, transparent);
	pointer-events: none;
}

.role-top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 35px;
}

.role-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	background: rgba(139, 92, 246, 0.11);
	border: 1px solid rgba(182, 156, 255, 0.18);
	border-radius: 15px;
	color: var(--va-violet-2);
}

.role-icon .icon {
	width: 24px;
	height: 24px;
}

.role-tag {
	padding: 6px 9px;
	background: rgba(41, 231, 205, 0.06);
	border: 1px solid rgba(41, 231, 205, 0.16);
	border-radius: 999px;
	color: var(--va-cyan);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.54rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.role-card h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
}

.role-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 22px;
	color: var(--va-muted);
	font-size: 0.88rem;
	line-height: 1.72;
}

.role-card ul {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 11px;
	margin: 8px 0 30px;
	padding: 0;
	list-style: none;
}

.role-card li {
	position: relative;
	padding-left: 18px;
	color: #d7d9e7;
	font-size: 0.81rem;
}

.role-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 6px;
	height: 1px;
	background: var(--va-cyan);
	box-shadow: 0 0 8px var(--va-cyan);
}

.text-link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: auto;
	color: #e5e3f1;
	font-size: 0.78rem;
	font-weight: 650;
}

.text-link .icon {
	width: 15px;
	height: 15px;
	transition: transform 0.25s ease;
}

.text-link:hover {
	color: var(--va-cyan);
}

.text-link:hover .icon {
	transform: translateX(4px);
}

.demo-section {
	background:
		radial-gradient(circle at 20% 55%, rgba(41, 231, 205, 0.055), transparent 25rem),
		var(--va-bg-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.045);
	border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.demo-shell {
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
	min-height: 670px;
	background: #090b16;
	border-color: rgba(182, 156, 255, 0.2);
	box-shadow: var(--va-shadow), 0 0 70px rgba(87, 50, 165, 0.08);
	overflow: hidden;
}

.demo-avatar-side {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 35px;
	background:
		linear-gradient(rgba(139, 92, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 50% 43%, rgba(139, 92, 246, 0.2), transparent 41%);
	background-size: 34px 34px, 34px 34px, auto;
	border-right: 1px solid var(--va-line);
	overflow: hidden;
}

.demo-avatar-meta {
	position: absolute;
	left: 24px;
	right: 24px;
	top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.demo-avatar-meta > span:last-child {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.53rem;
	letter-spacing: 0.08em;
}

.demo-avatar-orb {
	position: relative;
	display: grid;
	place-items: center;
	width: 280px;
	height: 280px;
	margin: 15px 0 35px;
	border: 1px solid rgba(139, 92, 246, 0.24);
	border-radius: 50%;
}

.demo-avatar-orb::before,
.demo-avatar-orb::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(41, 231, 205, 0.16);
	border-radius: 50%;
}

.demo-avatar-orb::before {
	inset: 19px;
	border-style: dashed;
	animation: va-spin 26s linear infinite reverse;
}

.demo-avatar-orb::after {
	inset: 52px;
	box-shadow: 0 0 38px rgba(139, 92, 246, 0.18);
}

.orb-radar {
	position: absolute;
	inset: 8px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, transparent 0 80%, rgba(41, 231, 205, 0.23) 94%, rgba(41, 231, 205, 0.65));
	-webkit-mask: radial-gradient(circle, transparent 0 28%, #000 30% 31%, transparent 32% 62%, #000 63% 64%, transparent 65%);
	mask: radial-gradient(circle, transparent 0 28%, #000 30% 31%, transparent 32% 62%, #000 63% 64%, transparent 65%);
	animation: va-spin 4.5s linear infinite;
}

.orb-face {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 124px;
	height: 124px;
	background: radial-gradient(circle at 38% 30%, #a574ff, #4a2b89 52%, #0d1020 78%);
	border: 1px solid rgba(220, 205, 255, 0.5);
	border-radius: 44% 44% 48% 48%;
	box-shadow: 0 0 48px rgba(139, 92, 246, 0.47), inset 0 1px rgba(255, 255, 255, 0.3);
}

.orb-face::before {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	top: 48px;
	height: 19px;
	background: linear-gradient(90deg, rgba(41, 231, 205, 0.15), rgba(233, 255, 252, 0.7), rgba(41, 231, 205, 0.15));
	border: 1px solid rgba(41, 231, 205, 0.66);
	border-radius: 20px 20px 13px 13px;
	box-shadow: 0 0 15px rgba(41, 231, 205, 0.5);
}

.orb-face span {
	position: absolute;
	top: 18px;
	color: rgba(255, 255, 255, 0.68);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.orb-face i {
	position: absolute;
	left: 45px;
	right: 45px;
	bottom: 28px;
	height: 1px;
	background: rgba(255, 255, 255, 0.65);
}

.demo-identity {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.demo-identity small {
	margin-bottom: 5px;
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.53rem;
	letter-spacing: 0.15em;
}

.demo-identity strong {
	font-size: 1.3rem;
	letter-spacing: 0.06em;
}

.demo-identity > span {
	margin-top: 4px;
	color: var(--va-violet-2);
	font-size: 0.77rem;
}

.demo-signals {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--va-line);
}

.demo-signals span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 45px;
	border-right: 1px solid var(--va-line);
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	letter-spacing: 0.09em;
}

.demo-signals span:last-child {
	border: 0;
}

.demo-signals i {
	width: 4px;
	height: 4px;
	background: var(--va-cyan);
	border-radius: 50%;
	box-shadow: 0 0 6px var(--va-cyan);
}

.demo-chat-side {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 30px;
}

.role-selector {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
	margin-bottom: 25px;
	padding: 5px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--va-line);
	border-radius: 14px;
}

.role-selector button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 5px 7px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--va-soft);
	font-size: 0.67rem;
	font-weight: 650;
	cursor: pointer;
	transition: 0.2s ease;
}

.role-selector button .icon {
	width: 15px;
	height: 15px;
}

.role-selector button:hover {
	color: var(--va-text);
}

.role-selector button.active {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(41, 231, 205, 0.06));
	border-color: rgba(182, 156, 255, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	color: #fff;
}

.chat-window {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 17px;
	min-height: 328px;
	max-height: 360px;
	padding: 8px 4px 20px;
	overflow-y: auto;
	scrollbar-color: rgba(139, 92, 246, 0.4) transparent;
}

.chat-window::before {
	content: "TODAY  •  SECURE DEMO SESSION";
	display: block;
	margin-bottom: 8px;
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	letter-spacing: 0.1em;
	text-align: center;
}

.chat-message {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	max-width: 88%;
	animation: va-message-in 0.35s var(--va-ease) both;
}

.chat-message > div {
	padding: 13px 15px;
	background: var(--va-surface-2);
	border: 1px solid var(--va-line);
	border-radius: 5px 16px 16px 16px;
}

.message-avatar {
	display: grid;
	place-items: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #744ad5, #2e1c57);
	border: 1px solid rgba(182, 156, 255, 0.3);
	border-radius: 9px;
	color: #fff;
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	font-weight: 800;
}

.chat-message small {
	display: block;
	margin-bottom: 5px;
	color: var(--va-soft);
	font-size: 0.56rem;
	letter-spacing: 0.04em;
}

.chat-message small b {
	color: var(--va-cyan);
	font-weight: 700;
}

.chat-message p {
	margin: 0;
	color: #d9dbe8;
	font-size: 0.8rem;
	line-height: 1.65;
}

.chat-message.user-message {
	align-self: flex-end;
	flex-direction: row-reverse;
}

.chat-message.user-message > div {
	background: linear-gradient(135deg, rgba(118, 72, 207, 0.24), rgba(118, 72, 207, 0.12));
	border-color: rgba(182, 156, 255, 0.18);
	border-radius: 16px 5px 16px 16px;
}

.chat-message.user-message .message-avatar {
	background: #22263a;
	border-color: var(--va-line);
}

.typing-message p {
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 19px;
}

.typing-message p i {
	display: block;
	width: 5px;
	height: 5px;
	background: var(--va-muted);
	border-radius: 50%;
	animation: va-typing 1.1s ease-in-out infinite;
}

.typing-message p i:nth-child(2) { animation-delay: 0.15s; }
.typing-message p i:nth-child(3) { animation-delay: 0.3s; }

.prompt-row {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 6px 0 13px 41px;
}

.prompt-row button {
	min-height: 31px;
	padding: 0 12px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--va-line);
	border-radius: 999px;
	color: var(--va-muted);
	font-size: 0.64rem;
	cursor: pointer;
	transition: 0.2s ease;
}

.prompt-row button:hover {
	background: rgba(139, 92, 246, 0.1);
	border-color: rgba(182, 156, 255, 0.26);
	color: #fff;
}

.chat-form {
	display: grid;
	grid-template-columns: 1fr 45px;
	gap: 7px;
	padding: 6px;
	background: var(--va-surface-2);
	border: 1px solid var(--va-line-bright);
	border-radius: 15px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-form:focus-within {
	border-color: rgba(41, 231, 205, 0.32);
	box-shadow: 0 0 0 3px rgba(41, 231, 205, 0.04);
}

.chat-form input {
	width: 100%;
	min-width: 0;
	height: 45px;
	padding: 0 12px;
	background: transparent;
	border: 0;
	outline: 0;
	color: #fff;
	font-size: 0.79rem;
}

.chat-form input::placeholder {
	color: #6f7489;
}

.chat-form button {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	padding: 0;
	background: var(--va-gradient-violet);
	border: 0;
	border-radius: 11px;
	cursor: pointer;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.chat-form button .icon {
	width: 19px;
	height: 19px;
}

.demo-disclaimer {
	margin: 10px 4px 0;
	color: #666b80;
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	line-height: 1.5;
	text-align: center;
}

.outcomes-section {
	padding-block: clamp(86px, 9vw, 125px);
}

.outcome-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--va-line);
	border-bottom: 1px solid var(--va-line);
}

.outcome-item {
	padding: 34px 28px;
	border-right: 1px solid var(--va-line);
}

.outcome-item:last-child {
	border: 0;
}

.outcome-item > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 25px;
	background: rgba(139, 92, 246, 0.08);
	border: 1px solid rgba(139, 92, 246, 0.15);
	border-radius: 12px;
	color: var(--va-violet-2);
}

.outcome-item > span .icon {
	width: 20px;
	height: 20px;
}

.outcome-item strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1rem;
}

.outcome-item p {
	margin: 0;
	color: var(--va-muted);
	font-size: 0.8rem;
	line-height: 1.7;
}

.pricing-section {
	background:
		radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.08), transparent 30rem),
		var(--va-bg-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.045);
	border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: 15px;
}

.price-card {
	display: flex;
	flex-direction: column;
	min-height: 590px;
	padding: 35px;
}

.price-featured {
	background:
		linear-gradient(160deg, rgba(139, 92, 246, 0.15), transparent 42%),
		var(--va-surface);
	border-color: rgba(182, 156, 255, 0.34);
	box-shadow: 0 24px 70px rgba(83, 44, 164, 0.14), inset 0 1px rgba(255, 255, 255, 0.07);
}

.recommended-label {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 9px;
	background: rgba(41, 231, 205, 0.07);
	border: 1px solid rgba(41, 231, 205, 0.18);
	border-radius: 999px;
	color: var(--va-cyan);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.48rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.price-kicker {
	margin-bottom: 20px;
	color: var(--va-violet-2);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.59rem;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.price-card h3 {
	margin-bottom: 26px;
}

.price {
	display: flex;
	align-items: flex-start;
	min-height: 75px;
	margin-bottom: 17px;
}

.price sup {
	margin-top: 9px;
	font-size: 1.1rem;
	font-weight: 650;
}

.price strong {
	font-size: 3.8rem;
	font-weight: 650;
	letter-spacing: -0.06em;
	line-height: 1;
}

.price span {
	align-self: flex-end;
	margin: 0 0 8px 8px;
	color: var(--va-soft);
	font-size: 0.7rem;
}

.price-card > p:not(.price-kicker) {
	min-height: 52px;
	margin-bottom: 28px;
	color: var(--va-muted);
	font-size: 0.85rem;
	line-height: 1.65;
}

.price-list {
	display: grid;
	gap: 14px;
	margin: 0 0 32px;
	padding: 26px 0 0;
	border-top: 1px solid var(--va-line);
	list-style: none;
}

.price-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #d0d3e1;
	font-size: 0.78rem;
}

.price-list .icon {
	width: 16px;
	height: 16px;
	color: var(--va-cyan);
}

.price-card .button {
	width: 100%;
	margin-top: auto;
}

.price-card > small {
	margin-top: 12px;
	color: var(--va-soft);
	font-size: 0.57rem;
	text-align: center;
}

.launch-note {
	margin: 25px 0 0;
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.58rem;
	letter-spacing: 0.03em;
	text-align: center;
}

.trust-section {
	padding-block: clamp(86px, 9vw, 125px);
}

.trust-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.86fr) minmax(550px, 1.14fr);
	align-items: center;
	gap: clamp(60px, 8vw, 110px);
}

.trust-copy h2 {
	margin-bottom: 25px;
}

.trust-copy > p:not(.eyebrow) {
	margin: 0;
	color: var(--va-muted);
	line-height: 1.78;
}

.trust-cards {
	display: grid;
	gap: 10px;
}

.trust-cards article {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
}

.trust-cards article > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	background: rgba(41, 231, 205, 0.055);
	border: 1px solid rgba(41, 231, 205, 0.13);
	border-radius: 14px;
	color: var(--va-cyan);
}

.trust-cards article > span .icon {
	width: 22px;
	height: 22px;
}

.trust-cards strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.trust-cards p {
	margin: 0;
	color: var(--va-muted);
	font-size: 0.75rem;
}

.faq-section {
	background: rgba(255, 255, 255, 0.01);
	border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.faq-grid {
	display: grid;
	grid-template-columns: minmax(290px, 0.67fr) minmax(550px, 1.33fr);
	align-items: start;
	gap: clamp(70px, 9vw, 140px);
}

.faq-heading {
	position: sticky;
	top: calc(var(--va-header) + 40px);
}

.faq-heading h2 {
	margin-bottom: 22px;
}

.faq-heading > p:not(.eyebrow) {
	color: var(--va-muted);
}

.faq-list {
	border-top: 1px solid var(--va-line);
}

.faq-list details {
	border-bottom: 1px solid var(--va-line);
}

.faq-list summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 0;
	font-size: 1rem;
	font-weight: 610;
	letter-spacing: -0.02em;
	list-style: none;
	cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary span {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border: 1px solid var(--va-line-bright);
	border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
	content: "";
	position: absolute;
	left: 6px;
	right: 6px;
	top: 11px;
	height: 1px;
	background: var(--va-muted);
	transition: transform 0.2s ease;
}

.faq-list summary span::after {
	transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
	transform: rotate(0);
}

.faq-list details[open] summary {
	color: var(--va-violet-2);
}

.faq-list details p {
	max-width: 700px;
	margin: -3px 48px 27px 0;
	color: var(--va-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.final-cta {
	position: relative;
	padding: clamp(105px, 13vw, 180px) 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(126, 72, 231, 0.21), transparent 28rem),
		var(--va-bg-deep);
	border-top: 1px solid rgba(182, 156, 255, 0.1);
	overflow: hidden;
}

.final-grid {
	-webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 67%);
	mask-image: radial-gradient(circle at 50% 45%, #000, transparent 67%);
}

.final-cta-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 900px;
	text-align: center;
}

.final-mark {
	position: relative;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	margin-bottom: 35px;
	background: radial-gradient(circle at 35% 28%, #9b72ef, #382466 58%, #0a0c17);
	border: 1px solid rgba(216, 196, 255, 0.42);
	border-radius: 24px;
	box-shadow: 0 0 50px rgba(139, 92, 246, 0.4), inset 0 1px rgba(255, 255, 255, 0.24);
}

.final-mark span {
	position: relative;
	z-index: 2;
	font-size: 2rem;
	font-weight: 800;
}

.final-mark i {
	position: absolute;
	width: 94px;
	height: 34px;
	border: 1px solid rgba(41, 231, 205, 0.22);
	border-radius: 50%;
	transform: rotate(22deg);
}

.final-mark i:last-child {
	transform: rotate(-22deg);
}

.final-cta .eyebrow {
	justify-content: center;
}

.final-cta h2 {
	max-width: 850px;
	margin-bottom: 26px;
}

.final-cta-inner > p:not(.eyebrow) {
	max-width: 680px;
	margin-bottom: 37px;
	color: var(--va-muted);
	font-size: 1.04rem;
	line-height: 1.75;
}

.final-cta .hero-actions {
	justify-content: center;
}

.site-footer {
	background: #03040a;
	border-top: 1px solid var(--va-line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 0.7fr 1fr;
	gap: 80px;
	padding-block: 70px;
}

.footer-brand p {
	max-width: 330px;
	margin: 22px 0 0;
	color: var(--va-soft);
	font-size: 0.77rem;
	line-height: 1.7;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.footer-links strong {
	margin-bottom: 8px;
	color: #e2e3ec;
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-links a {
	color: var(--va-soft);
	font-size: 0.75rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--va-cyan);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 65px;
	border-top: 1px solid var(--va-line);
}

.footer-bottom p {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: #5f6375;
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.53rem;
	letter-spacing: 0.05em;
}

.footer-bottom .status-dot {
	width: 5px;
	height: 5px;
}

.content-area {
	min-height: 60vh;
	padding: 50px 0 110px;
}

.page-hero {
	padding: 75px 0 55px;
}

.compact-hero h1 {
	max-width: 850px;
	margin-bottom: 0;
	font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.entry-content,
.empty-state {
	padding: clamp(28px, 5vw, 55px);
}

.prose {
	color: #c8cad8;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose > *:last-child {
	margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 1.6em;
	color: #fff;
}

.prose h2 {
	font-size: 2rem;
}

.prose a {
	color: var(--va-cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.prose blockquote {
	margin: 2em 0;
	padding: 5px 0 5px 24px;
	border-left: 2px solid var(--va-violet);
	color: #e2e3ec;
	font-size: 1.15rem;
}

.featured-image {
	margin-bottom: 25px;
	border-radius: var(--va-radius);
	overflow: hidden;
}

.featured-image img {
	width: 100%;
	height: auto;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 30px;
}

.post-card h2 {
	font-size: 1.65rem;
}

.post-card h2 a:hover {
	color: var(--va-violet-2);
}

.post-meta {
	color: var(--va-soft);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 0.58rem;
	letter-spacing: 0.08em;
}

.post-excerpt {
	color: var(--va-muted);
	font-size: 0.85rem;
}

.post-navigation,
.nav-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	color: var(--va-muted);
	font-size: 0.78rem;
}

.post-navigation a:hover,
.nav-links a:hover {
	color: var(--va-cyan);
}

.widget {
	margin-bottom: 20px;
	padding: 25px;
	background: var(--va-surface);
	border: 1px solid var(--va-line);
	border-radius: var(--va-radius-sm);
}

.widget-title {
	font-size: 1.15rem;
}

.error-page {
	display: grid;
	place-items: center;
	min-height: calc(100vh - var(--va-header));
	padding: 90px 0;
	text-align: center;
}

.error-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 780px;
}

.error-code {
	font-size: clamp(7rem, 22vw, 16rem);
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 0.72;
	background: linear-gradient(180deg, rgba(139, 92, 246, 0.52), rgba(139, 92, 246, 0.02));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.error-inner .eyebrow {
	margin-top: 55px;
}

.error-inner h1 {
	margin-bottom: 25px;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.error-inner > p:not(.eyebrow) {
	max-width: 600px;
	margin-bottom: 30px;
	color: var(--va-muted);
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.75s var(--va-ease), transform 0.75s var(--va-ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.delay-one { transition-delay: 0.08s; }
.delay-two { transition-delay: 0.16s; }
.delay-three { transition-delay: 0.24s; }

@keyframes va-spin {
	to { transform: rotate(360deg); }
}

@keyframes va-spin-centered {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes va-scan {
	0%, 100% { top: 14%; opacity: 0; }
	15% { opacity: 0.55; }
	75% { opacity: 0.45; }
	90% { top: 83%; opacity: 0; }
}

@keyframes va-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes va-visor {
	0%, 100% { opacity: 0.85; }
	50% { opacity: 1; }
}

@keyframes va-bars {
	0%, 100% { transform: scaleY(0.45); }
	50% { transform: scaleY(2.2); }
}

@keyframes va-message-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

@keyframes va-typing {
	0%, 70%, 100% { opacity: 0.35; transform: translateY(0); }
	35% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 1120px) {
	:root { --va-shell: 1020px; }

	.header-inner { gap: 22px; }
	.primary-menu { gap: 18px; }
	.header-cta { display: none; }

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
		gap: 45px;
	}

	.hero-copy h1 { font-size: clamp(3.3rem, 6.8vw, 5.4rem); }
	.avatar-stage { height: 440px; }
	.stage-readout { display: none; }

	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.process-card { min-height: 280px; }
	.icon-box { margin-bottom: 35px; }

	.os-grid { grid-template-columns: 1fr; }
	.os-copy { max-width: 740px; }
	.os-visual { max-width: 760px; width: 100%; margin-inline: auto; }

	.demo-shell { grid-template-columns: 0.72fr 1.28fr; }
	.demo-chat-side { padding: 25px; }
	.role-selector button { font-size: 0; }
	.role-selector button .icon { width: 18px; height: 18px; }

	.price-card { padding: 29px; }
	.price strong { font-size: 3.25rem; }
}

@media (max-width: 900px) {
	.site-shell { width: min(calc(100% - 36px), var(--va-shell)); }

	.menu-toggle { display: grid; margin-left: auto; }
	.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
	.menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }

	.primary-navigation {
		position: fixed;
		z-index: 49;
		left: 0;
		right: 0;
		top: var(--va-header);
		height: calc(100vh - var(--va-header));
		padding: 28px 18px;
		background: rgba(5, 6, 14, 0.98);
		backdrop-filter: blur(20px);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: 0.22s ease;
		overflow-y: auto;
	}

	.primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-width: 620px;
		margin-inline: auto;
	}

	.primary-menu a {
		padding: 18px 4px;
		border-bottom: 1px solid var(--va-line);
		font-size: 1.1rem;
	}

	.primary-menu > li > a::after { display: none; }
	.primary-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 0 18px;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.hero-section { padding-top: 80px; }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-copy { max-width: 780px; padding-bottom: 0; }
	.hero-copy h1 { font-size: clamp(3.6rem, 10vw, 6.2rem); }
	.hero-visual { width: min(100%, 610px); max-width: none; justify-self: center; }
	.avatar-stage { height: 540px; }

	.role-ticker { grid-template-columns: repeat(5, 1fr); }
	.role-ticker > span { display: none; }

	.split-heading { grid-template-columns: 1fr; gap: 25px; }
	.split-heading > p { max-width: 680px; }

	.roles-grid { grid-template-columns: 1fr 1fr; }
	.featured-role { grid-row: span 2; }

	.demo-shell { grid-template-columns: 1fr; }
	.demo-avatar-side { min-height: 590px; border-right: 0; border-bottom: 1px solid var(--va-line); }
	.demo-chat-side { padding: 30px; }
	.role-selector button { font-size: 0.67rem; }

	.outcome-grid { grid-template-columns: repeat(2, 1fr); }
	.outcome-item:nth-child(2) { border-right: 0; }
	.outcome-item:nth-child(-n+2) { border-bottom: 1px solid var(--va-line); }

	.pricing-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
	.price-card { min-height: auto; }
	.price-list { margin-bottom: 32px; }
	.price-card .button { margin-top: 10px; }

	.trust-grid,
	.faq-grid { grid-template-columns: 1fr; }
	.faq-heading { position: static; max-width: 650px; }

	.footer-grid { grid-template-columns: 1.6fr 0.7fr 1fr; gap: 35px; }
}

@media (max-width: 680px) {
	:root { --va-header: 70px; }

	body { font-size: 15px; }
	.site-shell { width: min(calc(100% - 28px), var(--va-shell)); }
	.section { padding: 90px 0; }

	.announcement-inner {
		justify-content: flex-start;
		overflow: hidden;
		white-space: nowrap;
	}
	.announcement-inner > span:nth-child(2) {
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.announcement-inner a { display: none; }

	.brand-symbol { width: 38px; height: 38px; border-radius: 12px; }
	.brand-word { font-size: 1.3rem; }

	.hero-section { padding-top: 65px; }
	.hero-copy h1 { margin-bottom: 24px; font-size: clamp(3rem, 15vw, 4.7rem); }
	.hero-lede { font-size: 1rem; }
	.hero-actions { align-items: stretch; flex-direction: column; }
	.hero-actions .button { width: 100%; }
	.hero-proof { justify-content: space-between; margin-top: 40px; }
	.hero-proof > div { min-width: 0; padding-right: 14px; margin-right: 14px; }
	.hero-proof strong { font-size: 1rem; }
	.hero-proof span { max-width: 90px; font-size: 0.58rem; }

	.avatar-console { border-radius: 21px; }
	.avatar-stage { height: 420px; }
	.console-header { padding: 16px; }
	.console-label { font-size: 0.48rem; }
	.readout-left,
	.readout-right { display: none; }
	.voice-card { grid-template-columns: 40px 1fr 35px; gap: 8px; margin-inline: 10px; }
	.voice-bars i:nth-child(n+7) { display: none; }
	.console-footer { grid-template-columns: repeat(2, 1fr); }
	.console-footer span:nth-child(2) { border-right: 0; }
	.console-footer span:nth-child(-n+2) { border-bottom: 1px solid var(--va-line); }

	.role-ticker {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 50px;
	}
	.role-ticker > div { min-height: 54px; }
	.role-ticker > div:nth-child(3),
	.role-ticker > div:nth-child(5) { border-right: 0; }
	.role-ticker > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--va-line); }

	.section-heading { margin-bottom: 45px; }
	.process-grid { grid-template-columns: 1fr; }
	.process-card { min-height: 265px; }

	.os-visual {
		display: flex;
		flex-direction: column;
		gap: 9px;
		height: auto;
		padding: 24px;
	}
	.os-visual::before,
	.os-visual::after { display: none; }
	.os-core { position: relative; left: auto; top: auto; margin: 15px auto 25px; transform: none; }
	.layer-card { position: relative; inset: auto; min-width: 0; width: 100%; grid-template-columns: 40px 1fr; }
	.layer-card > i { display: none; }
	.layer-card:hover { transform: translateY(-2px); }

	.roles-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.featured-role { grid-row: auto; min-height: 430px; }
	.role-card { min-height: 280px; }

	.demo-avatar-side { min-height: 520px; padding-inline: 16px; }
	.demo-avatar-orb { width: 240px; height: 240px; }
	.demo-chat-side { padding: 18px 14px 20px; }
	.role-selector { grid-template-columns: repeat(5, 1fr); }
	.role-selector button { min-height: 42px; font-size: 0; }
	.role-selector button .icon { width: 18px; height: 18px; }
	.chat-window { min-height: 360px; max-height: 420px; }
	.chat-message { max-width: 95%; }
	.prompt-row { margin-left: 0; }
	.prompt-row button { flex-grow: 1; }

	.outcome-grid { grid-template-columns: 1fr; }
	.outcome-item { border-right: 0; border-bottom: 1px solid var(--va-line); }
	.outcome-item:nth-child(3) { border-bottom: 1px solid var(--va-line); }
	.outcome-item:last-child { border-bottom: 0; }

	.price-card { padding: 28px 24px; }
	.price-card > p:not(.price-kicker) { min-height: 0; }

	.trust-grid,
	.faq-grid { gap: 48px; }
	.trust-cards article { grid-template-columns: 43px 1fr; padding: 17px; }
	.trust-cards article > span { width: 43px; height: 43px; }
	.faq-list summary { padding: 21px 0; font-size: 0.93rem; }
	.faq-list details p { margin-right: 0; }

	.final-cta-inner > p:not(.eyebrow) { font-size: 0.96rem; }

	.footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; padding-block: 55px; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; min-height: 78px; }

	.post-grid { grid-template-columns: 1fr; }
	.page-hero { padding: 55px 0 40px; }
}

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