/*
Theme Name: Fusified
Theme URI: https://github.com/fusified-ai/fusified
Description: The Fusified.AI theme, built from scratch after the fusified.ai design: Sora + Inter on a near-black canvas with Fusion Blue as the only signal colour. Reproduces the site's design system — buttons, cited marks, section textures, cards, FAQ accordions and the animated hero — for content seeded by provision/.
Author: Miguel Fuentes
Version: 0.1.0
Requires at least: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fusified
*/

/* ────────────────────────────────────────────────────────────────────────────
   Fonts — self-hosted variable WOFF2, same files the source site ships
   (@fontsource-variable). Sora carries headings and UI capitals, Inter the
   body. Latin + latin-ext subsets cover EN and the planned NL copy.
   ──────────────────────────────────────────────────────────────────────────── */
@font-face {
	font-family: 'Inter Variable';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('assets/fonts/inter-latin-wght-normal.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Inter Variable';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('assets/fonts/inter-latin-ext-wght-normal.woff2') format('woff2');
	unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Sora Variable';
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
	src: url('assets/fonts/sora-latin-wght-normal.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Sora Variable';
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
	src: url('assets/fonts/sora-latin-ext-wght-normal.woff2') format('woff2');
	unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ────────────────────────────────────────────────────────────────────────────
   Tokens — lifted 1:1 from the source site's :root
   ──────────────────────────────────────────────────────────────────────────── */
:root {
	--bg0: #050408;
	--bg1: #0b0a13;
	--bg2: #111019;
	--bg: var(--bg0);
	--blue: #2e74f0;
	--blue-2: #6f9bff;
	--blue-fill: #1e5fd6;
	--blue-deep: #1c4dbb;
	--blue-ice: #b8d0ff;
	--live: rgb(110, 231, 183);
	--hairline: rgba(255, 255, 255, 0.10);
	--card-border: rgba(255, 255, 255, 0.08);
	--grid-line: rgba(140, 165, 255, 0.07);
	--dot-line: rgba(140, 165, 255, 0.09);
	--font-sora: 'Sora Variable', sans-serif;
	--font-inter: 'Inter Variable', sans-serif;
}

/* ── Reset-ish base ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; font-family: var(--font-inter); }
html { scroll-behavior: smooth; }
body {
	background: var(--bg0);
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a, li a:not([class]), .body-text a { color: var(--blue-2); }
p a:hover, li a:not([class]):hover, .body-text a:hover { color: #fff; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sora);
	font-weight: 600;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
}
::selection { background: rgba(46, 116, 240, 0.4); color: #fff; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: 0.75rem 1.25rem;
	background: var(--blue-fill);
	color: #fff;
	border-radius: 0 0 6px 0;
	font-family: var(--font-sora);
	font-size: 13px;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

/* ── Layout primitives ── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.container--wide { max-width: 1440px; }
@media (min-width: 640px) { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3.5rem; } }

.hairline { border-top: 1px solid var(--hairline); }
.glow-hairline { position: relative; }
.glow-hairline::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(46, 116, 240, 0.55), transparent);
}

/* Section shells — tone + texture + spacing, matching the source Section kit */
.section { position: relative; padding-block: 5rem; background: var(--bg0); }
.section--raised { background: var(--bg1); }
.section--compact { padding-block: 3.5rem; }
.section--roomy { padding-block: 6rem; }
@media (min-width: 1024px) {
	.section { padding-block: 7rem; }
	.section--compact { padding-block: 4rem; }
	.section--roomy { padding-block: 8rem; }
}
.section--accent::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(60% 40% at 50% 0%, rgba(46, 116, 240, 0.14), transparent 70%);
}
.section--grid, .section--dots { isolation: isolate; }
.section--grid::after, .section--dots::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
	mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
}
.section--grid::after {
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 44px 44px;
}
.section--dots::after {
	background-image: radial-gradient(var(--dot-line) 1px, transparent 1.5px);
	background-size: 26px 26px;
}
.section > .container { position: relative; }

/* Section header block: number + eyebrow + hairline, heading, intro */
.section-head { margin-bottom: 2.75rem; max-width: 48rem; }
.section-head__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.section-num { font-family: var(--font-sora); font-size: 13px; color: rgba(255, 255, 255, 0.4); }
.section-head__meta .hairline { flex: 1; border-top-color: rgba(255, 255, 255, 0.08); }
.eyebrow {
	display: inline-block;
	font-family: var(--font-inter);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--blue);
}
.heading-lg { font-size: clamp(2.2rem, 4.2vw, 3.2rem); }
.heading-md { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3, .heading-sm { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.section-head h2 { margin-bottom: 1.1rem; }
.body-text, .section p { max-width: 62ch; }
.section-head p + p { margin-top: 1rem; }

/* ── Signature elements ── */
mark.cited, .cited {
	background: rgba(46, 116, 240, 0.16);
	box-shadow: inset 0 0 0 1px rgba(46, 116, 240, 0.45);
	border-radius: 6px;
	padding: 0 0.3em;
	color: inherit;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.text-gradient-blue {
	background: linear-gradient(100deg, #fff 10%, var(--blue-ice) 45%, var(--blue-2) 80%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ghost-number {
	position: absolute;
	z-index: 0;
	font-family: var(--font-sora);
	font-size: clamp(6rem, 14vw, 11rem);
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(46, 116, 240, 0.28);
	pointer-events: none;
	user-select: none;
}

/* Buttons — verbatim from the source design system */
.btn-primary, .wp-block-button.is-style-fill .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 0.375rem;
	padding: 0.875rem 1.75rem;
	font-family: var(--font-sora);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(46, 116, 240, 0.06);
	box-shadow: inset 0 0 0 1px rgba(46, 116, 240, 0.5);
	border: 0;
	cursor: pointer;
	transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s, background-color 0.2s;
}
.btn-primary:hover {
	background: var(--blue-fill);
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 1px rgba(46, 116, 240, 0.15), 0 10px 28px -10px rgba(46, 116, 240, 0.7);
	color: #fff;
}
.btn-primary:active { background: var(--blue-deep); transform: scale(0.98); }
.btn-quiet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 0.375rem;
	padding: 0.875rem 1.5rem;
	font-family: var(--font-sora);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.02);
	transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.btn-quiet:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-top: 1.9rem; }
.text-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-sora);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}
.text-cta:hover { color: #fff; }
.text-cta::after {
	content: '↗';
	color: var(--blue);
	transition: transform 0.2s;
}
.text-cta:hover::after { transform: translate(2px, -2px); }

/* Arrow glyph helper for buttons */
.btn-primary .arrow, .btn-quiet .arrow { color: currentColor; }

/* ── Header ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.85);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1rem;
}
.site-header__logo img { height: 22px; width: auto; }
.site-nav { display: none; }
@media (min-width: 1024px) {
	.site-nav { display: block; position: absolute; left: 50%; transform: translateX(-50%); }
}
.site-nav ul { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.site-nav a {
	position: relative;
	display: inline-block;
	padding-block: 0.4rem;
	font-family: var(--font-sora);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s;
}
.site-nav a:hover, .site-nav .current-menu-item > a, .site-nav .current-menu-ancestor > a { color: #fff; }
.site-nav a::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 1px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}
.site-nav a:hover::after { transform: scaleX(1); }
/* Services dropdown */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .menu-item-has-children > a::before { content: '▾'; float: right; margin-left: 0.45rem; font-size: 9px; opacity: 0.7; }
.site-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 0.75rem;
	display: none;
	flex-direction: column;
	gap: 0;
	min-width: 16rem;
}
.site-nav .sub-menu li { list-style: none; }
.site-nav .sub-menu-panel, .site-nav .sub-menu {
	z-index: 110;
}
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu,
.site-nav .menu-item-has-children.is-open > .sub-menu { display: flex; }
.site-nav .sub-menu::before {
	content: '';
	position: absolute;
	inset: 0.75rem 0 0 0;
	background: #0a0a0d;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
	z-index: -1;
}
.site-nav .sub-menu a {
	display: block;
	padding: 0.7rem 1rem;
	font-family: var(--font-inter);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255, 255, 255, 0.75);
	border-radius: 0.5rem;
	margin: 0.15rem 0.5rem;
}
.site-nav .sub-menu a::after { content: none; }
.site-nav .sub-menu a:hover { background: rgba(46, 116, 240, 0.12); color: #fff; }
.site-header__cta { display: none; }
@media (min-width: 1024px) {
	.site-header__cta {
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 0.5rem;
		padding: 0.65rem 1.25rem;
		font-family: var(--font-sora);
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #fff;
		transition: border-color 0.2s, background-color 0.2s;
	}
	.site-header__cta:hover { border-color: var(--blue); background: rgba(46, 116, 240, 0.1); }
	.site-header__cta .arrow { color: var(--blue); transition: transform 0.2s; }
	.site-header__cta:hover .arrow { transform: translate(2px, -2px); }
}
.nav-toggle { display: inline-flex; padding: 0.5rem; color: #fff; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close, .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav { display: none; border-top: 1px solid rgba(255, 255, 255, 0.08); background: #000; padding: 1rem 1.25rem 1.25rem; }
.mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav .sub-menu { padding-left: 1rem; }
.mobile-nav a {
	display: block;
	padding: 0.65rem 0.25rem;
	font-family: var(--font-sora);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.5rem;
	padding: 0.8rem 1rem;
	color: #fff !important;
}

/* ── Footer ── */
.site-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); background: var(--bg0); padding-block: 4rem; }
.site-footer__cols { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__cols { flex-direction: row; justify-content: space-between; } }
.site-footer__brand { max-width: 20rem; }
.site-footer__brand img { height: 24px; width: auto; }
.site-footer__brand p { margin-top: 1.1rem; font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }
.site-footer__legend {
	display: flex;
	gap: 1.1rem;
	margin-top: 1.1rem;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}
.legend-dot { display: inline-flex; align-items: center; gap: 0.4rem; }
.legend-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.legend-dot--human::before { background: #fff; }
.legend-dot--agent::before { background: var(--blue); box-shadow: 0 0 8px rgba(46, 116, 240, 0.9); }
.legend-dot--live::before { background: var(--live); box-shadow: 0 0 8px rgba(110, 231, 183, 0.8); animation: core-pulse 2.4s ease-in-out infinite; }
.site-footer__nav ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.25rem 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 640px) { .site-footer__nav ul { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.site-footer__nav a { display: inline-block; padding-block: 0.3rem; font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }
.site-footer__nav a:hover { color: #fff; }
.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 2rem;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__bottom a { color: rgba(255, 255, 255, 0.55); }
.site-footer__bottom a:hover { color: #fff; }
.site-footer__bottom-links { display: flex; gap: 1.5rem; }

/* ── Cards ── */
.card, .feature-card, .tldr-card, .ff-card, .case-card, .article-card, .cta-card, .channel-card, .visual-window {
	border: 1px solid var(--card-border);
	border-radius: 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 24px 48px -24px rgba(0, 0, 0, 0.7);
}
.card--elevated, .visual-window--elevated {
	border-color: rgba(46, 116, 240, 0.4);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 24px 48px -24px rgba(0, 0, 0, 0.7), 0 0 40px -8px rgba(46, 116, 240, 0.35);
}

/* Icon tile — navy radial gradient, from brand.config tileBackground */
.icon-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 0.65rem;
	border: 1px solid rgba(46, 116, 240, 0.35);
	background: radial-gradient(120% 120% at 26% 18%, #1e3c85 0%, #12255c 38%, #050810 100%);
	color: var(--blue-2);
	font-size: 17px;
	line-height: 1;
}
.icon-tile--lg { width: 48px; height: 48px; font-size: 20px; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 2.5rem; }
.feature-card { padding: 1.5rem; transition: border-color 0.25s, transform 0.25s; }
.feature-card:hover { border-color: rgba(46, 116, 240, 0.4); transform: translateY(-3px); }
.feature-card .icon-tile { margin-bottom: 1rem; }
.feature-card h3, .feature-card h4 {
	font-size: 18px;
	letter-spacing: -0.01em;
	margin-bottom: 0.55rem;
}
.feature-card p { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }

/* Check list */
ul.check-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
ul.check-list.check-list--2col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.8rem 2rem; }
ul.check-list.check-list--3col { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.9rem 1.6rem; }
ul.check-list li { position: relative; padding-left: 1.75rem; font-size: 14.5px; }
ul.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.05em;
	color: var(--blue);
	font-weight: 700;
}
ol.num-list { margin: 1.4rem 0 0; padding: 0 0 0 1.5rem; display: grid; gap: 0.7rem; font-size: 15px; }
ol.num-list li::marker { color: var(--blue); font-family: var(--font-sora); font-weight: 600; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; margin-top: 2.75rem; }
.stat { border-top: 1px solid var(--hairline); padding-top: 1.25rem; }
.stat__value {
	font-family: var(--font-sora);
	font-size: clamp(2.4rem, 4.6vw, 3.4rem);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--blue);
	line-height: 1;
}
.stat__label { margin-top: 0.7rem; font-size: 13.5px; color: rgba(255, 255, 255, 0.6); max-width: 30ch; }

/* Process steps */
.process-steps { counter-reset: step; list-style: none; margin: 2.75rem 0 0; padding: 0; display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); position: relative; }
@media (min-width: 1024px) {
	.process-steps::before {
		content: '';
		position: absolute;
		top: 22px;
		left: 22px;
		right: 22px;
		height: 1px;
		background: linear-gradient(90deg, rgba(46, 116, 240, 0.5), rgba(46, 116, 240, 0.12));
	}
}
.process-step { counter-increment: step; position: relative; }
.process-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(46, 116, 240, 0.6);
	background: var(--bg0);
	position: relative;
	z-index: 1;
	font-family: var(--font-sora);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-2);
	margin-bottom: 1.1rem;
}
.process-step__num::before { content: '0' counter(step); }
.process-step h3, .process-step h4 { font-size: 17px; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.process-step p { font-size: 14px; color: rgba(255, 255, 255, 0.65); }

/* Related links */
.related-links { list-style: none; margin: 2.25rem 0 0; padding: 0; }
.related-links li { border-top: 1px solid var(--hairline); }
.related-links li:last-child { border-bottom: 1px solid var(--hairline); }
.related-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.1rem 0.25rem;
	transition: background-color 0.2s;
}
.related-links a:hover { background: rgba(255, 255, 255, 0.02); }
.related-links a::after { content: '↗'; color: var(--blue); font-size: 17px; flex: none; transition: transform 0.2s; }
.related-links a:hover::after { transform: translate(3px, -3px); }
.related-links .related-title { display: block; font-family: var(--font-sora); font-size: 16px; font-weight: 600; color: #fff; }
.related-links .related-desc { display: block; margin-top: 0.2rem; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }

/* FAQ accordion — native details/summary, styled after the source accordion */
.faq-section { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-section { grid-template-columns: 0.85fr 1.15fr; align-items: start; } .faq-section > h2 { position: sticky; top: 6rem; } }
.faq { margin-top: 1.5rem; }
.faq-section .faq { margin-top: 0; }
.faq__item { border-top: 1px solid var(--hairline); }
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.15rem 0.25rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-sora);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; color: var(--blue); font-size: 20px; font-weight: 400; flex: none; transition: transform 0.3s; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0.25rem 1.25rem; font-size: 14.5px; color: rgba(255, 255, 255, 0.65); max-width: 62ch; }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; text-align: center; padding-block: 5.5rem; }
.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(45% 60% at 50% 0%, rgba(46, 116, 240, 0.22), transparent 70%),
		repeating-linear-gradient(100deg, rgba(46, 116, 240, 0.08) 0 8%, transparent 12% 20%);
	filter: blur(28px);
	-webkit-mask-image: radial-gradient(80% 90% at 50% 10%, #000 30%, transparent 100%);
	mask-image: radial-gradient(80% 90% at 50% 10%, #000 30%, transparent 100%);
	pointer-events: none;
}
.cta-banner .container { position: relative; }
.cta-banner h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0.9rem auto 1.1rem; }
.cta-banner p { margin-inline: auto; max-width: 56ch; }
.cta-banner .btn-primary, .cta-banner .btn-row { margin-top: 2rem; justify-content: center; }

/* ── Page hero (sub-pages) ── */
.page-hero { position: relative; padding-block: 4rem; overflow: hidden; }
@media (min-width: 1024px) { .page-hero { padding-block: 6rem; } }
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(80% 80% at 50% 20%, #000 20%, transparent 100%);
	mask-image: radial-gradient(80% 80% at 50% 20%, #000 20%, transparent 100%);
	pointer-events: none;
}
.page-hero::after {
	content: '';
	position: absolute;
	left: 8%;
	top: -10%;
	width: 420px;
	height: 720px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(46, 116, 240, 0.16), transparent 70%);
	filter: blur(40px);
	pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { font-size: 13px; opacity: 0.6; }
.page-hero .eyebrow { margin-bottom: 0.9rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.06; max-width: 22ch; }
.page-hero__intro { margin-top: 1.4rem; max-width: 62ch; font-size: 16.5px; }
.page-hero .btn-row { margin-top: 2rem; }
.proof-points {
	list-style: none;
	margin: 3.25rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.proof-points li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.02);
	padding: 1rem 1.1rem;
	font-size: 13.5px;
	transition: border-color 0.25s;
}
.proof-points li:hover { border-color: rgba(46, 116, 240, 0.45); }
.proof-points .icon-tile { width: 36px; height: 36px; font-size: 15px; }

/* Two-column split blocks (copy + visual) */
.split { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 1024px) {
	.split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; }
	.split--flip > *:first-child { order: 2; }
}

/* ── Article cards (Insights hub + related) ── */
.article-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 2.5rem; }
.article-card { display: flex; flex-direction: column; padding: 1.4rem; transition: border-color 0.25s; }
.article-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.article-card__cat { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; }
.article-card__title { font-family: var(--font-sora); font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, 0.92); line-height: 1.35; }
.article-card:hover .article-card__title { color: #fff; }
.article-card__meta { margin-top: auto; padding-top: 1.1rem; font-size: 12.5px; color: rgba(255, 255, 255, 0.5); display: flex; gap: 1rem; flex-wrap: wrap; }
.article-card--featured { display: grid; gap: 0; padding: 0; overflow: hidden; }
@media (min-width: 1024px) { .article-card--featured { grid-template-columns: 1.05fr 0.95fr; } }
.article-card--featured .article-card__visual {
	min-height: 220px;
	background:
		radial-gradient(70% 90% at 30% 20%, rgba(46, 116, 240, 0.35), transparent 65%),
		var(--bg1);
	border-bottom: 1px solid var(--card-border);
}
@media (min-width: 1024px) { .article-card--featured .article-card__visual { border-bottom: 0; border-right: 1px solid var(--card-border); } }
.article-card--featured .article-card__body { padding: 2rem; display: flex; flex-direction: column; align-items: flex-start; }
.article-card--featured .article-card__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.article-card--featured p { margin-top: 0.9rem; font-size: 14.5px; }
.article-card--featured .btn-primary { margin-top: 1.5rem; }

/* ── Single article ── */
.article-header { position: relative; padding-block: 4.5rem 2.5rem; text-align: center; overflow: hidden; }
.article-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(60% 80% at 50% 0%, #000 20%, transparent 100%);
	mask-image: radial-gradient(60% 80% at 50% 0%, #000 20%, transparent 100%);
}
.article-header .container { position: relative; }
.article-header .breadcrumb { justify-content: center; }
.article-header__cat { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }
.article-header h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; max-width: 24ch; margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin-top: 1.4rem; font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.article-body { max-width: 48rem; margin-inline: auto; padding-inline: 1.5rem; padding-bottom: 3rem; }
@media (min-width: 640px) { .article-body { padding-inline: 2rem; } }
.article-body > * + * { margin-top: 1.25rem; }
.article-body p { font-size: 15.5px; line-height: 1.75; }
.article-body h2 { font-size: 22px; margin-top: 3rem; }
.article-body h3 { font-size: 18px; margin-top: 2rem; }
.article-body .wp-block-quote {
	border-left: 2px solid var(--blue);
	padding: 0.35rem 0 0.35rem 1.4rem;
	margin-block: 2rem;
}
.article-body .wp-block-quote p { font-family: var(--font-sora); font-size: 18px; font-style: italic; color: rgba(255, 255, 255, 0.85); }
.tldr-card { padding: 1.5rem 1.6rem; margin-block: 2.5rem; }
.tldr-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem; }
.tldr-card .check-list { margin-top: 0.6rem; }
.article-footer { max-width: 48rem; margin-inline: auto; padding: 0 1.5rem 4rem; }
@media (min-width: 640px) { .article-footer { padding-inline: 2rem; } }
.cta-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.75rem; margin-block: 2.5rem; }
.cta-card p { font-size: 15px; color: rgba(255, 255, 255, 0.8); max-width: 42ch; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sora); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.back-link:hover { color: #fff; }
.keep-reading h2 { font-size: 20px; margin-top: 3rem; }

/* ── Cases grid ── */
.cases-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2.5rem; }
.case-card { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; transition: border-color 0.25s, transform 0.25s; }
.case-card:hover { border-color: rgba(46, 116, 240, 0.4); transform: translateY(-3px); }
.case-card__tag { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
.case-card h3 { font-size: 18px; letter-spacing: -0.01em; }
.case-card__context { font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.case-card__result {
	margin-top: auto;
	border-top: 1px solid var(--hairline);
	padding-top: 0.9rem;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}
.case-card__result strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.35rem; }

/* ── Contact page ── */
.contact-split { display: grid; gap: 2.5rem; align-items: start; margin-top: 2.5rem; }
@media (min-width: 1024px) { .contact-split { grid-template-columns: 0.92fr 1.08fr; } .channel-cards { position: sticky; top: 6rem; } }
.channel-cards { display: grid; gap: 0.9rem; }
.channel-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 1.3rem; }
.channel-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
.channel-card__value { display: block; font-family: var(--font-sora); font-size: 15px; font-weight: 600; color: #fff; margin-top: 0.25rem; }
.channel-card__note { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-top: 0.2rem; }

/* Contact form (rendered by the fusified-forms plugin) */
.ff-card { padding: 1.9rem; }
.ff-form__title { font-size: 20px; margin-bottom: 1.4rem; }
.ff-form { display: grid; gap: 1.1rem; }
.ff-intent { border: 0; padding: 0; margin: 0; }
.ff-intent legend { font-family: var(--font-inter); font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.7); margin-bottom: 0.6rem; padding: 0; }
.ff-intent__options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ff-intent__option {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.5rem;
	padding: 0.6rem 1rem;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.ff-intent__option input { position: absolute; opacity: 0; pointer-events: none; }
.ff-intent__option.is-active {
	border-color: rgba(46, 116, 240, 0.7);
	background: rgba(46, 116, 240, 0.12);
	color: #fff;
}
.ff-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .ff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ff-field { display: grid; gap: 0.45rem; }
.ff-label { font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.7); }
.ff-required { color: var(--blue); margin-left: 0.15rem; }
.ff-input {
	width: 100%;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	padding: 0.75rem 1rem;
	font-family: var(--font-inter);
	font-size: 14px;
	color: #fff;
	outline: none;
	transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.ff-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.ff-input:hover { border-color: rgba(255, 255, 255, 0.2); }
.ff-input:focus {
	border-color: rgba(46, 116, 240, 0.7);
	background: rgba(46, 116, 240, 0.045);
	box-shadow: 0 0 0 3px rgba(46, 116, 240, 0.14), 0 8px 32px -12px rgba(46, 116, 240, 0.45);
}
textarea.ff-input { min-height: 120px; resize: vertical; }
.ff-website-field.is-hidden { display: none; }
.ff-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }
.ff-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 13.5px; color: rgba(255, 255, 255, 0.7); cursor: pointer; }
.ff-consent input { width: 18px; height: 18px; margin-top: 0.1rem; accent-color: var(--blue-fill); }
.ff-consent a { color: var(--blue-2); text-decoration: underline; }
.ff-submit { width: 100%; min-height: 52px; }
@media (min-width: 640px) { .ff-submit { width: auto; min-width: 240px; } }
.ff-notice { border-radius: 0.5rem; padding: 0.9rem 1.1rem; font-size: 14px; }
.ff-notice--error { border: 1px solid rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); color: rgba(255, 200, 200, 0.9); }
.ff-notice--error a { color: #fff; text-decoration: underline; }
.ff-success { text-align: center; padding: 2.5rem 1.5rem; }
.ff-success::before {
	content: '✓';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	border: 1px solid rgba(46, 116, 240, 0.6);
	background: radial-gradient(60% 60% at 50% 40%, rgba(46, 116, 240, 0.35), transparent 80%);
	color: #fff;
	font-size: 26px;
}
.ff-success h3 { font-size: 20px; margin-bottom: 0.6rem; }
.ff-success p { color: rgba(255, 255, 255, 0.65); margin-bottom: 1.5rem; }

/* ── Privacy / legal ── */
.legal-layout { display: grid; gap: 2.5rem; margin-top: 1rem; }
@media (min-width: 1024px) { .legal-layout { grid-template-columns: 230px minmax(0, 1fr); } }
.legal-toc { display: none; }
@media (min-width: 1024px) {
	.legal-toc { display: block; position: sticky; top: 6rem; align-self: start; }
	.legal-toc__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 0.9rem; }
	.legal-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; counter-reset: toc; }
	.legal-toc a { display: flex; gap: 0.6rem; padding: 0.45rem 0.6rem; border-left: 2px solid transparent; font-size: 13px; color: rgba(255, 255, 255, 0.6); counter-increment: toc; }
	.legal-toc a::before { content: counter(toc, decimal-leading-zero); color: rgba(255, 255, 255, 0.35); font-variant-numeric: tabular-nums; }
	.legal-toc a:hover { color: #fff; border-left-color: rgba(46, 116, 240, 0.6); }
}
.legal-body { max-width: 62ch; }
.legal-note {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.2rem;
	margin-bottom: 2.5rem;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.65);
}
.legal-body h2 { font-size: 22px; margin-top: 3rem; scroll-margin-top: 6rem; }
.legal-body h2 .legal-num { color: rgba(255, 255, 255, 0.35); font-size: 13px; display: block; margin-bottom: 0.5rem; }
.legal-body p { margin-top: 1rem; font-size: 15px; line-height: 1.75; }

/* ── HOMEPAGE ── */
/* Hero */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; background: var(--bg0); }
.hero__sphere {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
@media (min-width: 1024px) {
	.hero__sphere { left: auto; right: 4%; top: 50%; bottom: auto; transform: translateY(-50%); height: 82vh; max-height: 760px; aspect-ratio: 1; }
}
.hero__sphere canvas { width: 100%; height: 100%; }
.hero__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(42% 42% at 70% 52%, rgba(46, 116, 240, 0.22), transparent 70%);
	pointer-events: none;
}
.hero__mark {
	position: absolute;
	right: 22%;
	top: 48%;
	transform: translate(50%, -50%);
	width: clamp(62px, 9vw, 150px);
	filter:
		drop-shadow(0 0 22px rgba(46, 116, 240, 0.85))
		drop-shadow(0 0 60px rgba(46, 116, 240, 0.5));
	opacity: 0.95;
	pointer-events: none;
	display: none;
}
@media (min-width: 1024px) { .hero__mark { display: block; } }
.hero__wash { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35) 55%, transparent); pointer-events: none; }
@media (min-width: 1024px) { .hero__wash { background: linear-gradient(90deg, #000 20%, rgba(0, 0, 0, 0.55) 45%, transparent 75%); } }
.hero__vignette { position: absolute; inset: auto 0 0 0; height: 22vh; background: linear-gradient(180deg, transparent, #0b0a13); pointer-events: none; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__copy { max-width: 560px; padding-block: 8rem 6rem; }
@media (min-width: 1024px) { .hero__copy { max-width: 740px; } }
.hero h1 {
	font-size: clamp(2rem, 5.2vw, 3.9rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}
.hero h1 .period { color: var(--blue); }
.rotating-word { display: inline-block; position: relative; }
.rotating-word .word {
	display: inline-block;
	white-space: nowrap;
}
.rotating-word .word.is-out { animation: word-out 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.rotating-word .word.is-in { animation: word-in 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes word-out { to { opacity: 0; transform: translateY(-60%); filter: blur(6px); } }
@keyframes word-in { from { opacity: 0; transform: translateY(60%); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.hero__sub { margin-top: 1.6rem; max-width: 56ch; font-size: 16.5px; }
.hero__copy .btn-row { margin-top: 2.1rem; }
.hero-reveal { animation: hero-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.18s; }
.hero-fade { animation: hero-fade 1s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.4s; }
.hero-fade--late { animation-delay: 0.55s; }
@keyframes hero-reveal { from { opacity: 0; transform: translateY(28px); filter: blur(12px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes hero-fade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Visual "window" panels (benchmark, chat, board) */
.visual-window { overflow: hidden; }
.visual-window__bar {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	border-bottom: 1px solid var(--card-border);
	padding: 0.7rem 1rem;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.5);
}
.window-dots { display: inline-flex; gap: 0.3rem; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.visual-window__bar .live-tag { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--live); }
.live-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(110, 231, 183, 0.8); animation: core-pulse 2.4s ease-in-out infinite; }
.visual-window__body { padding: 1.25rem 1.4rem 1.4rem; }
.visual-window__title { font-family: var(--font-sora); font-size: 15px; font-weight: 600; color: #fff; }
.visual-window__subtitle { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); margin-top: 0.2rem; }
.visual-window__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--card-border);
	padding: 0.7rem 1.4rem;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}
.visual-window__foot .legend { display: flex; gap: 1rem; }

/* Benchmark bars */
.bench-rows { display: grid; gap: 0.9rem; margin-top: 1.25rem; }
.bench-row { display: grid; gap: 0.35rem; font-size: 12.5px; color: rgba(255, 255, 255, 0.7); }
.bench-row__top { display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; }
.bench-row__track { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.bench-row__bar {
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.bench-row--you .bench-row__bar { background: linear-gradient(90deg, var(--blue-deep), var(--blue)); box-shadow: 0 0 14px rgba(46, 116, 240, 0.6); }
.reveal.in .bench-row__bar, .no-js .bench-row__bar { width: var(--w); }
.engine-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; margin-top: 1.25rem; }
.engine-tile { border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 0.6rem; background: rgba(255, 255, 255, 0.02); padding: 0.7rem 0.8rem; font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }
.engine-tile strong { display: block; font-family: var(--font-sora); font-size: 16px; color: #fff; margin-top: 0.2rem; }
.engine-tile em { font-style: normal; color: var(--live); font-size: 11px; }

/* Chat / answer mock */
.chat-mock { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.chat-bubble { border-radius: 0.8rem; padding: 0.85rem 1rem; font-size: 13.5px; line-height: 1.55; }
.chat-bubble--user { justify-self: end; max-width: 85%; background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.85); }
.chat-bubble--ai { background: rgba(46, 116, 240, 0.08); border: 1px solid rgba(46, 116, 240, 0.25); color: rgba(255, 255, 255, 0.8); }
.chat-pill {
	display: inline-block;
	background: rgba(46, 116, 240, 0.2);
	box-shadow: inset 0 0 0 1px rgba(46, 116, 240, 0.55);
	border-radius: 6px;
	padding: 0 0.3em;
	color: #fff;
	animation: core-pulse 3s ease-in-out infinite;
}
.chat-sources { font-size: 11.5px; color: rgba(255, 255, 255, 0.5); }
.chat-metrics { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chat-metric { border: 1px solid rgba(46, 116, 240, 0.3); border-radius: 999px; padding: 0.3rem 0.8rem; font-size: 11.5px; color: var(--blue-ice); background: rgba(46, 116, 240, 0.08); }

/* Logo marquee */
.marquee { position: relative; overflow: hidden; margin-top: 1.4rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 2.75rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee img { height: 22px; width: auto; opacity: 0.7; filter: brightness(0) invert(1); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-caption { margin-top: 2rem; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }

/* Pillars */
.pillar { position: relative; padding-block: 3.5rem; }
.pillar + .pillar { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.pillar .ghost-number { top: 0; right: 2%; }
.pillar__tag { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.pillar__tag .eyebrow { color: var(--blue); }
.pillar h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
.pillar .check-list { margin-top: 1.3rem; }
.pillar .text-cta { margin-top: 1.6rem; }
.pillar__visual { position: relative; z-index: 1; }

/* Journey rail */
.journey-rail { list-style: none; margin: 3rem 0 1rem; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .journey-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; position: relative; } .journey-rail::before { content: ''; position: absolute; top: 22px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, rgba(46, 116, 240, 0.6), rgba(46, 116, 240, 0.15)); } }
.journey-rail li { display: flex; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .journey-rail li { flex-direction: column; text-align: center; gap: 0.8rem; } }
.journey-rail a { display: contents; color: inherit; }
.journey-stop {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: none;
	border-radius: 50%;
	border: 1px solid rgba(46, 116, 240, 0.6);
	background: var(--bg0);
	font-family: var(--font-sora);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-2);
	position: relative;
	z-index: 1;
}
.journey-label { font-size: 13px; color: rgba(255, 255, 255, 0.6); }

/* How we work — capability spine + board mockup */
.spine-list { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 1.5rem; }
.spine-list::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(180deg, rgba(46, 116, 240, 0.6), rgba(46, 116, 240, 0.08));
}
.spine-list li { display: flex; gap: 1.1rem; position: relative; }
.spine-list .icon-tile { position: relative; z-index: 1; }
.spine-list h3 { font-size: 15.5px; letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.spine-list p { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }

.board { font-size: 12px; }
.board__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; padding: 1rem; position: relative; }
.board__cols::before {
	content: '';
	position: absolute;
	inset: 30% 0 auto;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(46, 116, 240, 0.35) 0 10px, transparent 10px 20px);
	background-size: 220px 1px;
	animation: board-flow 6s linear infinite;
	opacity: 0.5;
}
@keyframes board-flow { to { background-position: 220px 0; } }
.board__col { position: relative; display: grid; gap: 0.55rem; align-content: start; }
.board__col-title { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 0.2rem; }
.board-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.55rem;
	background: rgba(255, 255, 255, 0.03);
	padding: 0.6rem 0.7rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.4;
}
.board-card__meta { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.4rem; font-size: 10px; color: rgba(255, 255, 255, 0.45); }
.board-card--agent { border-color: rgba(46, 116, 240, 0.35); }
.board-card--agent.board-card--live { box-shadow: 0 0 18px -6px rgba(46, 116, 240, 0.55); animation: board-pulse 2.4s ease-in-out infinite; }
@keyframes board-pulse { 0%, 100% { box-shadow: 0 0 18px -6px rgba(46, 116, 240, 0.55); } 50% { box-shadow: 0 0 26px -6px rgba(46, 116, 240, 0.85); } }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }
.dot--human { background: #fff; }
.dot--agent { background: var(--blue); box-shadow: 0 0 6px rgba(46, 116, 240, 0.9); }
.dot--live { background: var(--live); box-shadow: 0 0 6px rgba(110, 231, 183, 0.8); animation: core-pulse 2.4s ease-in-out infinite; }

/* Bridge statement */
.bridge { position: relative; overflow: hidden; padding-block: 6rem; }
@media (min-width: 1024px) { .bridge { padding-block: 9rem; } }
.bridge::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(100deg, rgba(46, 116, 240, 0.07) 0 6%, transparent 10% 18%);
	filter: blur(28px);
	-webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent);
	mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent);
	pointer-events: none;
}
.bridge .container { position: relative; }
.bridge__words { list-style: none; margin: 0 0 2rem; padding: 0; }
.bridge__words li { font-family: var(--font-sora); font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; line-height: 1.05; color: #fff; letter-spacing: -0.02em; }
.bridge__words .period { color: var(--blue); }
.bridge__lines p { font-size: 17px; color: rgba(255, 255, 255, 0.7); max-width: 44ch; }
.bridge__lines p + p { margin-top: 0.5rem; }
.bridge__globe { position: relative; display: none; }
@media (min-width: 1024px) { .bridge__globe { display: block; } }
.bridge__globe::before {
	content: '';
	position: absolute;
	inset: 10%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(46, 116, 240, 0.25), transparent 70%);
	filter: blur(30px);
}
.bridge__globe canvas { position: relative; width: 100%; aspect-ratio: 1; }

/* Closing CTA */
.closing-cta { position: relative; overflow: hidden; text-align: center; padding-block: 7rem; }
@media (min-width: 1024px) { .closing-cta { padding-block: 10rem; } }
.closing-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(60% 70% at 50% 50%, transparent 25%, #000 70%);
	mask-image: radial-gradient(60% 70% at 50% 50%, transparent 25%, #000 70%);
}
.closing-cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(50% 55% at 50% 45%, rgba(46, 116, 240, 0.18), transparent 70%);
	pointer-events: none;
}
.closing-cta .container { position: relative; z-index: 1; }
.closing-cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin: 1rem auto 1.2rem; }
.closing-cta p { margin-inline: auto; max-width: 52ch; }

/* ── Reveal-on-scroll ── */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(34px); filter: blur(10px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; filter: none; }

@keyframes core-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.9; } }

/* ── 404 ── */
.error-404 { position: relative; min-height: 78vh; display: flex; align-items: center; text-align: center; overflow: hidden; }
.error-404::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(70% 70% at 50% 20%, #000 20%, transparent 100%);
	mask-image: radial-gradient(70% 70% at 50% 20%, #000 20%, transparent 100%);
}
.error-404 .container { position: relative; }
.error-404__ghost {
	font-family: var(--font-sora);
	font-size: clamp(5.5rem, 17vw, 11rem);
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(46, 116, 240, 0.55);
	filter: drop-shadow(0 0 30px rgba(46, 116, 240, 0.35));
}
.error-404 h1 { margin-top: 1rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.error-404 p { margin: 1rem auto 0; max-width: 46ch; }
.error-404 .btn-primary { margin-top: 1.8rem; }
.error-404 .related-links { text-align: left; max-width: 34rem; margin-inline: auto; }

/* ── WP alignment + block sanity ── */
.alignwide { max-width: 1200px; margin-inline: auto; }
.alignfull { width: 100%; }
.wp-block-image img { border-radius: 1rem; }
.wp-block-separator { border: 0; border-top: 1px solid var(--hairline); }

/* Admin bar offset for the sticky header */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.js .reveal { opacity: 1; transform: none; filter: none; }
	.bench-row__bar { width: var(--w); }
	.marquee__track { animation: none; }
}
