/*
 * Cyentrix — minimal homepage and site-wide overrides
 * Inspired by calmly.com / fast.com — clean, light, content-first.
 */

/* ────── Tokens ───────────────────────────────────────── */
:root {
	--cx-bg: #ffffff;
	--cx-bg-alt: #f7f7f5;
	--cx-text: #0c0c0c;
	--cx-text-soft: #5a5a5a;
	--cx-text-mute: #8a8a8a;
	--cx-line: #e8e8e6;
	--cx-accent: #0a2540;
	--cx-accent-hover: #1a3a5a;
	/* Cyber-leaning accent palette — bright, but kept light */
	--cx-c-cyan:   #06B6D4;
	--cx-c-electric: #0EA5E9;
	--cx-c-violet: #8B5CF6;
	--cx-c-red:    #EF4444;
	--cx-c-amber:  #F59E0B;
	--cx-c-emerald:#10B981;
	--cx-c-blue:   #3B82F6;
	--cx-c-indigo: #6366F1;
	--cx-c-pink:   #EC4899;
	/* Back-compat alias for any leftover references */
	--cx-c-orange: var(--cx-c-cyan);
	--cx-radius: 12px;
	--cx-radius-sm: 8px;
	--cx-radius-lg: 20px;
	--cx-shadow-sm: 0 1px 2px rgba(0,0,0,.04);
	--cx-shadow: 0 4px 16px rgba(0,0,0,.06);
	--cx-shadow-lg: 0 24px 64px -12px rgba(10,37,64,.18);
	--cx-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--cx-font-display: 'Plus Jakarta Sans', var(--cx-font);
}

/* ────── Override legacy MCA dark theme on cyentrix.com ──
 * Repointing the legacy theme's CSS custom properties switches
 * every existing component (page.php, single.php, archive,
 * comments, widgets, etc.) to the new minimal light look. */
body.cx-site {
	--mca-bg-primary:    #ffffff;
	--mca-bg-secondary:  #ffffff;
	--mca-bg-panel:      #ffffff;
	--mca-bg-panel-alt:  #f7f7f5;
	--mca-bg-glass:      #ffffff;
	--mca-bg-glass-lite: #ffffff;
	--mca-border:        #e8e8e6;
	--mca-border-mid:    #d8d8d6;
	--mca-border-hover:  #0a2540;
	--mca-cyan:          #0a2540;
	--mca-cyan-dim:      rgba(10, 37, 64, 0.08);
	--mca-cyan-glow:     transparent;
	--mca-indigo:        #0a2540;
	--mca-indigo-dim:    rgba(10, 37, 64, 0.08);
	--mca-indigo-glow:   transparent;
	--mca-purple:        #0a2540;
	--mca-purple-dim:    rgba(10, 37, 64, 0.08);
	--mca-purple-glow:   transparent;
	--mca-text-primary:  #0c0c0c;
	--mca-text-secondary:#5a5a5a;
	--mca-text-muted:    #8a8a8a;
	--mca-font:          'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--mca-shadow-sm:     0 1px 2px rgba(0,0,0,.04);
	--mca-shadow:        0 4px 16px rgba(0,0,0,.06);
	--mca-shadow-lg:     0 8px 24px rgba(0,0,0,.08);
	--mca-shadow-glow-cyan:   none;
	--mca-shadow-glow-indigo: none;

	background: var(--cx-bg);
	color: var(--cx-text);
	font-family: var(--cx-font);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Force light data-theme regardless of localStorage. */
body.cx-site,
html:has(body.cx-site) {
	color-scheme: light;
}

/* ────── Page / post content layout (page.php, single.php) ── */
body.cx-site .mca-page,
body.cx-site .mca-single,
body.cx-site .mca-blog,
body.cx-site .mca-archive,
body.cx-site main.mca-main:not(.mca-main--home) {
	background: var(--cx-bg);
	padding: 56px 0;
}

body.cx-site .mca-page-header,
body.cx-site .mca-single-header,
body.cx-site .mca-archive-header {
	background: var(--cx-bg);
	border-bottom: none;
	padding: 0 0 32px;
	max-width: 720px;
	margin: 0 auto;
}

body.cx-site .mca-page-header__title,
body.cx-site .mca-single-header__title,
body.cx-site .mca-archive-header__title,
body.cx-site .entry-title {
	font-family: var(--cx-font-display);
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--cx-text);
	margin: 0 0 16px;
}

body.cx-site .mca-page-header__excerpt,
body.cx-site .mca-single-header__excerpt {
	font-size: 18px;
	line-height: 1.5;
	color: var(--cx-text-soft);
	margin: 0 0 16px;
}

body.cx-site .mca-page-content,
body.cx-site .mca-single-content,
body.cx-site .mca-entry-content,
body.cx-site .entry-content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.65;
	color: var(--cx-text);
}

body.cx-site .mca-page-content p,
body.cx-site .mca-single-content p,
body.cx-site .entry-content p {
	margin: 0 0 1.2em;
}

body.cx-site .mca-page-content h2,
body.cx-site .mca-single-content h2,
body.cx-site .entry-content h2 {
	font-family: var(--cx-font-display);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.015em;
	margin: 2em 0 0.6em;
	color: var(--cx-text);
}

body.cx-site .mca-page-content h3,
body.cx-site .mca-single-content h3,
body.cx-site .entry-content h3 {
	font-family: var(--cx-font-display);
	font-size: 20px;
	font-weight: 600;
	margin: 1.6em 0 0.5em;
	color: var(--cx-text);
}

body.cx-site .mca-page-content a,
body.cx-site .mca-single-content a,
body.cx-site .entry-content a {
	color: var(--cx-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.cx-site .mca-page-content blockquote,
body.cx-site .mca-single-content blockquote,
body.cx-site .entry-content blockquote {
	border-left: 3px solid var(--cx-accent);
	padding: 4px 0 4px 20px;
	margin: 24px 0;
	font-style: normal;
	color: var(--cx-text-soft);
	background: transparent;
}

body.cx-site .mca-page-content code,
body.cx-site .mca-single-content code,
body.cx-site .entry-content code {
	background: var(--cx-bg-alt);
	color: var(--cx-text);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.92em;
}

body.cx-site .mca-page-content pre,
body.cx-site .mca-single-content pre,
body.cx-site .entry-content pre {
	background: #0c0c0c;
	color: #f1f1f1;
	padding: 18px;
	border-radius: var(--cx-radius-sm);
	overflow-x: auto;
	font-size: 14px;
}

body.cx-site .mca-page-content img,
body.cx-site .mca-single-content img,
body.cx-site .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--cx-radius);
	margin: 24px 0;
}

/* Restore bullets / numbering inside article content (theme reset strips them). */
body.cx-site .entry-content ul,
body.cx-site .mca-entry-content ul,
body.cx-site .mca-page-content ul,
body.cx-site .mca-single-content ul {
	list-style: disc outside;
	padding-left: 1.4em;
	margin: 0 0 1.2em;
}
body.cx-site .entry-content ol,
body.cx-site .mca-entry-content ol,
body.cx-site .mca-page-content ol,
body.cx-site .mca-single-content ol {
	list-style: decimal outside;
	padding-left: 1.6em;
	margin: 0 0 1.2em;
}
body.cx-site .entry-content li,
body.cx-site .mca-entry-content li,
body.cx-site .mca-page-content li,
body.cx-site .mca-single-content li {
	margin: 0 0 0.45em;
	line-height: 1.65;
}
body.cx-site .entry-content ul ul,
body.cx-site .mca-entry-content ul ul {
	list-style: circle outside;
	margin: 0.4em 0 0.4em;
}
body.cx-site .entry-content ol ol,
body.cx-site .mca-entry-content ol ol {
	list-style: lower-alpha outside;
	margin: 0.4em 0 0.4em;
}

/* ────── Blog list / archive ───────────────────────────── */
body.cx-site .mca-blog__grid,
body.cx-site .mca-archive__grid,
body.cx-site .mca-posts-grid {
	display: block;
	max-width: 720px;
	margin: 0 auto;
}

body.cx-site .mca-card,
body.cx-site .mca-post-card,
body.cx-site article.post,
body.cx-site article.page {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--cx-line);
	border-radius: 0;
	padding: 24px 0;
	margin: 0;
	box-shadow: none;
}

body.cx-site .mca-card:hover,
body.cx-site .mca-post-card:hover,
body.cx-site article.post:hover {
	transform: none;
	box-shadow: none;
}

body.cx-site .mca-card__title a,
body.cx-site .mca-post-card__title a,
body.cx-site article.post .entry-title a {
	color: var(--cx-text);
	text-decoration: none;
}

body.cx-site .mca-card__title a:hover,
body.cx-site article.post .entry-title a:hover {
	color: var(--cx-accent);
}

body.cx-site .mca-card__meta,
body.cx-site .entry-meta {
	color: var(--cx-text-mute);
	font-size: 13px;
}

/* ────── Comments / forms ─────────────────────────────── */
body.cx-site .mca-comments,
body.cx-site .comments-area {
	max-width: 720px;
	margin: 48px auto 0;
	padding: 32px 0 0;
	border-top: 1px solid var(--cx-line);
}

body.cx-site input[type="text"],
body.cx-site input[type="email"],
body.cx-site input[type="url"],
body.cx-site input[type="search"],
body.cx-site input[type="password"],
body.cx-site textarea,
body.cx-site select {
	background: var(--cx-bg);
	color: var(--cx-text);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	padding: 10px 14px;
	font-family: var(--cx-font);
	font-size: 15px;
}

body.cx-site input:focus,
body.cx-site textarea:focus,
body.cx-site select:focus {
	outline: none;
	border-color: var(--cx-accent);
}

body.cx-site button:not(.cx-btn):not(.mca-theme-toggle),
body.cx-site .mca-btn--primary,
body.cx-site .mca-btn--secondary {
	background: var(--cx-accent);
	color: #ffffff;
	border: 1px solid var(--cx-accent);
	border-radius: var(--cx-radius-sm);
	padding: 12px 22px;
	font-family: var(--cx-font);
	font-weight: 600;
	cursor: pointer;
}

body.cx-site .mca-btn--ghost {
	background: transparent;
	color: var(--cx-text);
	border: 1px solid var(--cx-line);
}

/* ────── Containers / page width ──────────────────────── */
body.cx-site .mca-container {
	max-width: 880px;
	padding-left: 24px;
	padding-right: 24px;
}

/* ────── Hide legacy decorative elements ──────────────── */
body.cx-site .mca-hero__grid-bg,
body.cx-site .mca-hero__glow,
body.cx-site .mca-section__bg-pattern,
body.cx-site .mca-bg-decoration,
body.cx-site .mca-pill,
body.cx-site .mca-glow {
	display: none !important;
}

body.cx-site::before,
body.cx-site::after {
	display: none !important;
}

body.cx-site .mca-main,
body.cx-site .cx-main {
	background: var(--cx-bg);
}

.cx-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ────── Header / nav minimal ────────────────────────── */
body.cx-site .mca-header,
body.cx-site .mca-site-header,
body.cx-site header[class*="header"]:not(.cx-keep) {
	background: var(--cx-bg);
	border-bottom: 1px solid var(--cx-line);
	box-shadow: none;
}

.cx-header {
	background: var(--cx-bg);
	border-bottom: 1px solid var(--cx-line);
	padding: 18px 0;
}
.cx-header__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 600px) {
	.cx-header__inner { padding: 0 20px; }
}
.cx-header__brand {
	display: inline-flex;
	align-items: center;
	font-family: var(--cx-font-display);
	font-weight: 700;
	font-size: 18px;
	color: var(--cx-text);
	text-decoration: none;
	letter-spacing: -0.01em;
	line-height: 1;
}
.cx-header__brand:hover { color: var(--cx-text); }
.cx-header__logo {
	display: block;
	height: 28px;
	width: auto;
	max-width: 180px;
}
@media (max-width: 480px) {
	.cx-header__logo { height: 24px; }
}
.cx-nav {
	display: flex;
	gap: 28px;
	align-items: center;
}
.cx-nav a {
	color: var(--cx-text-soft);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.15s;
}
.cx-nav a:hover { color: var(--cx-text); }

/* ────── Hero ────────────────────────────────────────── */
.cx-hero {
	position: relative;
	padding: 96px 0 80px;
	text-align: left;
	overflow: hidden;
	background:
		radial-gradient(1200px 600px at -10% -10%, rgba(6,182,212,0.10), transparent 60%),
		radial-gradient(1000px 500px at 110% 0%, rgba(139,92,246,0.10), transparent 55%),
		radial-gradient(800px 500px at 50% 110%, rgba(99,102,241,0.06), transparent 60%);
}
.cx-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
	max-width: 1100px;
}
.cx-hero__copy { min-width: 0; }
.cx-hero__viz {
	position: relative;
	min-height: 480px;
}
@media (max-width: 880px) {
	.cx-hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.cx-hero__viz { min-height: 0; }
}
@media (max-width: 600px) {
	.cx-hero__viz { display: none; }
}
.cx-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 50%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 50%, transparent 100%);
	pointer-events: none;
}
.cx-hero > * { position: relative; }
.cx-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--cx-font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--cx-c-cyan);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 16px;
	padding: 6px 12px;
	background: rgba(6,182,212,0.10);
	border: 1px solid rgba(6,182,212,0.22);
	border-radius: 999px;
}
.cx-hero__eyebrow::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--cx-c-cyan);
	box-shadow: 0 0 0 4px rgba(6,182,212,0.22);
}
.cx-hero__title {
	font-family: var(--cx-font-display);
	font-size: clamp(36px, 5.5vw, 60px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: var(--cx-text);
	margin: 0 0 18px;
}
.cx-hero__title-accent {
	background: linear-gradient(100deg, #0EA5E9 0%, #6366F1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.cx-hero__sub {
	font-size: 19px;
	line-height: 1.5;
	color: var(--cx-text-soft);
	max-width: 640px;
	margin: 0 0 32px;
}

/* ────── Buttons ─────────────────────────────────────── */
.cx-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--cx-radius-sm);
	font-family: var(--cx-font);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
	line-height: 1;
}
.cx-btn--primary {
	background: linear-gradient(120deg, var(--cx-accent) 0%, #122d4d 50%, #1a3a5a 100%);
	color: #ffffff !important;
	border-color: var(--cx-accent);
	box-shadow: 0 6px 16px -8px rgba(10,37,64,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.cx-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -8px rgba(10,37,64,.55), inset 0 1px 0 rgba(255,255,255,.12);
	color: #ffffff !important;
}
.cx-btn--ghost {
	background: transparent;
	color: var(--cx-text);
	border-color: var(--cx-line);
}
.cx-btn--ghost:hover {
	border-color: var(--cx-text);
	background: var(--cx-bg-alt);
}
.cx-btn--lg {
	padding: 14px 26px;
	font-size: 16px;
	border-radius: 10px;
}

/* ────── Hero floating mockup cards (mindtrip-style) ──── */
.cx-hero__viz { position: relative; min-height: 480px; }

.cx-mock {
	position: absolute;
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: 16px;
	padding: 16px 18px;
	box-shadow:
		0 30px 60px -24px rgba(10,37,64,.18),
		0 10px 20px -10px rgba(10,37,64,.08);
	width: 320px;
}
.cx-mock--top {
	top: 0;
	right: 0;
}
.cx-mock--bottom {
	bottom: 0;
	left: 0;
	width: 280px;
}

.cx-mock__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
}
.cx-mock__avatar {
	width: 32px; height: 32px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}
.cx-mock__head-text { line-height: 1.2; min-width: 0; }
.cx-mock__title {
	font-family: var(--cx-font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--cx-text);
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cx-mock__sub {
	font-size: 12px;
	color: var(--cx-text-mute);
	margin-top: 2px;
}

.cx-mock__progress {
	height: 4px;
	background: var(--cx-line);
	border-radius: 2px;
	margin: 0 0 14px;
	overflow: hidden;
}
.cx-mock__progress span {
	display: block;
	height: 100%;
	background: var(--cx-c-cyan);
	border-radius: 2px;
}

.cx-mock__q {
	font-family: var(--cx-font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--cx-text);
	line-height: 1.4;
	margin: 0 0 12px;
}

.cx-mock__opts {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.cx-mock__opt {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: 8px;
	font-size: 12.5px;
	color: var(--cx-text);
}
.cx-mock__opt--selected {
	background: var(--cx-c-cyan);
	border-color: var(--cx-c-cyan);
	color: #fff;
	font-weight: 500;
}
.cx-mock__radio {
	width: 12px; height: 12px;
	border: 1.5px solid var(--cx-text-mute);
	border-radius: 50%;
	flex-shrink: 0;
}
.cx-mock__opt--selected .cx-mock__radio {
	border-color: #fff;
	background: #fff;
	box-shadow: inset 0 0 0 3px var(--cx-c-cyan);
}

/* Result card */
.cx-mock__score {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 0 0 6px;
}
.cx-mock__score-num {
	font-family: var(--cx-font-display);
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--cx-text);
}
.cx-mock__score-suffix {
	font-size: 14px;
	color: var(--cx-text-mute);
	font-weight: 500;
}
.cx-mock__tier-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
}
.cx-mock__tier {
	font-family: var(--cx-font-display);
	font-size: 11.5px;
	font-weight: 700;
	color: #3B82F6;
	background: rgba(59,130,246,0.10);
	padding: 3px 9px;
	border-radius: 999px;
	letter-spacing: 0.02em;
}
.cx-mock__delta {
	font-size: 11.5px;
	color: var(--cx-c-emerald);
	font-weight: 600;
}
.cx-mock__bars {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cx-mb {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	font-size: 11.5px;
	color: var(--cx-text-soft);
}
.cx-mb__t {
	display: block;
	height: 5px;
	background: var(--cx-line);
	border-radius: 3px;
	overflow: hidden;
}
.cx-mb__f {
	display: block;
	height: 100%;
	width: var(--w);
	background: var(--c);
	border-radius: 3px;
	animation: cx-mb-grow 1.2s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cx-mb-grow {
	from { width: 0; }
	to   { width: var(--w); }
}

/* Soft glow behind each mock */
.cx-mock--top::before {
	content: '';
	position: absolute;
	inset: -16px -16px auto auto;
	width: 110px; height: 110px;
	background: radial-gradient(circle, rgba(6,182,212,0.45), transparent 70%);
	filter: blur(22px);
	z-index: -1;
	border-radius: 50%;
}
.cx-mock--bottom::before {
	content: '';
	position: absolute;
	inset: auto auto -14px -14px;
	width: 110px; height: 110px;
	background: radial-gradient(circle, rgba(139,92,246,0.40), transparent 70%);
	filter: blur(22px);
	z-index: -1;
	border-radius: 50%;
}

@media (max-width: 880px) {
	.cx-hero__viz { min-height: 0; }
	.cx-mock { position: static; width: 100%; max-width: 360px; margin: 0 auto 16px; }
}

/* ────── Hero actions / trust strip ──────────────────── */
.cx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 32px;
}
.cx-hero__strip {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--cx-line);
}
.cx-hero__strip-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--cx-text-soft);
}
.cx-hero__strip-item svg { color: var(--cx-c-emerald); flex: none; }
.cx-hero__strip-item:nth-child(2) svg { color: var(--cx-c-blue); }
.cx-hero__strip-item:nth-child(3) svg { color: var(--cx-c-pink); }

/* ────── Section ─────────────────────────────────────── */
.cx-section {
	padding: 56px 0;
	border-top: 1px solid var(--cx-line);
}
.cx-section:first-of-type { border-top: 0; }
.cx-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.cx-section__eyebrow {
	font-family: var(--cx-font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--cx-c-cyan);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.cx-section__title {
	font-family: var(--cx-font-display);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-section__sub {
	color: var(--cx-text-soft);
	font-size: 16px;
	margin: 0 0 32px;
}
.cx-link {
	color: var(--cx-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid currentColor;
}
.cx-link:hover { color: var(--cx-accent); }

/* ────── Assessment cards ────────────────────────────── */
.cx-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.cx-card {
	--cx-card-c: var(--cx-accent);
	position: relative;
	display: block;
	padding: 28px 24px 24px;
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	overflow: hidden;
}
.cx-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(420px 200px at 0% 0%, color-mix(in srgb, var(--cx-card-c) 12%, transparent), transparent 60%);
	opacity: 0;
	transition: opacity 0.2s;
	pointer-events: none;
}
.cx-card--available:hover { transform: translateY(-2px); box-shadow: var(--cx-shadow); border-color: var(--cx-card-c); }
.cx-card--available:hover::before { opacity: 1; }
.cx-card > * { position: relative; }

.cx-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 0 18px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--cx-card-c) 12%, #ffffff);
	color: var(--cx-card-c);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cx-card__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}
.cx-card--available:hover .cx-card__icon {
	background: var(--cx-card-c);
	color: #ffffff;
	transform: scale(1.05);
}
.cx-card--coming .cx-card__icon {
	background: var(--cx-bg-alt);
	color: var(--cx-text-mute);
}
.cx-card--available .cx-card__cta { color: var(--cx-card-c); }
.cx-card--available:hover {
	border-color: var(--cx-accent);
	transform: translateY(-1px);
	box-shadow: var(--cx-shadow);
}
.cx-card--coming {
	background: var(--cx-bg-alt);
	border-style: dashed;
	cursor: default;
}
.cx-card__title {
	font-family: var(--cx-font-display);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-card__desc {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--cx-text-soft);
	margin: 0 0 16px;
}
.cx-card__meta {
	font-size: 13px;
	color: var(--cx-text-mute);
	margin: 0 0 16px;
}
.cx-card__cta {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--cx-accent);
}
.cx-card__cta--soon {
	color: var(--cx-text-mute);
	font-weight: 500;
}

/* ────── Latest posts list ───────────────────────────── */
.cx-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cx-posts__item {
	border-top: 1px solid var(--cx-line);
}
.cx-posts__item:last-child {
	border-bottom: 1px solid var(--cx-line);
}
.cx-posts__link {
	display: flex;
	gap: 24px;
	align-items: baseline;
	padding: 18px 0;
	text-decoration: none;
	color: var(--cx-text);
	transition: color 0.15s;
}
.cx-posts__link:hover { color: var(--cx-accent); }
.cx-posts__date {
	color: var(--cx-text-mute);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	min-width: 100px;
}
.cx-posts__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

/* ────── Subscribe / footer CTA ──────────────────────── */
.cx-footer-cta {
	background: var(--cx-bg-alt);
	border-top: 1px solid var(--cx-line);
}
.cx-footer-cta__text {
	font-size: 18px;
	color: var(--cx-text);
	margin: 0 0 20px;
	font-weight: 500;
}
.cx-subscribe {
	display: flex;
	gap: 8px;
	max-width: 480px;
	flex-wrap: wrap;
}
.cx-subscribe__input {
	flex: 1 1 240px;
	padding: 12px 16px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	font-family: var(--cx-font);
	font-size: 15px;
	color: var(--cx-text);
	background: var(--cx-bg);
}
.cx-subscribe__input:focus {
	outline: none;
	border-color: var(--cx-accent);
}

/* ────── Footer minimal ──────────────────────────────── */
.cx-footer {
	border-top: 1px solid var(--cx-line);
	padding: 32px 0;
	color: var(--cx-text-mute);
	font-size: 13px;
}
.cx-footer__inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.cx-footer a {
	color: var(--cx-text-mute);
	text-decoration: none;
	margin-left: 24px;
}
.cx-footer a:first-child { margin-left: 0; }
.cx-footer a:hover { color: var(--cx-text); }

/* ────── Hide legacy hero/sections globally on cyentrix ─ */
body.cx-site .mca-hero,
body.cx-site .mca-hero-tech,
body.cx-site .mca-platform-features,
body.cx-site .mca-cta,
body.cx-site .mca-tabletop-cta,
body.cx-site .mca-academy-cta,
body.cx-site .mca-ai-tools-cta,
body.cx-site .mca-categories-strip,
body.cx-site .mca-testimonials,
body.cx-site .mca-how-it-works,
body.cx-site .mca-benefits,
body.cx-site .mca-awareness-domains,
body.cx-site .mca-assessment-categories {
	display: none !important;
}

/* ────── Blog (home.php) ─────────────────────────────── */
.cx-blog-header {
	max-width: 720px;
	margin: 0 auto 40px;
}
.cx-blog-header__title {
	font-family: var(--cx-font-display);
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--cx-text);
	margin: 0 0 12px;
}
.cx-blog-header__sub {
	font-size: 18px;
	color: var(--cx-text-soft);
	margin: 0;
}

.cx-blog-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.cx-blog-list__item { border-top: 1px solid var(--cx-line); }
.cx-blog-list__item:last-child { border-bottom: 1px solid var(--cx-line); }
.cx-blog-list__link {
	display: flex;
	gap: 28px;
	align-items: baseline;
	padding: 22px 0;
	text-decoration: none;
	color: var(--cx-text);
}
.cx-blog-list__link:hover .cx-blog-list__title { color: var(--cx-accent); }
.cx-blog-list__date {
	color: var(--cx-text-mute);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	min-width: 110px;
	padding-top: 2px;
}
.cx-blog-list__body { display: block; flex: 1; }
.cx-blog-list__title {
	display: block;
	font-family: var(--cx-font-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--cx-text);
	margin: 0 0 6px;
	transition: color 0.15s;
}
.cx-blog-list__excerpt {
	display: block;
	color: var(--cx-text-soft);
	font-size: 15px;
	line-height: 1.5;
}

.cx-pagination {
	max-width: 720px;
	margin: 40px auto 0;
	display: flex;
	gap: 12px;
	justify-content: center;
}
.cx-pagination .page-numbers {
	padding: 8px 14px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	color: var(--cx-text);
	text-decoration: none;
	font-size: 14px;
}
.cx-pagination .page-numbers.current {
	background: var(--cx-accent);
	color: #ffffff;
	border-color: var(--cx-accent);
}
.cx-pagination .page-numbers:hover:not(.current) { border-color: var(--cx-accent); }

.cx-empty {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 48px 0;
	color: var(--cx-text-soft);
}

/* Hide legacy archive hero on cyentrix when index.php is reached
   anyway (e.g. category, tag, search). */
body.cx-site .mca-archive-hero,
body.cx-site .mca-archive-hero__bg,
body.cx-site .mca-archive-hero__badge {
	display: none !important;
}
body.cx-site .mca-archive-hero__title {
	font-family: var(--cx-font-display);
	color: var(--cx-text);
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* ────── Page header (privacy, terms, etc) ──────────── */
.cx-page-header {
	max-width: 720px;
	margin: 0 auto 32px;
}
.cx-page-header__title {
	font-family: var(--cx-font-display);
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-page-header__sub {
	color: var(--cx-text-mute);
	font-size: 14px;
	margin: 0;
}

/* ────── Long-form prose (privacy/terms/legal) ───────── */
.cx-prose {
	max-width: 720px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: var(--cx-text);
}
.cx-prose h2 {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 2em 0 0.6em;
	color: var(--cx-text);
}
.cx-prose h3 {
	font-family: var(--cx-font-display);
	font-size: 18px;
	font-weight: 600;
	margin: 1.6em 0 0.5em;
	color: var(--cx-text);
}
.cx-prose p { margin: 0 0 1em; }
.cx-prose ul, .cx-prose ol {
	margin: 0 0 1em;
	padding-left: 24px;
}
.cx-prose li { margin: 0.4em 0; }
.cx-prose a {
	color: var(--cx-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.cx-prose strong { color: var(--cx-text); font-weight: 600; }

/* ────── Assessment runtime ───────────────────────── */
.cx-assessment-main { padding: 56px 0 80px; }
#cx-assessment-root { max-width: 640px; margin: 0 auto; }

.cx-asm-card {
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	padding: 40px;
	box-shadow: var(--cx-shadow-sm);
}
.cx-asm-card--question { padding-top: 32px; }

.cx-asm-eyebrow {
	font-family: var(--cx-font-display);
	font-size: 13px;
	font-weight: 600;
	color: var(--cx-text-mute);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.cx-asm-title {
	font-family: var(--cx-font-display);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--cx-text);
	margin: 0 0 12px;
}

.cx-asm-sub {
	font-size: 17px;
	line-height: 1.5;
	color: var(--cx-text-soft);
	margin: 0 0 20px;
}

.cx-asm-meta {
	font-size: 13px;
	color: var(--cx-text-mute);
	margin: 0 0 28px;
}

.cx-asm-intro {
	font-size: 15px;
	line-height: 1.6;
	color: var(--cx-text-soft);
	margin: 0 0 28px;
}

.cx-asm-start { margin: 0 0 16px; }

.cx-asm-note {
	font-size: 13px;
	color: var(--cx-text-mute);
	margin: 0;
}

.cx-asm-progress {
	height: 4px;
	background: var(--cx-line);
	border-radius: 2px;
	overflow: hidden;
	margin: 0 0 24px;
}
.cx-asm-progress__bar {
	height: 100%;
	background: var(--cx-accent);
	transition: width 0.3s ease;
}

.cx-asm-counter {
	font-size: 13px;
	color: var(--cx-text-mute);
	margin: 0 0 12px;
}

.cx-asm-question {
	font-family: var(--cx-font-display);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.4;
	color: var(--cx-text);
	margin: 0 0 24px;
}

.cx-asm-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 24px;
}

/* Higher-specificity selectors so we win over main.css button styles. */
button.cx-asm-option,
body.cx-site button.cx-asm-option,
body button.cx-asm-option {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	width: 100% !important;
	padding: 14px 16px !important;
	background: #ffffff !important;
	border: 1px solid var(--cx-line) !important;
	border-radius: var(--cx-radius-sm) !important;
	font-family: var(--cx-font) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.45 !important;
	text-align: left !important;
	color: var(--cx-text) !important;
	cursor: pointer !important;
	transition: border-color 0.15s, background 0.15s !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}
button.cx-asm-option:hover,
body button.cx-asm-option:hover {
	border-color: var(--cx-accent) !important;
	background: #ffffff !important;
	color: var(--cx-text) !important;
}
button.cx-asm-option.is-selected,
body button.cx-asm-option.is-selected {
	border-color: var(--cx-accent) !important;
	background: var(--cx-accent) !important;
	color: #ffffff !important;
}
button.cx-asm-option.is-selected .cx-asm-option__radio {
	border-color: #ffffff !important;
	background: #ffffff !important;
}
button.cx-asm-option.is-selected .cx-asm-option__radio::after {
	background: var(--cx-accent) !important;
}

.cx-asm-option__radio {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 2px solid var(--cx-text-mute);
	border-radius: 50%;
	margin-top: 2px;
	position: relative;
	transition: border-color 0.15s;
}
.cx-asm-option:hover .cx-asm-option__radio { border-color: var(--cx-accent); }
.cx-asm-option__radio::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: transparent;
	transform: translate(-50%, -50%);
	transition: background 0.15s;
}

.cx-asm-option__label { flex: 1; }

/* Auditor's view panel (shown after option select on questions with audit data) */
.cx-asm-audit-slot { margin: 0 0 16px; }
.cx-asm-audit {
	background: var(--cx-bg-alt);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	padding: 18px 20px;
	margin: 12px 0 0;
	animation: cx-fade-in 0.2s ease both;
}
@keyframes cx-fade-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}
.cx-asm-audit__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
	flex-wrap: wrap;
}
.cx-asm-audit__title {
	font-family: var(--cx-font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--cx-text);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.cx-asm-audit__pill {
	font-family: var(--cx-font-display);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 3px 10px;
	border-radius: 999px;
}
.cx-asm-audit__pill--good {
	background: rgba(16,185,129,0.12);
	color: var(--cx-c-emerald);
}
.cx-asm-audit__pill--gap {
	background: rgba(245,158,11,0.14);
	color: #B45309;
}
.cx-asm-audit__det {
	border-top: 1px solid var(--cx-line);
	padding: 10px 0;
}
.cx-asm-audit__det:first-of-type { border-top: 0; padding-top: 0; }
.cx-asm-audit__det summary {
	list-style: none;
	cursor: pointer;
	font-family: var(--cx-font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--cx-text);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.cx-asm-audit__det summary::-webkit-details-marker { display: none; }
.cx-asm-audit__det summary::after {
	content: '+';
	font-size: 18px;
	font-weight: 300;
	color: var(--cx-text-mute);
	line-height: 1;
}
.cx-asm-audit__det[open] summary::after { content: '−'; }
.cx-asm-audit__det p,
.cx-asm-audit__det ul {
	margin: 8px 0 0;
	color: var(--cx-text-soft);
	font-size: 14px;
	line-height: 1.55;
}
.cx-asm-audit__det ul {
	padding-left: 18px;
}
.cx-asm-audit__det li {
	margin: 4px 0;
}

.cx-asm-nav { display: flex; justify-content: space-between; align-items: center; }
.cx-asm-next { padding: 10px 18px; font-size: 14px; }
.cx-asm-back {
	background: transparent;
	border: 0;
	color: var(--cx-text-soft);
	font-family: var(--cx-font);
	font-size: 14px;
	cursor: pointer;
	padding: 8px 0;
}
.cx-asm-back:hover { color: var(--cx-text); }

.cx-asm-loading {
	text-align: center;
	padding: 64px 40px;
}
.cx-asm-loading__text {
	color: var(--cx-text-soft);
	font-size: 15px;
	margin: 0;
}

/* Results */
.cx-asm-card--results { padding: 40px; }

.cx-asm-score { text-align: center; margin: 0 0 32px; }
.cx-asm-score__num {
	font-family: var(--cx-font-display);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	color: var(--cx-text);
	letter-spacing: -0.03em;
}
.cx-asm-score__num-suffix {
	font-size: 24px;
	color: var(--cx-text-mute);
	font-weight: 500;
	margin-left: 4px;
}
.cx-asm-score__tier {
	font-family: var(--cx-font-display);
	font-size: 20px;
	font-weight: 700;
	margin: 8px 0 0;
}
.cx-asm-score__lead {
	font-size: 15px;
	color: var(--cx-text-soft);
	line-height: 1.5;
	margin: 12px auto 0;
	max-width: 480px;
}

.cx-asm-domains {
	margin: 0 0 32px;
}
.cx-asm-domain { margin: 0 0 14px; }
.cx-asm-domain__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 14px;
	color: var(--cx-text);
	margin: 0 0 6px;
}
.cx-asm-domain__bar {
	height: 6px;
	background: var(--cx-line);
	border-radius: 3px;
	overflow: hidden;
}
.cx-asm-domain__bar-fill {
	height: 100%;
	background: var(--cx-accent);
	transition: width 0.6s ease;
}

.cx-asm-email-gate {
	background: var(--cx-bg-alt);
	border-radius: var(--cx-radius);
	padding: 24px;
	text-align: center;
}
.cx-asm-email-gate h3 {
	font-family: var(--cx-font-display);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--cx-text);
}
.cx-asm-email-gate p {
	color: var(--cx-text-soft);
	font-size: 14.5px;
	margin: 0 0 16px;
}
.cx-asm-email-form {
	display: flex;
	gap: 8px;
	max-width: 380px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.cx-asm-email-input {
	flex: 1 1 200px;
	padding: 10px 14px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	font-family: var(--cx-font);
	font-size: 14px;
	color: var(--cx-text);
	background: var(--cx-bg);
}
.cx-asm-email-input:focus { outline: none; border-color: var(--cx-accent); }

.cx-asm-email-thanks {
	color: var(--cx-text);
	font-weight: 500;
	margin: 0 0 12px;
}
.cx-asm-email-thanks-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cx-asm-report-link { font-size: 14px; padding: 10px 18px; }

@media (max-width: 600px) {
	.cx-asm-card { padding: 28px 20px; }
	.cx-asm-score__num { font-size: 60px; }
}

/* ────── Single post (cyentrix.com) ───────────────── */
.cx-single { padding: 56px 0 80px; }
.cx-article__head { max-width: 720px; margin: 0 auto 24px; }
.cx-article__cat {
	display: inline-block;
	font-family: var(--cx-font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cx-c-cyan);
	background: rgba(6,182,212,0.10);
	border: 1px solid rgba(6,182,212,0.22);
	padding: 4px 10px;
	border-radius: 999px;
	text-decoration: none;
	margin: 0 0 16px;
}
.cx-article__title {
	font-family: var(--cx-font-display);
	font-size: clamp(30px, 4.5vw, 44px);
	font-weight: 700;
	letter-spacing: -0.022em;
	line-height: 1.08;
	color: var(--cx-text);
	margin: 0 0 16px;
}
.cx-article__meta {
	color: var(--cx-text-mute);
	font-size: 14px;
	margin: 0;
}
.cx-article__sep { margin: 0 8px; }
.cx-article__cover {
	max-width: 880px;
	margin: 24px auto 32px;
}
.cx-article__cover img {
	width: 100%;
	height: auto;
	border-radius: var(--cx-radius);
}
.cx-article__body {
	max-width: 720px;
	margin: 0 auto;
}

/* In-article assessment CTA */
.cx-article-cta {
	--cx-card-c: var(--cx-accent);
	max-width: 720px;
	margin: 48px auto;
	padding: 32px;
	background:
		radial-gradient(420px 200px at 100% 0%, color-mix(in srgb, var(--cx-card-c) 14%, transparent), transparent 60%),
		var(--cx-bg-alt);
	border: 1px solid color-mix(in srgb, var(--cx-card-c) 30%, var(--cx-line));
	border-radius: var(--cx-radius-lg);
	text-align: left;
	position: relative;
}
.cx-article-cta__eyebrow {
	font-family: var(--cx-font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--cx-card-c);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.cx-article-cta__title {
	font-family: var(--cx-font-display);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-article-cta__desc {
	color: var(--cx-text-soft);
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 8px;
}
.cx-article-cta__meta {
	color: var(--cx-text-mute);
	font-size: 13px;
	margin: 0 0 20px;
}
.cx-article-cta__btn {
	background: linear-gradient(120deg, var(--cx-card-c) 0%, color-mix(in srgb, var(--cx-card-c) 70%, #000) 100%) !important;
	border-color: transparent !important;
	color: #ffffff !important;
}
.cx-article-cta__btn:hover {
	box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--cx-card-c) 50%, transparent) !important;
}

/* Share row */
.cx-share {
	max-width: 720px;
	margin: 32px auto 0;
	padding: 16px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	border-top: 1px solid var(--cx-line);
	border-bottom: 1px solid var(--cx-line);
}
.cx-share__label { font-size: 13px; color: var(--cx-text-mute); margin-right: 4px; }
.cx-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid var(--cx-line);
	background: transparent;
	color: var(--cx-text-soft);
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.cx-share__btn:hover {
	color: var(--cx-text);
	border-color: var(--cx-text-soft);
	background: var(--cx-bg-alt);
}
.cx-share__btn.is-copied { color: var(--cx-c-emerald); border-color: var(--cx-c-emerald); }

/* Related */
.cx-related { max-width: 720px; margin: 56px auto 0; }
.cx-related__title {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
}
.cx-related__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cx-related__list li { border-top: 1px solid var(--cx-line); }
.cx-related__list li:last-child { border-bottom: 1px solid var(--cx-line); }
.cx-related__list a {
	display: flex;
	gap: 24px;
	align-items: baseline;
	padding: 16px 0;
	text-decoration: none;
	color: var(--cx-text);
}
.cx-related__date {
	color: var(--cx-text-mute);
	font-size: 13px;
	min-width: 100px;
	white-space: nowrap;
}
.cx-related__title-link {
	font-size: 16px;
	font-weight: 500;
	color: var(--cx-text);
}
.cx-related__list a:hover .cx-related__title-link { color: var(--cx-accent); }

/* ────── Assessment page (intro + supporting sections) ─ */
.cx-asm-page { background: var(--cx-bg); }
.cx-asm-runtime { padding-top: 56px; }
.cx-asm-runtime #cx-assessment-root { max-width: 720px; margin: 0 auto; }

/* How it works */
.cx-how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
@media (max-width: 800px) { .cx-how-grid { grid-template-columns: 1fr; } }
.cx-how {
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	padding: 28px 24px;
}
.cx-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--cx-asm-color) 12%, #ffffff);
	color: var(--cx-asm-color);
	font-family: var(--cx-font-display);
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 14px;
}
.cx-how h3 {
	font-family: var(--cx-font-display);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-how p {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--cx-text-soft);
	margin: 0;
}

/* Domains covered */
.cx-domains-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 32px;
}
.cx-domain {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	background: var(--cx-bg);
}
.cx-domain__dot {
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}
.cx-domain__name {
	font-family: var(--cx-font-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--cx-text);
}

/* FAQ */
.cx-faq {
	margin-top: 32px;
	max-width: 800px;
}
.cx-faq__item {
	border-top: 1px solid var(--cx-line);
	padding: 16px 0;
}
.cx-faq__item:last-child { border-bottom: 1px solid var(--cx-line); }
.cx-faq__item summary {
	list-style: none;
	cursor: pointer;
	font-family: var(--cx-font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--cx-text);
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.cx-faq__item summary::-webkit-details-marker { display: none; }
.cx-faq__item summary::after {
	content: '+';
	font-size: 22px;
	color: var(--cx-text-mute);
	line-height: 1;
	transition: transform 0.2s;
	font-weight: 300;
}
.cx-faq__item[open] summary::after { content: '−'; }
.cx-faq__item p {
	margin: 12px 0 0;
	color: var(--cx-text-soft);
	line-height: 1.6;
	font-size: 15px;
	max-width: 720px;
}
.cx-faq__item p a { color: var(--cx-asm-color); text-decoration: underline; text-underline-offset: 3px; }

/* Section sub */
.cx-asm-page .cx-section__sub { margin-top: -8px; max-width: 720px; }

/* ────── Services page ────────────────────────────── */
.cx-services-page .cx-srv-hero {
	padding-top: 80px;
	padding-bottom: 32px;
}
.cx-services-page .cx-srv-hero .cx-hero__title {
	font-size: clamp(36px, 5.5vw, 56px);
	margin-bottom: 14px;
}
.cx-services-page .cx-srv-hero .cx-hero__sub {
	max-width: 720px;
}

.cx-srv-list { padding-top: 32px; }
.cx-srv {
	--cx-card-c: var(--cx-accent);
	border-top: 1px solid var(--cx-line);
	padding: 40px 0;
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.cx-srv:first-of-type { border-top: 0; padding-top: 16px; }
@media (max-width: 800px) {
	.cx-srv { grid-template-columns: 1fr; gap: 20px; }
}

.cx-srv__head { display: flex; align-items: flex-start; gap: 14px; }
.cx-srv__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--cx-card-c) 12%, #ffffff);
	color: var(--cx-card-c);
	flex-shrink: 0;
}
.cx-srv__title {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--cx-text);
	margin: 0 0 6px;
}
.cx-srv__tagline {
	font-size: 14.5px;
	color: var(--cx-text-soft);
	line-height: 1.5;
	margin: 0;
}

.cx-srv__body { min-width: 0; }
.cx-srv__desc {
	font-size: 16px;
	line-height: 1.6;
	color: var(--cx-text);
	margin: 0 0 20px;
}
.cx-srv__sub {
	font-family: var(--cx-font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--cx-text-mute);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
.cx-srv__list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}
.cx-srv__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 6px 0;
	color: var(--cx-text);
	font-size: 15px;
	line-height: 1.5;
}
.cx-srv__list li svg {
	color: var(--cx-card-c);
	flex-shrink: 0;
	margin-top: 4px;
}
.cx-srv__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.cx-srv__chip {
	display: inline-block;
	font-family: var(--cx-font-display);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cx-card-c);
	background: color-mix(in srgb, var(--cx-card-c) 12%, #ffffff);
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.02em;
}
.cx-srv__link {
	color: var(--cx-card-c);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.cx-srv__link:hover { text-decoration: underline; }

/* Consultation form */
.cx-srv-cta {
	background: var(--cx-bg-alt);
	border-top: 1px solid var(--cx-line);
}
.cx-srv-form-wrap {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}
@media (max-width: 800px) {
	.cx-srv-form-wrap { grid-template-columns: 1fr; gap: 32px; }
}
.cx-srv-form__bullets {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}
.cx-srv-form__bullets li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--cx-text);
	padding: 6px 0;
	font-size: 15px;
}
.cx-srv-form__bullets li svg { color: var(--cx-c-emerald); flex-shrink: 0; }

.cx-srv-form {
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	padding: 28px;
	box-shadow: var(--cx-shadow-sm);
}
.cx-srv-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0 0 12px;
}
@media (max-width: 480px) {
	.cx-srv-form__row { grid-template-columns: 1fr; }
}
.cx-srv-form label {
	display: block;
	font-family: var(--cx-font);
	font-size: 13px;
	font-weight: 600;
	color: var(--cx-text-soft);
	margin: 0 0 12px;
}
.cx-srv-form .cx-req { color: var(--cx-c-red); margin-left: 2px; }
.cx-srv-form input,
.cx-srv-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 10px 14px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	font-family: var(--cx-font);
	font-size: 14.5px;
	font-weight: 400;
	color: var(--cx-text);
	background: var(--cx-bg);
	box-sizing: border-box;
}
.cx-srv-form input:focus,
.cx-srv-form textarea:focus {
	outline: none;
	border-color: var(--cx-c-cyan);
	box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.cx-srv-form textarea { resize: vertical; min-height: 96px; }
.cx-srv-form button {
	margin-top: 8px;
	width: 100%;
}
.cx-srv-form__note {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--cx-text-mute);
	text-align: center;
}
.cx-srv-form__msg {
	margin: 12px 0 0;
	color: var(--cx-c-red);
	font-size: 14px;
}
.cx-srv-form__success {
	text-align: center;
	padding: 12px 0;
}
.cx-srv-form__success h3 {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--cx-text);
}
.cx-srv-form__success p {
	color: var(--cx-text-soft);
	font-size: 15px;
	margin: 0;
}

/* ────── Assessment-results consultation pitch ──────── */
.cx-asm-pitch {
	--cx-card-c: var(--cx-accent);
	margin-top: 16px;
	background:
		radial-gradient(420px 200px at 100% 0%, color-mix(in srgb, var(--cx-card-c) 14%, transparent), transparent 60%),
		var(--cx-bg);
	border: 1px solid color-mix(in srgb, var(--cx-card-c) 30%, var(--cx-line));
}
.cx-asm-pitch__eyebrow {
	font-family: var(--cx-font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--cx-card-c);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.cx-asm-pitch__title {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--cx-text);
	margin: 0 0 8px;
}
.cx-asm-pitch__sub {
	color: var(--cx-text-soft);
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 20px;
}

.cx-asm-lead-form { display: block; }
.cx-asm-lead__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0 0 12px;
}
@media (max-width: 480px) {
	.cx-asm-lead__row { grid-template-columns: 1fr; }
}
.cx-asm-lead-form label {
	display: block;
	font-family: var(--cx-font);
	font-size: 13px;
	font-weight: 600;
	color: var(--cx-text-soft);
	margin: 0 0 12px;
}
.cx-asm-lead-form input,
.cx-asm-lead-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 10px 14px;
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius-sm);
	font-family: var(--cx-font);
	font-size: 14.5px;
	color: var(--cx-text);
	background: var(--cx-bg);
	box-sizing: border-box;
}
.cx-asm-lead-form input:focus,
.cx-asm-lead-form textarea:focus {
	outline: none;
	border-color: var(--cx-card-c);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cx-card-c) 20%, transparent);
}
.cx-asm-lead-form textarea { resize: vertical; min-height: 80px; }
.cx-asm-lead__btn {
	margin-top: 8px;
	width: 100%;
	background: linear-gradient(120deg, var(--cx-card-c) 0%, color-mix(in srgb, var(--cx-card-c) 70%, #000) 100%) !important;
	border-color: transparent !important;
	color: #ffffff !important;
}
.cx-asm-lead__note {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--cx-text-mute);
	text-align: center;
}
.cx-asm-lead__msg { margin: 12px 0 0; color: var(--cx-c-red); font-size: 14px; }

.cx-asm-lead__success { text-align: center; padding: 16px 0; }
.cx-asm-lead__success h3 {
	font-family: var(--cx-font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--cx-text);
}
.cx-asm-lead__success p { color: var(--cx-text-soft); font-size: 15px; margin: 0; }

/* ────── Returning-visitor history ──────────────────── */
.cx-history { background: var(--cx-bg-alt); border-top: 1px solid var(--cx-line); }
.cx-history__clear {
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--cx-text-mute);
	font-family: var(--cx-font);
	font-size: 13px;
	padding: 4px 0;
}
.cx-history__clear:hover { color: var(--cx-text); }

.cx-history-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 24px;
}
.cx-history-card {
	--cx-card-c: var(--cx-accent);
	display: block;
	background: var(--cx-bg);
	border: 1px solid var(--cx-line);
	border-radius: var(--cx-radius);
	padding: 18px 20px;
	text-decoration: none;
	color: var(--cx-text);
	transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cx-history-card:hover {
	border-color: var(--cx-card-c);
	transform: translateY(-1px);
	box-shadow: var(--cx-shadow);
}
.cx-history-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
}
.cx-history-card__title {
	font-family: var(--cx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--cx-text);
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.cx-history-card__date {
	font-size: 12px;
	color: var(--cx-text-mute);
	margin-top: 2px;
}
.cx-history-card__num {
	font-family: var(--cx-font-display);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--cx-card-c);
	white-space: nowrap;
}
.cx-history-card__num span {
	font-size: 13px;
	color: var(--cx-text-mute);
	font-weight: 500;
	margin-left: 2px;
}
.cx-history-card__bar {
	height: 5px;
	background: var(--cx-line);
	border-radius: 3px;
	overflow: hidden;
	margin: 0 0 12px;
}
.cx-history-card__fill {
	height: 100%;
	background: var(--cx-card-c);
	border-radius: 3px;
}
.cx-history-card__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12.5px;
}
.cx-history-card__tier {
	font-family: var(--cx-font-display);
	font-weight: 700;
	color: var(--cx-card-c);
	letter-spacing: 0.02em;
}
.cx-history-card__retake {
	color: var(--cx-text-mute);
	font-weight: 500;
}
.cx-history-card:hover .cx-history-card__retake { color: var(--cx-card-c); }

/* ────── Site-wide responsive ──────────────────────── */
@media (max-width: 600px) {
	.cx-hero { padding: 56px 0 32px; }
	.cx-section { padding: 40px 0; }
	.cx-posts__link { gap: 12px; }
	.cx-posts__date { min-width: 80px; }
	.cx-nav { gap: 18px; }
}

/* ── Affiliate recommendation cards on assessment results ──────────── */
.cx-asm-recs { padding: 24px; }
.cx-asm-recs__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 6px; }
.cx-asm-recs__sub { font-size: 13px; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 16px; }
.cx-asm-recs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.cx-asm-rec { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 12px; background: #fff; text-decoration: none; color: inherit; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.cx-asm-rec:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,37,64,.08); border-color: var(--cx-accent, #10B981); }
.cx-asm-rec__icon { font-size: 28px; line-height: 1; flex: 0 0 auto; }
.cx-asm-rec__body { flex: 1 1 auto; min-width: 0; }
.cx-asm-rec__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 4px; }
.cx-asm-rec__title { font-size: 15px; font-weight: 600; color: var(--cx-ink, #0c0c0c); margin: 0 0 6px; }
.cx-asm-rec__tag { font-size: 13px; line-height: 1.45; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 12px; }
.cx-asm-rec__foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 12px; }
.cx-asm-rec__price { color: var(--cx-ink-2, #5a5a5a); }
.cx-asm-rec__cta { color: var(--cx-accent, #10B981); font-weight: 600; }

/* ── Tools catalogue ──────────────────────────────────────────────── */
.cx-tools-hero { padding: 56px 0 32px; max-width: 760px; }
.cx-tools-hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 8px; }
.cx-tools-hero__title { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin: 0 0 14px; color: var(--cx-ink, #0c0c0c); }
.cx-tools-hero__lede { font-size: 17px; line-height: 1.6; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 16px; }
.cx-tools-hero__meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--cx-ink-2, #5a5a5a); }

.cx-tools-cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 40px; }
.cx-tools-cat-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 999px; background: #fff; font-size: 13px; text-decoration: none; color: var(--cx-ink, #0c0c0c); transition: border-color .15s, background .15s; }
.cx-tools-cat-pill:hover { border-color: var(--cx-accent, #10B981); background: #f6fdf9; }
.cx-tools-cat-pill__n { font-size: 11px; color: var(--cx-ink-2, #5a5a5a); background: #f3f3f1; padding: 1px 7px; border-radius: 999px; }

.cx-tools-section { margin: 0 0 56px; scroll-margin-top: 80px; }
.cx-tools-section__head { margin: 0 0 20px; }
.cx-tools-section__title { font-size: 22px; margin: 0 0 6px; color: var(--cx-ink, #0c0c0c); }
.cx-tools-section__icon { margin-right: 4px; }
.cx-tools-section__desc { font-size: 14px; color: var(--cx-ink-2, #5a5a5a); margin: 0; }

.cx-tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.cx-tool-card { display: flex; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 14px; background: #fff; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s, border-color .15s; }
.cx-tool-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,37,64,.06); border-color: var(--cx-accent, #10B981); }
.cx-tool-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.cx-tool-card__name { font-size: 16px; font-weight: 600; margin: 0; color: var(--cx-ink, #0c0c0c); }
.cx-tool-card__lic { font-size: 11px; color: var(--cx-ink-2, #5a5a5a); padding: 2px 8px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 999px; }
.cx-tool-card__tag { font-size: 13px; line-height: 1.5; color: var(--cx-ink-2, #5a5a5a); margin: 0; flex: 1; }
.cx-tool-card__foot { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

.cx-tool-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; border: 1px solid transparent; }
.cx-tool-pill--green { background: #d1fae5; color: #065f46; }
.cx-tool-pill--amber { background: #fef3c7; color: #92400e; }
.cx-tool-pill--red   { background: #fee2e2; color: #991b1b; }
.cx-tool-pill--ghost { background: transparent; border-color: var(--cx-line, #e8e8e6); color: var(--cx-ink-2, #5a5a5a); font-weight: 500; }

/* Single tool page */
.cx-breadcrumb { font-size: 13px; color: var(--cx-ink-2, #5a5a5a); padding: 24px 0 0; }
.cx-breadcrumb a { color: var(--cx-ink-2, #5a5a5a); text-decoration: none; }
.cx-breadcrumb a:hover { color: var(--cx-accent, #10B981); }
.cx-breadcrumb span { margin: 0 6px; }

.cx-tool-hero { padding: 24px 0 32px; max-width: 760px; }
.cx-tool-hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 6px; }
.cx-tool-hero__title { font-size: clamp(28px, 4vw, 40px); margin: 0 0 10px; color: var(--cx-ink, #0c0c0c); }
.cx-tool-hero__tag { font-size: 17px; line-height: 1.55; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 14px; }
.cx-tool-hero__pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
.cx-tool-hero__official a { font-size: 14px; color: var(--cx-accent, #10B981); text-decoration: none; font-weight: 600; }
.cx-tool-hero__official a:hover { text-decoration: underline; }

.cx-tool-section { margin: 0 0 32px; max-width: 760px; }
.cx-tool-section h2 { font-size: 19px; margin: 0 0 12px; color: var(--cx-ink, #0c0c0c); }
.cx-tool-section p { font-size: 16px; line-height: 1.6; color: var(--cx-ink, #0c0c0c); margin: 0 0 12px; }
.cx-tool-list { list-style: disc outside; padding-left: 22px; line-height: 1.7; color: var(--cx-ink, #0c0c0c); margin: 0; }
.cx-tool-list li { margin: 0 0 6px; display: list-item; }

.cx-tool-req { width: 100%; max-width: 520px; border-collapse: collapse; }
.cx-tool-req th, .cx-tool-req td { padding: 8px 12px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--cx-line, #e8e8e6); }
.cx-tool-req th { font-weight: 600; color: var(--cx-ink-2, #5a5a5a); width: 140px; }

.cx-tool-verdict { background: linear-gradient(135deg, #f6fdf9, #ecfdf5); padding: 20px 22px; border: 1px solid #a7f3d0; border-radius: 12px; }
.cx-tool-verdict h2 { color: #065f46; }

.cx-tool-footer { margin: 40px 0 64px; }

/* ── Free-tool recommendation cards on assessment results ─────────── */
.cx-asm-tools { padding: 24px; }
.cx-asm-tools__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 6px; }
.cx-asm-tools__sub { font-size: 13px; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 16px; }
.cx-asm-tools__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.cx-asm-tool { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 12px; background: #fff; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s, border-color .15s; }
.cx-asm-tool:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(10,37,64,.06); border-color: var(--cx-accent, #10B981); }
.cx-asm-tool__name { font-size: 14px; font-weight: 600; color: var(--cx-ink, #0c0c0c); }
.cx-asm-tool__tag { font-size: 12px; line-height: 1.5; color: var(--cx-ink-2, #5a5a5a); }
.cx-asm-tool__meta { font-size: 11px; color: var(--cx-ink-2, #8a8a8a); text-transform: capitalize; }

/* "See all assessments" CTA below grids */
.cx-grid-cta { text-align: center; margin: 32px 0 0; }
.cx-link--lg { font-size: 16px; font-weight: 600; color: var(--cx-accent, #10B981); text-decoration: none; padding: 10px 18px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 999px; display: inline-block; transition: border-color .15s, background .15s; }
.cx-link--lg:hover { border-color: var(--cx-accent, #10B981); background: #f6fdf9; }

/* Tool real-logo (Google favicon service) */
.cx-tool-card__head { display: flex; align-items: center; gap: 10px; }
.cx-tool-card__logo { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 6px; background: #fff; padding: 2px; box-shadow: 0 1px 0 rgba(10,37,64,.06); object-fit: contain; }
.cx-tool-card__head .cx-tool-card__name { flex: 1 1 auto; }
.cx-tool-hero__logo { width: 48px; height: 48px; border-radius: 10px; background: #fff; padding: 4px; box-shadow: 0 2px 6px rgba(10,37,64,.08); margin: 0 0 12px; object-fit: contain; }

/* Assessment card — head row holds the colored SVG icon + framework favicon side by side */
.cx-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 10px; }
.cx-card__head .cx-card__icon { margin: 0; }
.cx-card__logo { width: 24px; height: 24px; flex: 0 0 24px; border-radius: 6px; background: #fff; padding: 2px; box-shadow: 0 1px 0 rgba(10,37,64,.06); object-fit: contain; opacity: .9; }

/* Free vs Members badges on assessment cards */
.cx-card__badge { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
.cx-card__badge--free    { background: #d1fae5; color: #065f46; }
.cx-card__badge--members { background: #ede9fe; color: #5b21b6; }

/* ── Academy plugin (mca-*) — cyentrix-themed overrides ──────────────
 * The mustafa-academy plugin ships variables like --mca-space-X that aren't
 * defined on cyentrix. Map them to cyentrix tokens + restyle the cards and
 * pills so the academy fits the rest of the site.
 */
body.cx-site {
	--mca-space-1: 4px;  --mca-space-2: 8px;  --mca-space-3: 12px; --mca-space-4: 16px;
	--mca-space-5: 20px; --mca-space-6: 24px; --mca-space-8: 32px; --mca-space-10: 40px;
	--mca-space-12: 48px;
	--mca-text-xs: 11px; --mca-text-sm: 13px; --mca-text-base: 15px; --mca-text-lg: 17px;
	--mca-text-xl: 19px; --mca-text-2xl: 22px; --mca-text-3xl: 28px; --mca-text-4xl: 36px;
	--mca-text-primary:   var(--cx-ink, #0c0c0c);
	--mca-text-secondary: var(--cx-ink-2, #5a5a5a);
	--mca-text-muted:     #8a8a8a;
	--mca-bg-panel:       #ffffff;
	--mca-border:         var(--cx-line, #e8e8e6);
	--mca-border-hover:   var(--cx-accent, #10B981);
	--mca-radius:         12px;
	--mca-trans-sm:       .15s ease;
	--mca-cyan:           #06B6D4;
	--mca-indigo:         #6366F1;
	--mca-purple:         #8B5CF6;
	--mca-success:        #10B981;
	--mca-success-dim:    #d1fae5;
	--mca-warning:        #F59E0B;
}

/* Constrain the academy content width to match the rest of the cyentrix theme. */
body.cx-site .mca-container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Domain group — a section per risk domain */
body.cx-site .mca-domain-group { padding: 32px 0; }
body.cx-site .mca-domain-group + .mca-domain-group { border-top: 1px solid var(--cx-line, #e8e8e6); }
body.cx-site .mca-domain-group__title { font-size: 22px; font-weight: 700; margin: 0 0 20px; color: var(--cx-ink, #0c0c0c); }

/* Module grid */
body.cx-site .mca-module-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* Module card */
body.cx-site .mca-module-card {
	position: relative;
	display: flex; flex-direction: column; gap: 10px;
	padding: 18px;
	border: 1px solid var(--cx-line, #e8e8e6);
	border-radius: 14px;
	background: #ffffff;
	transition: transform .15s, box-shadow .15s, border-color .15s;
}
body.cx-site .mca-module-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,37,64,.06); border-color: var(--cx-accent, #10B981); }
body.cx-site .mca-module-card--locked { opacity: .6; }
body.cx-site .mca-module-card--locked:hover { transform: none; box-shadow: none; }

body.cx-site .mca-module-card__header { display: flex; flex-wrap: wrap; gap: 6px; }
body.cx-site .mca-module-card__title { font-size: 16px; font-weight: 600; margin: 0; line-height: 1.35; }
body.cx-site .mca-module-card__title a { color: var(--cx-ink, #0c0c0c); text-decoration: none; }
body.cx-site .mca-module-card__title a:hover { color: var(--cx-accent, #10B981); }
body.cx-site .mca-module-card__meta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--cx-ink-2, #5a5a5a); margin: 4px 0 0; }
body.cx-site .mca-module-card__actions { margin-top: auto; padding-top: 8px; }
body.cx-site .mca-module-card__lock-overlay { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--cx-ink-2, #5a5a5a); background: #fff; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--cx-line, #e8e8e6); }
body.cx-site .mca-module-card__lock-overlay svg { width: 14px; height: 14px; }

/* Pills */
body.cx-site .mca-pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; line-height: 1.4; border: 1px solid transparent; }
body.cx-site .mca-pill--cyan    { background: #cffafe; color: #155e75; }
body.cx-site .mca-pill--indigo  { background: #e0e7ff; color: #3730a3; }
body.cx-site .mca-pill--purple  { background: #ede9fe; color: #5b21b6; }
body.cx-site .mca-pill--muted   { background: #f3f4f6; color: #4b5563; }
body.cx-site .mca-pill--success { background: #d1fae5; color: #065f46; }
body.cx-site .mca-pill--warning { background: #fef3c7; color: #92400e; }

/* Buttons */
body.cx-site .mca-btn { display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; font-size: 14px; font-weight: 600; border-radius: 999px; text-decoration: none; transition: background .15s, border-color .15s, transform .15s, color .15s; border: 1px solid transparent; cursor: pointer; }
body.cx-site .mca-btn--sm { padding: 6px 12px; font-size: 12px; }
body.cx-site .mca-btn--primary { background: var(--cx-accent, #10B981); color: #fff; }
body.cx-site .mca-btn--primary:hover { transform: translateY(-1px); background: #0a8f64; color: #fff; }
body.cx-site .mca-btn--ghost { background: #fff; color: var(--cx-ink, #0c0c0c); border-color: var(--cx-line, #e8e8e6); }
body.cx-site .mca-btn--ghost:hover { border-color: var(--cx-accent, #10B981); color: var(--cx-accent, #10B981); }

/* Module hero (single-module page) */
body.cx-site .maca-module-hero { padding: 48px 0 24px; border-bottom: 1px solid var(--cx-line, #e8e8e6); }
body.cx-site .maca-module-hero__title { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0 0 12px; color: var(--cx-ink, #0c0c0c); font-weight: 800; letter-spacing: -.01em; }
body.cx-site .maca-module-hero__excerpt { font-size: 17px; line-height: 1.55; color: var(--cx-ink-2, #5a5a5a); max-width: 640px; margin: 0 0 20px; }
body.cx-site .maca-breadcrumb { font-size: 13px; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 14px; }
body.cx-site .maca-breadcrumb a { color: var(--cx-ink-2, #5a5a5a); text-decoration: none; }
body.cx-site .maca-breadcrumb a:hover { color: var(--cx-accent, #10B981); }

/* Lesson list */
body.cx-site .maca-module-lessons-list { display: flex; flex-direction: column; gap: 10px; padding: 32px 0; }
body.cx-site .maca-lesson-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: #fff; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 12px; text-decoration: none; color: var(--cx-ink, #0c0c0c); transition: transform .15s, border-color .15s; }
body.cx-site .maca-lesson-row:hover { transform: translateX(4px); border-color: var(--cx-accent, #10B981); }
body.cx-site .maca-lesson-row__num { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; border: 1px solid var(--cx-line, #e8e8e6); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--cx-ink-2, #5a5a5a); }
body.cx-site .maca-lesson-row__title { flex: 1; font-size: 15px; font-weight: 500; }
body.cx-site .maca-lesson-row__duration { font-size: 12px; color: var(--cx-ink-2, #5a5a5a); }
body.cx-site .maca-lesson-row--complete .maca-lesson-row__num { background: #d1fae5; border-color: #10B981; color: #065f46; }

/* "Academy" page title block — when the [mca_academy] shortcode runs inside
 * a default page wrapper, give the section room and a cleaner intro. */
body.cx-site .entry-title:first-child { font-size: clamp(32px, 5vw, 48px); margin: 0 0 6px; }

/* ── Academy landing (/academy/) — preview + how it works ─────────── */
.cx-academy-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 8px; align-items: center; }
.cx-academy-hero-note { width: 100%; font-size: 13px; color: var(--cx-ink-2, #5a5a5a); margin: 6px 0 0; }

.cx-academy-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.cx-academy-preview { padding: 18px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 14px; background: #fff; transition: transform .15s, border-color .15s, box-shadow .15s; }
.cx-academy-preview:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(10,37,64,.06); border-color: var(--cx-accent, #0a2540); }
.cx-academy-preview__icon { font-size: 24px; margin: 0 0 10px; }
.cx-academy-preview__title { font-size: 15px; font-weight: 600; margin: 0 0 6px; color: var(--cx-ink, #0c0c0c); }
.cx-academy-preview__desc { font-size: 13px; line-height: 1.5; color: var(--cx-ink-2, #5a5a5a); margin: 0; }

.cx-academy-how { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.cx-academy-how__step { padding: 20px; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 14px; background: #fff; }
.cx-academy-how__num { width: 32px; height: 32px; border-radius: 50%; background: var(--cx-accent, #0a2540); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 0 10px; font-size: 14px; }
.cx-academy-how__step h3 { font-size: 16px; margin: 0 0 6px; color: var(--cx-ink, #0c0c0c); font-weight: 600; }
.cx-academy-how__step p { font-size: 14px; line-height: 1.55; color: var(--cx-ink-2, #5a5a5a); margin: 0; }

.cx-academy-bottom-cta { text-align: center; padding: 48px 24px; background: linear-gradient(135deg, #f7fbfa, #ecfdf5); border-radius: 16px; margin: 32px 0 48px; }
.cx-academy-bottom-cta h2 { font-size: 28px; margin: 0 0 8px; color: var(--cx-ink, #0c0c0c); }
.cx-academy-bottom-cta p { font-size: 16px; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 24px; }
.cx-academy-bottom-cta .cx-academy-hero-cta { justify-content: center; }

/* ── Fix: academy primary buttons must show their text on cyentrix ── */
/* Specificity boost — defeat any inherited "color: transparent" or
 * fallback variable that wasn't defined. */
body.cx-site .mca-btn,
body.cx-site .mca-btn:visited { color: var(--cx-ink, #0c0c0c) !important; }
body.cx-site .mca-btn--primary,
body.cx-site .mca-btn--primary:visited { color: #ffffff !important; background: var(--cx-accent, #0a2540) !important; }
body.cx-site .mca-btn--primary:hover { background: #082037 !important; color: #fff !important; }
body.cx-site .mca-btn--ghost,
body.cx-site .mca-btn--ghost:visited { color: var(--cx-ink, #0c0c0c) !important; background: #fff !important; border-color: var(--cx-line, #e8e8e6) !important; }
body.cx-site .mca-btn--ghost:hover { color: var(--cx-accent, #0a2540) !important; border-color: var(--cx-accent, #0a2540) !important; }

/* Fix: module title links should NOT be underlined */
body.cx-site .mca-module-card__title a,
body.cx-site .mca-module-card__title a:hover,
body.cx-site .mca-module-card__title a:focus { text-decoration: none !important; }

/* ── Page hero sizing — align page titles with the cyentrix logo scale.
 * The logo is ~160×29; clamp(32–48px) was too aggressive next to it. */
body.cx-site .cx-tools-hero__title { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; letter-spacing: -.01em; }
body.cx-site .cx-tools-hero__lede  { font-size: 16px; }
body.cx-site .cx-tool-hero__title  { font-size: clamp(24px, 3.2vw, 32px); line-height: 1.2; }
body.cx-site .cx-section__title    { font-size: clamp(22px, 3vw, 28px); }

/* ── Module-card domain icons (for [mca_academy] grid).
 * Plugin doesn't ship per-domain icons; we inject one based on domain pill. */
body.cx-site .mca-module-card__header { gap: 6px; align-items: center; }
body.cx-site .mca-module-card { padding-top: 22px; }

/* Domain-icon prefix injected into academy domain group titles */
body.cx-site .cx-domain-icon { display: inline-block; margin-right: 8px; font-size: 0.95em; }

/* ── Academy hero on the homepage (sits between assessments + blog) ── */
.cx-academy-hero { padding: 64px 0; background: linear-gradient(135deg, #f6fdf9 0%, #ecfdf5 60%, #f0fbff 100%); border-top: 1px solid var(--cx-line, #e8e8e6); border-bottom: 1px solid var(--cx-line, #e8e8e6); }
.cx-academy-hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.cx-academy-hero__copy { max-width: 560px; }
.cx-academy-hero__eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cx-accent, #10B981); background: #fff; padding: 6px 12px; border-radius: 999px; margin: 0 0 16px; border: 1px solid #a7f3d0; }
.cx-academy-hero__title { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 14px; color: var(--cx-ink, #0c0c0c); font-weight: 800; }
.cx-academy-hero__lede { font-size: 17px; line-height: 1.55; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 20px; }
.cx-academy-hero__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.cx-academy-hero__bullets li { font-size: 14px; color: var(--cx-ink, #0c0c0c); display: flex; align-items: center; gap: 8px; }
.cx-academy-hero__bullet-icon { font-size: 18px; }
.cx-academy-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Right-side floating mockup cards */
.cx-academy-hero__viz { position: relative; height: 380px; }
.cx-academy-hero__card { position: absolute; background: #fff; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 14px; padding: 16px; box-shadow: 0 8px 24px rgba(10,37,64,.08); width: 260px; transition: transform .25s ease; }
.cx-academy-hero__card:hover { transform: translateY(-4px) rotate(0deg) !important; }
.cx-academy-hero__card--1 { top: 0; left: 0; transform: rotate(-3deg); z-index: 3; }
.cx-academy-hero__card--2 { top: 110px; left: 110px; transform: rotate(2deg); z-index: 2; }
.cx-academy-hero__card--3 { top: 220px; left: 50px; transform: rotate(-2deg); z-index: 1; }
.cx-academy-hero__card-icon { font-size: 22px; margin: 0 0 6px; }
.cx-academy-hero__card-meta { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 4px; }
.cx-academy-hero__card-title { font-size: 15px; font-weight: 600; color: var(--cx-ink, #0c0c0c); margin: 0 0 12px; }
.cx-academy-hero__card-bar { height: 4px; background: #f3f4f6; border-radius: 999px; overflow: hidden; margin: 0 0 8px; }
.cx-academy-hero__card-bar span { display: block; height: 100%; background: var(--cx-accent, #10B981); border-radius: 999px; }
.cx-academy-hero__card-foot { font-size: 11px; color: var(--cx-ink-2, #5a5a5a); }

/* Mobile / narrow: stack and hide the decorative card mockup */
@media (max-width: 880px) {
	.cx-academy-hero__inner { grid-template-columns: 1fr; gap: 24px; }
	.cx-academy-hero__viz { display: none; }
	.cx-academy-hero__bullets { grid-template-columns: 1fr; }
	.cx-academy-hero { padding: 48px 0; }
}

/* ── Shared page hero (Assessments / Tools / Services / Academy) ───── */
.cx-page-hero { padding: 64px 0; border-top: 1px solid var(--cx-line, #e8e8e6); border-bottom: 1px solid var(--cx-line, #e8e8e6); }
.cx-page-hero--emerald { background: linear-gradient(135deg, #f6fdf9 0%, #ecfdf5 60%, #f0fbff 100%); }
.cx-page-hero--indigo  { background: linear-gradient(135deg, #f5f6ff 0%, #eef0ff 60%, #f6f4ff 100%); }
.cx-page-hero--amber   { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fff7ed 100%); }
.cx-page-hero--cyan    { background: linear-gradient(135deg, #f0fdfa 0%, #cffafe 60%, #ecfeff 100%); }
.cx-page-hero--violet  { background: linear-gradient(135deg, #f9f5ff 0%, #ede9fe 60%, #f5f3ff 100%); }
.cx-page-hero--slate   { background: linear-gradient(135deg, #f6f8fb 0%, #eef2f7 60%, #f8fafc 100%); }

.cx-page-hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.cx-page-hero__copy { max-width: 580px; }
.cx-page-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--cx-accent, #10B981);
	background: #fff;
	padding: 6px 12px; border-radius: 999px; margin: 0 0 16px;
	border: 1px solid #a7f3d0;
}
.cx-page-hero--indigo .cx-page-hero__eyebrow { color: #4338ca; border-color: #c7d2fe; }
.cx-page-hero--amber  .cx-page-hero__eyebrow { color: #b45309; border-color: #fde68a; }
.cx-page-hero--cyan   .cx-page-hero__eyebrow { color: #0e7490; border-color: #a5f3fc; }
.cx-page-hero--violet .cx-page-hero__eyebrow { color: #6d28d9; border-color: #ddd6fe; }
.cx-page-hero--slate  .cx-page-hero__eyebrow { color: #334155; border-color: #cbd5e1; }

.cx-page-hero__title { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 14px; color: var(--cx-ink, #0c0c0c); font-weight: 800; }
.cx-page-hero__lede  { font-size: 17px; line-height: 1.55; color: var(--cx-ink-2, #5a5a5a); margin: 0 0 20px; }

.cx-page-hero__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.cx-page-hero__bullets li { font-size: 14px; color: var(--cx-ink, #0c0c0c); display: flex; align-items: center; gap: 8px; }
.cx-page-hero__bullet-icon { font-size: 18px; }

.cx-page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Floating mockup cards on the right */
.cx-page-hero__viz { position: relative; height: 380px; }
.cx-page-hero__card { position: absolute; background: #fff; border: 1px solid var(--cx-line, #e8e8e6); border-radius: 14px; padding: 16px; box-shadow: 0 8px 24px rgba(10,37,64,.08); width: 260px; transition: transform .25s ease; }
.cx-page-hero__card:hover { transform: translateY(-4px) rotate(0deg) !important; }
.cx-page-hero__card--1 { top: 0;   left: 0;   transform: rotate(-3deg); z-index: 3; }
.cx-page-hero__card--2 { top: 110px; left: 110px; transform: rotate(2deg);  z-index: 2; }
.cx-page-hero__card--3 { top: 220px; left: 50px;  transform: rotate(-2deg); z-index: 1; }
.cx-page-hero__card-icon  { font-size: 22px; margin: 0 0 6px; }
.cx-page-hero__card-meta  { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cx-accent, #10B981); margin: 0 0 4px; }
.cx-page-hero--indigo .cx-page-hero__card-meta { color: #4338ca; }
.cx-page-hero--amber  .cx-page-hero__card-meta { color: #b45309; }
.cx-page-hero--cyan   .cx-page-hero__card-meta { color: #0e7490; }
.cx-page-hero--violet .cx-page-hero__card-meta { color: #6d28d9; }
.cx-page-hero--slate  .cx-page-hero__card-meta { color: #334155; }
.cx-page-hero__card-title { font-size: 15px; font-weight: 600; color: var(--cx-ink, #0c0c0c); margin: 0 0 12px; }
.cx-page-hero__card-bar { height: 4px; background: #f3f4f6; border-radius: 999px; overflow: hidden; margin: 0 0 8px; }
.cx-page-hero__card-bar span { display: block; height: 100%; background: var(--cx-accent, #10B981); border-radius: 999px; }
.cx-page-hero--indigo .cx-page-hero__card-bar span { background: #6366f1; }
.cx-page-hero--amber  .cx-page-hero__card-bar span { background: #f59e0b; }
.cx-page-hero--cyan   .cx-page-hero__card-bar span { background: #06b6d4; }
.cx-page-hero--violet .cx-page-hero__card-bar span { background: #8b5cf6; }
.cx-page-hero--slate  .cx-page-hero__card-bar span { background: #475569; }
.cx-page-hero__card-foot { font-size: 11px; color: var(--cx-ink-2, #5a5a5a); }

@media (max-width: 880px) {
	.cx-page-hero__inner { grid-template-columns: 1fr; gap: 24px; }
	.cx-page-hero__viz { display: none; }
	.cx-page-hero__bullets { grid-template-columns: 1fr; }
	.cx-page-hero { padding: 48px 0; }
}
