/*
Theme Name: NSFW Coder
Theme URI: http://localhost:8080/nsfwcoder
Author: NSFW Coder
Description: Modern futuristic NSFW Coders theme. Dark + violet/magenta/cyan, glassmorphism, bento grids, scroll-driven motion, zero JS.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: nsfw-coder
*/

/* ==========================================================================
   00. Custom property registration (for animatable gradient angles)
   ========================================================================== */
@property --angle      { syntax: '<angle>';      initial-value: 0deg; inherits: false; }
@property --shimmer-x  { syntax: '<percentage>'; initial-value: 0%;   inherits: false; }

/* ==========================================================================
   01. Design tokens
   ========================================================================== */
:root {
	/* Surfaces */
	--bg:           #08080d;
	--bg-elev-1:    #0d0d15;
	--bg-elev-2:    #15151f;
	--bg-elev-3:    #1d1d2a;
	--bg-glass:     rgba(255,255,255,.035);
	--bg-glass-hi:  rgba(255,255,255,.07);
	--border:       rgba(255,255,255,.07);
	--border-hi:    rgba(255,255,255,.16);

	/* Text */
	--text:         #f5f5fa;
	--text-mute:    #9b9bb0;
	--text-dim:     #5b5b73;
	--text-faint:   #3a3a4d;

	/* Brand */
	--violet:       #8b5cf6;
	--violet-hi:    #a78bfa;
	--violet-lo:    #6d28d9;
	--magenta:      #ec4899;
	--magenta-hi:   #f472b6;
	--magenta-lo:   #be185d;
	--cyan:         #22d3ee;
	--cyan-hi:      #67e8f9;

	/* Gradients */
	--g-primary:    linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	--g-primary-r:  linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
	--g-cool:       linear-gradient(135deg, #22d3ee 0%, #8b5cf6 100%);
	--g-warm:       linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
	--g-mesh:       radial-gradient(at 20% 30%, #8b5cf6 0%, transparent 50%),
	                radial-gradient(at 80% 70%, #ec4899 0%, transparent 50%),
	                radial-gradient(at 50% 0%,  #22d3ee 0%, transparent 40%);

	/* Type */
	--font:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

	/* Sizing & radius */
	--radius-xs:    6px;
	--radius-sm:    10px;
	--radius:       16px;
	--radius-lg:    24px;
	--radius-xl:    32px;
	--max:          1280px;
	--gap:          24px;
	--gap-lg:       64px;
	--gap-xl:       120px;

	/* Shadows / glows */
	--shadow:       0 8px 30px rgba(0,0,0,.4);
	--shadow-lg:    0 30px 80px rgba(0,0,0,.55);
	--glow-violet:  0 0 40px rgba(139,92,246,.35);
	--glow-magenta: 0 0 40px rgba(236,72,153,.35);
	--glow-cyan:    0 0 40px rgba(34,211,238,.35);
}

/* ==========================================================================
   02. Reset + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.55; scroll-behavior: smooth; }
body {
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	font-weight: 400;
	font-feature-settings: "cv11", "ss01", "ss03";
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--violet-hi); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { font-weight: 600; letter-spacing: -.02em; line-height: 1.1; color: var(--text); }
hr { border: 0; border-top: 1px solid var(--border); }
::selection { background: var(--violet); color: #fff; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; padding: 8px 12px; background: var(--violet); color: #fff; z-index: 9999; border-radius: var(--radius-xs); }

/* ==========================================================================
   03. Layout helpers
   ========================================================================== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--gap-xl) 0; position: relative; }
.section--tight { padding: 64px 0; }

.section__head { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.section__eyebrow {
	display: inline-block; padding: 5px 12px;
	font-family: var(--font-mono);
	font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
	color: var(--violet-hi);
	background: rgba(139,92,246,.10);
	border: 1px solid rgba(139,92,246,.20);
	border-radius: 999px;
	margin-bottom: 20px;
}
.section__title {
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 600; letter-spacing: -.028em;
	margin-bottom: 18px; line-height: 1.05;
}
.section__title .grad {
	background: var(--g-primary);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__sub {
	color: var(--text-mute);
	font-size: 17px; line-height: 1.5;
}

/* ==========================================================================
   04. Buttons
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--radius-sm);
	font-weight: 500; font-size: 14.5px;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
	white-space: nowrap; line-height: 1; position: relative; isolation: isolate;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn--lg   { padding: 15px 28px; font-size: 15.5px; }

/* Primary gradient with hover shimmer */
.btn--primary {
	color: #fff;
	background: var(--g-primary);
	background-size: 200% 100%; background-position: 0% 0%;
	box-shadow: 0 4px 24px rgba(139,92,246,.30), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn--primary:hover {
	background-position: 100% 0%;
	color: #fff;
	box-shadow: 0 6px 32px rgba(236,72,153,.40), inset 0 0 0 1px rgba(255,255,255,.15);
}

/* Glass ghost button */
.btn--ghost {
	color: var(--text);
	background: var(--bg-glass);
	border: 1px solid var(--border-hi);
	backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--bg-glass-hi); color: var(--text); border-color: var(--violet); }

/* Arrow modifier */
.btn--arrow::after { content: '→'; transition: transform .2s ease; margin-left: 2px; }
.btn--arrow:hover::after { transform: translateX(4px); }

/* Pill modifier */
.btn--pill { border-radius: 999px; }

/* ==========================================================================
   05. Header — glassmorphic sticky
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(8,8,13,.65);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -.02em; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__dot {
	width: 22px; height: 22px;
	background: var(--g-primary);
	border-radius: 6px;
	box-shadow: var(--glow-violet);
	position: relative; overflow: hidden;
}
.brand__dot::before {
	content: ''; position: absolute; inset: -50%;
	background: conic-gradient(from 0deg, transparent 0%, var(--cyan) 25%, transparent 50%, var(--magenta) 75%, transparent 100%);
	animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.brand__dot::after {
	content: ''; position: absolute; inset: 3px;
	background: var(--bg);
	border-radius: 4px;
}

.announce {
	background: linear-gradient(90deg, rgba(139,92,246,.10), rgba(236,72,153,.10), rgba(34,211,238,.10));
	background-size: 200% 100%;
	color: var(--text);
	font-size: 13px;
	text-align: center;
	padding: 9px 16px;
	border-bottom: 1px solid var(--border);
	animation: announce-shift 12s ease-in-out infinite;
}
@keyframes announce-shift {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}
.announce a {
	color: var(--text); font-weight: 500;
	display: inline-flex; align-items: center; gap: 6px;
}
.announce a::after { content: '→'; transition: transform .2s ease; margin-left: 4px; }
.announce a:hover::after { transform: translateX(4px); }

/* Highlighted pill inside the announcement bar */
.announce__highlight {
	display: inline-block;
	padding: 2px 10px;
	margin: 0 2px;
	background: var(--g-primary);
	color: #fff !important;
	font-weight: 700;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: .01em;
	box-shadow: 0 0 12px rgba(139,92,246,.5);
	animation: announce-highlight-pulse 2.5s ease-in-out infinite;
}
@keyframes announce-highlight-pulse {
	0%, 100% { box-shadow: 0 0 12px rgba(139,92,246,.5); }
	50%      { box-shadow: 0 0 18px rgba(236,72,153,.6); }
}

/* Nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 28px; }
.nav__link {
	font-size: 14px; font-weight: 400; color: var(--text-mute);
	display: inline-flex; align-items: center; gap: 6px;
	padding: 24px 0;
	position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 18px;
	height: 1px; background: var(--g-primary);
	transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__caret { font-size: 9px; opacity: .6; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
	min-width: 720px; padding: 28px;
	background: rgba(13,13,21,.95);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(20px);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 36px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.dropdown__group h4 { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--text-dim); margin-bottom: 10px; font-weight: 500; }
.dropdown__item {
	display: block; padding: 8px 10px;
	border-radius: var(--radius-xs);
	font-size: 14px; color: var(--text-mute);
	transition: all .15s ease;
}
.dropdown__item:hover { background: rgba(139,92,246,.10); color: var(--text); }

/* Wider 4-column variant for big mega-dropdowns (Clone Apps) */
.dropdown--wide { min-width: 960px; grid-template-columns: repeat(4, 1fr); gap: 8px 28px; }
@media (max-width: 1080px) {
	.dropdown--wide { min-width: 720px; grid-template-columns: repeat(2, 1fr); }
}

/* Get API: 2-col × 4-row layout — 8 API items, no group headers */
.dropdown--apis { min-width: 560px; grid-template-columns: repeat(2, 1fr); gap: 6px 28px; padding: 22px 28px; }
@media (max-width: 720px) {
	.dropdown--apis { min-width: 0; grid-template-columns: 1fr; }
}

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

/* Mobile menu */
.menu-toggle { display: none; }
.menu-toggle-label { display: none; cursor: pointer; padding: 8px; }
.menu-toggle-label span,
.menu-toggle-label span::before,
.menu-toggle-label span::after {
	display: block; width: 22px; height: 2px; background: var(--text);
	border-radius: 2px; transition: transform .2s ease, top .2s ease, bottom .2s ease;
}
.menu-toggle-label span { position: relative; }
.menu-toggle-label span::before,
.menu-toggle-label span::after { content: ''; position: absolute; left: 0; }
.menu-toggle-label span::before { top: -7px; }
.menu-toggle-label span::after  { bottom: -7px; }

@media (max-width: 960px) {
	.nav, .nav-cta { display: none; }
	.menu-toggle-label { display: inline-flex; align-items: center; }
	.menu-toggle:checked ~ .nav,
	.menu-toggle:checked ~ .nav-cta {
		display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
		position: absolute; top: 68px; left: 0; right: 0;
		background: var(--bg-elev-1); border-top: 1px solid var(--border);
		padding: 20px 24px;
	}
	.menu-toggle:checked ~ .nav-cta { top: auto; bottom: -100%; }
	.menu-toggle:checked ~ .nav .nav__list { flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
	.menu-toggle:checked ~ .nav .nav__link { padding: 10px 0; }
	.dropdown { position: static; transform: none; min-width: 0; box-shadow: none; border: 0; background: transparent; padding: 0 0 0 16px; grid-template-columns: 1fr; gap: 4px; opacity: 1; visibility: visible; pointer-events: auto; }
}

/* ==========================================================================
   06. Hero — aurora mesh with glassmorphic CTA cluster
   ========================================================================== */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex; flex-direction: column; justify-content: center;
	padding: 80px 0 60px;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
	background: var(--bg);
}

/* Background-image variant — used on homepage (front-page.php) */
.hero--with-bg .hero__bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: url('assets/hero-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.18;                  /* keep image subtle — UI is the star, not the screenshot */
	filter: saturate(1.15) contrast(1.05);
}
/* Dark vignette + brand-tint overlay so the H1 stays high-contrast no matter what's behind */
.hero--with-bg::before {
	content: '';
	position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(ellipse at center, rgba(8,8,13,.35) 0%, rgba(8,8,13,.85) 80%, rgba(8,8,13,.95) 100%),
		linear-gradient(135deg, rgba(139,92,246,.18) 0%, rgba(236,72,153,.12) 50%, rgba(34,211,238,.10) 100%);
	pointer-events: none;
}
.hero--with-bg .hero__inner { position: relative; z-index: 3; }
.hero--with-bg .aurora       { z-index: 2; opacity: .7; }   /* dim the aurora a bit so the bg has room to breathe */

/* Aurora blobs — animated radial gradients with heavy blur */
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.aurora__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .55;
	will-change: transform;
}
.aurora__blob--1 {
	width: 720px; height: 720px;
	background: radial-gradient(circle, var(--violet) 0%, transparent 65%);
	top: -15%; left: -15%;
	animation: aurora-1 18s ease-in-out infinite;
}
.aurora__blob--2 {
	width: 640px; height: 640px;
	background: radial-gradient(circle, var(--magenta) 0%, transparent 65%);
	bottom: -20%; right: -10%;
	animation: aurora-2 22s ease-in-out infinite;
}
.aurora__blob--3 {
	width: 520px; height: 520px;
	background: radial-gradient(circle, var(--cyan) 0%, transparent 65%);
	top: 30%; right: 20%;
	animation: aurora-3 26s ease-in-out infinite;
	opacity: .35;
}
@keyframes aurora-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30%, 15%) scale(1.15); } }
@keyframes aurora-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-25%, -10%) scale(1.10); } }
@keyframes aurora-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40%, 30%) scale(.85); } }

/* Noise overlay (uses inline data URI SVG, tiny) — adds texture */
.aurora::after {
	content: ''; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	mix-blend-mode: overlay;
	opacity: .6;
	pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; padding: 0 24px; }

.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px 6px 10px;
	background: var(--bg-glass);
	border: 1px solid var(--border-hi);
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--text-mute);
	margin-bottom: 28px;
	backdrop-filter: blur(10px);
}
.hero__eyebrow .pulse-dot {
	width: 7px; height: 7px; background: var(--cyan); border-radius: 50%;
	box-shadow: 0 0 12px var(--cyan);
	animation: pulse-mini 2s ease-in-out infinite;
}
@keyframes pulse-mini { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
	font-size: clamp(48px, 8.5vw, 124px);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: .98;
	margin-bottom: 30px;
}
.hero__title .grad {
	background: var(--g-primary);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__sub {
	font-size: clamp(17px, 1.4vw, 21px);
	color: var(--text-mute);
	max-width: 700px; margin: 0 auto 40px;
	line-height: 1.5;
}

.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero__trust {
	display: flex; align-items: center; gap: 16px;
	justify-content: center; flex-wrap: wrap;
	color: var(--text-dim);
	font-family: var(--font-mono); font-size: 12px;
	text-transform: uppercase; letter-spacing: .12em;
}
.hero__trust__sep { width: 1px; height: 14px; background: var(--border-hi); }
.hero__trust__logos { display: flex; gap: 28px; align-items: center; }
.hero__trust__logo { color: var(--text-mute); font-weight: 600; font-size: 14px; letter-spacing: -.01em; text-transform: none; }
.hero__trust__logo:hover { color: var(--text); }
@media (max-width: 760px) { .hero__trust__sep { display: none; } .hero__trust__logos { gap: 20px; } }

/* ==========================================================================
   07. Marquee strip — services scrolling
   ========================================================================== */
.marquee {
	background: var(--bg-elev-1);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 22px 0;
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
	        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: flex; gap: 48px; width: max-content;
	animation: marquee-scroll 40s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
	display: inline-flex; align-items: center; gap: 10px;
	color: var(--text-mute); font-size: 15px;
	white-space: nowrap;
	transition: color .2s ease;
}
.marquee__item:hover { color: var(--text); }
.marquee__item::before {
	content: ''; width: 6px; height: 6px;
	background: var(--g-primary); border-radius: 50%;
	box-shadow: var(--glow-violet);
	display: inline-block; flex-shrink: 0;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ==========================================================================
   08. Bento grid system
   ========================================================================== */
.bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.bento__cell {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	position: relative; overflow: hidden;
	transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.bento__cell:hover {
	transform: translateY(-3px);
	border-color: var(--border-hi);
	background: var(--bg-elev-2);
}
/* Hover glow */
.bento__cell::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(139,92,246,.12), transparent 60%);
	opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.bento__cell:hover::before { opacity: 1; }

/* span helpers */
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.row-2  { grid-row: span 2; }

@media (max-width: 980px) {
	.bento { grid-template-columns: repeat(2, 1fr); }
	.bento__cell, .span-2, .span-3, .span-4, .span-6 { grid-column: span 2; grid-row: auto; }
}

/* ==========================================================================
   09. Stat bento — large numbers as visual elements
   ========================================================================== */
.stat-cell { padding: 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.stat-cell__label {
	font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
	color: var(--text-dim); margin-bottom: 12px;
}
.stat-cell__num {
	font-size: clamp(48px, 6vw, 84px); font-weight: 600; letter-spacing: -.04em; line-height: .95;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 12px;
}
.stat-cell__desc { color: var(--text-mute); font-size: 14px; line-height: 1.55; }

/* Featured big cell with mesh bg */
.stat-cell--featured {
	background: var(--bg-elev-2);
	border-color: var(--border-hi);
}
.stat-cell--featured::after {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .15;
	pointer-events: none; z-index: 0;
}
.stat-cell--featured > * { position: relative; z-index: 1; }
.stat-cell--featured .stat-cell__num { font-size: clamp(64px, 9vw, 128px); }

/* ==========================================================================
   10. Product bento — featured + smalls
   ========================================================================== */
.product-cell { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.product-cell__media {
	aspect-ratio: 16/10;
	background:
		linear-gradient(135deg, var(--violet-lo) 0%, var(--magenta-lo) 100%);
	position: relative; overflow: hidden;
	flex-shrink: 0;
}
.product-cell__media::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(139,92,246,.5), transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(34,211,238,.3), transparent 50%);
}
.product-cell__media::after {
	content: ''; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	mix-blend-mode: overlay; opacity: .5;
}
.product-cell__badge {
	position: absolute; top: 16px; left: 16px; z-index: 3;
	padding: 5px 10px; font-family: var(--font-mono); font-size: 10.5px;
	background: rgba(0,0,0,.6); backdrop-filter: blur(10px);
	border: 1px solid var(--border-hi); border-radius: 999px;
	color: #fff; letter-spacing: .06em; text-transform: uppercase;
}
.product-cell__img {
	position: absolute; inset: 0; z-index: 1;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	display: block;
	transition: transform .5s ease;
}
.product-cell:hover .product-cell__img { transform: scale(1.04); }
/* When an image is present, fade the noise overlay so the photo stays clean */
.product-cell__media:has(.product-cell__img)::after { opacity: .15; }
.product-cell__media:has(.product-cell__img)::before { opacity: .35; }
.product-cell__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-cell__title { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.product-cell__desc { font-size: 14px; color: var(--text-mute); line-height: 1.55; flex: 1; margin-bottom: 18px; }
.product-cell__cta {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13.5px; font-weight: 500; color: var(--violet-hi);
	align-self: flex-start;
}
.product-cell__cta::after { content: '→'; transition: transform .2s ease; }
.product-cell__cta:hover { color: var(--magenta-hi); }
.product-cell__cta:hover::after { transform: translateX(4px); }

/* ==========================================================================
   10f. CL — Clones Grid (3×2) with animated gradient borders + watermark nums
   Premium polished card grid: rotating conic-gradient border on hover,
   layered shadows with violet/magenta glow, number watermark behind content.
   ========================================================================== */
.cl-sec { position: relative; overflow: hidden; }
.cl-sec::before {
	content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(40% 35% at 15% 20%, rgba(139,92,246,.12), transparent 70%),
		radial-gradient(40% 35% at 85% 80%, rgba(217,70,239,.08), transparent 70%);
}
.cl-sec > .container { position: relative; z-index: 1; }

/* The grid: exactly 3 columns × 2 rows on desktop */
.cl-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
@media (max-width: 980px) { .cl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 620px) { .cl-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Spinning gradient border (custom property for animation) */
@property --cl-angle {
	syntax: '<angle>';
	initial-value: 0deg;
	inherits: false;
}

.cl-card {
	position: relative;
	display: block;
	border-radius: 22px;
	text-decoration: none;
	color: inherit;
	isolation: isolate;
	transition: transform .55s cubic-bezier(.2,.7,.2,1);
	background: transparent;
	padding: 1px;  /* room for the border */
}
.cl-card:hover { transform: translateY(-8px); }

/* The animated gradient border layer */
.cl-card__border {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 0;
	background:
		conic-gradient(
			from var(--cl-angle, 0deg),
			rgba(255,255,255,.08) 0%,
			rgba(139,92,246,.0) 25%,
			rgba(139,92,246,.0) 75%,
			rgba(255,255,255,.08) 100%
		);
	transition: background .4s ease;
}
.cl-card:hover .cl-card__border {
	background:
		conic-gradient(
			from var(--cl-angle, 0deg),
			#8b5cf6 0%,
			#d946ef 25%,
			#22d3ee 50%,
			#d946ef 75%,
			#8b5cf6 100%
		);
	animation: cl-spin 4s linear infinite;
}
@keyframes cl-spin {
	0%   { --cl-angle: 0deg; }
	100% { --cl-angle: 360deg; }
}

/* Inner card — sits inside the gradient ring */
.cl-card__inner {
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, #14101e 0%, #0e0a17 100%);
	border-radius: 21px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow:
		0 1px 0 rgba(255,255,255,.04) inset,
		0 20px 40px -20px rgba(0,0,0,.5);
	transition: box-shadow .45s ease;
}
.cl-card:hover .cl-card__inner {
	box-shadow:
		0 1px 0 rgba(255,255,255,.08) inset,
		0 30px 60px -15px rgba(139,92,246,.4),
		0 0 50px -10px rgba(217,70,239,.25);
}

/* MEDIA — image + badge */
.cl-card__media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(217,70,239,.08));
}
.cl-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	display: block;
	transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
	filter: saturate(.95);
}
.cl-card:hover .cl-card__img {
	transform: scale(1.07);
	filter: saturate(1.1);
}
.cl-card__media::after {
	content: ''; position: absolute; inset: auto 0 0 0; height: 40%;
	background: linear-gradient(180deg, transparent 0%, rgba(14,10,23,.45) 100%);
	pointer-events: none;
}
.cl-card__badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	padding: 5px 11px;
	background: rgba(0,0,0,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	color: #fff;
	font-family: var(--font-mono);
	font-size: 10px; font-weight: 600;
	letter-spacing: .09em; text-transform: uppercase;
}

/* BODY — text content + watermark number */
.cl-card__body {
	position: relative;
	padding: 22px 24px 24px;
	flex: 1;
	display: flex; flex-direction: column;
	gap: 10px;
	overflow: hidden;
}
.cl-card__watermark {
	position: absolute;
	right: -8px; bottom: -28px;
	font-family: var(--font-mono);
	font-size: 130px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.05em;
	background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(217,70,239,.04));
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	pointer-events: none;
	z-index: 0;
	transition: background .35s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.cl-card:hover .cl-card__watermark {
	background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(217,70,239,.12));
	-webkit-background-clip: text; background-clip: text;
	transform: translate(-2px, -4px);
}

.cl-card__head { position: relative; z-index: 1; }
.cl-card__num {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--text-dim);
}
.cl-card__sep { opacity: .4; }
.cl-card__cat { color: var(--text-mute); }

.cl-card__title {
	position: relative; z-index: 1;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.25;
	color: var(--text);
	margin: 2px 0 0;
	transition: background .3s ease;
}
.cl-card:hover .cl-card__title {
	background: linear-gradient(135deg, #fff 0%, #d946ef 100%);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
}
.cl-card__desc {
	position: relative; z-index: 1;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--text-mute);
	margin: 0;
	flex: 1;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden;
}
.cl-card__cta {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 6px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--violet-hi);
	align-self: flex-start;
	transition: gap .3s ease, color .3s ease;
}
.cl-card__cta svg { transition: transform .3s ease; }
.cl-card:hover .cl-card__cta { gap: 10px; color: #fff; }
.cl-card:hover .cl-card__cta svg { transform: translateX(3px); }

/* Reduced motion — kill spin */
@media (prefers-reduced-motion: reduce) {
	.cl-card:hover .cl-card__border { animation: none; }
	.cl-card { transition: none; }
}

/* Legacy redesigns (10b/10c/10d/10e: ci-* / rail-* / showreel* / clone-card*)
   were removed 2026-05-25 — superseded by 10f Clones Grid above. */

/* ==========================================================================
   11. Services — 3 glassmorphic cards with animated glow border
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
	position: relative;
	padding: 36px 32px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .3s ease, border-color .3s ease;
	isolation: isolate;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }

/* animated rotating gradient border */
.service-card::before {
	content: '';
	position: absolute; inset: -1px;
	background: conic-gradient(from var(--angle, 0deg), transparent 0%, var(--violet) 12%, var(--magenta) 24%, transparent 36%);
	border-radius: inherit;
	z-index: -1;
	opacity: 0;
	transition: opacity .3s ease;
	animation: rotate-angle 5s linear infinite;
}
.service-card::after {
	content: '';
	position: absolute; inset: 0;
	background: var(--bg-elev-1);
	border-radius: inherit;
	z-index: -1;
}
.service-card:hover::before { opacity: 1; }
@keyframes rotate-angle { to { --angle: 360deg; } }

.service-card__stat {
	font-size: clamp(48px, 5.5vw, 72px); font-weight: 600; letter-spacing: -.04em; line-height: 1;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 14px;
}
.service-card__label {
	font-size: 19px; font-weight: 600; color: var(--text);
	margin-bottom: 16px;
}
.service-card__desc { font-size: 14.5px; color: var(--text-mute); line-height: 1.6; margin-bottom: 28px; min-height: 110px; }
.service-card__foot {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 20px; border-top: 1px solid var(--border);
}
.service-card__brand { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--violet-hi); }
.service-card__cta { font-size: 13.5px; font-weight: 500; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.service-card__cta::after { content: '→'; transition: transform .2s ease; }
.service-card__cta:hover { color: var(--violet-hi); }
.service-card__cta:hover::after { transform: translateX(4px); }

/* ==========================================================================
   12. Features bento (mixed sizes)
   ========================================================================== */
.feature {
	display: flex; flex-direction: column; gap: 14px;
	padding: 28px;
}
.feature__icon {
	width: 44px; height: 44px;
	border-radius: var(--radius-sm);
	background: rgba(139,92,246,.12);
	color: var(--violet-hi);
	display: grid; place-items: center;
	transition: all .3s ease;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature:hover .feature__icon { background: var(--violet); color: #fff; transform: rotate(-5deg) scale(1.08); }
.feature__title { font-size: 17px; font-weight: 600; }
.feature__desc { font-size: 14px; color: var(--text-mute); line-height: 1.6; }

/* ==========================================================================
   13. Market section — full-bleed with massive number
   ========================================================================== */
.market {
	padding: var(--gap-xl) 0;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev-1) 50%, var(--bg) 100%);
	position: relative; overflow: hidden;
	text-align: center;
}
.market::before {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .12; filter: blur(60px);
	pointer-events: none;
}
.market > .container { position: relative; z-index: 1; }
.market__mega {
	font-size: clamp(110px, 18vw, 240px);
	font-weight: 600; letter-spacing: -.06em; line-height: .9;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin: 32px 0 18px;
}
.market__mega-sub {
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--text-dim); margin-bottom: 64px;
}
.market__mega-sub em { color: var(--text-mute); font-style: normal; }
.market__stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; text-align: left; }
@media (max-width: 880px) { .market__stats-grid { grid-template-columns: 1fr; } }

.market-stat {
	padding: 28px;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
	transition: all .3s ease;
}
.market-stat:hover { border-color: var(--violet); background: var(--bg-glass-hi); }
.market-stat__icon {
	width: 36px; height: 36px; border-radius: var(--radius-xs);
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	display: grid; place-items: center; margin-bottom: 18px;
}
.market-stat__icon svg { width: 18px; height: 18px; }
.market-stat__title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.market-stat__desc  { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; }

/* ==========================================================================
   14. AI Models — horizontal scroll carousel
   ========================================================================== */
.models-carousel {
	display: flex; gap: 16px;
	overflow-x: auto; overflow-y: hidden;
	scroll-snap-type: x mandatory;
	padding: 8px 24px 24px;
	margin: 0 -24px;
	scrollbar-width: thin;
	scrollbar-color: var(--violet) transparent;
}
.models-carousel::-webkit-scrollbar { height: 8px; }
.models-carousel::-webkit-scrollbar-track { background: transparent; }
.models-carousel::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 4px; }

/* ==========================================================================
   Pinned horizontal-scroll section — "Eight models, tuned for adult AI"
   Vertical wheel scroll translates the rail horizontally while the
   section sits pinned at top: 0. JS reads scroll progress and applies
   translateX to .models-pin__rail.
   ========================================================================== */
.models-pin {
	position: relative;
	/* JS sets the actual height in px based on the rail's overflow.
	   Fallback: 250vh is enough for 8 cards at most viewports. */
	height: var(--pin-height, 250vh);
	background: var(--bg);
}
.models-pin__stage {
	position: sticky;
	top: 0;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.models-pin__head {
	margin-bottom: 36px;
	text-align: center;
}
.models-pin__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}
.models-pin__rail {
	display: flex;
	gap: 22px;
	/* Generous edge padding so the first card starts inside the container */
	padding-inline: max(24px, calc((100vw - 1240px) / 2));
	width: max-content;
	will-change: transform;
	transition: transform 0s linear;  /* JS drives it directly */
}

/* Progress bar below the rail */
.models-pin__progress {
	margin-top: 28px;
	flex-shrink: 0;
}
.models-pin__track {
	position: relative;
	height: 3px;
	background: rgba(255,255,255,.06);
	border-radius: 999px;
	overflow: hidden;
}
.models-pin__bar {
	position: absolute; inset: 0;
	width: var(--pin-progress, 12%);
	background: linear-gradient(90deg, #8b5cf6, #d946ef);
	border-radius: 999px;
	transition: width .15s ease-out;
	box-shadow: 0 0 12px rgba(139,92,246,.5);
}

/* Mobile / tablet — fall back to native horizontal touch-scroll */
@media (max-width: 880px) {
	.models-pin {
		height: auto;
	}
	.models-pin__stage {
		position: static;
		height: auto;
		min-height: 0;
		padding: 60px 0;
	}
	.models-pin__viewport {
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.models-pin__viewport::-webkit-scrollbar { display: none; }
	.models-pin__rail {
		transform: none !important;
		padding-inline: 24px;
	}
	.models-pin__rail .model-card { scroll-snap-align: start; }
	.models-pin__progress { display: none; }
}

/* Reduced motion — flatten to a normal horizontal scroll */
@media (prefers-reduced-motion: reduce) {
	.models-pin { height: auto; }
	.models-pin__stage { position: static; height: auto; min-height: 0; padding: 60px 0; }
	.models-pin__viewport { overflow-x: auto; }
	.models-pin__rail { transform: none !important; }
	.models-pin__progress { display: none; }
}

.model-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
	padding: 32px 28px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex; flex-direction: column;
	transition: all .3s ease;
	position: relative; overflow: hidden;
}
.model-card:hover { border-color: var(--violet); transform: translateY(-4px); background: var(--bg-elev-2); }
.model-card__num {
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
	color: var(--text-dim); margin-bottom: 10px;
}
.model-card__name {
	font-size: 28px; font-weight: 600; letter-spacing: -.02em;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 12px;
}
.model-card__desc { font-size: 14px; color: var(--text-mute); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.model-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.model-card__tag {
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em;
	padding: 4px 9px; background: var(--bg-elev-2); border: 1px solid var(--border);
	border-radius: 999px; color: var(--text-mute);
}
.model-card__cta {
	display: flex; gap: 8px;
}
.model-card__btn {
	flex: 1; padding: 9px 12px; border-radius: var(--radius-xs);
	font-size: 13px; font-weight: 500; text-align: center;
	transition: all .15s ease;
}
.model-card__btn--primary { background: var(--violet); color: #fff; }
.model-card__btn--primary:hover { background: var(--violet-hi); color: #fff; }
.model-card__btn--ghost { background: var(--bg-elev-2); color: var(--text-mute); border: 1px solid var(--border); }
.model-card__btn--ghost:hover { color: var(--text); border-color: var(--border-hi); }

/* ==========================================================================
   15. Revenue bento — numbered cards
   ========================================================================== */
.revenue-cell { padding: 28px; }
.revenue-cell__num {
	font-family: var(--font-mono);
	display: inline-block; padding: 4px 10px;
	background: var(--bg-elev-2); border: 1px solid var(--border-hi);
	border-radius: var(--radius-xs);
	font-size: 11.5px; letter-spacing: .04em;
	color: var(--violet-hi); margin-bottom: 16px;
}
.revenue-cell__title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.revenue-cell__desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; }
.revenue-cell:hover .revenue-cell__num { background: var(--violet); border-color: var(--violet); color: #fff; }

/* ==========================================================================
   16. Testimonials — quote cards with glassmorphism
   ========================================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
	padding: 32px;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
	display: flex; flex-direction: column;
	position: relative; overflow: hidden;
	transition: all .3s ease;
}
.testimonial:hover { border-color: var(--border-hi); }
.testimonial::before {
	content: '"'; position: absolute; top: 16px; right: 24px;
	font-family: Georgia, serif; font-size: 96px; line-height: 1;
	color: var(--violet); opacity: .2;
}
.testimonial__quote { font-size: 15.5px; color: var(--text); line-height: 1.6; flex: 1; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--g-primary); color: #fff;
	display: grid; place-items: center; font-weight: 600; font-size: 14px;
	box-shadow: var(--glow-violet);
}
.testimonial__name { font-weight: 500; font-size: 14.5px; }
.testimonial__role { font-size: 12.5px; color: var(--text-mute); }

/* ==========================================================================
   17. Quick CTA band — bold gradient strip
   ========================================================================== */
.quick-cta {
	background: var(--g-primary);
	color: #fff;
	padding: 48px 0;
	position: relative; overflow: hidden;
}
.quick-cta::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(255,255,255,.10), transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(255,255,255,.15), transparent 50%);
}
.quick-cta__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	max-width: 1100px; margin: 0 auto; padding: 0 24px; flex-wrap: wrap;
	position: relative; z-index: 1;
}
.quick-cta__text { flex: 1; min-width: 280px; }
.quick-cta__text h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.quick-cta__text p  { color: rgba(255,255,255,.80); font-size: 15px; line-height: 1.5; }
.quick-cta__btn {
	padding: 14px 30px; border-radius: 999px;
	background: #fff; color: var(--violet-lo);
	font-weight: 600; font-size: 15px;
	display: inline-flex; align-items: center; gap: 8px;
	box-shadow: 0 6px 24px rgba(0,0,0,.20);
	transition: all .2s ease;
	white-space: nowrap;
	animation: pulse-ring 2.5s ease-out infinite;
}
.quick-cta__btn:hover { transform: translateY(-2px); color: var(--magenta-lo); }
.quick-cta__btn::after { content: '→'; }
@keyframes pulse-ring {
	0%   { box-shadow: 0 6px 24px rgba(0,0,0,.20), 0 0 0 0 rgba(255,255,255,.50); }
	70%  { box-shadow: 0 6px 24px rgba(0,0,0,.20), 0 0 0 16px rgba(255,255,255,0); }
	100% { box-shadow: 0 6px 24px rgba(0,0,0,.20), 0 0 0 0 rgba(255,255,255,0); }
}

/* ==========================================================================
   18. Contact — split glass card
   ========================================================================== */
.contact-band {
	padding: var(--gap-xl) 0;
	position: relative; overflow: hidden;
	background: var(--bg);
}
.contact-band::before {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .10; filter: blur(80px);
	pointer-events: none;
}
.contact-band > .container { position: relative; z-index: 1; }

.contact-grid {
	display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
	max-width: 1100px; margin: 0 auto;
	background: var(--bg-glass);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	padding: 8px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
	padding: 36px;
	background: var(--bg-elev-1);
	border-radius: var(--radius);
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
	width: 100%; padding: 13px 14px;
	background: var(--bg);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-xs); font-size: 14.5px;
	transition: all .2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
.contact-form input:focus, .contact-form textarea:focus {
	outline: none; border-color: var(--violet);
	box-shadow: 0 0 0 3px rgba(139,92,246,.20);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form__check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-size: 13.5px; color: var(--text-mute); cursor: pointer; }
.contact-form__check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--violet); }
.contact-form__submit {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 28px; border-radius: var(--radius-sm);
	background: var(--g-primary); color: #fff; font-weight: 600; font-size: 15px;
	border: 0; cursor: pointer; transition: all .2s ease;
	box-shadow: 0 6px 24px rgba(139,92,246,.30);
}
.contact-form__submit:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(236,72,153,.40); }
.contact-form__submit::after { content: '→'; transition: transform .15s ease; }
.contact-form__submit:hover::after { transform: translateX(4px); }

.form-alert { padding: 13px 16px; border-radius: var(--radius-xs); margin-bottom: 20px; font-size: 14px; }
.form-alert--ok  { background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.40); color: var(--cyan-hi); }
.form-alert--err { background: rgba(236,72,153,.10); border: 1px solid rgba(236,72,153,.40); color: var(--magenta-hi); }

.contact-info { padding: 36px 28px; display: flex; flex-direction: column; }
.contact-info h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; }
.contact-info p  { color: var(--text-mute); font-size: 14px; margin-bottom: 24px; line-height: 1.55; }
.contact-info__list { display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 24px; }
.contact-info__item {
	display: flex; align-items: center; gap: 12px;
	padding: 11px 14px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius-xs);
	font-size: 13.5px; color: var(--text);
	transition: all .2s ease;
}
.contact-info__item:hover { border-color: var(--violet); background: var(--bg-elev-2); }
.contact-info__icon {
	width: 30px; height: 30px; flex-shrink: 0;
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	border-radius: 50%; display: grid; place-items: center; font-size: 14px;
}
.contact-info__item strong { display: block; color: var(--text); font-weight: 500; font-size: 13.5px; }
.contact-info__item span   { display: block; color: var(--text-dim); font-size: 11.5px; margin-top: 1px; }
.contact-info__cta {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 22px; background: var(--g-primary); color: #fff;
	border-radius: 999px; font-weight: 600; font-size: 14.5px;
}
.contact-info__cta:hover { color: #fff; box-shadow: var(--glow-violet); }

/* ==========================================================================
   19. FAQ — animated accordion (native details)
   ========================================================================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 10px;
	transition: all .2s ease;
	overflow: hidden;
}
.faq details[open] { border-color: var(--violet); background: var(--bg-elev-2); }
.faq summary {
	list-style: none; cursor: pointer;
	padding: 22px 26px; font-weight: 500; font-size: 16px;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: '+'; width: 28px; height: 28px; border-radius: 50%;
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	display: grid; place-items: center; font-size: 18px; line-height: 1;
	transition: all .3s ease; flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--g-primary); color: #fff; }
.faq__answer { padding: 0 26px 24px; color: var(--text-mute); font-size: 15px; line-height: 1.65; }

/* ==========================================================================
   20. Final CTA — full bleed with gradient mesh
   ========================================================================== */
.cta-band {
	position: relative; overflow: hidden;
	padding: 120px 0;
	text-align: center;
	background: var(--bg);
}
.cta-band::before {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .25; filter: blur(60px);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 600; letter-spacing: -.04em;
	margin-bottom: 18px; line-height: 1;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-band p  { color: var(--text-mute); margin-bottom: 36px; font-size: 18px; }
.cta-band__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   21. Footer — dark with gradient accents
   ========================================================================== */
.site-footer {
	background: var(--bg-elev-1);
	border-top: 1px solid var(--border);
	padding: 80px 0 32px;
	position: relative; overflow: hidden;
}
.site-footer::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
	background: var(--g-primary);
	opacity: .6;
}

.footer__top {
	display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--border);
}
.footer__brand { max-width: 320px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__tag { color: var(--text-mute); font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.footer__contact { font-size: 13.5px; color: var(--text-mute); }
.footer__contact a { color: var(--text); }
.footer__contact a:hover { color: var(--violet-hi); }
.footer__contact div { margin-bottom: 6px; }

.footer__col h4 {
	font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
	letter-spacing: .14em; color: var(--text); margin-bottom: 18px; font-weight: 500;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { font-size: 13.5px; color: var(--text-mute); }
.footer__col a:hover { color: var(--violet-hi); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer__legal { color: var(--text-dim); font-size: 13px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--bg-elev-2); border: 1px solid var(--border);
	display: grid; place-items: center; color: var(--text-mute);
	transition: all .2s ease;
}
.footer__social a:hover { background: var(--g-primary); border-color: transparent; color: #fff; }
.footer__social svg { width: 16px; height: 16px; }

@media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px)  { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; max-width: none; } }

/* ==========================================================================
   22. About-page additions (reused tokens)
   ========================================================================== */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat {
	padding: 28px 24px; background: var(--bg-elev-1);
	border: 1px solid var(--border); border-radius: var(--radius);
	text-align: center; transition: all .3s ease;
}
.about-stat:hover { border-color: var(--violet); transform: translateY(-3px); }
.about-stat__num {
	font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing: -.04em; line-height: 1;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 10px;
}
.about-stat__label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-mute); }

.prose { max-width: 780px; margin: 0 auto; }
.prose p { font-size: 17px; color: var(--text-mute); line-height: 1.8; margin-bottom: 22px; }
.prose p strong { color: var(--text); font-weight: 600; }

.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1024px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .how-grid { grid-template-columns: repeat(2, 1fr); } }
.how-step {
	padding: 28px 22px; background: var(--bg-elev-1);
	border: 1px solid var(--border); border-radius: var(--radius);
	transition: all .3s ease; position: relative;
}
.how-step:hover { border-color: var(--violet); transform: translateY(-3px); }
.how-step__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: var(--violet-hi); margin-bottom: 16px; }
.how-step__icon {
	width: 40px; height: 40px; border-radius: var(--radius-xs);
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	display: grid; place-items: center; margin-bottom: 14px;
}
.how-step__icon svg { width: 20px; height: 20px; }
.how-step__title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.how-step__desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; }

.parent-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; }
@media (max-width: 880px) { .parent-grid { grid-template-columns: 1fr; gap: 32px; } }
.parent-text .section__eyebrow { margin-bottom: 14px; }
.parent-text .section__title { text-align: left; margin-bottom: 18px; }
.parent-text p { font-size: 16px; color: var(--text-mute); line-height: 1.7; margin-bottom: 18px; }
.parent-text p strong { color: var(--text); }
.parent-card {
	background: var(--bg-elev-1); border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg); padding: 28px;
}
.parent-card__row {
	display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
	padding: 12px 0; border-bottom: 1px solid var(--border);
}
.parent-card__row:last-child { border-bottom: 0; }
.parent-card__row span { color: var(--text-dim); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; flex-shrink: 0; }
.parent-card__row strong { color: var(--text); font-size: 14px; font-weight: 500; text-align: right; }

.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
.location {
	padding: 28px 24px; background: var(--bg-elev-1);
	border: 1px solid var(--border); border-radius: var(--radius);
	transition: all .3s ease;
}
.location:hover { border-color: var(--violet); transform: translateY(-3px); }
.location__place {
	font-size: 24px; font-weight: 600; letter-spacing: -.02em;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 6px;
}
.location__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }
.location__desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.55; }

/* ==========================================================================
   23. Motion — scroll reveal, glow, marquee already covered above
   ========================================================================== */
@supports (animation-timeline: view()) {
	.bento > *,
	.services-grid > *,
	.market__stats-grid > *,
	.testimonials > *,
	.faq > details,
	.how-grid > *,
	.locations-grid > *,
	.about-stats > *,
	.section__head,
	.market__mega,
	.prose > p {
		animation: nsc-reveal linear both;
		animation-timeline: view();
		animation-range: entry 0% cover 30%;
	}
	@keyframes nsc-reveal {
		from { opacity: 0; transform: translateY(40px); }
		to   { opacity: 1; transform: translateY(0); }
	}
}

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

/* ==========================================================================
   23b. AI Companion product page components
   ========================================================================== */

/* Emotion tabs (CSS-only radio system) */
.tabs { position: relative; }
.tabs__radio { position: absolute; opacity: 0; pointer-events: none; }
.tabs__nav {
	display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
	margin-bottom: 28px;
}
.tabs__label {
	padding: 10px 20px; border-radius: 999px;
	background: var(--bg-elev-1); border: 1px solid var(--border);
	color: var(--text-mute); font-size: 14px; font-weight: 500;
	cursor: pointer; transition: all .2s ease;
	display: inline-flex; align-items: center; gap: 8px;
}
.tabs__label:hover { border-color: var(--border-hi); color: var(--text); }
.tabs__panel {
	display: none;
	padding: 40px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	text-align: center;
	max-width: 760px; margin: 0 auto;
}
.tabs__panel h3 {
	font-size: 24px; font-weight: 600; letter-spacing: -.02em;
	margin-bottom: 12px;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tabs__panel p { color: var(--text-mute); font-size: 16px; line-height: 1.65; }

/* Show matching panel + style active label */
#emo-1:checked ~ .tabs__nav .tabs__label[for="emo-1"],
#emo-2:checked ~ .tabs__nav .tabs__label[for="emo-2"],
#emo-3:checked ~ .tabs__nav .tabs__label[for="emo-3"],
#emo-4:checked ~ .tabs__nav .tabs__label[for="emo-4"],
#emo-5:checked ~ .tabs__nav .tabs__label[for="emo-5"],
#emo-6:checked ~ .tabs__nav .tabs__label[for="emo-6"],
#emo-7:checked ~ .tabs__nav .tabs__label[for="emo-7"] {
	background: var(--g-primary); color: #fff; border-color: transparent;
	box-shadow: 0 4px 16px rgba(139,92,246,.30);
}
#emo-1:checked ~ .tabs__panel--1,
#emo-2:checked ~ .tabs__panel--2,
#emo-3:checked ~ .tabs__panel--3,
#emo-4:checked ~ .tabs__panel--4,
#emo-5:checked ~ .tabs__panel--5,
#emo-6:checked ~ .tabs__panel--6,
#emo-7:checked ~ .tabs__panel--7 { display: block; }

/* Trust stats row (4 big numbers, used at top of product pages) */
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 720px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }
.trust-stat {
	padding: 28px 20px;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-align: center; backdrop-filter: blur(10px);
	transition: all .3s ease;
}
.trust-stat:hover { border-color: var(--violet); transform: translateY(-3px); }
.trust-stat__num {
	font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; letter-spacing: -.04em; line-height: 1;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 10px;
}
.trust-stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .10em; text-transform: uppercase; color: var(--text-mute); }

/* Case study cards — wider quote-style cards */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }
.case {
	padding: 32px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all .3s ease;
}
.case:hover { border-color: var(--violet); transform: translateY(-3px); }
.case__brand {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--violet-hi); margin-bottom: 18px;
	display: inline-block; padding: 4px 10px;
	background: rgba(139,92,246,.10); border-radius: 999px;
}
.case__text { color: var(--text-mute); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.case__name {
	font-size: 20px; font-weight: 600; letter-spacing: -.02em;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Compliance / Solution cards (with two-line heading: title + small tag) */
.compl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .compl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .compl-grid { grid-template-columns: 1fr; } }
.compl {
	padding: 26px 22px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all .3s ease;
	display: flex; flex-direction: column; gap: 10px;
}
.compl:hover { border-color: var(--violet); transform: translateY(-3px); }
.compl__icon {
	width: 38px; height: 38px; border-radius: var(--radius-xs);
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	display: grid; place-items: center; margin-bottom: 4px;
}
.compl__icon svg { width: 20px; height: 20px; }
.compl__title { font-size: 16px; font-weight: 600; }
.compl__tag {
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .10em;
	text-transform: uppercase; color: var(--cyan-hi);
}
.compl__desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.55; }

/* Image style chips (8-card visual style grid) */
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 720px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
.style-chip {
	padding: 22px 18px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-align: center;
	transition: all .25s ease;
}
.style-chip:hover { border-color: var(--magenta); transform: translateY(-3px); background: var(--bg-elev-2); }
.style-chip__icon {
	width: 44px; height: 44px; margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--g-primary);
	display: grid; place-items: center;
	color: #fff;
	box-shadow: var(--glow-violet);
}
.style-chip__icon svg { width: 22px; height: 22px; }
.style-chip__name { font-size: 14px; font-weight: 500; color: var(--text); }

/* Tech stack pill cloud */
.tech-stacks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .tech-stacks { grid-template-columns: 1fr; } }
.tech-group {
	padding: 28px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}
.tech-group h4 {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--violet-hi); margin-bottom: 18px; font-weight: 500;
}
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-pill {
	padding: 5px 11px;
	background: var(--bg-elev-2);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em;
	color: var(--text-mute);
	transition: all .15s ease;
}
.tech-pill:hover { border-color: var(--violet); color: var(--violet-hi); background: rgba(139,92,246,.08); }

/* Pricing block */
.price-block {
	max-width: 760px; margin: 0 auto;
	padding: 48px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	text-align: center;
	position: relative; overflow: hidden;
}
.price-block::before {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .10; filter: blur(60px);
}
.price-block > * { position: relative; z-index: 1; }
.price-block__label {
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--text-dim); margin-bottom: 16px;
}
.price-block__amount {
	font-size: clamp(56px, 8vw, 96px); font-weight: 600; letter-spacing: -.04em; line-height: 1;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 6px;
}
.price-block__currency { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; color: var(--text-mute); }
.price-block__sub { color: var(--text-mute); font-size: 16px; line-height: 1.6; margin: 18px auto 28px; max-width: 540px; }
.price-block__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Single testimonial (centered, big quote) */
.single-quote {
	max-width: 820px; margin: 0 auto;
	padding: 48px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-align: center;
	position: relative;
}
.single-quote::before {
	content: '"'; font-family: Georgia, serif;
	font-size: 120px; line-height: 1; color: var(--violet); opacity: .25;
	position: absolute; top: 16px; left: 32px;
}
.single-quote__text { font-size: 20px; line-height: 1.55; color: var(--text); margin-bottom: 24px; position: relative; z-index: 1; }
.single-quote__person { display: flex; align-items: center; gap: 14px; justify-content: center; }
.single-quote__avatar {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--g-primary); color: #fff;
	display: grid; place-items: center; font-weight: 600; font-size: 16px;
	box-shadow: var(--glow-violet);
}
.single-quote__name { font-weight: 500; font-size: 15px; }
.single-quote__role { font-size: 13px; color: var(--text-mute); }

/* Companion hero (slightly different than homepage hero) */
.companion-hero { min-height: auto; padding: 80px 0 60px; }
.companion-hero .hero__title { font-size: clamp(36px, 6vw, 78px); }
.companion-hero .hero__sub { font-size: clamp(16px, 1.3vw, 19px); }

/* Monetization grid (4 numbered cards) */
.monetize-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .monetize-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .monetize-grid { grid-template-columns: 1fr; } }

/* Feature check-list (3-col grid with check icon) — moderation rules, etc. */
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 880px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list__item {
	display: flex; align-items: center; gap: 14px;
	padding: 16px 20px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 14.5px; color: var(--text);
	transition: all .2s ease;
}
.feature-list__item:hover { border-color: var(--violet); transform: translateY(-2px); }
.feature-list__check {
	width: 28px; height: 28px; flex-shrink: 0;
	background: var(--g-primary); color: #fff;
	border-radius: 50%; display: grid; place-items: center;
	box-shadow: var(--glow-violet);
}
.feature-list__check svg { width: 14px; height: 14px; }

/* Dual pricing (2 cards side-by-side) */
.dual-pricing {
	display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
	max-width: 1100px; margin: 0 auto;
}
.dual-pricing .price-block { max-width: none; }
.price-block--white-label { /* subtle modifier */ }
.price-block--custom .price-block__amount { background: var(--g-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-block--custom .price-block__cta .btn--primary { background: var(--g-cool); box-shadow: 0 4px 24px rgba(34,211,238,.25); }
@media (max-width: 880px) { .dual-pricing { grid-template-columns: 1fr; } }

/* 30-day delivery badge (centered, avatar stack + number) */
.delivery-badge {
	display: inline-flex; align-items: center; gap: 18px;
	padding: 14px 24px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border-hi);
	border-radius: 999px;
	margin: 32px auto 0;
}
.delivery-badge__avatars { display: flex; flex-shrink: 0; }
.delivery-badge__avatars span {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--g-primary);
	border: 2px solid var(--bg-elev-1);
	margin-left: -10px;
	display: grid; place-items: center;
	color: #fff; font-weight: 600; font-size: 14px;
}
.delivery-badge__avatars span:first-child { margin-left: 0; }
.delivery-badge__num {
	font-size: 28px; font-weight: 600; letter-spacing: -.04em;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
	line-height: 1;
}
.delivery-badge__label {
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
	text-transform: uppercase; color: var(--text-mute);
	line-height: 1.2;
}
.delivery-badge__wrap { text-align: center; }

/* Feature-with-impact card — used for OurDream's feature + Impact descriptions */
.impact { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.impact__icon {
	width: 44px; height: 44px; border-radius: var(--radius-sm);
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	display: grid; place-items: center;
}
.impact__icon svg { width: 22px; height: 22px; }
.impact:hover .impact__icon { background: var(--violet); color: #fff; transform: rotate(-5deg) scale(1.06); transition: all .25s ease; }
.impact__title { font-size: 17px; font-weight: 600; }
.impact__desc { font-size: 14px; color: var(--text-mute); line-height: 1.6; }
.impact__metric {
	display: flex; align-items: flex-start; gap: 8px;
	padding: 12px 14px; margin-top: 8px;
	background: rgba(139,92,246,.08); border-left: 2px solid var(--violet);
	border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
	font-size: 13px; color: var(--text); line-height: 1.5;
}
.impact__metric strong {
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
	text-transform: uppercase; color: var(--cyan-hi);
	flex-shrink: 0; padding-top: 2px;
}

/* Scroll-reveal additions for product page components */
@supports (animation-timeline: view()) {
	.trust-stats > *,
	.tabs__panel,
	.case-grid > *,
	.compl-grid > *,
	.styles-grid > *,
	.tech-stacks > *,
	.monetize-grid > *,
	.price-block,
	.single-quote,
	.feature-list > *,
	.dual-pricing > * {
		animation: nsc-reveal linear both;
		animation-timeline: view();
		animation-range: entry 0% cover 25%;
	}
}

/* ==========================================================================
   23c. Blog archive — hero + filter chips + post grid
   ========================================================================== */
.cat-chips {
	display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
	max-width: 1000px; margin: 0 auto;
}
.cat-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 18px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 14px; color: var(--text-mute);
	transition: all .2s ease;
}
.cat-chip:hover { border-color: var(--border-hi); color: var(--text); }
.cat-chip.is-active { background: var(--g-primary); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(139,92,246,.25); }
.cat-chip__count { font-family: var(--font-mono); font-size: 11px; opacity: .7; }
.cat-chip.is-active .cat-chip__count { opacity: .9; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
	display: flex; flex-direction: column;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all .3s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.blog-card__media {
	display: block; aspect-ratio: 16/9; position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--violet-lo) 0%, var(--magenta-lo) 100%);
}
.blog-card__media::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(139,92,246,.5), transparent 60%),
		radial-gradient(circle at 70% 70%, rgba(34,211,238,.3), transparent 60%);
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.blog-card__category {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	padding: 5px 11px;
	background: rgba(0,0,0,.65); color: #fff;
	font-family: var(--font-mono); font-size: 10.5px;
	letter-spacing: .10em; text-transform: uppercase;
	border-radius: 999px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.10);
}

.blog-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card__title { font-size: 19px; font-weight: 600; line-height: 1.3; }
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--violet-hi); }
.blog-card__excerpt { font-size: 14px; color: var(--text-mute); line-height: 1.6; flex: 1; }
.blog-card__meta {
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
	color: var(--text-dim); text-transform: uppercase;
	display: flex; align-items: center; gap: 8px;
}
.blog-card__dot { opacity: .4; }

/* ==========================================================================
   23d. Single blog post — hero, meta, 2-col layout, sidebar form, prose
   ========================================================================== */

/* Compact post hero */
.post-hero {
	position: relative; padding: 80px 0 56px;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev-1) 100%);
	overflow: hidden; isolation: isolate;
}
.post-hero .aurora__blob { filter: blur(120px); opacity: .35; }
.post-hero > .container { position: relative; z-index: 2; max-width: 940px; }

.post-breadcrumb {
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
	color: var(--text-dim); margin-bottom: 24px;
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.post-breadcrumb a { color: var(--text-mute); }
.post-breadcrumb a:hover { color: var(--violet-hi); }
.post-breadcrumb__sep { opacity: .4; }

.post-category-pill {
	display: inline-block; padding: 6px 14px;
	background: var(--g-primary); color: #fff;
	border-radius: 999px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 22px;
	box-shadow: 0 4px 14px rgba(139,92,246,.30);
}
.post-category-pill:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(236,72,153,.40); }

.post-title {
	font-size: clamp(30px, 4.5vw, 52px);
	font-weight: 600; letter-spacing: -.03em; line-height: 1.1;
	margin-bottom: 22px;
}
.post-excerpt { font-size: 18px; color: var(--text-mute); line-height: 1.55; margin-bottom: 32px; max-width: 760px; }

.post-meta-bar {
	display: flex; justify-content: space-between; align-items: center;
	gap: 24px; flex-wrap: wrap;
	padding-top: 24px; border-top: 1px solid var(--border);
}
.post-meta-bar__author { display: flex; align-items: center; gap: 12px; }
.post-meta-bar__avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--g-primary); color: #fff;
	display: grid; place-items: center; font-weight: 600; font-size: 16px;
	box-shadow: var(--glow-violet);
}
.post-meta-bar__name { font-size: 14.5px; font-weight: 500; color: var(--text); }
.post-meta-bar__role { font-size: 12px; color: var(--text-mute); }
.post-meta-bar__dates { display: flex; gap: 28px; flex-wrap: wrap; }
.post-meta-bar__date { display: flex; flex-direction: column; gap: 2px; }
.post-meta-bar__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.post-meta-bar__date time, .post-meta-bar__date span:not(.post-meta-bar__label) { font-size: 13px; color: var(--text); }

/* 2-col layout */
.post-layout { padding: 72px 0 var(--gap-xl); }
.post-layout__grid {
	display: grid; grid-template-columns: 1fr 340px; gap: 56px;
	max-width: 1200px; margin: 0 auto;
}
@media (max-width: 980px) {
	.post-layout__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Featured thumbnail */
.post-thumb { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar (sticky) */
.post-sidebar { position: relative; }
.post-sidebar__sticky {
	position: sticky; top: 92px; display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 980px) { .post-sidebar__sticky { position: static; } }

.sidebar-card {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 26px;
}
.sidebar-card__eyebrow {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--violet-hi); margin-bottom: 12px;
}
.sidebar-card__title { font-size: 19px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.sidebar-card__sub { font-size: 13.5px; color: var(--text-mute); line-height: 1.55; margin-bottom: 18px; }

.sidebar-form label {
	display: block; font-family: var(--font-mono); font-size: 10.5px;
	letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim);
	margin: 12px 0 6px;
}
.sidebar-form label:first-of-type { margin-top: 0; }
.sidebar-form input, .sidebar-form textarea {
	width: 100%; padding: 11px 12px;
	background: var(--bg);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-xs); font-size: 14px;
	transition: all .2s ease;
}
.sidebar-form input::placeholder, .sidebar-form textarea::placeholder { color: var(--text-faint); }
.sidebar-form input:focus, .sidebar-form textarea:focus {
	outline: none; border-color: var(--violet);
	box-shadow: 0 0 0 3px rgba(139,92,246,.20);
}
.sidebar-form textarea { resize: vertical; min-height: 88px; }
.sidebar-form__submit {
	margin-top: 18px;
	width: 100%; padding: 12px;
	border: 0; cursor: pointer;
	background: var(--g-primary); color: #fff;
	border-radius: var(--radius-xs);
	font-weight: 600; font-size: 14px;
	transition: all .2s ease;
	box-shadow: 0 4px 14px rgba(139,92,246,.30);
}
.sidebar-form__submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(236,72,153,.40); }

/* Sidebar quick-contact list */
.sidebar-quick {
	display: flex; align-items: center; gap: 12px;
	padding: 11px 12px; margin-top: 8px;
	background: var(--bg); border: 1px solid var(--border);
	border-radius: var(--radius-xs);
	font-size: 13px; color: var(--text);
	transition: all .2s ease;
}
.sidebar-quick:hover { border-color: var(--violet); background: var(--bg-elev-2); color: var(--text); }
.sidebar-quick:first-of-type { margin-top: 4px; }
.sidebar-quick__icon {
	width: 30px; height: 30px; flex-shrink: 0;
	background: rgba(139,92,246,.12); color: var(--violet-hi);
	border-radius: 50%; display: grid; place-items: center; font-size: 14px;
}
.sidebar-quick strong { display: block; font-size: 13px; font-weight: 500; color: var(--text); }
.sidebar-quick span { display: block; font-size: 11px; color: var(--text-dim); margin-top: 1px; }

/* ==========================================================================
   23e. Post content prose styling
   ========================================================================== */
.post-content {
	font-size: 17px; line-height: 1.75; color: var(--text);
}
.post-content > * { margin-bottom: 22px; }
.post-content > *:last-child { margin-bottom: 0; }

.post-content p { color: var(--text); }
.post-content p strong { color: var(--text); font-weight: 600; }
.post-content p em { font-style: italic; color: var(--text); }

.post-content a {
	color: var(--violet-hi); text-decoration: underline;
	text-decoration-color: rgba(167,139,250,.4);
	text-underline-offset: 3px;
}
.post-content a:hover { color: var(--magenta-hi); text-decoration-color: var(--magenta-hi); }

.post-content h2 {
	font-size: clamp(24px, 3vw, 32px); font-weight: 600;
	letter-spacing: -.02em; line-height: 1.2;
	margin: 56px 0 18px;
	padding-top: 8px;
}
.post-content h3 {
	font-size: clamp(20px, 2.4vw, 24px); font-weight: 600;
	letter-spacing: -.015em; line-height: 1.25;
	margin: 40px 0 14px;
	color: var(--text);
}
.post-content h4 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; }

.post-content ul, .post-content ol { margin-left: 0; padding-left: 0; list-style: none; }
.post-content ul li, .post-content ol li {
	position: relative; padding-left: 28px; margin-bottom: 12px;
	color: var(--text);
}
.post-content ul li::before {
	content: ''; position: absolute; left: 8px; top: 12px;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--g-primary);
}
.post-content ol { counter-reset: list; }
.post-content ol li { counter-increment: list; }
.post-content ol li::before {
	content: counter(list) '.';
	position: absolute; left: 0; top: 0;
	font-family: var(--font-mono); font-size: 13px; font-weight: 600;
	color: var(--violet-hi); width: 22px;
}

.post-content blockquote {
	border-left: 3px solid var(--violet);
	padding: 12px 22px;
	margin: 28px 0;
	background: rgba(139,92,246,.06);
	color: var(--text); font-style: italic;
	border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.post-content code {
	background: var(--bg-elev-2);
	padding: 3px 7px;
	border-radius: 4px;
	font-family: var(--font-mono);
	font-size: .88em;
	color: var(--cyan-hi);
	border: 1px solid var(--border);
}
.post-content pre {
	background: #050509;
	color: var(--text-inv);
	padding: 22px 26px;
	border: 1px solid var(--border-hi);
	border-radius: var(--radius);
	overflow: auto;
	margin: 28px 0;
	font-family: var(--font-mono); font-size: 14px; line-height: 1.6;
}
.post-content pre code { background: transparent; border: 0; padding: 0; color: inherit; font-size: 14px; }

/* Tables (Gutenberg .wp-block-table or plain <table>) */
.post-content .wp-block-table, .post-content table {
	width: 100%; margin: 32px 0;
	border-collapse: collapse;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: 14.5px;
}
.post-content .wp-block-table table { margin: 0; border: 0; border-radius: 0; }
.post-content table thead { background: var(--bg-elev-2); }
.post-content table th {
	padding: 14px 16px;
	text-align: left;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--text); font-weight: 600;
	border-bottom: 1px solid var(--border-hi);
}
.post-content table td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--border);
	color: var(--text-mute);
	vertical-align: top;
}
.post-content table tr:last-child td { border-bottom: 0; }
.post-content table tr:hover td { background: rgba(139,92,246,.04); color: var(--text); }
.post-content table td strong, .post-content table th strong { color: var(--text); }
.post-content .wp-block-table.is-style-stripes tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }

/* Inline CTA boxes inside content */
.post-content .inline-cta {
	background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(236,72,153,.10));
	border: 1px solid rgba(139,92,246,.30);
	border-radius: var(--radius-lg);
	padding: 28px 30px;
	margin: 36px 0;
	position: relative; overflow: hidden;
}
.post-content .inline-cta::before {
	content: ''; position: absolute; inset: 0;
	background: var(--g-mesh); opacity: .08; filter: blur(40px);
	pointer-events: none;
}
.post-content .inline-cta > * { position: relative; z-index: 1; }
.post-content .inline-cta h4 {
	font-size: 19px; font-weight: 600; margin: 0 0 10px;
	background: var(--g-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.post-content .inline-cta p { color: var(--text-mute); font-size: 15px; margin: 0 0 18px; line-height: 1.55; }
.post-content .inline-cta a.btn { text-decoration: none; }

/* Alt background for related-articles section */
.section--alt-bg { background: var(--bg-elev-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ==========================================================================
   24. Blog entries (single + archive — legacy fallback styles)
   ========================================================================== */
.entry { padding: 40px 0; border-bottom: 1px solid var(--border); }
.entry-title { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.entry-title a:hover { color: var(--violet-hi); }
.entry-meta { color: var(--text-mute); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.entry-content { font-size: 17px; line-height: 1.7; color: var(--text); }
.entry-content p { margin-bottom: 1em; color: var(--text-mute); }
.entry-content h2 { font-size: 24px; margin: 1.5em 0 .5em; }
.entry-content h3 { font-size: 20px; margin: 1.2em 0 .4em; }
.entry-content a { color: var(--violet-hi); text-decoration: underline; }
.entry-content code { background: var(--bg-elev-2); padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: .9em; color: var(--cyan-hi); }
.entry-content pre { background: var(--bg-elev-1); color: var(--text); padding: 18px 22px; border: 1px solid var(--border); border-radius: var(--radius); overflow: auto; margin: 1em 0; font-family: var(--font-mono); font-size: 14px; line-height: 1.6; }
.entry-content pre code { background: transparent; color: inherit; padding: 0; }
.entry-content blockquote { border-left: 3px solid var(--violet); padding: 8px 18px; margin: 1.2em 0; color: var(--text-mute); font-style: italic; }

.pagination { display: flex; gap: 8px; justify-content: center; padding: 30px 0; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-xs); font-size: 14px; color: var(--text-mute); background: var(--bg-elev-1); }
.pagination a:hover { border-color: var(--violet); color: var(--text); }
.pagination .current { background: var(--g-primary); color: #fff; border-color: transparent; }

/* ============================================================
   CONTACT POPUP — sitewide modal triggered by any #contact link
   ============================================================ */
.contact-popup {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	visibility: hidden; opacity: 0;
	transition: opacity .25s ease, visibility 0s linear .25s;
}
.contact-popup.is-open { visibility: visible; opacity: 1; transition: opacity .25s ease; }

.contact-popup__backdrop {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,.18) 0%, rgba(8,8,13,.85) 60%, rgba(8,8,13,.95) 100%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	cursor: pointer;
}

.contact-popup__card {
	position: relative;
	width: 100%; max-width: 1080px;
	max-height: calc(100vh - 24px);
	overflow-y: auto;
	background: linear-gradient(180deg, rgba(20,20,30,.95) 0%, rgba(13,13,21,.98) 100%);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg), 0 0 80px rgba(139,92,246,.22);
	padding: 28px 32px 22px;
	transform: translateY(20px) scale(.97);
	transition: transform .35s cubic-bezier(.16,1,.3,1);
	display: grid;
	grid-template-columns: 320px 1fr;
	grid-template-areas: 'head form' 'stats stats';
	gap: 18px 36px;
}
.contact-popup__head  { grid-area: head; }
.contact-popup__form  { grid-area: form; }
.contact-popup__stats { grid-area: stats; }
@media (max-width: 880px) {
	.contact-popup__card {
		grid-template-columns: 1fr;
		grid-template-areas: 'head' 'form' 'stats';
		max-width: 560px;
		padding: 28px 22px 22px;
	}
}
.contact-popup.is-open .contact-popup__card { transform: translateY(0) scale(1); }

/* Top gradient accent */
.contact-popup__card::before {
	content: '';
	position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
	background: var(--g-primary);
	border-radius: 2px;
}

.contact-popup__close {
	position: absolute; top: 14px; right: 14px;
	width: 36px; height: 36px;
	display: flex; align-items: center; justify-content: center;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--text-mute);
	cursor: pointer;
	transition: all .2s ease;
	z-index: 2;
}
.contact-popup__close:hover {
	color: var(--text); border-color: var(--magenta); background: rgba(236,72,153,.1);
	transform: rotate(90deg);
}
.contact-popup__close svg { width: 16px; height: 16px; }

/* Header */
.contact-popup__head { text-align: left; margin-bottom: 0; align-self: start; position: sticky; top: 0; }
.contact-popup__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 11px; font-weight: 700; letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 12px;
	font-family: var(--font-mono);
}
.contact-popup__eyebrow-sep { color: var(--text-faint); }
.contact-popup__title {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.02em;
	margin: 0 0 10px;
	color: var(--text);
}
.contact-popup__sub {
	font-size: 13px;
	color: var(--text-mute);
	margin: 0;
	line-height: 1.55;
}

/* Form */
.contact-popup__form { display: flex; flex-direction: column; gap: 10px; }
.contact-popup__row { display: grid; gap: 12px; }
.contact-popup__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) {
	.contact-popup__row--2 { grid-template-columns: 1fr; }
	.contact-popup__card { padding: 28px 20px 22px; }
}
.contact-popup__field { display: flex; flex-direction: column; gap: 6px; }
.contact-popup__field label {
	font-size: 12px; font-weight: 600;
	color: var(--text);
	letter-spacing: .02em;
}
.contact-popup__field label .req { color: var(--magenta); }
.contact-popup__opt { color: var(--text-dim); font-weight: 400; font-size: 11px; margin-left: 4px; }

.contact-popup__field input,
.contact-popup__field textarea {
	width: 100%;
	background: rgba(8,8,13,.6);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	font-size: 14px;
	color: var(--text);
	font-family: var(--font);
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-popup__field input::placeholder,
.contact-popup__field textarea::placeholder { color: var(--text-faint); }
.contact-popup__field input:focus,
.contact-popup__field textarea:focus {
	outline: none;
	border-color: var(--violet);
	box-shadow: 0 0 0 3px rgba(139,92,246,.18);
	background: rgba(13,13,21,.8);
}
.contact-popup__field textarea { resize: vertical; min-height: 92px; }

.contact-popup__hint {
	font-size: 11px;
	color: var(--text-dim);
	font-family: var(--font-mono);
	letter-spacing: .02em;
}
.contact-popup__hint.is-detected { color: var(--cyan); }

/* Contact-method requirement note (between email row + phone/telegram row) */
.contact-popup__contact-note {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 14px;
	background: rgba(34,211,238,.06);
	border: 1px dashed rgba(34,211,238,.25);
	border-radius: var(--radius-sm);
	font-size: 12px;
	color: var(--text-mute);
	line-height: 1.45;
}
.contact-popup__contact-note strong { color: var(--cyan); font-weight: 600; }
.contact-popup__contact-note-icon {
	flex-shrink: 0;
	width: 22px; height: 22px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--cyan);
	color: #08080d;
}
.contact-popup__contact-note-icon svg { width: 12px; height: 12px; }

/* Honeypot */
.contact-popup__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important; height: 1px !important;
	opacity: 0 !important;
}

/* NDA toggle */
.contact-popup__nda {
	display: flex; align-items: center; gap: 10px;
	font-size: 13px;
	color: var(--text-mute);
	cursor: pointer;
	padding: 8px 0;
	user-select: none;
}
.contact-popup__nda input { position: absolute; opacity: 0; pointer-events: none; }
.contact-popup__nda-box {
	flex-shrink: 0;
	width: 18px; height: 18px;
	border: 1.5px solid var(--border-hi);
	border-radius: 4px;
	background: rgba(8,8,13,.6);
	display: flex; align-items: center; justify-content: center;
	transition: all .15s ease;
	position: relative;
}
.contact-popup__nda input:checked + .contact-popup__nda-box {
	background: var(--g-primary);
	border-color: transparent;
}
.contact-popup__nda input:checked + .contact-popup__nda-box::after {
	content: ''; width: 10px; height: 5px;
	border-left: 2px solid #fff; border-bottom: 2px solid #fff;
	transform: rotate(-45deg) translateY(-1px);
}
.contact-popup__nda strong { color: var(--text); font-weight: 600; }

/* Submit */
.contact-popup__submit {
	margin-top: 8px;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	width: 100%;
	padding: 15px 24px;
	background: var(--g-primary);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-size: 13px; font-weight: 700;
	letter-spacing: .14em;
	cursor: pointer;
	font-family: var(--font-mono);
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
	box-shadow: 0 10px 30px rgba(139,92,246,.4);
}
.contact-popup__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(139,92,246,.55), 0 0 30px rgba(236,72,153,.3);
}
.contact-popup__submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.contact-popup__submit.is-loading span { opacity: .7; }
.contact-popup__submit svg { width: 16px; height: 16px; transition: transform .2s ease; }
.contact-popup__submit:hover svg { transform: translateX(4px); }

/* Alerts */
.contact-popup__alert {
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	border: 1px solid;
}
.contact-popup__alert--err { background: rgba(220,38,38,.12); border-color: rgba(220,38,38,.35); color: #fca5a5; }
.contact-popup__alert--ok  { background: rgba(34,197,94,.12);  border-color: rgba(34,197,94,.35);  color: #86efac; }

/* Trust stat row at bottom */
.contact-popup__stats {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}
.contact-popup__stat { text-align: center; }
.contact-popup__stat-num {
	font-family: var(--font-mono);
	font-size: 18px; font-weight: 700;
	background: var(--g-primary);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: .02em;
}
.contact-popup__stat-label {
	font-size: 10px; color: var(--text-dim);
	text-transform: uppercase; letter-spacing: .14em;
	margin-top: 4px;
}

/* Thank You page */
.thankyou-page {
	min-height: calc(100vh - 200px);
	display: flex; align-items: center; justify-content: center;
	padding: 80px 24px;
	position: relative;
	overflow: hidden;
}
.thankyou-page__inner {
	max-width: 720px; text-align: center; position: relative; z-index: 1;
}
.thankyou-page__badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 84px; height: 84px;
	border-radius: 50%;
	background: var(--g-primary);
	margin-bottom: 28px;
	box-shadow: 0 0 60px rgba(139,92,246,.5);
	animation: thankPulse 2s ease-in-out infinite;
}
.thankyou-page__badge svg { width: 40px; height: 40px; color: #fff; }
@keyframes thankPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(139,92,246,.5); }
	50%      { transform: scale(1.05); box-shadow: 0 0 80px rgba(236,72,153,.6); }
}
.thankyou-page h1 {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.05;
	margin: 0 0 20px;
}
.thankyou-page__sub {
	font-size: 17px; color: var(--text-mute);
	max-width: 540px; margin: 0 auto 36px;
	line-height: 1.6;
}
.thankyou-page__meta {
	display: inline-flex; flex-wrap: wrap; gap: 18px;
	justify-content: center;
	margin-bottom: 36px;
}
.thankyou-page__meta-item {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; color: var(--text-mute);
	font-family: var(--font-mono);
}
.thankyou-page__meta-item strong { color: var(--text); font-weight: 600; }
.thankyou-page__actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
