/* =============================================================================
   Wixob Technologies — Main Stylesheet
   ============================================================================= */

/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */
:root {
	--bg:       #05050a;
	--bg-2:     #0c0c17;
	--bg-3:     #111120;
	--border:   rgba(255, 255, 255, 0.07);
	--text:     #eef2f7;
	--muted:    #7a8a9e;
	--subtle:   #333d4d;
	--purple:   #7c3aed;
	--purple-2: #a78bfa;
	--p-pale:   rgba(124, 58, 237, 0.1);
	--p-border: rgba(124, 58, 237, 0.3);
	--blue:     #2563eb;
	--blue-2:   #60a5fa;
	--green:    #10b981;
	--g-pale:   rgba(16, 185, 129, 0.1);
	--grad:     linear-gradient(135deg, #7c3aed, #2563eb);
	--grad-t:   linear-gradient(135deg, #a78bfa, #60a5fa);
	--r:        10px;
	--r-lg:     18px;
	--font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

ul {
	list-style: none;
}

button {
	cursor: pointer;
	font-family: var(--font);
	border: none;
	background: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

/* =============================================================================
   LAYOUT
   ============================================================================= */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 104px 0;
}

/* =============================================================================
   TYPOGRAPHY UTILITIES
   ============================================================================= */
.s-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--purple-2);
	margin-bottom: 12px;
}

.s-label::before {
	content: '';
	width: 14px;
	height: 1px;
	background: var(--purple-2);
}

.s-label.c {
	justify-content: center;
}

.s-label.c::before {
	display: none;
}

.s-title {
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.s-desc {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.75;
	max-width: 500px;
}

.s-head {
	margin-bottom: 56px;
}

.s-head.c {
	text-align: center;
}

.s-head.c .s-desc {
	margin: 0 auto;
}

.grad-text {
	background: var(--grad-t);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 22px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.18s ease;
	white-space: nowrap;
	cursor: pointer;
}

.btn-p {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.3), 0 4px 16px rgba(124, 58, 237, 0.25);
}

.btn-p:hover,
.btn-p:focus-visible {
	opacity: 0.9;
	transform: translateY(-1px);
	box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.5), 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-lg {
	padding: 13px 26px;
	font-size: 15px;
}

.btn-g {
	background: transparent;
	color: var(--muted);
	border: 1px solid var(--border);
}

.btn-g:hover,
.btn-g:focus-visible {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.14);
}

.btn-arr::after {
	content: '→';
	transition: transform 0.18s ease;
}

.btn-arr:hover::after,
.btn-arr:focus-visible::after {
	transform: translateX(3px);
}

/* =============================================================================
   FOCUS STYLES (Accessibility)
   ============================================================================= */
:focus-visible {
	outline: 2px solid var(--purple-2);
	outline-offset: 3px;
	border-radius: 4px;
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav.on {
	background: rgba(5, 5, 10, 0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-i {
	display: flex;
	align-items: center;
	height: 64px;
	gap: 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-shrink: 0;
}

.logo img {
	height: 32px;
	width: auto;
}

.logo-mark {
	width: 28px;
	height: 28px;
	background: var(--grad);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.logo-name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
}

.logo-name span {
	font-weight: 400;
	color: var(--muted);
}

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

.nav-links a,
.nav-links li a {
	padding: 6px 13px;
	border-radius: 6px;
	font-size: 14px;
	color: var(--muted);
	transition: all 0.18s ease;
}

.nav-links a:hover,
.nav-links li a:hover,
.nav-links a:focus-visible,
.nav-links li a:focus-visible {
	color: var(--text);
	background: rgba(255, 255, 255, 0.04);
}

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

.nav-cta {
	padding: 8px 18px;
	background: var(--grad);
	color: #fff;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
	transition: all 0.18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
	opacity: 0.9;
	transform: translateY(-1px);
}

.nav-mb {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
	background: none;
	border: none;
}

.nav-mb span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--muted);
	border-radius: 2px;
	transition: all 0.2s ease;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	background: rgba(5, 5, 10, 0.98);
	border-top: 1px solid var(--border);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.mobile-menu.open {
	display: block;
}

.mobile-menu-links {
	padding: 16px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-links li a {
	display: block;
	padding: 10px 0;
	font-size: 16px;
	color: var(--muted);
	transition: color 0.18s ease;
}

.mobile-menu-links li a:hover {
	color: var(--text);
}

.mobile-cta {
	display: inline-flex !important;
	margin-top: 8px;
	padding: 11px 22px !important;
	background: var(--grad);
	color: #fff !important;
	border-radius: 8px;
	font-weight: 600;
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 128px 0 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.g1 {
	position: absolute;
	width: 900px;
	height: 900px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.13) 0%, transparent 70%);
	top: -200px;
	right: -120px;
	animation: gpulse 7s ease-in-out infinite;
}

.g2 {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
	bottom: -100px;
	left: 10%;
	animation: gpulse 9s ease-in-out infinite reverse;
}

.grid-bg {
	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: 60px 60px;
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
	mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 13px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 500;
	color: var(--purple-2);
	margin-bottom: 24px;
}

.hero-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--purple-2);
	animation: blink 2s ease-in-out infinite;
}

.hero-title {
	font-size: clamp(44px, 5.8vw, 76px);
	font-weight: 800;
	line-height: 1.0;
	letter-spacing: -0.04em;
	margin-bottom: 20px;
}

.hero-title .t1 {
	display: block;
	color: var(--text);
}

.hero-title .t2 {
	display: block;
	background: var(--grad-t);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 17px;
	color: var(--muted);
	line-height: 1.72;
	max-width: 450px;
	margin-bottom: 32px;
}

.hero-sub strong {
	color: var(--text);
	font-weight: 500;
}

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

.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.h-pill {
	padding: 4px 11px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 12px;
	color: var(--subtle);
	font-weight: 500;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	animation: float 7s ease-in-out infinite;
}

.hero-glow {
	position: absolute;
	inset: -50px;
	background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18) 0%, transparent 68%);
	pointer-events: none;
}

/* Dashboard */
.dash {
	background: var(--bg-2);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dash-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
}

.dots {
	display: flex;
	gap: 5px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dr { background: #ff5f57; }
.dy { background: #febc2e; }
.dg { background: #28c840; }

.dash-bar-title {
	font-size: 12px;
	color: var(--muted);
	flex: 1;
	margin-left: 4px;
}

.live-badge {
	padding: 3px 8px;
	background: var(--g-pale);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	color: var(--green);
}

.dash-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.d-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
}

.d-stat {
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 10px 12px;
}

.d-stat-v {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.d-stat-l {
	font-size: 10px;
	color: var(--muted);
	margin-top: 1px;
}

.d-stat-d {
	font-size: 10px;
	color: var(--green);
	margin-top: 2px;
	font-weight: 500;
}

.d-wf {
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 13px;
}

.d-wf-lbl {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--subtle);
	margin-bottom: 10px;
}

.d-nodes {
	display: flex;
	align-items: center;
	gap: 5px;
}

.d-node {
	flex: 1;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 7px;
	padding: 8px 9px;
}

.d-node.a {
	border-color: var(--p-border);
	background: rgba(124, 58, 237, 0.06);
}

.d-node.s {
	border-color: rgba(16, 185, 129, 0.35);
	background: rgba(16, 185, 129, 0.04);
}

.nt {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nt-tr { color: var(--blue-2); }
.nt-co { color: #f59e0b; }
.nt-ac { color: var(--green); }

.nn {
	font-size: 11px;
	font-weight: 500;
	color: var(--text);
	margin-top: 3px;
	line-height: 1.3;
}

.ns {
	font-size: 9px;
	color: var(--subtle);
	margin-top: 2px;
	display: flex;
	align-items: center;
	gap: 3px;
}

.ns::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.ns.run { color: var(--blue-2); }
.ns.run::before { animation: blink 1.4s infinite; }
.ns.dn { color: var(--green); }

.d-arr {
	font-size: 12px;
	color: var(--subtle);
	flex-shrink: 0;
}

.d-tags {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.d-tags-l {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--subtle);
}

.tag-r {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.tag {
	padding: 3px 9px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 500;
	border: 1px solid var(--border);
	color: var(--muted);
	background: var(--bg-3);
}

.tag.p {
	color: var(--purple-2);
	background: var(--p-pale);
	border-color: var(--p-border);
}

.tag.b {
	color: var(--blue-2);
	background: rgba(37, 99, 235, 0.1);
	border-color: rgba(37, 99, 235, 0.3);
}

.tag.g {
	color: var(--green);
	background: var(--g-pale);
	border-color: rgba(16, 185, 129, 0.3);
}

.d-feed {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.d-fi {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 9px;
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: 7px;
	font-size: 11px;
}

.d-fd {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.d-fd-green { background: #10b981; }
.d-fd-blue  { background: #60a5fa; }

.d-ft {
	color: var(--muted);
	flex: 1;
}

.d-ft strong {
	color: var(--text);
	font-weight: 500;
}

.d-tm {
	color: var(--subtle);
	font-size: 10px;
}

/* Hero Floating Badges */
.hero-float {
	position: absolute;
	background: var(--bg-2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 10px 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	z-index: 2;
}

.hf-1 { bottom: -14px; left: -20px; min-width: 190px; }
.hf-2 { top: -14px; right: -20px; min-width: 170px; }

.hf-title {
	font-size: 11px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.hf-row {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--muted);
}

.hf-row + .hf-row {
	margin-top: 4px;
}

.hf-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--purple-2);
	flex-shrink: 0;
}

.hf-dot-blue  { background: var(--blue-2); }
.hf-dot-green { background: var(--green); }
.hf-arrow { font-size: 10px; color: var(--subtle); }
.hf-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.hf-meta  { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* =============================================================================
   STATS ROW
   ============================================================================= */
.stats-row {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.01);
	padding: 36px 0;
}

.stats-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.stat-item {
	text-align: center;
	padding: 0 52px;
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 32px;
	background: var(--border);
}

.stat-v {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.04em;
	background: var(--grad-t);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.stat-l {
	font-size: 12px;
	color: var(--muted);
	margin-top: 5px;
	font-weight: 500;
}

/* =============================================================================
   COMMERCE STACK SECTION
   ============================================================================= */
.stack-section {
	position: relative;
	overflow: hidden;
}

.stack-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
}

.stack-section::before,
.stack-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--border);
}

.stack-section::before { top: 0; }
.stack-section::after  { bottom: 0; }

.stack-wrap {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.stack-copy .s-title {
	font-size: clamp(28px, 3.5vw, 42px);
}

.stack-copy .s-desc {
	font-size: 15px;
	margin-top: 0;
	margin-bottom: 28px;
}

.stack-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 28px;
}

.stack-tag {
	padding: 5px 12px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 12px;
	color: var(--muted);
}

.stack-cta {
	margin-top: 28px;
}

.stack-svg-wrap {
	position: relative;
}

.stack-caption {
	text-align: center;
	font-size: 12px;
	color: var(--subtle);
	margin-top: 16px;
	letter-spacing: 0.02em;
}

/* SVG node styles */
.conn {
	stroke-dasharray: 3 4;
	stroke-width: 1;
	fill: none;
}

.conn-wixob { stroke: rgba(124, 58, 237, 0.35); }
.conn-ext   { stroke: rgba(255, 255, 255, 0.12); }

/* =============================================================================
   PRODUCTS SECTION
   ============================================================================= */
.prod-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.prod-content {
	padding: 52px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.prod-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 11px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	color: var(--purple-2);
	margin-bottom: 16px;
	width: fit-content;
}

.prod-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}

.prod-ver {
	font-size: 11px;
	color: var(--subtle);
	font-weight: 600;
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 2px 8px;
}

.prod-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--muted);
}

.stars {
	color: #f59e0b;
	letter-spacing: 0.5px;
	font-size: 11px;
}

.prod-title {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	line-height: 1.1;
}

.prod-desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 8px;
}

.prod-installs {
	font-size: 13px;
	color: var(--purple-2);
	font-weight: 500;
	margin-bottom: 24px;
}

.prod-feats {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
	padding-left: 0;
}

.prod-feat {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--muted);
}

.chk {
	width: 16px;
	height: 16px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--purple-2);
	font-size: 9px;
}

.prod-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.prod-visual {
	background: var(--bg-3);
	border-left: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
	position: relative;
	overflow: hidden;
}

.pv-glow {
	position: absolute;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.app-mock {
	width: 100%;
	max-width: 258px;
	background: var(--bg-2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.am-hd {
	padding: 11px 14px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.am-title {
	font-size: 12px;
	font-weight: 600;
}

.am-body {
	padding: 11px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ar {
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: 7px;
	padding: 9px 11px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ar-n {
	font-size: 11px;
	font-weight: 500;
}

.ar-c {
	font-size: 10px;
	color: var(--muted);
	margin-top: 2px;
}

.tog {
	width: 26px;
	height: 15px;
	background: var(--purple);
	border-radius: 100px;
	position: relative;
	flex-shrink: 0;
}

.tog::after {
	content: '';
	position: absolute;
	width: 11px;
	height: 11px;
	background: #fff;
	border-radius: 50%;
	right: 2px;
	top: 2px;
}

.tog.off {
	background: var(--bg);
	border: 1px solid var(--border);
}

.tog.off::after {
	right: auto;
	left: 2px;
}

.tag-sm {
	font-size: 10px;
	padding: 2px 7px;
}

.prod-more {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 12px;
}

.pm-card {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 24px;
	transition: all 0.18s ease;
}

.pm-card:hover {
	border-color: var(--p-border);
}

.pm-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--subtle);
	margin-bottom: 8px;
}

.pm-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.pm-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
}

/* =============================================================================
   SOLUTIONS SECTION
   ============================================================================= */
.sol-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.sol-card {
	background: var(--bg);
	padding: 44px 40px;
	position: relative;
	overflow: hidden;
	transition: background 0.2s ease;
}

.sol-card:hover {
	background: rgba(124, 58, 237, 0.04);
}

.sol-vis {
	margin-bottom: 20px;
}

.sol-outcome {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	line-height: 1.2;
}

.sol-desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 16px;
}

.sol-metric {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: var(--purple-2);
	padding: 5px 12px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 100px;
}

.sol-metric::before {
	content: '↑';
	font-size: 11px;
}

/* Mini Flow Vis */
.mini-flow {
	display: flex;
	align-items: center;
	gap: 5px;
}

.mf-node {
	padding: 5px 9px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 600;
	color: var(--muted);
	white-space: nowrap;
}

.mf-node.active {
	border-color: var(--p-border);
	color: var(--purple-2);
	background: var(--p-pale);
}

.mf-arr { font-size: 11px; color: var(--subtle); }
.mf-arr-lg { font-size: 14px; }

.int-col {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mini-int {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.int-node {
	padding: 4px 10px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 600;
	color: var(--muted);
}

.int-center {
	padding: 5px 11px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	color: var(--purple-2);
}

.mini-b2b {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.b2b-row {
	display: flex;
	gap: 5px;
}

.b2b-cell {
	padding: 4px 8px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 5px;
	font-size: 9px;
	color: var(--muted);
	font-weight: 500;
}

.b2b-cell.h {
	background: var(--p-pale);
	border-color: var(--p-border);
	color: var(--purple-2);
}

.mini-app {
	display: flex;
	align-items: center;
	gap: 6px;
}

.app-kill {
	padding: 4px 9px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 10px;
	color: var(--subtle);
	position: relative;
}

.app-kill::after {
	content: '✕';
	position: absolute;
	top: -6px;
	right: -5px;
	font-size: 9px;
	color: #ef4444;
	background: var(--bg);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 12px;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.app-new {
	padding: 4px 11px;
	background: var(--p-pale);
	border: 1px solid var(--p-border);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	color: var(--purple-2);
}

/* =============================================================================
   RESULTS / CASE STUDIES
   ============================================================================= */
.cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.case-card {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.2s ease;
	cursor: pointer;
}

.case-card:hover,
.case-card:focus-visible {
	border-color: var(--p-border);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cc-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cc-badge {
	padding: 3px 9px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid;
}

.cb-m  { color: #60a5fa; background: rgba(96, 165, 250, 0.1);  border-color: rgba(96, 165, 250, 0.3); }
.cb-a  { color: var(--purple-2); background: var(--p-pale); border-color: var(--p-border); }
.cb-au { color: #f59e0b; background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); }
.cb-b  { color: var(--green); background: var(--g-pale); border-color: rgba(16, 185, 129, 0.3); }

.cc-arr {
	width: 28px;
	height: 28px;
	border: 1px solid var(--border);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 12px;
	transition: all 0.18s ease;
}

.case-card:hover .cc-arr,
.case-card:focus-visible .cc-arr {
	background: var(--p-pale);
	border-color: var(--p-border);
	color: var(--purple-2);
}

.cc-outcome {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	background: var(--grad-t);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cc-sub {
	font-size: 12px;
	color: var(--subtle);
	font-weight: 500;
	margin-top: 2px;
}

.cc-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.65;
}

.cc-metrics {
	display: flex;
	gap: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.cc-m {
	display: flex;
	flex-direction: column;
}

.cc-mv {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	background: var(--grad-t);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cc-ml {
	font-size: 11px;
	color: var(--muted);
	margin-top: 3px;
}

/* =============================================================================
   PROCESS SECTION
   ============================================================================= */
.proc-section {
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 80px 0;
}

.proc-section .s-head {
	margin-bottom: 52px;
}

.proc-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	position: relative;
	margin-top: 0;
	padding: 0;
}

.proc-steps::before {
	content: '';
	position: absolute;
	top: 26px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.proc-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 10px;
}

.pn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--bg-3);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	transition: all 0.18s ease;
}

.pn.active {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}

.pt {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.pd {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.6;
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.testi-card {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t-stars {
	display: flex;
	gap: 2px;
	color: #f59e0b;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.t-q {
	font-size: 14px;
	color: var(--text);
	line-height: 1.75;
	font-style: italic;
	flex: 1;
}

.t-auth {
	display: flex;
	align-items: center;
	gap: 10px;
}

.t-av {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--grad);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.t-name {
	font-size: 13px;
	font-weight: 600;
}

.t-role {
	font-size: 11px;
	color: var(--muted);
}

/* =============================================================================
   FAQ
   ============================================================================= */
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

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

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	gap: 16px;
	transition: color 0.18s ease;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	color: var(--text);
}

.faq-q:hover,
.faq-q:focus-visible {
	color: var(--purple-2);
}

.faq-ico {
	width: 24px;
	height: 24px;
	border: 1px solid var(--border);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
	color: var(--muted);
	transition: all 0.18s ease;
	line-height: 1;
}

.faq-item.open .faq-ico {
	background: var(--p-pale);
	border-color: var(--p-border);
	color: var(--purple-2);
	transform: rotate(45deg);
}

.faq-a {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.75;
	padding-bottom: 20px;
}

.faq-a[hidden] {
	display: none;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section {
	padding: 112px 0;
	position: relative;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(124, 58, 237, 0.13) 0%, transparent 70%);
}

.cta-borders {
	position: absolute;
	inset: 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.cta-inner {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin-bottom: 16px;
}

.cta-sub {
	font-size: 16px;
	color: var(--muted);
	max-width: 440px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

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

.cta-note {
	font-size: 12px;
	color: var(--subtle);
	margin-top: 16px;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
	border-top: 1px solid var(--border);
	padding: 56px 0 28px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 32px;
}

.f-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
}

.f-logo span {
	font-weight: 400;
	color: var(--muted);
}

.f-tagline {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	max-width: 210px;
}

.f-col-t {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--subtle);
	margin-bottom: 14px;
}

.f-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.f-links a,
.f-links li a {
	font-size: 13px;
	color: var(--muted);
	transition: color 0.18s ease;
}

.f-links a:hover,
.f-links li a:hover,
.f-links a:focus-visible,
.f-links li a:focus-visible {
	color: var(--text);
}

.footer-bot {
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.f-copy {
	font-size: 12px;
	color: var(--subtle);
}

.f-legal {
	display: flex;
	gap: 16px;
}

.f-legal a {
	font-size: 12px;
	color: var(--subtle);
	transition: color 0.18s ease;
}

.f-legal a:hover,
.f-legal a:focus-visible {
	color: var(--muted);
}

.badge-soon {
	font-size: 10px;
	color: var(--subtle);
}

/* =============================================================================
   SECTION UTILITIES
   ============================================================================= */
.section-no-top       { padding-top: 0; }
.section-border-top   { border-top: 1px solid var(--border); }
.section-pb-lg        { padding-bottom: 80px; }

/* =============================================================================
   POSTS / PAGINATION (for non-homepage templates)
   ============================================================================= */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 48px;
}

.pagination .page-numbers {
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	color: var(--muted);
	transition: all 0.18s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.14);
}

.pagination .page-numbers.current {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes gpulse {
	0%, 100% { opacity: 0.65; transform: scale(1); }
	50%       { opacity: 1;    transform: scale(1.04); }
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.3; }
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}

/* Scroll Reveal */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
	.hero-visual,
	.g1,
	.g2,
	.hero-dot,
	.ns.run::before {
		animation: none;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =============================================================================
   RESPONSIVE — LARGE DESKTOP (1400px+)
   ============================================================================= */
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}

	.hero-title {
		font-size: 80px;
	}
}

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

	.hero-visual {
		animation: none;
		order: -1;
	}

	.stack-wrap {
		grid-template-columns: 1fr;
	}

	.prod-hero {
		grid-template-columns: 1fr;
	}

	.prod-visual {
		display: none;
	}

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

	.f-brand {
		grid-column: span 2;
	}

	.hf-1,
	.hf-2 {
		display: none;
	}
}

/* =============================================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================================= */
@media (max-width: 768px) {
	.section {
		padding: 72px 0;
	}

	.nav-links {
		display: none;
	}

	.nav-mb {
		display: flex;
	}

	.stats-inner {
		flex-direction: column;
		gap: 0;
	}

	.stat-item {
		padding: 16px 0;
		width: 100%;
		border-bottom: 1px solid var(--border);
	}

	.stat-item:not(:last-child)::after {
		display: none;
	}

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

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

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

	.proc-steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.proc-steps::before {
		display: none;
	}

	.proc-step {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 14px;
	}

	.pn {
		flex-shrink: 0;
		margin-bottom: 0;
	}

	.prod-more {
		grid-template-columns: 1fr;
	}

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

	.f-brand {
		grid-column: 1;
	}

	.footer-bot {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-section {
		padding: 80px 0;
	}

	.prod-content {
		padding: 32px 28px;
	}
}

/* =============================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================================= */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.btn {
		justify-content: center;
	}

	.cta-acts {
		flex-direction: column;
	}

	.proc-steps {
		gap: 20px;
	}

	.mini-flow {
		flex-wrap: wrap;
	}

	.sol-card {
		padding: 32px 24px;
	}
}
