/* ============================================
   VERLINGO REDESIGN — TOKENS + GLOBAL
   ============================================ */
:root {
	/* Neutrals — warm tinted */
	--ink: #0A0A0B;
	--ink-2: #1A1A1D;
	--ink-3: #2A2A2E;
	--paper: #FAFAF7;
	--paper-2: #F2F2EC;
	--paper-3: #E8E8E2;
	--mute: #6B6B70;
	--mute-2: #9A9A9F;
	--line: rgba(10, 10, 11, 0.08);
	--line-2: rgba(10, 10, 11, 0.14);
	--line-dark: rgba(255, 255, 255, 0.08);
	--line-dark-2: rgba(255, 255, 255, 0.14);

	/* Accent — cyan from logo */
	--cyan: #22D3EE;
	--cyan-2: #06B6D4;
	--cyan-soft: rgba(34, 211, 238, 0.12);
	--cyan-hairline: rgba(34, 211, 238, 0.28);

	/* Type */
	--font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
	--font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

	/* Radii + shadow */
	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 16px;
	--r-xl: 24px;
	--shadow-soft: 0 1px 0 rgba(10, 10, 11, 0.04), 0 8px 24px -8px rgba(10, 10, 11, 0.08);
	--shadow-card: 0 1px 0 rgba(10, 10, 11, 0.04), 0 24px 48px -20px rgba(10, 10, 11, 0.18);
	--shadow-dark: 0 24px 48px -20px rgba(0, 0, 0, 0.6);

	/* Layout */
	--container: 1240px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-sans);
	font-feature-settings: "ss01", "cv11";
	background: var(--paper);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	color: inherit;
}

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

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

/* ============================================
   TYPE SYSTEM
   ============================================ */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-mono);
	font-size: 14px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cyan-2);
	font-weight: 500;
}

.eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 4px var(--cyan-soft);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-sans);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.02;
	margin: 0;
	text-wrap: balance;
}

h1 {
	font-size: clamp(36px, 4.6vw, 88px);
	font-weight: 480;
	letter-spacing: -0.04em;
	line-height: 0.98;
}

h2 {
	font-size: clamp(34px, 4.6vw, 64px);
	font-weight: 600;
	letter-spacing: -0.042em;
}

h3 {
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

h4 {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.015em;
}

p {
	margin: 0;
}

.lede {
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.45;
	color: var(--mute);
	letter-spacing: -0.012em;
	text-wrap: pretty;
	max-width: 56ch;
}

.serif-i {
	font-family: "Instrument Serif", "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.005em;
	transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}

.btn-primary {
	background: var(--ink);
	color: var(--paper);
}

.btn-primary:hover {
	background: var(--ink-2);
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -10px rgba(10, 10, 11, 0.4);
}

.btn-secondary {
	background: var(--paper);
	color: var(--ink);
	border: 1px solid var(--line-2);
}

.btn-secondary:hover {
	background: white;
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: var(--ink);
	padding: 0 12px;
}

.btn-ghost:hover {
	color: var(--ink);
	background: var(--paper-2);
}

.btn-lg {
	height: 52px;
	padding: 0 22px;
	font-size: 15px;
}

.btn-sm {
	height: 36px;
	padding: 0 14px;
	font-size: 13px;
}

.btn .arrow {
	width: 14px;
	height: 14px;
	transition: transform .2s ease;
}

.btn:hover .arrow {
	transform: translateX(3px);
}

.btn-cyan {
	background: var(--cyan);
	color: var(--ink);
}

.btn-cyan:hover {
	background: #4DDDEF;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -10px rgba(34, 211, 238, 0.5);
}

/* On dark */
.dark .btn-primary {
	background: var(--paper);
	color: var(--ink);
}

.dark .btn-primary:hover {
	background: white;
}

.dark .btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	color: var(--paper);
	border-color: var(--line-dark-2);
}

.dark .btn-ghost {
	color: var(--paper);
}

.dark .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   NAV
   ============================================ */
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	background: rgba(250, 250, 247, 0.72);
	border-bottom: 1px solid var(--line);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0;
	height: 28px;
}

.nav-logo img {
	height: 26px;
	width: auto;
}

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

.nav-links a {
	padding: 8px 14px;
	font-size: 14px;
	color: var(--ink);
	border-radius: 8px;
	transition: background .15s ease;
	font-weight: 450;
}

.nav-links a:hover {
	background: var(--paper-2);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	transition: background .15s ease;
}

.nav-toggle:hover {
	background: var(--paper-2);
}

.nav-toggle span {
	width: 20px;
	height: 1.5px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	pointer-events: none;
	visibility: hidden;
}

.nav-drawer.open {
	pointer-events: auto;
	visibility: visible;
}

.nav-drawer-scrim {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 11, 0.5);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity .3s ease;
}

.nav-drawer.open .nav-drawer-scrim {
	opacity: 1;
}

.nav-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(360px, 88%);
	background: var(--paper);
	border-left: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
	box-shadow: -20px 0 60px -20px rgba(10, 10, 11, 0.3);
}

.nav-drawer.open .nav-drawer-panel {
	transform: translateX(0);
}

.nav-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	border-bottom: 1px solid var(--line);
}

.nav-drawer-head .nav-logo img {
	height: 26px;
}

.nav-drawer-close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--paper-2);
	color: var(--ink);
	transition: background .15s ease;
}

.nav-drawer-close:hover {
	background: var(--paper-3);
}

.nav-drawer-close svg {
	width: 16px;
	height: 16px;
}

.nav-drawer-links {
	display: flex;
	flex-direction: column;
	padding: 16px 12px;
	flex: 1;
	overflow-y: auto;
}

.nav-drawer-links a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 14px;
	border-radius: 12px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ink);
	transition: background .15s ease, color .15s ease;
}

.nav-drawer-links a:hover {
	background: var(--paper-2);
	color: var(--cyan-2);
}

.nav-drawer-links a:hover .ndl-num {
	color: var(--cyan-2);
}

.nav-drawer-links .ndl-num {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--mute-2);
	width: 28px;
}

.nav-drawer-links .ndl-text {
	flex: 1;
}

.nav-drawer-links svg {
	color: var(--mute-2);
}

.nav-drawer-foot {
	padding: 20px 24px 28px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nav-drawer-meta {
	display: flex;
	justify-content: space-around;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	margin-top: 6px;
}

.nav-drawer-meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.nav-drawer-meta-item strong {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--cyan-2);
}

.nav-drawer-meta-item span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
}

/* ============================================
   HERO
   ============================================ */
.hero {
	padding: 100px 0 96px;
	position: relative;
	overflow: hidden;
}

.hero-bg-glow {
	position: absolute;
	inset: -200px -10% auto -10%;
	height: 800px;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(60% 60% at 75% 30%, rgba(34, 211, 238, 0.18), transparent 70%),
		radial-gradient(40% 40% at 20% 20%, rgba(34, 211, 238, 0.06), transparent 70%);
	mask-image: linear-gradient(180deg, black 30%, transparent);
	-webkit-mask-image: linear-gradient(180deg, black 30%, transparent);
}

.hero-bg-glow::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(10, 10, 11, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 10, 11, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at 70% 30%, black 5%, transparent 60%);
	-webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 5%, transparent 60%);
}

/* ===== Hero with video background ===== */
.hero-video {
	background: #050608;
	color: var(--paper);
	padding: 120px 0 110px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-video-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-video-el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	filter: saturate(0.7) contrast(1.05);
	transform: scale(1.05);
}

/* Fallback animated mesh — looks like an ambient video loop. */
.hero-video-fallback {
	position: absolute;
	inset: -10%;
	background:
		radial-gradient(38% 50% at 20% 30%, rgba(34, 211, 238, 0.65), transparent 65%),
		radial-gradient(35% 45% at 80% 20%, rgba(99, 102, 241, 0.55), transparent 65%),
		radial-gradient(50% 55% at 60% 80%, rgba(34, 211, 238, 0.40), transparent 70%),
		radial-gradient(35% 40% at 10% 90%, rgba(168, 85, 247, 0.35), transparent 70%),
		radial-gradient(30% 35% at 95% 70%, rgba(34, 211, 238, 0.50), transparent 70%),
		#050608;
	filter: blur(40px) saturate(1.4);
	animation: meshDrift 22s ease-in-out infinite alternate;
}

@keyframes meshDrift {
	0% {
		transform: scale(1) translate(0, 0) rotate(0deg);
	}

	33% {
		transform: scale(1.15) translate(-3%, 2%) rotate(2deg);
	}

	66% {
		transform: scale(1.08) translate(2%, -2%) rotate(-1deg);
	}

	100% {
		transform: scale(1.12) translate(-2%, 3%) rotate(1deg);
	}
}

.hero-video-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-video-particles span {
	position: absolute;
	width: 3px;
	height: 3px;
	background: var(--cyan);
	border-radius: 50%;
	opacity: 0;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.9), 0 0 24px rgba(34, 211, 238, 0.5);
	animation: floatUp 12s linear infinite;
}

.hero-video-particles span:nth-child(1) {
	left: 5%;
	animation-delay: -1s;
	animation-duration: 14s;
}

.hero-video-particles span:nth-child(2) {
	left: 12%;
	animation-delay: -3s;
	animation-duration: 11s;
}

.hero-video-particles span:nth-child(3) {
	left: 22%;
	animation-delay: -6s;
	animation-duration: 16s;
}

.hero-video-particles span:nth-child(4) {
	left: 32%;
	animation-delay: -2s;
	animation-duration: 13s;
}

.hero-video-particles span:nth-child(5) {
	left: 42%;
	animation-delay: -8s;
	animation-duration: 15s;
}

.hero-video-particles span:nth-child(6) {
	left: 52%;
	animation-delay: -4s;
	animation-duration: 12s;
}

.hero-video-particles span:nth-child(7) {
	left: 62%;
	animation-delay: -7s;
	animation-duration: 18s;
}

.hero-video-particles span:nth-child(8) {
	left: 72%;
	animation-delay: -5s;
	animation-duration: 14s;
}

.hero-video-particles span:nth-child(9) {
	left: 82%;
	animation-delay: -9s;
	animation-duration: 11s;
}

.hero-video-particles span:nth-child(10) {
	left: 92%;
	animation-delay: -10s;
	animation-duration: 17s;
}

.hero-video-particles span:nth-child(11) {
	left: 18%;
	animation-delay: -11s;
	animation-duration: 13s;
	width: 2px;
	height: 2px;
}

.hero-video-particles span:nth-child(12) {
	left: 38%;
	animation-delay: -13s;
	animation-duration: 19s;
	width: 2px;
	height: 2px;
}

.hero-video-particles span:nth-child(13) {
	left: 58%;
	animation-delay: -15s;
	animation-duration: 12s;
	width: 4px;
	height: 4px;
}

.hero-video-particles span:nth-child(14) {
	left: 78%;
	animation-delay: -2s;
	animation-duration: 21s;
	width: 2px;
	height: 2px;
}

.hero-video-particles span:nth-child(15) {
	left: 88%;
	animation-delay: -14s;
	animation-duration: 16s;
	width: 4px;
	height: 4px;
}

@keyframes floatUp {
	0% {
		transform: translateY(110vh) translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 0.9;
	}

	90% {
		opacity: 0.5;
	}

	100% {
		transform: translateY(-10vh) translateX(15px);
		opacity: 0;
	}
}

.hero-video-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 80% at 30% 50%, rgba(5, 8, 12, 0.50), rgba(5, 8, 12, 0.88) 80%),
		linear-gradient(180deg, rgba(5, 8, 12, 0.50) 0%, rgba(5, 8, 12, 0.94) 100%);
}

.hero-video-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at center, black 10%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 10%, transparent 80%);
}

.hero-video .container {
	position: relative;
	z-index: 2;
}

/* Dark-mode hero text */
.hero-video h1 {
	color: var(--paper);
}

.hero-video h1 .accent-glow {
	color: var(--cyan);
	text-shadow: 0 0 70px rgba(34, 211, 238, 0.7);
}

.hero-video h1 .accent-glow::before {
	background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.32), transparent 70%);
}

.hero-video .serif-i {
	color: var(--cyan) !important;
}

.hero-video .hero-lede {
	color: rgba(244, 244, 240, 0.7);
}

.hero-video .hero-lede strong {
	color: var(--paper);
}

/* Hero pill — dark variant */
.hero-video .hero-pill {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(244, 244, 240, 0.85);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 24px -8px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.hero-video .hero-pill .pill-tag {
	background: var(--cyan);
	color: var(--ink);
}

/* Hero buttons — dark variant */
.hero-video .btn-primary {
	background: var(--paper);
	color: var(--ink);
}

.hero-video .btn-primary:hover {
	background: white;
}

.hero-video .btn-secondary {
	background: rgba(255, 255, 255, 0.06);
	color: var(--paper);
	border-color: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.hero-video .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* Meta bar — dark glassy variant */
.hero-video .hero-meta {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border-color: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 16px 48px -20px rgba(0, 0, 0, 0.7);
}

.hero-video .hero-meta-item {
	background: transparent;
	border: none;
}

.hero-video .hero-meta-item+.hero-meta-item::before {
	background: rgba(255, 255, 255, 0.12);
}

.hero-video .hero-meta-item .v {
	color: var(--paper);
}

.hero-video .hero-meta-item .l {
	color: rgba(244, 244, 240, 0.6);
}

.hero-video .hero-meta-item.cyan {
	background: transparent;
	border: none;
}

.hero-video .hero-meta-item.cyan .v {
	color: var(--cyan);
	text-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

.hero-video .hero-meta-item.cyan .l {
	color: var(--cyan);
	opacity: 0.85;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 .accent-glow {
	position: relative;
	color: var(--cyan-2);
	text-shadow: 0 0 60px rgba(34, 211, 238, 0.45);
}

.hero h1 .accent-glow::before {
	content: "";
	position: absolute;
	inset: -10% -5%;
	background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.18), transparent 70%);
	z-index: -1;
	border-radius: 999px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px 6px 14px;
	border-radius: 999px;
	background: white;
	border: 1px solid var(--line);
	font-size: 13px;
	color: var(--mute);
	box-shadow: var(--shadow-soft);
	margin-bottom: 28px;
}

.hero-pill .pill-tag {
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero h1 .accent {
	background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 20%, var(--cyan-2) 75%, var(--cyan) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero h1 .dim {
	color: var(--mute-2);
}

.hero-lede {
	margin-top: 26px;
	font-size: 19px;
	line-height: 1.5;
	color: var(--mute);
	max-width: 52ch;
	text-wrap: pretty;
}

.hero-actions {
	display: flex;
	gap: 10px;
	margin-top: 36px;
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 44px;
	padding: 26px 8px;
	border-top: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero-meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 4px 16px;
	position: relative;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.hero-meta-item+.hero-meta-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 60%;
	width: 1px;
	background: var(--line-2);
}

.hero-meta-item .v {
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
	color: var(--ink);
	font-family: var(--font-sans);
}

.hero-meta-item .l {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 450;
	letter-spacing: -0.005em;
	text-transform: capitalize;
	color: var(--mute);
	margin-top: 0;
}

.hero-meta-item.cyan {
	background: transparent;
	border-color: transparent;
}

.hero-meta-item.cyan .v {
	color: var(--cyan-2);
	text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.hero-meta-item.cyan .l {
	color: var(--cyan-2);
	opacity: 0.85;
}

.hero-meta-item.cyan::after {
	content: none;
}

/* Hero animated stage (legacy — kept harmless) */
.hero-stage {
	position: relative;
	aspect-ratio: 5 / 5.6;
	max-height: 620px;
	border-radius: var(--r-xl);
	background:
		radial-gradient(800px 400px at 80% 10%, rgba(34, 211, 238, 0.10), transparent 60%),
		linear-gradient(180deg, #FFFFFF 0%, #F5F5EE 100%);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	padding: 22px;
}

/* ===== Hero centerpiece artwork: phone + chat ===== */
.hero-art {
	position: relative;
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
	padding: 8px;
}

/* Each column wraps a label + surface */
.art-col {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
	min-width: 0;
	max-width: 260px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Top label for each surface */
.art-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	position: relative;
	z-index: 5;
	padding: 7px 12px 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(34, 211, 238, 0.25);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.012em;
	color: var(--paper);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}

.art-label-num {
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(34, 211, 238, 0.18);
	color: var(--cyan);
}

.art-label-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
	animation: pulse 1.8s ease-in-out infinite;
}

/* Soft ambient glow behind both surfaces */
.art-glow {
	position: absolute;
	inset: 8% 4%;
	background:
		radial-gradient(50% 60% at 30% 50%, rgba(34, 211, 238, 0.22), transparent 70%),
		radial-gradient(50% 60% at 70% 50%, rgba(34, 211, 238, 0.15), transparent 70%);
	filter: blur(20px);
	pointer-events: none;
	z-index: 0;
}

/* Phone (voice surface) — fills column, fixed height to match chat */
.art-phone {
	flex: 1;
	display: flex;
}

.phone-frame {
	width: 100%;
	height: 440px;
	background: linear-gradient(180deg, #18181C 0%, #0E0E12 100%);
	border-radius: 36px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow:
		0 0 0 1px rgba(34, 211, 238, 0.18),
		0 24px 60px -20px rgba(0, 0, 0, 0.8),
		0 50px 100px -40px rgba(34, 211, 238, 0.35);
	position: relative;
	overflow: hidden;
}

.phone-notch {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 20px;
	background: #000;
	border-radius: 12px;
	z-index: 2;
}

.phone-screen {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(80% 60% at 50% 0%, rgba(34, 211, 238, 0.10), transparent 70%),
		linear-gradient(180deg, #06070A 0%, #0A0B0F 100%);
	border-radius: 26px;
	padding: 38px 16px 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.phone-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan);
	font-weight: 500;
}

.phone-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.3);
	animation: pulse 1.6s ease-in-out infinite;
}

.phone-caller {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.phone-avatar-mini {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16), 0 0 24px rgba(34, 211, 238, 0.4);
}

.phone-caller-name {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--paper);
	margin-top: 10px;
}

.phone-timer {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: rgba(244, 244, 240, 0.5);
	margin-top: 2px;
}

.phone-wave {
	display: flex;
	align-items: center;
	gap: 3px;
	height: 60px;
	margin: 24px 0 auto;
	width: 100%;
	justify-content: center;
}

.phone-wave .bar {
	width: 3px;
	background: linear-gradient(to top, var(--cyan-2), var(--cyan));
	border-radius: 2px;
	animation: wave 1.2s ease-in-out infinite;
	height: var(--h, 16px);
	box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

.phone-caption {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	color: rgba(244, 244, 240, 0.55);
	text-align: center;
	padding: 8px 12px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: 12px;
}

/* Chat panel (chat surface) — fills column, fixed height to match phone */
.art-chat {
	flex: 1;
	width: 100%;
	height: 440px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 20px;
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.06) inset,
		0 0 0 1px rgba(34, 211, 238, 0.10),
		0 24px 60px -20px rgba(0, 0, 0, 0.7),
		0 50px 100px -40px rgba(34, 211, 238, 0.25);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.chat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	flex-shrink: 0;
}

.chat-head-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
	flex-shrink: 0;
}

.chat-head-left strong {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--paper);
	display: block;
	line-height: 1.2;
}

.chat-head-left span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.45);
}

.chat-head-status {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #34D399;
	flex-shrink: 0;
}

.chat-head-status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #34D399;
	box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.2);
}

.chat-stream {
	flex: 1;
	padding: 14px 14px 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	overflow: hidden;
}

.chat-msg {
	max-width: 86%;
	padding: 8px 12px;
	border-radius: 14px;
	font-size: 12.5px;
	line-height: 1.4;
	letter-spacing: -0.005em;
	opacity: 0;
	animation: msgIn .45s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes msgIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chat-msg.user {
	align-self: flex-end;
	background: rgba(255, 255, 255, 0.10);
	color: var(--paper);
	border-bottom-right-radius: 4px;
}

.chat-msg.ai {
	align-self: flex-start;
	background: rgba(34, 211, 238, 0.14);
	color: var(--paper);
	border: 1px solid rgba(34, 211, 238, 0.28);
	border-bottom-left-radius: 4px;
}

.chat-msg.typing {
	align-self: flex-start;
	background: rgba(34, 211, 238, 0.10);
	border: 1px solid rgba(34, 211, 238, 0.20);
	display: inline-flex;
	gap: 4px;
	padding: 11px 14px;
}

.chat-msg.typing span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	animation: typingDot 1.2s ease-in-out infinite;
	opacity: 0.6;
}

.chat-msg.typing span:nth-child(2) {
	animation-delay: .15s;
}

.chat-msg.typing span:nth-child(3) {
	animation-delay: .3s;
}

@keyframes typingDot {

	0%,
	100% {
		transform: translateY(0);
		opacity: 0.4;
	}

	50% {
		transform: translateY(-4px);
		opacity: 1;
	}
}

.chat-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	margin: 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(244, 244, 240, 0.4);
	font-size: 12px;
	flex-shrink: 0;
}

.chat-input svg {
	color: var(--cyan);
}

/* Responsive */
@media (max-width: 1100px) {
	.art-col {
		max-width: 240px;
	}

	.phone-frame,
	.art-chat {
		height: 420px;
	}
}

@media (max-width: 980px) {
	.art-col {
		max-width: 220px;
	}

	.phone-frame,
	.art-chat {
		height: 400px;
	}
}

@media (max-width: 720px) {
	.hero-art {
		gap: 12px;
	}

	.art-col {
		max-width: none;
	}

	.phone-frame,
	.art-chat {
		height: 380px;
	}

	.phone-screen {
		padding: 32px 12px 16px;
	}
}

.dash-window {
	width: 100%;
	background: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.6) inset,
		0 30px 60px -30px rgba(10, 10, 11, 0.18),
		0 60px 120px -40px rgba(34, 211, 238, 0.18);
	overflow: hidden;
	position: relative;
}

.dash-chrome {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	background: linear-gradient(180deg, #FCFCFA, #F5F5EE);
	border-bottom: 1px solid var(--line);
}

.chrome-dots {
	display: flex;
	gap: 6px;
}

.chrome-dots span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #E2E2DC;
	border: 1px solid rgba(10, 10, 11, 0.06);
}

.chrome-dots span:nth-child(1) {
	background: #FF5F57;
	border-color: #E24037;
}

.chrome-dots span:nth-child(2) {
	background: #FEBC2E;
	border-color: #DEA122;
}

.chrome-dots span:nth-child(3) {
	background: #28C840;
	border-color: #1AAB29;
}

.chrome-url {
	flex: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--mute);
	background: white;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 6px 14px;
	max-width: 320px;
	margin: 0 auto;
}

.chrome-url svg {
	color: var(--cyan-2);
}

.chrome-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.10);
	border: 1px solid rgba(34, 197, 94, 0.22);
	color: #16A34A;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.chrome-pill .status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #16A34A;
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
	animation: pulse 1.8s ease-in-out infinite;
}

.dash-body {
	display: grid;
	grid-template-columns: 200px 1fr;
	min-height: 460px;
}

@media (max-width: 1180px) {
	.dash-body {
		grid-template-columns: 180px 1fr;
	}
}

@media (max-width: 1040px) {
	.dash-body {
		grid-template-columns: 1fr;
	}

	.dash-side {
		display: none;
	}
}

/* Sidebar */
.dash-side {
	background: #FAFAF7;
	border-right: 1px solid var(--line);
	padding: 14px 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dash-side-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 10px 12px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
}

.dash-side-head .count {
	background: var(--ink);
	color: var(--paper);
	padding: 2px 7px;
	border-radius: 999px;
	letter-spacing: 0;
	font-size: 10px;
}

.dash-convo {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: background .15s ease;
	position: relative;
}

.dash-convo:hover {
	background: rgba(10, 10, 11, 0.03);
}

.dash-convo.active {
	background: white;
	box-shadow: 0 0 0 1px var(--line), 0 4px 12px -4px rgba(10, 10, 11, 0.08);
}

.convo-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	flex-shrink: 0;
}

.convo-avatar.c2 {
	background: linear-gradient(135deg, #FCA5A5, #EF4444);
	color: white;
}

.convo-avatar.c3 {
	background: linear-gradient(135deg, #C4B5FD, #7C3AED);
	color: white;
}

.convo-avatar.c4 {
	background: linear-gradient(135deg, #6B7280, #1F2937);
	color: white;
}

.convo-avatar.big {
	width: 38px;
	height: 38px;
	font-size: 12px;
}

.convo-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.convo-info strong {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: -0.01em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.convo-info span {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--mute);
	letter-spacing: 0.02em;
}

.lang-pill {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.06em;
	padding: 1px 5px;
	border-radius: 3px;
	background: var(--paper-2);
	color: var(--ink-2);
	font-weight: 500;
}

.convo-wave {
	display: flex;
	gap: 2px;
	align-items: center;
	height: 14px;
}

.convo-wave span {
	width: 2px;
	background: var(--cyan-2);
	border-radius: 1px;
	animation: wave 1.2s ease-in-out infinite;
}

.convo-wave span:nth-child(1) {
	height: 6px;
}

.convo-wave span:nth-child(2) {
	height: 10px;
	animation-delay: .12s;
}

.convo-wave span:nth-child(3) {
	height: 14px;
	animation-delay: .24s;
}

.convo-wave span:nth-child(4) {
	height: 8px;
	animation-delay: .36s;
}

.convo-status {
	font-family: var(--font-mono);
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--cyan-soft);
	color: var(--cyan-2);
	letter-spacing: 0.06em;
}

.convo-status.done {
	background: rgba(34, 197, 94, 0.12);
	color: #16A34A;
}

.convo-status.queue {
	background: var(--paper-2);
	color: var(--mute);
}

/* Main panel */
.dash-main {
	padding: 18px 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.dash-main-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.dmh-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dmh-left strong {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	display: block;
}

.dmh-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--mute);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
}

.dmh-actions {
	display: flex;
	gap: 6px;
}

.dmh-act {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-size: 11px;
	color: var(--ink);
	transition: background .15s ease;
}

.dmh-act:hover {
	background: white;
}

.dmh-act.primary {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
}

/* Wave strip */
.dash-wave-strip {
	background: linear-gradient(180deg, rgba(34, 211, 238, 0.04), rgba(34, 211, 238, 0.0));
	border-radius: 10px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border: 1px solid var(--cyan-hairline);
}

.wave-row {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 1;
	height: 28px;
}

.wave-row .bar {
	width: 2px;
	height: var(--h, 12px);
	background: linear-gradient(to top, var(--cyan-2), var(--cyan));
	border-radius: 1px;
	animation: wave 1.4s ease-in-out infinite;
}

.wave-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--cyan-2);
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.wave-meta .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 3px var(--cyan-soft);
	animation: pulse 1.6s ease-in-out infinite;
}

/* Transcript */
.dash-transcript {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	min-height: 0;
}

.dt-line {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 12px;
	align-items: flex-start;
}

.dt-role {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.05em;
	color: var(--mute);
	text-transform: uppercase;
	padding-top: 1px;
}

.dt-text {
	font-size: 13px;
	line-height: 1.45;
	letter-spacing: -0.008em;
	color: var(--ink);
}

.dt-trans {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--mute);
	margin-top: 3px;
	letter-spacing: -0.005em;
	font-style: italic;
}

.dt-line.ai .dt-text {
	color: var(--ink-2);
}

.dt-line.ai .dt-role .lang-pill {
	background: var(--cyan-soft);
	color: var(--cyan-2);
}

.dt-line.live .dt-text {
	position: relative;
}

.dt-typing {
	display: inline-block;
	width: 7px;
	height: 14px;
	background: var(--cyan-2);
	vertical-align: text-bottom;
	animation: caret 0.9s steps(2) infinite;
}

@keyframes caret {

	0%,
	49% {
		opacity: 1;
	}

	50%,
	100% {
		opacity: 0;
	}
}

/* Tool calls */
.dash-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
}

.dash-tool {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	border-radius: 8px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-size: 12px;
	letter-spacing: -0.005em;
}

.dash-tool svg {
	color: var(--cyan-2);
}

.dash-tool .tool-status {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 1px 6px;
	border-radius: 3px;
	background: var(--paper-2);
	color: var(--mute);
}

.dash-tool.done {
	background: rgba(34, 197, 94, 0.08);
	border-color: rgba(34, 197, 94, 0.22);
	color: #16A34A;
}

.dash-tool.done svg {
	color: #16A34A;
}

/* Floating stat */
.dash-stat-float {
	position: absolute;
	right: -28px;
	bottom: -24px;
	background: var(--ink);
	color: var(--paper);
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 24px 48px -20px rgba(10, 10, 11, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	z-index: 2;
}

.dash-stat-float .stat-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.stat-glow {
	font-family: var(--font-sans);
	font-size: 28px;
	font-weight: 480;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--cyan);
	text-shadow: 0 0 24px rgba(34, 211, 238, 0.5);
	text-transform: none;
}

.stat-num {
	font-family: var(--font-sans);
	font-size: 22px;
	font-weight: 480;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--paper);
	text-transform: none;
}

.stat-tag {
	color: rgba(244, 244, 240, 0.55);
}

.hero-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(10, 10, 11, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 10, 11, 0.035) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	pointer-events: none;
}

/* Two stacked panes inside hero-stage */
.stage-pane {
	position: absolute;
	background: white;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	box-shadow: 0 18px 36px -12px rgba(10, 10, 11, 0.12), 0 2px 0 rgba(10, 10, 11, 0.02);
	padding: 18px;
}

.pane-voice {
	top: 22px;
	left: 22px;
	right: 22px;
	height: 46%;
	transform: rotate(-1.2deg);
}

.pane-chat {
	bottom: 22px;
	left: 22px;
	right: 22px;
	height: 46%;
	transform: rotate(1deg);
}

.pane-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.pane-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
}

.pane-title .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 4px var(--cyan-soft);
	animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 0 0 4px var(--cyan-soft);
	}

	50% {
		box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
	}
}

.pane-status {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--cyan-2);
	background: var(--cyan-soft);
	padding: 3px 8px;
	border-radius: 999px;
}

/* Voice wave */
.voice-wave {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 56px;
	margin: 4px 0 8px;
}

.voice-wave .bar {
	width: 3px;
	height: var(--h, 24px);
	border-radius: 2px;
	background: linear-gradient(to top, var(--cyan), var(--ink));
	animation: wave 1.4s ease-in-out infinite;
}

@keyframes wave {

	0%,
	100% {
		transform: scaleY(0.35);
		opacity: 0.55;
	}

	50% {
		transform: scaleY(1);
		opacity: 1;
	}
}

.voice-transcript {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: -0.008em;
}

.t-line {
	display: flex;
	gap: 8px;
	align-items: baseline;
}

.t-role {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--paper-2);
	flex-shrink: 0;
}

.t-line.ai .t-role {
	background: var(--cyan-soft);
	color: var(--cyan-2);
}

.t-text {
	color: var(--ink-2);
}

/* Chat */
.chat-bubbles {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 200px;
	overflow: hidden;
}

.bub {
	max-width: 78%;
	padding: 8px 12px;
	border-radius: 14px;
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: -0.008em;
}

.bub.user {
	align-self: flex-end;
	background: var(--ink);
	color: var(--paper);
	border-bottom-right-radius: 4px;
}

.bub.ai {
	background: var(--paper-2);
	color: var(--ink);
	border-bottom-left-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.bub.ai .lang-tag {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.1em;
	padding: 2px 5px;
	border-radius: 3px;
	background: white;
	color: var(--cyan-2);
	border: 1px solid var(--cyan-hairline);
}

.typing {
	display: inline-flex;
	gap: 3px;
	padding: 2px 4px;
}

.typing span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--mute-2);
	animation: blink 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) {
	animation-delay: 0.2s;
}

.typing span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes blink {

	0%,
	100% {
		opacity: 0.3;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-2px);
	}
}

/* ============================================
   MARQUEE / LOGO STRIP
   ============================================ */
.trust {
	padding: 56px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(800px 200px at 50% 50%, rgba(34, 211, 238, 0.04), transparent 70%),
		var(--paper);
	position: relative;
	overflow: hidden;
}

.trust-label {
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mute);
	text-align: center;
	margin-bottom: 36px;
}

/* Social proof badge cards below logos */
.trust-proof {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 48px;
	padding-top: 44px;
	border-top: 1px solid var(--line);
}

.tp-badge-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 22px 20px;
	background: white;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 10px 28px -16px rgba(10, 10, 11, 0.14);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	flex: 1 1 0;
	max-width: 240px;
}

.tp-badge-card:hover {
	transform: translateY(-3px);
	border-color: var(--cyan-hairline);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 16px 36px -16px rgba(34, 211, 238, 0.28);
}

.tp-badge-num {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--ink);
	font-family: var(--font-sans);
}

.tp-badge-card:nth-child(2) .tp-badge-num {
	color: var(--cyan-2);
}

.tp-badge-card:nth-child(3) .tp-badge-num {
	color: var(--cyan-2);
}

.tp-badge-card:nth-child(4) .tp-badge-num {
	color: var(--cyan-2);
}

.tp-badge-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-2);
	letter-spacing: -0.01em;
	text-align: center;
	text-transform: capitalize;
	white-space: nowrap;
}

.tp-badge-rating {
	background: linear-gradient(180deg, #FFFFFF, #FFFCF2);
	border-color: rgba(251, 191, 36, 0.3);
}

.tp-badge-rating:hover {
	border-color: rgba(251, 191, 36, 0.5);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 16px 36px -16px rgba(251, 191, 36, 0.3);
}

.tp-stars {
	display: inline-flex;
	gap: 4px;
}

.tp-stars svg {
	width: 22px;
	height: 22px;
	color: #FBBF24;
}

@media (max-width: 760px) {
	.trust-proof {
		gap: 10px;
	}

	.tp-badge-card {
		max-width: none;
		flex: 1 1 140px;
		padding: 18px 14px;
	}

	.tp-badge-num {
		font-size: 28px;
	}

	.tp-badge-label {
		font-size: 14px;
	}
}

.marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
	display: flex;
	gap: 64px;
	align-items: center;
	animation: marquee 38s linear infinite;
	width: max-content;
}

.marquee-reverse .marquee-track {
	animation: marquee 38s linear infinite reverse;
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* Client logo placeholders */
.marquee-logo {
	flex-shrink: 0;
	width: 160px;
	height: 60px;
	opacity: 0.62;
	filter: grayscale(1);
	transition: opacity .25s ease, filter .25s ease;
}

.marquee-logo:hover {
	opacity: 1;
	filter: grayscale(0);
}

.marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 500;
	color: var(--ink);
	opacity: 0.75;
	letter-spacing: -0.02em;
	font-family: var(--font-sans);
	transition: opacity .2s ease;
	white-space: nowrap;
}

.marquee-item:hover {
	opacity: 1;
}

.marquee-item svg {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.marquee-item img {
	width: 24px;
	height: 24px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
	position: relative;
}

.section-pad {
	padding: 120px 0;
}

.section-pad-sm {
	padding: 80px 0;
}

.section-head {
	margin-bottom: 64px;
	max-width: 720px;
}

.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-head .eyebrow {
	margin-bottom: 18px;
}

.section-head h2+p {
	margin-top: 22px;
	color: var(--mute);
}

/* ============================================
   DARK SECTIONS
   ============================================ */
.dark {
	background: var(--ink);
	color: var(--paper);
}

.dark .lede,
.dark .section-head p,
.dark p.subtle {
	color: rgba(244, 244, 240, 0.65);
}

.dark .eyebrow {
	color: var(--cyan);
}

.dark .eyebrow::before {
	background: var(--cyan);
}

/* ============================================
   PLATFORM SPLIT (Voice + Chat)
   ============================================ */
.platform {
	padding: 120px 0;
	background:
		radial-gradient(1000px 600px at 50% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
		var(--ink);
	color: var(--paper);
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
	position: relative;
	overflow: hidden;
}

.platform::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
	pointer-events: none;
}

.platform .container {
	position: relative;
}

.platform-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 56px;
}

.platform-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid var(--line-dark-2);
	border-radius: var(--r-xl);
	padding: 36px;
	position: relative;
	overflow: hidden;
	transition: border-color .3s ease, transform .3s ease;
}

.platform-card:hover {
	border-color: var(--cyan-hairline);
	transform: translateY(-2px);
}

.platform-card .num {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--cyan);
	margin-bottom: 16px;
}

.platform-card h3 {
	font-size: 32px;
	margin-bottom: 14px;
	letter-spacing: -0.03em;
}

.platform-card h3 .accent {
	color: var(--cyan);
}

.platform-card .desc {
	color: rgba(244, 244, 240, 0.65);
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 28px;
	max-width: 44ch;
}

.platform-card .feats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.platform-card .feats li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	list-style: none;
	color: rgba(244, 244, 240, 0.85);
}

.platform-card .feats li svg {
	width: 14px;
	height: 14px;
	color: var(--cyan);
	flex-shrink: 0;
}

.platform-card .feats {
	padding: 0;
	margin-top: 0;
}

/* Visualization area */
.pcard-viz {
	margin-top: 32px;
	height: 180px;
	border-radius: var(--r-md);
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--line-dark);
	position: relative;
	overflow: hidden;
}

/* Voice card viz */
.viz-voice {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.viz-voice .wave-big {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 100%;
}

.viz-voice .wave-big .bar {
	width: 4px;
	height: var(--h, 40px);
	background: linear-gradient(to top, var(--cyan-2), var(--cyan));
	border-radius: 2px;
	animation: wave 1.4s ease-in-out infinite;
}

.viz-voice .phone-bubble {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.14);
	border: 1px solid var(--cyan-hairline);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
}

.viz-voice .phone-bubble .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	animation: pulse 1.6s ease-in-out infinite;
}

.viz-voice .duration {
	position: absolute;
	bottom: 18px;
	right: 18px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: rgba(244, 244, 240, 0.6);
}

/* Chat card viz */
.viz-chat {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
}

.viz-chat .b {
	font-size: 12px;
	padding: 8px 12px;
	border-radius: 12px;
	max-width: 80%;
	letter-spacing: -0.008em;
}

.viz-chat .b.u {
	align-self: flex-end;
	background: rgba(255, 255, 255, 0.06);
	color: var(--paper);
	border-bottom-right-radius: 4px;
}

.viz-chat .b.a {
	align-self: flex-start;
	background: rgba(34, 211, 238, 0.12);
	color: var(--cyan);
	border: 1px solid var(--cyan-hairline);
	border-bottom-left-radius: 4px;
}

.viz-chat .lang-flip {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.5);
}

.viz-chat .lang-flip span {
	padding: 2px 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   CAPABILITIES TABS
   ============================================ */
.capabilities {
	padding: 130px 0;
	background: var(--paper);
	position: relative;
	overflow: hidden;
}

.capabilities::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.capabilities .container {
	position: relative;
	z-index: 1;
}

.capabilities .section-head h2 .accent-cy {
	color: var(--cyan-2);
}

.cap-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	margin-top: 64px;
}

.cap-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-left: none;
	position: relative;
}

.cap-list::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}

.cap-item {
	position: relative;
	padding: 14px 18px 14px 22px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 450;
	color: var(--mute);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
	letter-spacing: -0.01em;
	border: 1px solid transparent;
}

.cap-item::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
	border-radius: 2px;
	transition: height .3s ease;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.cap-item .cap-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(10, 10, 11, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
	color: var(--mute);
}

.cap-item .cap-icon svg {
	width: 15px;
	height: 15px;
}

.cap-item .num {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--mute-2);
	letter-spacing: 0.06em;
	flex-shrink: 0;
	margin-left: auto;
	padding: 3px 7px;
	border-radius: 4px;
	background: rgba(10, 10, 11, 0.04);
	transition: background .2s ease, color .2s ease;
}

.cap-item:hover {
	color: var(--ink);
	background: rgba(255, 255, 255, 0.6);
	transform: translateX(2px);
}

.cap-item:hover .cap-icon {
	background: var(--paper-2);
	color: var(--ink);
}

.cap-item.active {
	color: var(--ink);
	background: white;
	border-color: var(--line-2);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 8px 24px -12px rgba(10, 10, 11, 0.12);
	transform: translateX(0);
	font-weight: 500;
}

.cap-item.active::before {
	height: 60%;
}

.cap-item.active .cap-icon {
	background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
	color: var(--ink);
	box-shadow: 0 4px 12px -4px rgba(34, 211, 238, 0.5);
}

.cap-item.active .num {
	background: var(--cyan-soft);
	color: var(--cyan-2);
}

.cap-stage {
	background: #FFFFFF;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: 40px;
	min-height: 480px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 1px 2px rgba(10, 10, 11, 0.04),
		0 24px 48px -24px rgba(10, 10, 11, 0.14);
}

@keyframes orbDrift {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-40px, 40px) scale(1.15);
	}
}

.cap-stage::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
	opacity: 0.9;
	pointer-events: none;
}

.cap-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(10, 10, 11, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 10, 11, 0.022) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 80%);
	pointer-events: none;
}

.cap-panel {
	display: none;
	position: relative;
	height: 100%;
}

.cap-panel.active {
	display: block;
	animation: fadeUp .4s ease;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cap-panel .panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.cap-panel h3 {
	font-size: 28px;
	letter-spacing: -0.03em;
	max-width: 18ch;
}

.cap-panel .panel-meta {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cap-panel .panel-body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cap-panel p.desc {
	color: var(--mute);
	font-size: 15px;
	line-height: 1.55;
	max-width: 58ch;
}

/* Language translation visual */
.viz-lang {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 18px;
	align-items: center;
	margin-top: 16px;
}

.lang-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lang-card-row {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 12px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	box-shadow: 0 1px 0 rgba(10, 10, 11, 0.02);
}

.lang-card-row .flag {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.05em;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--paper-2);
	color: var(--ink);
	flex-shrink: 0;
}

.lang-arrow {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cyan-soft);
	border: 1px solid var(--cyan-hairline);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan-2);
}

/* Flag wall */
.flag-wall {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.flag-wall-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: 12px;
}

.flag-marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.flag-marquee-track {
	display: flex;
	gap: 8px;
	width: max-content;
	animation: marquee 60s linear infinite;
}

.flag-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 999px;
	background: white;
	border: 1px solid var(--line);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--ink);
	font-weight: 500;
	white-space: nowrap;
	transition: border-color .15s ease, transform .15s ease;
}

.flag-chip:hover {
	border-color: var(--cyan-hairline);
	transform: translateY(-1px);
}

/* Handoff visual */
.viz-handoff {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

.handoff-chat {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.handoff-line {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.handoff-line.right {
	justify-content: flex-end;
}

.handoff-line .bubble {
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 12px;
	max-width: 70%;
}

.handoff-line.right .bubble {
	background: var(--ink);
	color: var(--paper);
	border-bottom-right-radius: 4px;
}

.handoff-line.left .bubble {
	background: var(--paper-2);
	color: var(--ink);
	border-bottom-left-radius: 4px;
}

.handoff-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan-2);
	margin: 4px 0;
}

.handoff-divider::before,
.handoff-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--cyan-hairline);
}

.handoff-line.agent .bubble {
	background: white;
	border: 1px solid var(--cyan-hairline);
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 8px;
}

.handoff-line.agent .avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
}

.handoff-toast {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--ink);
	color: var(--paper);
	padding: 14px 18px;
	border-radius: var(--r-md);
	box-shadow: 0 24px 48px -16px rgba(10, 10, 11, 0.4);
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 240px;
	animation: toastIn 1.5s ease-in-out infinite alternate;
}

@keyframes toastIn {
	from {
		transform: translate(0, -50%);
	}

	to {
		transform: translate(-4px, -50%);
	}
}

.handoff-toast .toast-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}

.handoff-toast .toast-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.handoff-toast .toast-text strong {
	font-size: 13px;
}

.handoff-toast .toast-text span {
	font-family: var(--font-mono);
	font-size: 10px;
	color: rgba(244, 244, 240, 0.55);
}

.handoff-toast .btn-mini {
	margin-left: auto;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--cyan);
	color: var(--ink);
	font-size: 11px;
	font-weight: 600;
}

/* Knowledge visual */
.viz-know {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	margin-top: 16px;
	align-items: center;
}

.know-files {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.know-file {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 10px 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-family: var(--font-mono);
	color: var(--ink-2);
}

.know-file svg {
	width: 14px;
	height: 14px;
	color: var(--mute);
}

.know-prism {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.4), rgba(34, 211, 238, 0) 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.know-prism::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid var(--cyan-hairline);
	animation: ringExpand 2.4s ease-out infinite;
}

@keyframes ringExpand {
	0% {
		transform: scale(0.5);
		opacity: 1;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.know-prism .core {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.2);
}

.know-prism .core svg {
	width: 16px;
	height: 16px;
	color: var(--ink);
}

.know-nodes {
	position: relative;
	width: 100%;
	height: 200px;
}

.know-nodes svg {
	width: 100%;
	height: 100%;
}

.know-nodes .node {
	fill: var(--cyan);
	stroke: white;
	stroke-width: 2;
}

.know-nodes .edge {
	stroke: var(--cyan-hairline);
	stroke-width: 1.2;
	fill: none;
}

/* ===== Integrations grid (capability panel 05) ===== */
.viz-integrations {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.integ-trigger {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	border-radius: 12px;
	background: white;
	border: 1px solid var(--cyan-hairline);
	box-shadow: 0 0 0 4px var(--cyan-soft), 0 8px 24px -12px rgba(34, 211, 238, 0.3);
	position: relative;
}

.integ-trigger-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25), 0 0 12px rgba(34, 211, 238, 0.6);
	animation: pulse 1.6s ease-in-out infinite;
	flex-shrink: 0;
}

.integ-trigger-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.integ-trigger-info strong {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.005em;
}

.integ-trigger-info span {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--mute);
	letter-spacing: 0;
}

.integ-trigger-tag {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan-2);
	background: var(--cyan-soft);
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 500;
}

.integ-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan-2);
	margin: -4px 0;
	animation: arrowDown 1.6s ease-in-out infinite;
}

@keyframes arrowDown {

	0%,
	100% {
		transform: translateY(0);
		opacity: 0.7;
	}

	50% {
		transform: translateY(3px);
		opacity: 1;
	}
}

.integ-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.integ-tile {
	background: white;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	position: relative;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
	min-height: 96px;
}

.integ-tile:hover {
	border-color: var(--cyan-hairline);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px -4px rgba(10, 10, 11, 0.06);
}

.integ-logo {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.integ-logo svg {
	width: 24px;
	height: 24px;
}

.integ-tile strong {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.integ-tile .integ-action {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--mute);
	letter-spacing: -0.005em;
	line-height: 1.3;
}

.integ-tile.active {
	border-color: var(--cyan-hairline);
	background: linear-gradient(180deg, white, rgba(34, 211, 238, 0.04));
	box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15), 0 8px 24px -12px rgba(34, 211, 238, 0.25);
}

.integ-tile.active .integ-action {
	color: var(--cyan-2);
	font-weight: 500;
}

.integ-status {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	background: rgba(34, 197, 94, 0.14);
	color: #16A34A;
	border: 1px solid rgba(34, 197, 94, 0.28);
}

.integ-status.pending {
	background: var(--cyan-soft);
	color: var(--cyan-2);
	border-color: var(--cyan-hairline);
	font-size: 14px;
	line-height: 1;
	animation: pulse 1.5s ease-in-out infinite;
}

.integ-tile.more {
	background: rgba(10, 10, 11, 0.02);
	border-style: dashed;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.integ-tile.more:hover {
	background: var(--paper-2);
	border-style: solid;
}

.integ-more-num {
	font-size: 22px;
	font-weight: 500;
	color: var(--cyan-2);
	letter-spacing: -0.03em;
	line-height: 1;
}

.integ-tile.more strong {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
}

.integ-tile.more .integ-action {
	display: none;
}

@media (max-width: 720px) {
	.integ-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.integ-tile {
		min-height: 80px;
		padding: 12px 10px;
	}
}

/* Webhook / actions */
.viz-hooks {
	position: relative;
	margin-top: 16px;
	height: 280px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.viz-hooks .hook-source {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.viz-hooks .hook-targets {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hook-row {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 12px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.hook-row .icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hook-row .icon svg {
	width: 14px;
	height: 14px;
}

.hook-row.crm .icon {
	background: rgba(255, 122, 89, 0.12);
	color: #FF7A59;
}

.hook-row.api .icon {
	background: var(--cyan-soft);
	color: var(--cyan-2);
}

.hook-row.email .icon {
	background: rgba(34, 197, 94, 0.12);
	color: #22C55E;
}

.hook-row.sms .icon {
	background: rgba(168, 85, 247, 0.12);
	color: #A855F7;
}

.hook-row .tag {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
}

.hook-edge {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hook-edge path {
	stroke: var(--cyan-hairline);
	stroke-width: 1.5;
	fill: none;
	stroke-dasharray: 4 4;
	animation: dash 1.6s linear infinite;
}

@keyframes dash {
	to {
		stroke-dashoffset: -16;
	}
}

/* Tickets */
.viz-tickets {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

.kan-col {
	background: rgba(10, 10, 11, 0.02);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 12px;
}

.kan-col h5 {
	margin: 0 0 12px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kan-col h5 .count {
	background: var(--paper-2);
	padding: 2px 7px;
	border-radius: 999px;
	color: var(--ink-2);
}

.kan-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 10px 12px;
	margin-bottom: 8px;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.kan-card .kc-id {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	color: var(--mute-2);
}

.kan-card.new {
	border-color: var(--cyan-hairline);
	box-shadow: 0 0 0 3px var(--cyan-soft);
	animation: cardIn .6s ease;
}

@keyframes cardIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Security */
.viz-security {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.sec-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sec-card .sec-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--cyan-soft);
	color: var(--cyan-2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec-card .sec-icon svg {
	width: 16px;
	height: 16px;
}

.sec-card strong {
	font-size: 14px;
}

.sec-card span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--mute);
	text-transform: uppercase;
}

/* Branding visual */
.viz-brand {
	margin-top: 16px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.brand-frame {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 16px;
	width: 280px;
	box-shadow: var(--shadow-card);
}

.brand-frame.b2 {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink-3);
}

.brand-frame.b2 .bf-bub.a {
	background: rgba(255, 255, 255, 0.06);
	color: var(--paper);
}

.brand-frame.b2 .bf-bub.u {
	background: var(--cyan);
	color: var(--ink);
}

.brand-frame .bf-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 500;
}

.brand-frame.b2 .bf-head {
	border-color: rgba(255, 255, 255, 0.08);
}

.brand-frame .bf-logo {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: var(--cyan);
}

.brand-frame.b2 .bf-logo {
	background: var(--paper);
}

.brand-frame .bf-bub {
	font-size: 12px;
	padding: 7px 10px;
	border-radius: 10px;
	margin-bottom: 6px;
	max-width: 80%;
}

.brand-frame .bf-bub.a {
	background: var(--paper-2);
	color: var(--ink);
}

.brand-frame .bf-bub.u {
	background: var(--ink);
	color: var(--paper);
	margin-left: auto;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
	padding: 130px 0;
	background:
		radial-gradient(800px 400px at 80% 100%, rgba(34, 211, 238, 0.06), transparent 60%),
		var(--paper);
	border-top: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}

.how::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--cyan-hairline), transparent);
}

/* Progress rail above the steps */
.how-progress {
	position: relative;
	height: 4px;
	max-width: 920px;
	margin: 56px auto 24px;
	overflow: hidden;
	border-radius: 999px;
}

.how-progress-track {
	position: absolute;
	inset: 0;
	background: var(--paper-3);
	border-radius: 999px;
}

.how-progress-fill {
	position: absolute;
	inset: 0;
	width: 100%;
	background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
	border-radius: 999px;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
	transform: scaleX(0);
	transform-origin: left;
	animation: progressFill 3s cubic-bezier(.4, .0, .2, 1) forwards;
	animation-delay: .5s;
}

@keyframes progressFill {
	to {
		transform: scaleX(1);
	}
}

.how-progress-pulse {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	border-radius: 999px;
	animation: progressShimmer 2.4s linear infinite;
	animation-delay: 3.5s;
}

@keyframes progressShimmer {
	0% {
		left: -60px;
	}

	100% {
		left: 100%;
	}
}

.how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	margin-top: 32px;
}

/* Each step is a substantial card now */
.how-card {
	position: relative;
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, border-color .3s ease;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 12px -4px rgba(10, 10, 11, 0.04);
}

.how-card:hover {
	transform: translateY(-4px);
	border-color: var(--cyan-hairline);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 0 0 1px rgba(34, 211, 238, 0.12),
		0 24px 48px -16px rgba(34, 211, 238, 0.18),
		0 12px 24px -8px rgba(10, 10, 11, 0.08);
}

.how-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.how-step-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ink);
	color: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 14px;
	letter-spacing: -0.01em;
	font-weight: 500;
	position: relative;
	box-shadow: 0 4px 12px -2px rgba(10, 10, 11, 0.3);
}

.how-step-num.active {
	background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
	color: var(--ink);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 6px 16px -2px rgba(34, 211, 238, 0.45);
}

.how-step-num .step-tick {
	position: absolute;
	top: -3px;
	right: -3px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cyan);
	border: 2px solid white;
	box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
	animation: stepTickPulse 2s ease-in-out infinite;
}

.how-step-num.active .step-tick {
	background: #22C55E;
	animation: none;
}

@keyframes stepTickPulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(34, 211, 238, 0);
	}
}

.how-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cyan-2);
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--cyan-soft);
	border: 1px solid var(--cyan-hairline);
}

/* Visualization area inside each step */
.how-viz {
	background: linear-gradient(180deg, var(--paper-2), var(--paper));
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 14px;
	min-height: 160px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

/* === Step 1: Connect viz === */
/* === Step 1: Start free viz === */
.how-viz-start {
	justify-content: center;
	gap: 12px;
}

.start-field {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 11px 13px;
	border-radius: 10px;
	background: white;
	border: 1px solid var(--line);
	font-size: 13px;
	color: var(--ink);
	box-shadow: 0 1px 2px rgba(10, 10, 11, 0.03);
}

.start-field svg {
	color: var(--cyan-2);
	flex-shrink: 0;
}

.start-typed {
	flex: 1;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.start-caret {
	width: 2px;
	height: 15px;
	background: var(--cyan-2);
	animation: caret 0.9s steps(2) infinite;
}

.start-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 16px;
	border-radius: 10px;
	background: var(--ink);
	color: var(--paper);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
	width: 100%;
	box-shadow: 0 6px 16px -6px rgba(10, 10, 11, 0.4);
	position: relative;
	overflow: hidden;
}

.start-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
	0% {
		left: -60%;
	}

	60% {
		left: 130%;
	}

	100% {
		left: 130%;
	}
}

.start-note {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.02em;
	color: var(--cyan-2);
	align-self: center;
}

.start-note svg {
	color: var(--cyan-2);
}

/* === Step 2: Set up viz === */
.how-viz-setup {
	gap: 10px;
}

.setup-channels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.setup-channel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 9px 10px;
	border-radius: 9px;
	background: white;
	border: 1px solid var(--cyan-hairline);
	font-size: 12px;
	font-weight: 500;
	color: var(--ink);
	position: relative;
}

.setup-channel svg {
	color: var(--cyan-2);
}

.setup-channel.active {
	background: linear-gradient(180deg, white, rgba(34, 211, 238, 0.05));
	box-shadow: 0 0 0 1px var(--cyan-hairline), 0 4px 12px -6px rgba(34, 211, 238, 0.3);
}

.setup-channel.active::after {
	content: "✓";
	position: absolute;
	top: -6px;
	right: -6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--ink);
	font-size: 9px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
}

.setup-learn {
	background: white;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.setup-learn-head {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--line);
}

.setup-learn-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 3px var(--cyan-soft);
	animation: pulse 1.6s ease-in-out infinite;
}

.setup-source {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-2);
	letter-spacing: -0.005em;
}

.setup-source svg {
	color: #22C55E;
	flex-shrink: 0;
}

.setup-source.active {
	color: var(--cyan-2);
}

.setup-mini-spin {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1.5px solid var(--cyan-soft);
	border-top-color: var(--cyan-2);
	animation: spin 0.8s linear infinite;
	flex-shrink: 0;
}

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

/* === Step 3: Go live viz === */
.go-code {
	background: #0A0A0E;
	color: #E2E2E5;
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.go-code::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15));
	animation: codeScan 3s ease-in-out infinite;
}

@keyframes codeScan {
	0% {
		transform: translateX(80px);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(-200px);
		opacity: 0;
	}
}

.code-line {
	white-space: nowrap;
}

.cl-comment {
	color: #6B7280;
}

.cl-tag {
	color: #F472B6;
}

.cl-attr {
	color: var(--cyan);
}

.cl-str {
	color: #FBBF24;
}

.go-live {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(34, 197, 94, 0.10);
	border: 1px solid rgba(34, 197, 94, 0.28);
	color: #15803D;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	font-weight: 500;
	margin-top: auto;
}

.go-live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22C55E;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
	animation: pulse 1.6s ease-in-out infinite;
}

.go-live svg {
	color: #15803D;
	margin-left: auto;
}

/* Step card content */
.how-card h3 {
	font-size: 22px;
	letter-spacing: -0.025em;
	margin-top: 4px;
}

.how-card p {
	color: var(--mute);
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: -0.005em;
}

/* Closing CTA strip */
.how-foot {
	margin-top: 40px;
	padding: 22px 28px;
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	box-shadow: var(--shadow-soft);
}

.how-foot-reassure {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 24px;
}

.hfr-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 450;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.hfr-item svg {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 50%;
	background: var(--cyan-soft);
	color: var(--cyan-2);
	flex-shrink: 0;
}

.how-foot-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.how-foot-stat strong {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--ink);
	line-height: 1;
}

.how-foot-stat span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mute);
}

.how-foot-divider {
	width: 1px;
	height: 36px;
	background: var(--line);
}

.how-foot .btn {
	margin-left: auto;
}

@media (max-width: 980px) {
	.how-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.how-foot {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
		text-align: center;
	}

	.how-foot-reassure {
		justify-content: center;
	}

	.how-foot .btn {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}

	.how-foot-divider {
		display: none;
	}
}

/* ============================================
   OUTCOMES (dark band)
   ============================================ */
.outcomes {
	padding: 130px 0;
	background:
		radial-gradient(900px 500px at 20% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
		var(--ink);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}

.outcomes::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
	-webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
	pointer-events: none;
}

.outcomes .container {
	position: relative;
}

.outcomes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 56px;
	border-top: 1px solid var(--line-dark);
}

.outcome {
	padding: 36px 28px 36px 0;
	border-right: 1px solid var(--line-dark);
}

.outcome:last-child {
	border-right: none;
}

.outcome .stat {
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 480;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 12px;
	font-family: var(--font-sans);
}

.outcome.cyan .stat {
	color: var(--cyan);
}

.outcome .label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.5);
	margin-bottom: 8px;
}

.outcome .desc {
	color: rgba(244, 244, 240, 0.7);
	font-size: 14px;
	line-height: 1.5;
	max-width: 26ch;
}

/* ============================================
   TESTIMONIALS SLIDER (inside dark Outcomes band)
   ============================================ */
.testimonials {
	margin-top: 80px;
	max-width: 880px;
}

.testimonials-viewport {
	position: relative;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	transition: transform .55s cubic-bezier(.2, .8, .2, 1);
	will-change: transform;
}

.testimonial {
	flex: 0 0 100%;
	min-width: 0;
	padding-right: 24px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.testimonial .q {
	font-size: clamp(22px, 2.4vw, 32px);
	letter-spacing: -0.025em;
	line-height: 1.3;
	font-weight: 480;
	text-wrap: balance;
	color: var(--paper);
	margin: 0;
}

.testimonial .q .accent {
	color: var(--cyan);
}

.testimonial .author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.01em;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
	flex-shrink: 0;
}

.testimonial .by {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.testimonial .by strong {
	font-size: 14px;
	font-weight: 500;
	color: var(--paper);
	letter-spacing: -0.01em;
}

.testimonial .by span {
	font-family: var(--font-mono);
	font-size: 11px;
	color: rgba(244, 244, 240, 0.55);
	letter-spacing: 0.05em;
}

/* Slider controls */
.testimonials-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-pager {
	display: flex;
	gap: 8px;
	align-items: center;
}

.t-dot {
	width: 22px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	cursor: pointer;
	transition: background .25s ease, width .25s ease;
}

.t-dot:hover {
	background: rgba(255, 255, 255, 0.35);
}

.t-dot.active {
	background: var(--cyan);
	width: 32px;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}

.testimonials-arrows {
	display: flex;
	align-items: center;
	gap: 10px;
}

.t-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.t-arrow:hover {
	background: rgba(34, 211, 238, 0.12);
	border-color: rgba(34, 211, 238, 0.35);
	color: var(--cyan);
	transform: translateY(-1px);
}

.t-counter {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: rgba(244, 244, 240, 0.55);
	padding: 0 6px;
	min-width: 44px;
	text-align: center;
}

.t-counter #t-current {
	color: var(--paper);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-sec {
	padding: 130px 0;
	background: var(--paper);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 56px;
}

.price-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
	border-color: var(--line-2);
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
}

.price-card.featured {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
	box-shadow: var(--shadow-dark);
}

.price-card .tier {
	font-family: var(--font-mono);
	font-size: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: 8px;
}

.price-card.featured .tier {
	color: var(--cyan);
}

.price-card .price {
	font-size: 48px;
	font-weight: 480;
	letter-spacing: -0.035em;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.price-card .price .per {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--mute);
	letter-spacing: 0;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.price-card.featured .price .per {
	color: rgba(244, 244, 240, 0.5);
}

.price-card .pitch {
	margin-top: 12px;
	color: var(--mute);
	font-size: 14px;
	line-height: 1.5;
	min-height: 44px;
}

.price-card.featured .pitch {
	color: rgba(244, 244, 240, 0.65);
}

.price-card .btn {
	margin-top: 24px;
	justify-content: center;
}

.price-card .features {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding-left: 0;
}

.price-card.featured .features {
	border-top-color: rgba(255, 255, 255, 0.08);
}

.price-card .features li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	align-items: flex-start;
	color: var(--ink-2);
}

.price-card.featured .features li {
	color: rgba(244, 244, 240, 0.85);
}

.price-card .features li svg {
	width: 14px;
	height: 14px;
	color: var(--cyan-2);
	flex-shrink: 0;
	margin-top: 4px;
}

.price-card.featured .features li svg {
	color: var(--cyan);
}

.price-card .features li.section-break {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	padding-top: 8px;
}

.price-card.featured .features li.section-break {
	color: rgba(244, 244, 240, 0.5);
}

.featured-badge {
	position: absolute;
	top: -10px;
	right: 24px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--cyan);
	color: var(--ink);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
}

/* Credits + Premium Promise strip */
.credits-strip {
	margin-top: 56px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.credits-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: 32px;
	box-shadow: var(--shadow-soft);
}

.credits-card.promise {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
	box-shadow: var(--shadow-dark);
}

.credits-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.credits-ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--paper-2);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.credits-ico svg {
	width: 22px;
	height: 22px;
}

.credits-ico.cyan {
	background: rgba(34, 211, 238, 0.14);
	color: var(--cyan);
	border: 1px solid rgba(34, 211, 238, 0.3);
}

.credits-card h4 {
	font-size: 20px;
	letter-spacing: -0.02em;
}

.credits-card.promise h4 {
	color: var(--paper);
}

.credits-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.credits-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--mute);
	letter-spacing: -0.005em;
}

.credits-list li strong {
	color: var(--ink);
	font-weight: 600;
}

.credits-list li svg {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 50%;
	background: var(--cyan-soft);
	color: var(--cyan-2);
	flex-shrink: 0;
	margin-top: 1px;
}

.promise-lede {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(244, 244, 240, 0.7);
	letter-spacing: -0.005em;
	margin-bottom: 24px;
}

.promise-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.promise-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
	font-weight: 450;
	color: var(--paper);
	letter-spacing: -0.005em;
}

.promise-tag svg {
	color: var(--cyan);
	flex-shrink: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
	padding: 130px 0;
	background: linear-gradient(180deg, #0A0B0F 0%, #050608 100%);
	color: var(--paper);
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
	pointer-events: none;
}

.contact-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.contact-glow-a {
	top: -10%;
	left: -5%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
	animation: orbDrift 22s ease-in-out infinite alternate;
}

.contact-glow-b {
	bottom: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.14), transparent 70%);
	animation: orbDrift 26s ease-in-out infinite alternate-reverse;
}

.contact .container {
	position: relative;
	z-index: 1;
}

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

/* ===== Left pitch ===== */
.contact-pitch h2 {
	margin: 22px 0 22px;
}

.contact-perks {
	list-style: none;
	padding: 0;
	margin: 36px 0 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-perks li {
	display: flex;
	gap: 14px;
	align-items: center;
}

.cp-ico {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 8px;
	background: rgba(34, 211, 238, 0.14);
	border: 1px solid rgba(34, 211, 238, 0.3);
	color: var(--cyan);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0;
	padding: 0;
}

.cp-ico svg {
	width: 22px !important;
	height: 22px !important;
	display: block;
	stroke-width: 3 !important;
}

.contact-perks strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: var(--paper);
	letter-spacing: -0.01em;
}

.contact-perks span {
	font-size: 13px;
	color: rgba(244, 244, 240, 0.55);
	display: block;
	margin-top: 2px;
}

.contact-direct {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cd-row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--paper);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background .15s ease, border-color .15s ease;
	width: fit-content;
}

.cd-row:hover {
	background: rgba(34, 211, 238, 0.08);
	border-color: rgba(34, 211, 238, 0.3);
}

.cd-row svg {
	color: var(--cyan);
}

/* ===== Right form card ===== */
.contact-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 24px;
	padding: 40px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.06) inset,
		0 0 0 1px rgba(34, 211, 238, 0.08),
		0 32px 80px -24px rgba(0, 0, 0, 0.6),
		0 64px 120px -40px rgba(34, 211, 238, 0.2);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	opacity: 0.7;
	filter: blur(1px);
}

.contact-card-head {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-head h3 {
	font-size: 24px;
	letter-spacing: -0.025em;
	color: var(--paper);
	margin-bottom: 6px;
}

.contact-card-head p {
	font-size: 14px;
	color: rgba(244, 244, 240, 0.6);
	letter-spacing: -0.005em;
}

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

.cf-row {
	width: 100%;
}

.cf-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.cf-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.cf-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.55);
	font-weight: 500;
}

.cf-label em {
	color: var(--cyan);
	font-style: normal;
	margin-left: 2px;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
	width: 100%;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--paper);
	letter-spacing: -0.005em;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
	color: rgba(244, 244, 240, 0.3);
}

.cf-field input:hover,
.cf-field textarea:hover,
.cf-field select:hover {
	border-color: rgba(255, 255, 255, 0.16);
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
	border-color: var(--cyan);
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.cf-field textarea {
	resize: vertical;
	min-height: 100px;
	font-family: var(--font-sans);
}

.cf-select-wrap {
	position: relative;
}

.cf-select-wrap select {
	padding-right: 36px;
	cursor: pointer;
}

.cf-select-wrap select option {
	background: #14141A;
	color: var(--paper);
}

.cf-select-wrap svg {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(244, 244, 240, 0.4);
	pointer-events: none;
}

.cf-actions {
	margin-top: 8px;
}

.cf-submit {
	width: 100%;
	justify-content: center;
	font-size: 15px;
	font-weight: 500;
	height: 56px;
	letter-spacing: -0.01em;
}

.cf-submit.loading {
	pointer-events: none;
	opacity: 0.7;
}

.cf-submit.loading .cf-submit-text::after {
	content: "...";
	display: inline-block;
	animation: dots 1.4s ease-in-out infinite;
}

@keyframes dots {
	0% {
		content: "";
	}

	33% {
		content: ".";
	}

	66% {
		content: "..";
	}

	100% {
		content: "...";
	}
}

.cf-foot {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(244, 244, 240, 0.45);
	letter-spacing: -0.005em;
	margin-top: 4px;
	text-align: left;
}

.cf-foot svg {
	color: rgba(244, 244, 240, 0.4);
	flex-shrink: 0;
}

.cf-foot a {
	color: var(--cyan);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cf-foot a:hover {
	color: #4DDDEF;
}

.cf-success {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(34, 197, 94, 0.10);
	border: 1px solid rgba(34, 197, 94, 0.28);
	color: var(--paper);
	margin-top: 12px;
	animation: msgIn .4s cubic-bezier(.2, .8, .2, 1);
}

.cf-success-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #22C55E, #15803D);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.cf-success strong {
	display: block;
	font-size: 14px;
	font-weight: 500;
}

.cf-success span {
	display: block;
	font-size: 12px;
	color: rgba(244, 244, 240, 0.65);
	margin-top: 2px;
}

@media (max-width: 980px) {
	.contact {
		padding: 100px 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.contact-card {
		padding: 28px 24px;
	}

	.cf-row-2 {
		grid-template-columns: 1fr;
	}
}

.faq-sec {
	padding: 120px 0;
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.faq-grid {
	margin-top: 48px;
	border-top: 1px solid var(--line);
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

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

.faq-q {
	width: 100%;
	text-align: left;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 480;
	letter-spacing: -0.018em;
	color: var(--ink);
}

.faq-q .ico {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--paper-2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease, background .2s ease;
}

.faq-q .ico svg {
	width: 14px;
	height: 14px;
	transition: transform .2s ease;
}

.faq-item.open .faq-q .ico {
	background: var(--cyan-soft);
}

.faq-item.open .faq-q .ico svg {
	transform: rotate(45deg);
	color: var(--cyan-2);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}

.faq-a p {
	padding: 0 0 24px;
	color: var(--mute);
	font-size: 15px;
	line-height: 1.55;
	max-width: 64ch;
}

.faq-item.open .faq-a {
	max-height: 320px;
}

/* ============================================
   CTA + FOOTER
   ============================================ */
.cta {
	padding: 120px 0;
	background: var(--paper);
}

.cta-card {
	position: relative;
	background:
		radial-gradient(800px 400px at 30% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
		radial-gradient(600px 300px at 90% 100%, rgba(34, 211, 238, 0.08), transparent 60%),
		var(--ink);
	border-radius: 32px;
	padding: 96px 64px;
	text-align: center;
	color: var(--paper);
	overflow: hidden;
	border: 1px solid var(--ink-2);
}

.cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	pointer-events: none;
}

.cta-card h2 {
	font-size: clamp(40px, 5vw, 64px);
	margin-bottom: 18px;
}

.cta-card h2 .accent {
	color: var(--cyan);
}

.cta-card p {
	color: rgba(244, 244, 240, 0.7);
	max-width: 52ch;
	margin: 0 auto;
	font-size: 17px;
}

.cta-card .cta-actions {
	margin-top: 36px;
	display: flex;
	gap: 12px;
	justify-content: center;
}

.cta-card .fineprint {
	margin-top: 24px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.45);
}

.footer {
	padding: 64px 0 32px;
	background: var(--ink);
	color: var(--paper);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--line-dark);
}

.footer-brand img {
	height: 28px;
	margin-bottom: 24px;
}

.footer-brand p {
	color: rgba(244, 244, 240, 0.55);
	font-size: 14px;
	line-height: 1.5;
	max-width: 36ch;
}

.footer-col h5 {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 244, 240, 0.5);
	margin-bottom: 18px;
	font-weight: 500;
}

.footer-col a {
	display: block;
	padding: 4px 0;
	color: rgba(244, 244, 240, 0.85);
	font-size: 14px;
	transition: color .15s ease;
}

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

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 28px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.05em;
	color: rgba(244, 244, 240, 0.45);
}

.footer-bottom .socials {
	display: flex;
	gap: 6px;
}

.footer-bottom .socials a {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(244, 244, 240, 0.7);
	transition: background .15s ease, color .15s ease;
}

.footer-bottom .socials a:hover {
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
}

.footer-bottom .socials svg {
	width: 14px;
	height: 14px;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.js-ready .reveal:not(.in) {
	opacity: 0;
	transform: translateY(16px);
}

.reveal {
	transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hero-art {
		max-width: 540px;
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.platform-grid {
		grid-template-columns: 1fr;
	}

	.cap-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cap-list {
		flex-direction: row;
		overflow-x: auto;
		border-left: none;
		border-bottom: 1px solid var(--line);
		padding-bottom: 0;
	}

	.cap-list::before {
		display: none;
	}

	.cap-item {
		white-space: nowrap;
		border-radius: var(--r-md) var(--r-md) 0 0;
	}

	.cap-item::before {
		left: 50%;
		top: auto;
		bottom: -1px;
		transform: translateX(-50%);
		width: 0;
		height: 2px;
	}

	.cap-item.active::before {
		width: 60%;
		height: 2px;
	}

	.outcomes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.outcome:nth-child(2n) {
		border-right: none;
	}

	.price-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.how-foot {
		flex-wrap: wrap;
		gap: 20px;
	}

	.how-foot .btn {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}

	.how-foot-divider {
		display: none;
	}

	/* Trust strip — smaller label on mobile */
	.trust-label {
		font-size: 11px;
		margin-bottom: 28px;
	}

	/* Mobile nav */
	.nav-links {
		display: none;
	}

	.nav-signin {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}
}

@media (max-width: 720px) {
	.container {
		padding: 0 20px;
	}

	.section-pad,
	.platform,
	.capabilities,
	.how,
	.outcomes,
	.pricing-sec,
	.faq-sec,
	.cta {
		padding: 80px 0;
	}

	.hero {
		padding: 56px 0 64px;
	}

	.nav-links {
		display: none;
	}

	.outcomes-grid {
		grid-template-columns: 1fr;
	}

	.outcome {
		border-right: none;
		border-bottom: 1px solid var(--line-dark);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.credits-strip {
		grid-template-columns: 1fr;
	}

	.cta-card {
		padding: 56px 28px;
	}
}