/* ==========================================================================
   Arcane Web Design — Homepage + AI Solutions stylesheet.
   Mirrors the design handoff HTML references 1:1.
   ========================================================================== */

:root {
	--bg: #050810;
	--bg2: #080d1a;
	--bg3: #0c1225;
	--acc: #00d4ff;
	--acc2: #7c3aed;
	--acc-rgb: 0, 212, 255;
	--acc2-rgb: 124, 58, 237;
	--glow: 0 0 40px rgba(0, 212, 255, 0.25);
	--glow-sm: 0 0 16px rgba(0, 212, 255, 0.3);
	--border: rgba(0, 212, 255, 0.12);
	--card: rgba(0, 212, 255, 0.04);
	--txt: #e8edf8;
	--txt2: #8a9ab8;
	--txt3: #4a5a78;
}

/* ── Page reset (only inside .arcane-page so we don't blow up wp-admin) ── */
body.arcane-page,
body.arcane-page * { box-sizing: border-box; }
body.arcane-page {
	background: var(--bg);
	color: var(--txt);
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}
body.arcane-page #wrapper,
body.arcane-page .site,
body.arcane-page .site-content,
body.arcane-page .content-area,
body.arcane-page .entry-content,
body.arcane-page .entry-content-wrap,
body.arcane-page article {
	margin: 0;
	padding: 0;
	max-width: none;
	background: transparent;
}
body.arcane-page .entry-content > * { margin: 0; }
body.arcane-page html { scroll-behavior: smooth; }

.arcane-page a { color: inherit; }
.arcane-page h1,
.arcane-page h2,
.arcane-page h3,
.arcane-page h4 {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--txt);
	margin: 0;
}
.arcane-page h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
}
.arcane-page p { margin: 0; }
.arcane-page ul { list-style: none; margin: 0; padding: 0; }
.arcane-page img { max-width: 100%; display: block; }

.arcane-page .acc { color: var(--acc); }
.arcane-page .container {
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 32px;
}
.arcane-page .label {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--acc);
	margin-bottom: 16px;
	display: block;
}
.arcane-page .section { padding: 96px 0; }
.arcane-page .section-alt { background: var(--bg2); }
.arcane-page .section-intro {
	color: var(--txt2);
	font-size: 1.1rem;
	max-width: 560px;
	margin-bottom: 56px;
}

/* ── Buttons ── */
.arcane-page .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 13px 28px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	border: none;
	line-height: 1;
}
.arcane-page .btn-primary {
	background: var(--acc);
	color: #050810;
	letter-spacing: 0.03em;
}
.arcane-page .btn-primary:hover {
	box-shadow: var(--glow);
	transform: translateY(-1px);
	color: #050810;
}
.arcane-page .btn-ghost {
	background: transparent;
	color: var(--txt);
	border: 1px solid var(--border);
	letter-spacing: 0.03em;
}
.arcane-page .btn-ghost:hover {
	border-color: var(--acc);
	color: var(--acc);
}

/* ── Nav ── */
.arcane-page .nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 20px 0;
	transition: all 0.3s;
}
.arcane-page .nav.scrolled {
	background: rgba(5, 8, 16, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}
.arcane-page .nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.arcane-page .nav-logo img {
	height: 36px;
	filter: invert(1) brightness(2);
}
.arcane-page .nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}
.arcane-page .nav-links a {
	color: var(--txt2);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}
.arcane-page .nav-links a:hover,
.arcane-page .nav-links a.active { color: var(--acc); }
.arcane-page .nav-links a.is-accent { color: var(--acc); }

/* ── Hero (Homepage) ── */
.arcane-page .hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 32px;
}
.arcane-page .hero-bg { position: absolute; inset: 0; z-index: 0; }
.arcane-page .hero-bg-stars {
	position: absolute; inset: 0;
	background: url('../../../../uploads/2026/04/vortex.jpg') center/cover no-repeat;
	opacity: 0.38;
	filter: brightness(1.12);
	z-index: 0;
}
.arcane-page .web-design-hero .hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 8, 16, 0.26), rgba(5, 8, 16, 0.46)),
		radial-gradient(circle at center, rgba(5, 8, 16, 0.04), rgba(5, 8, 16, 0.18));
	z-index: 1;
	pointer-events: none;
}
.arcane-page .web-design-hero {
	min-height: auto;
	padding-top: 122px;
	padding-bottom: 60px;
}
.arcane-page .web-design-hero .hero-main {
	line-height: 1.12;
}
.arcane-page .web-design-hero .hero-bg-stars {
	background-position: center center;
	opacity: 0.5;
	filter: brightness(0.94) saturate(0.92);
}
.arcane-page .hero-grid {
	position: absolute; inset: 0;
	background-image: radial-gradient(circle, rgba(var(--acc-rgb), 0.15) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.5;
}
.arcane-page .hero-orb1 {
	position: absolute;
	width: 700px; height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--acc-rgb), 0.12) 0%, transparent 70%);
	top: -200px; right: -100px;
	animation: drift1 12s ease-in-out infinite;
}
.arcane-page .hero-orb2 {
	position: absolute;
	width: 500px; height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--acc2-rgb), 0.10) 0%, transparent 70%);
	bottom: -100px; left: 100px;
	animation: drift2 15s ease-in-out infinite;
}
@keyframes drift1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-40px, 30px); }
}
@keyframes drift2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, -40px); }
}

.arcane-page .hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 104px;
	align-items: center;
}
.arcane-page .hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}
.arcane-page .hero-eyebrow span {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--acc);
}
.arcane-page .hero-eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--acc);
}
.arcane-page .hero-main {
	font-size: clamp(2.2rem, 4.15vw, 3.3rem);
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.05;
	margin-bottom: 24px;
	color: var(--txt);
}
.arcane-page .hero-main-line {
	display: block;
	white-space: nowrap;
}
.arcane-page .hero-main em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .hero-sub {
	color: var(--txt2);
	font-size: 1.1rem;
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 480px;
}
.arcane-page .hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
.arcane-page .hero-stats {
	display: flex;
	gap: 32px;
}
.arcane-page .hero-stat strong {
	font-family: 'Syne', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--acc);
	display: block;
}
.arcane-page .hero-stat span {
	font-size: 12px;
	color: var(--txt3);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Hero Browser Visual */
.arcane-page .hero-visual {
	position: relative;
	height: 460px;
	width: 115%;
	justify-self: end;
}
.arcane-page .hv-browser {
	position: absolute;
	inset: 0 auto 0 0;
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg2);
	overflow: hidden;
	box-shadow: var(--glow), 0 32px 80px rgba(0, 0, 0, 0.5);
}
.arcane-page .hv-bar {
	height: 38px;
	background: var(--bg3);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}
.arcane-page .hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.arcane-page .hv-url {
	flex: 1;
	height: 20px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 3px;
	margin-left: 12px;
}
.arcane-page .hv-content { padding: 24px; display: grid; gap: 12px; }
.arcane-page .hv-hero-block {
	height: 120px;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.08), rgba(var(--acc2-rgb), 0.06));
	border: 1px solid var(--border);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.arcane-page .hv-hero-block::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(var(--acc-rgb), 0.03) 8px, rgba(var(--acc-rgb), 0.03) 9px);
}
.arcane-page .hv-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.arcane-page .hv-card {
	height: 72px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
}
.arcane-page .hv-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--acc), var(--acc2));
}
.arcane-page .hv-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.arcane-page .hv-pill {
	height: 48px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 6px;
}
.arcane-page .hv-cursor {
	position: absolute;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--acc);
	box-shadow: var(--glow-sm);
	animation: cursor-move 4s ease-in-out infinite;
	top: 40%;
	left: 50%;
}
@keyframes cursor-move {
	0%, 100% { transform: translate(0, 0); }
	25% { transform: translate(60px, -20px); }
	50% { transform: translate(80px, 30px); }
	75% { transform: translate(-20px, 40px); }
}
.arcane-page .hv-badge {
	position: absolute;
	bottom: -40px;
	right: -72px;
	background: rgba(5, 8, 16, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(124, 58, 237, 0.28);
	border-radius: 10px;
	padding: 22px 24px;
	font-family: 'Syne', sans-serif;
	text-align: center;
	box-shadow: 0 0 20px rgba(124, 58, 237, 0.1), 0 2px 12px rgba(0, 0, 0, 0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.arcane-page .hv-badge:hover {
	transform: scale(1.02);
	box-shadow: 0 0 32px rgba(124, 58, 237, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
}
.arcane-page .hv-badge strong {
	display: block;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.02em;
	background: linear-gradient(90deg, #a78bfa, #00d4ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 6px;
}
.arcane-page .hv-badge-sub {
	display: block;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.38);
}

.arcane-page .hv-browser-build {
	background:
		radial-gradient(circle at top right, rgba(var(--acc-rgb), 0.12), transparent 32%),
		linear-gradient(180deg, rgba(10, 15, 30, 0.94), rgba(6, 10, 18, 0.98));
}
.arcane-page .hv-builder-scene {
	display: grid;
	grid-template-columns: 96px 1fr;
	height: calc(100% - 38px);
	min-height: 0;
}
.arcane-page .hv-builder-sidebar {
	padding: 14px 10px;
	border-right: 1px solid var(--border);
	background: linear-gradient(180deg, rgba(10, 16, 28, 0.92), rgba(6, 10, 18, 0.9));
	display: grid;
	align-content: start;
	gap: 8px;
}
.arcane-page .hv-side-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	border: 1px solid rgba(var(--acc-rgb), 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--txt2);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.arcane-page .hv-side-pill span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(var(--acc-rgb), 0.35);
	box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.06);
}
.arcane-page .hv-side-pill.is-live {
	border-color: rgba(var(--acc-rgb), 0.28);
	color: var(--txt);
	background: rgba(var(--acc-rgb), 0.09);
}
.arcane-page .hv-side-pill.is-live span {
	background: var(--acc);
	box-shadow: 0 0 12px rgba(var(--acc-rgb), 0.5);
}
.arcane-page .hv-side-stack {
	display: grid;
	gap: 8px;
	margin-top: 4px;
}
.arcane-page .hv-side-card {
	height: 62px;
	border-radius: 12px;
	border: 1px solid rgba(var(--acc-rgb), 0.1);
	background:
		linear-gradient(180deg, rgba(var(--acc-rgb), 0.12), transparent 55%),
		rgba(255, 255, 255, 0.03);
}
.arcane-page .hv-side-card.small {
	height: 36px;
}
.arcane-page .hv-builder-main {
	display: grid;
	grid-template-rows: 42px 1fr;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}
.arcane-page .hv-builder-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
	border-bottom: 1px solid rgba(var(--acc-rgb), 0.08);
	background: rgba(255, 255, 255, 0.02);
}
.arcane-page .hv-toolbar-group {
	display: flex;
	align-items: center;
	gap: 10px;
}
.arcane-page .hv-toolbar-pill {
	width: 54px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}
.arcane-page .hv-toolbar-pill.wide {
	width: 88px;
}
.arcane-page .hv-toolbar-pill.active {
	background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.95), rgba(var(--acc2-rgb), 0.75));
}
.arcane-page .hv-builder-canvas {
	position: relative;
	height: 100%;
	min-height: 0;
	padding: 14px;
	overflow: hidden;
	--dot-nav-x: 22px;
	--dot-nav-y: 22px;
	--dot-hero-x: 156px;
	--dot-hero-y: 78px;
	--dot-stats-x: 172px;
	--dot-stats-y: 188px;
	--dot-cards-x: 178px;
	--dot-cards-y: 286px;
	--builder-dot-x: var(--dot-nav-x);
	--builder-dot-y: var(--dot-nav-y);
}
.arcane-page .hv-builder-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(var(--acc-rgb), 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--acc-rgb), 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}
.arcane-page .hv-site-shell {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	display: grid;
	gap: 8px;
	height: 100%;
	padding: 10px;
	border-radius: 16px;
	border: 1px solid rgba(var(--acc-rgb), 0.16);
	background:
		linear-gradient(180deg, rgba(6, 10, 18, 0.96), rgba(10, 15, 28, 0.9)),
		rgba(7, 12, 24, 0.92);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.arcane-page .hv-build-target {
	opacity: 0.16;
	transform: translateY(12px);
	will-change: opacity, transform;
	transition:
		opacity 0.52s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.52s cubic-bezier(0.2, 0.8, 0.2, 1),
		border-color 0.32s ease,
		box-shadow 0.32s ease;
}
.arcane-page .hv-build-target.is-built {
	opacity: 1;
	transform: translateY(0);
}
.arcane-page .hv-site-stats-row.target-stats,
.arcane-page .hv-site-card-grid.target-cards {
	opacity: 0;
	transform: translateY(18px);
}
.arcane-page .hv-site-stats-row.target-stats.is-built,
.arcane-page .hv-site-card-grid.target-cards.is-built {
	opacity: 1;
	transform: translateY(0);
}
.arcane-page .hv-site-stats-row.target-stats,
.arcane-page .hv-site-card-grid.target-cards {
	position: relative;
	isolation: isolate;
}
.arcane-page .hv-site-stats-row.target-stats::before,
.arcane-page .hv-site-card-grid.target-cards::before {
	content: '';
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(var(--acc-rgb), 0.12), rgba(var(--acc-rgb), 0.03));
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.arcane-page .hv-site-stats-row.target-stats.is-built::before,
.arcane-page .hv-site-card-grid.target-cards.is-built::before {
	opacity: 1;
	transform: translateY(0);
}
.arcane-page .hv-site-stats-row.target-stats::after,
.arcane-page .hv-site-card-grid.target-cards::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 18px;
	border: 1px solid rgba(var(--acc-rgb), 0.22);
	background: linear-gradient(180deg, rgba(var(--acc-rgb), 0.07), rgba(var(--acc-rgb), 0.02));
	box-shadow: 0 0 24px rgba(var(--acc-rgb), 0);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, box-shadow 0.35s ease;
}
.arcane-page .hv-site-stats-row.target-stats.is-active::after,
.arcane-page .hv-site-card-grid.target-cards.is-active::after {
	opacity: 1;
	box-shadow: 0 0 0 1px rgba(var(--acc-rgb), 0.18), 0 0 28px rgba(var(--acc-rgb), 0.22);
}
.arcane-page .hv-site-nav {
	display: grid;
	grid-template-columns: 58px 1fr 64px;
	align-items: center;
	gap: 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(var(--acc-rgb), 0.12);
}
.arcane-page .hv-site-logo {
	height: 15px;
	width: 52px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.95), rgba(var(--acc2-rgb), 0.55));
}
.arcane-page .hv-site-nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.arcane-page .hv-site-nav-links span {
	width: 42px;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}
.arcane-page .hv-site-nav-cta {
	height: 14px;
	border-radius: 999px;
	background: rgba(var(--acc-rgb), 0.2);
}
.arcane-page .hv-site-hero-panel {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 10px;
	align-items: center;
	min-height: 108px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.1), rgba(var(--acc2-rgb), 0.05));
	border: 1px solid rgba(var(--acc-rgb), 0.14);
}
.arcane-page .hv-site-copy {
	display: grid;
	align-content: center;
	align-self: center;
	min-height: 0;
	gap: 6px;
	width: 100%;
}
.arcane-page .hv-copy-kicker,
.arcane-page .hv-copy-line,
.arcane-page .hv-copy-actions span,
.arcane-page .hv-stat-value,
.arcane-page .hv-stat-label,
.arcane-page .hv-service-line {
	position: relative;
	overflow: hidden;
}
.arcane-page .hv-copy-kicker::after,
.arcane-page .hv-copy-line::after,
.arcane-page .hv-copy-actions span::after,
.arcane-page .hv-stat-value::after,
.arcane-page .hv-stat-label::after,
.arcane-page .hv-service-line::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(var(--acc-rgb), 0.18), rgba(255, 255, 255, 0.02));
	transform: translateX(-100%);
	animation: none;
	opacity: 0;
}
.arcane-page .hv-copy-kicker {
	width: 68px;
	height: 7px;
	border-radius: 999px;
	background: rgba(var(--acc-rgb), 0.34);
}
.arcane-page .hv-copy-line {
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}
.arcane-page .hv-copy-line.lg { width: 92%; }
.arcane-page .hv-copy-line.md { width: 74%; }
.arcane-page .hv-copy-line.sm { width: 64%; }
.arcane-page .hv-copy-actions {
	display: flex;
	gap: 8px;
	margin-top: 4px;
}
.arcane-page .hv-copy-actions span {
	height: 12px;
	width: 68px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}
.arcane-page .hv-copy-actions span:first-child {
	background: rgba(var(--acc-rgb), 0.28);
}
.arcane-page .hv-site-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	min-height: 0;
}
.arcane-page .hv-preview-window {
	width: 100%;
	max-width: 134px;
	padding: 7px;
	border-radius: 14px;
	border: 1px solid rgba(var(--acc-rgb), 0.16);
	background: rgba(5, 8, 16, 0.62);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
}
.arcane-page .hv-preview-bar,
.arcane-page .hv-preview-panel {
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}
.arcane-page .hv-preview-bar {
	grid-column: 1 / -1;
	height: 7px;
}
.arcane-page .hv-preview-panel.hero {
	grid-column: 1 / -1;
	height: 42px;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.18), rgba(var(--acc2-rgb), 0.12));
}
.arcane-page .hv-preview-panel.half {
	height: 22px;
}
.arcane-page .hv-site-stats-row,
.arcane-page .hv-site-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.arcane-page .hv-stat-block,
.arcane-page .hv-site-service-card {
	padding: 8px;
	border-radius: 12px;
	border: 1px solid rgba(var(--acc-rgb), 0.1);
	background: rgba(255, 255, 255, 0.035);
}
.arcane-page .target-stats .hv-stat-block,
.arcane-page .target-cards .hv-site-service-card {
	opacity: 0;
	transform: translateY(20px) scale(0.97);
	will-change: opacity, transform, border-color, box-shadow;
	transition:
		opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
		border-color 0.28s ease,
		box-shadow 0.28s ease;
}
.arcane-page .target-stats .hv-stat-block.is-built-item,
.arcane-page .target-cards .hv-site-service-card.is-built-item {
	opacity: 1;
	transform: translateY(0) scale(1);
	border-color: rgba(var(--acc-rgb), 0.22);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}
.arcane-page .hv-stat-value {
	width: 34px;
	height: 10px;
	border-radius: 999px;
	background: rgba(var(--acc-rgb), 0.26);
	margin-bottom: 5px;
}
.arcane-page .hv-stat-label {
	width: 82%;
	height: 5px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}
.arcane-page .hv-service-icon {
	width: 18px;
	height: 18px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.24), rgba(var(--acc2-rgb), 0.18));
	margin-bottom: 6px;
}
.arcane-page .hv-service-line {
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	margin-bottom: 5px;
}
.arcane-page .hv-service-line.short {
	width: 72%;
	margin-bottom: 0;
}
.arcane-page .hv-site-footer-line {
	display: none;
}
.arcane-page .hv-builder-dot,
.arcane-page .hv-builder-pulse {
	position: absolute;
	z-index: 3;
	border-radius: 50%;
	pointer-events: none;
}
.arcane-page .hv-builder-dot {
	width: 14px;
	height: 14px;
	background: var(--acc);
	box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.12), 0 0 18px rgba(var(--acc-rgb), 0.5);
	top: 0;
	left: 0;
	transform: translate(calc(var(--builder-dot-x) - 50%), calc(var(--builder-dot-y) - 50%));
	transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.arcane-page .hv-builder-pulse {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(var(--acc-rgb), 0.42);
	top: 0;
	left: 0;
	transform: translate(calc(var(--builder-dot-x) - 50%), calc(var(--builder-dot-y) - 50%)) scale(0.5);
	opacity: 0;
	transition: transform 0.26s ease-out, opacity 0.26s ease-out;
}
.arcane-page .hv-builder-canvas.is-pulsing .hv-builder-pulse {
	transform: translate(calc(var(--builder-dot-x) - 50%), calc(var(--builder-dot-y) - 50%)) scale(1.65);
	opacity: 0.95;
}

/* ── Ticker ── */
.arcane-page .ticker {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 28px 0;
	overflow: hidden;
	background: var(--bg2);
}
.arcane-page .ticker-inner {
	display: flex;
	gap: 64px;
	animation: tick 40s linear infinite;
	width: max-content;
}
.arcane-page .ticker-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Syne', sans-serif;
	font-size: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	white-space: nowrap;
}
.arcane-page .ticker-item::before {
	content: '◆';
	color: var(--acc);
	font-size: 8px;
}
@keyframes tick {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ── Services ── */
.arcane-page .services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}
.arcane-page .svc-card {
	background: var(--bg);
	padding: 40px 32px;
	transition: background 0.3s;
	position: relative;
	overflow: hidden;
}
.arcane-page .svc-card:hover { background: var(--bg2); }
.arcane-page .svc-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.04), transparent);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
.arcane-page .svc-card:hover::after { opacity: 1; }
.arcane-page .svc-icon {
	width: 44px; height: 44px;
	border: 1px solid var(--border);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	background: var(--card);
}
.arcane-page .svc-icon svg {
	width: 20px; height: 20px;
	stroke: var(--acc);
	fill: none;
	stroke-width: 1.5;
}
.arcane-page .svc-card h3 {
	font-size: 1.1rem;
	margin-bottom: 12px;
	font-family: 'Syne', sans-serif;
}
.arcane-page .svc-card p {
	color: var(--txt2);
	font-size: 0.9rem;
	line-height: 1.65;
}
.arcane-page .svc-num {
	position: absolute;
	top: 16px; right: 20px;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	color: var(--txt3);
	letter-spacing: 0.05em;
}

/* ── Process ── */
.arcane-page .process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}
.arcane-page .process-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
	z-index: 0;
}
.arcane-page .process-step {
	position: relative;
	z-index: 1;
	text-align: center;
}
.arcane-page .ps-num {
	width: 56px; height: 56px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-family: 'Syne', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--acc);
	background: var(--bg);
	transition: all 0.3s;
}
.arcane-page .process-step:hover .ps-num {
	background: var(--acc);
	color: var(--bg);
	box-shadow: var(--glow);
}
.arcane-page .process-step h3 {
	font-size: 1rem;
	margin-bottom: 8px;
	font-family: 'Syne', sans-serif;
}
.arcane-page .process-step p {
	color: var(--txt2);
	font-size: 0.85rem;
	line-height: 1.6;
}

/* ── Pricing ── */
.arcane-page .pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}
.arcane-page .price-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 40px 32px;
	background: var(--bg2);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s;
}
.arcane-page .price-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--glow);
}
.arcane-page .price-card.featured {
	border-color: var(--acc);
	background: var(--bg3);
}
.arcane-page .price-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--acc);
	color: var(--bg);
	font-family: 'Syne', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
}
.arcane-page .price-tier {
	font-family: 'Syne', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acc);
	margin-bottom: 14px;
}
.arcane-page .price-name {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.85rem, 2.2vw, 2.2rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}
.arcane-page .price-desc {
	color: var(--txt2);
	font-size: 0.85rem;
	margin-bottom: 28px;
	line-height: 1.6;
}
.arcane-page .price-divider {
	height: 1px;
	background: var(--border);
	margin-bottom: 28px;
}
.arcane-page .price-features {
	display: grid;
	gap: 12px;
	margin-bottom: 36px;
	flex: 1;
}
.arcane-page .price-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--txt2);
}
.arcane-page .price-features li::before {
	content: '→';
	color: var(--acc);
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}
.arcane-page .price-cta {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

/* ── AI Teaser ── */
.arcane-page .ai-teaser {
	padding: 96px 0;
	background: var(--bg);
}
.arcane-page .ai-teaser-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.arcane-page .ai-teaser-content h2 { margin-bottom: 16px; }
.arcane-page .ai-teaser-content p {
	color: var(--txt2);
	line-height: 1.75;
	margin-bottom: 12px;
}
.arcane-page .ai-teaser-content p:last-of-type { margin-bottom: 32px; }
.arcane-page .ai-teaser-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.arcane-page .ai-teaser-circle {
	width: 480px;
	height: 480px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(0, 212, 255, 0.3);
	box-shadow: 0 0 48px rgba(0, 212, 255, 0.08);
}
.arcane-page .ai-teaser-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: brightness(0.7);
}
.arcane-page .ai-products-mini {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.arcane-page .ai-mini-pill {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 6px 14px;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--txt2);
	white-space: nowrap;
}

/* ── About ── */
.arcane-page .about-teaser {
	position: relative;
	overflow: hidden;
	padding: 96px 0;
}
.arcane-page .about-teaser-bg {
	position: absolute;
	inset: 0;
	background: url('../images/laptop-coloured.jpg') center/cover no-repeat;
	opacity: 0.28;
	filter: brightness(1.18);
}
.arcane-page .about-teaser-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--bg) 35%, transparent 70%, var(--bg) 100%);
}
.arcane-page .about-teaser-content {
	position: relative;
	z-index: 1;
	max-width: 560px;
}
.arcane-page .about-teaser-content h2 { margin-bottom: 20px; }
.arcane-page .about-teaser-content p {
	color: var(--txt2);
	line-height: 1.75;
	margin-bottom: 16px;
}
.arcane-page .about-teaser-content p:last-of-type { margin-bottom: 32px; }

/* ── Testimonials ── */
.arcane-page .testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.arcane-page .testi-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 32px;
	background: var(--bg2);
	transition: border-color 0.3s;
}
.arcane-page .testi-card:hover { border-color: rgba(var(--acc-rgb), 0.3); }
.arcane-page .testi-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}
.arcane-page .testi-stars span {
	color: var(--acc);
	font-size: 12px;
}
.arcane-page .testi-text {
	color: var(--txt2);
	font-size: 0.9rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.arcane-page .testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.arcane-page .testi-avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.3), rgba(var(--acc2-rgb), 0.3));
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--acc);
}
.arcane-page .testi-name {
	font-family: 'Syne', sans-serif;
	font-size: 13px;
	font-weight: 600;
}
.arcane-page .testi-biz {
	font-size: 11px;
	color: var(--txt3);
}

/* ── Final CTA ── */
.arcane-page .final-cta {
	text-align: center;
	padding: 168px 0;
	position: relative;
	overflow: hidden;
	background: #05050e;
}
.arcane-page .final-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(var(--acc-rgb), 0.06), transparent);
	z-index: 1;
	pointer-events: none;
}
.arcane-page .final-cta .container { position: relative; z-index: 2; }
.arcane-page .final-cta .arcane-particles-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
}
.arcane-page .final-cta .label {
	color: #ffffff;
	font-size: 15px;
}
.arcane-page .final-cta h2 {
	font-size: clamp(2.86rem, 5.72vw, 4.68rem);
	margin-bottom: 16px;
	background: linear-gradient(
		90deg,
		#dbe9ff 0%,
		#244b86 24%,
		#3f7dff 55%,
		#00d4ff 82%,
		#eafcff 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: arcane-shimmer 5s linear infinite;
}
.arcane-page .final-cta .btn-primary {
	background: var(--acc);
	color: #050810;
}
.arcane-page .final-cta .btn-primary:hover {
	color: #050810;
	box-shadow: var(--glow);
	transform: translateY(-1px);
}
.arcane-page .final-cta .btn-ghost {
	border-width: 2px;
}
.arcane-page .final-cta h2 em,
.arcane-page .final-cta h2 em.acc {
	color: inherit;
	background: none;
	-webkit-text-fill-color: inherit;
	font-style: normal;
}
@keyframes arcane-shimmer {
	0%   { background-position: 0% center; }
	100% { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
	.arcane-page .final-cta h2 { animation: none; }
}
.arcane-page .final-cta p {
	color: var(--txt2);
	font-size: 1.15rem;
	margin-bottom: 40px;
}
.arcane-page .final-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── Footer ── */
.arcane-page .footer {
	border-top: 1px solid var(--border);
	padding: 56px 0 32px;
	background: var(--bg);
}
.arcane-page .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
.arcane-page .footer-brand img { filter: invert(1) brightness(2); height: 32px; }
.arcane-page .footer-brand p {
	color: var(--txt3);
	font-size: 0.85rem;
	margin-top: 16px;
	line-height: 1.65;
	max-width: 260px;
}
.arcane-page .footer-col h4 {
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt);
	margin-bottom: 16px;
}
.arcane-page .footer-col ul { display: grid; gap: 10px; }
.arcane-page .footer-col ul a {
	color: var(--txt3);
	font-size: 0.85rem;
	text-decoration: none;
	transition: color 0.2s;
	display: inline-block;
	padding: 4px 0;
}
.arcane-page .footer-col ul a:hover { color: var(--acc); }
/* WCAG 2.5.5 — bigger tap targets on touch viewports */
@media (max-width: 1024px) {
	.arcane-page .footer-col ul { gap: 14px; }
	.arcane-page .footer-col ul a { padding: 8px 0; }
}
.arcane-page .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}
.arcane-page .footer-bottom span {
	color: var(--txt3);
	font-size: 12px;
}
.arcane-page .footer-nz {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--txt3);
	font-size: 12px;
}

/* Shared Kadence footer */
.arcane-page #colophon.site-footer {
	border-top: 1px solid var(--border);
	background: var(--bg);
}
.arcane-page #colophon .site-footer-row-container {
	background: transparent;
}
.arcane-page #colophon .site-middle-footer-wrap {
	border: 0;
}
.arcane-page #colophon .site-middle-footer-inner-wrap {
	display: grid !important;
	grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
	gap: 48px;
	align-items: start;
}
.arcane-page #colophon .site-footer-section {
	min-width: 0;
	display: flex;
}
.arcane-page #colophon .footer-widget-area,
.arcane-page #colophon .footer-widget-area-inner,
.arcane-page #colophon .site-info,
.arcane-page #colophon .site-info-inner {
	height: 100%;
	width: 100%;
}
.arcane-page #colophon .widget_block,
.arcane-page #colophon .widget_block .wp-block-html,
.arcane-page #colophon .widget_block .wp-block-group {
	margin: 0;
}
.arcane-page #colophon .footer-brand img {
	filter: invert(1) brightness(2);
	width: 270px;
	max-width: 100%;
	height: auto;
}
.arcane-page #colophon .footer-brand p {
	color: var(--txt3);
	font-size: 0.85rem;
	margin-top: 16px;
	line-height: 1.65;
	max-width: 260px;
	overflow-wrap: anywhere;
}
.arcane-page #colophon .footer-col h4 {
	font-family: 'Syne', sans-serif;
	font-size: 13.2px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--acc);
	margin: 0 0 16px;
}
.arcane-page #colophon .footer-col h4 a {
	color: inherit;
	text-decoration: none;
}
.arcane-page #colophon .footer-col h4 a:hover {
	color: inherit;
}
.arcane-page #colophon .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.arcane-page #colophon .footer-col li {
	min-width: 0;
}
.arcane-page #colophon .footer-col ul a {
	color: var(--txt3);
	font-size: 0.85rem;
	text-decoration: none;
	transition: color 0.2s;
	display: inline-block;
	padding: 4px 0;
	overflow-wrap: anywhere;
}
.arcane-page #colophon .footer-col ul a:hover {
	color: var(--acc);
}
.arcane-page #colophon .footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.arcane-page #colophon .footer-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	color: currentColor;
	background-color: currentColor;
}
.arcane-page #colophon .footer-contact-icon--email {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.6 8-5.6V8H4Zm16 8V10.64l-7.43 5.2a1 1 0 0 1-1.14 0L4 10.64V16h16Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.6 8-5.6V8H4Zm16 8V10.64l-7.43 5.2a1 1 0 0 1-1.14 0L4 10.64V16h16Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.arcane-page #colophon .footer-contact-icon--phone {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.32.56 3.57.56a1 1 0 0 1 1 1V20a2 2 0 0 1-2 2C10.16 22 2 13.84 2 4a2 2 0 0 1 2-2h3.5a1 1 0 0 1 1 1c0 1.25.19 2.45.56 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.32.56 3.57.56a1 1 0 0 1 1 1V20a2 2 0 0 1-2 2C10.16 22 2 13.84 2 4a2 2 0 0 1 2-2h3.5a1 1 0 0 1 1 1c0 1.25.19 2.45.56 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.arcane-page #colophon .site-bottom-footer-wrap {
	border-top: 1px solid var(--border);
}
.arcane-page #colophon .footer-html {
	width: 100%;
}
.arcane-page #colophon .footer-html-inner p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	color: var(--txt3);
	font-size: 12px;
}
.arcane-page #colophon .footer-copy {
	color: var(--txt3);
	overflow-wrap: anywhere;
}

/* ==========================================================================
   AI Solutions page additions
   ========================================================================== */

/* AI Hero */
.arcane-page .ai-hero {
	min-height: 100vh;
	display: grid;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	background-size: cover;
	background-position: 80% center;
	background-repeat: no-repeat;
	background-color: var(--bg);
}
.arcane-page .hv-badge-home {
	position: absolute;
	bottom: -52px;
	right: -28px;
	z-index: 24;
	border-color: rgba(0, 212, 255, 0.35);
	box-shadow: var(--glow), 0 2px 12px rgba(0, 0, 0, 0.4);
}
.arcane-page .hv-badge-home:hover {
	box-shadow: 0 0 56px rgba(0, 212, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.5);
}
.arcane-page .hv-badge-home strong {
	background: linear-gradient(90deg, var(--acc), #7fffd4);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.arcane-page .ai-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(5, 8, 16, 0.92) 0%,
		rgba(5, 8, 16, 0.82) 28%,
		rgba(5, 8, 16, 0.48) 52%,
		rgba(5, 8, 16, 0.10) 78%,
		rgba(5, 8, 16, 0.02) 100%
	),
	radial-gradient(
		circle at 20% 78%,
		rgba(5, 8, 16, 0.96) 0%,
		rgba(5, 8, 16, 0.92) 20%,
		rgba(5, 8, 16, 0.72) 38%,
		rgba(5, 8, 16, 0.30) 56%,
		transparent 70%
	);
	z-index: 1;
}
.arcane-page .ai-hero-grid {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: radial-gradient(circle, rgba(var(--acc-rgb), 0.12) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.3;
}
.arcane-page .ai-hero-content {
	position: relative;
	z-index: 3;
	text-align: left;
	width: min(1150px, calc(100% - 64px));
	max-width: none;
	margin: 0 auto;
	padding: 120px 32px 88px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.arcane-page .ai-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(var(--acc-rgb), 0.08);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 6px 16px;
	margin-bottom: 28px;
}
.arcane-page .ai-hero-badge span {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--acc);
}
.arcane-page .ai-hero-badge::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--acc);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--acc-rgb), 0.4); }
	50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(var(--acc-rgb), 0); }
}
.arcane-page .ai-hero h1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
	max-width: 560px;
	margin-bottom: 24px;
	color: var(--txt);
	line-height: 0.98;
}
.arcane-page .ai-hero h1 em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .ai-hero-sub {
	color: var(--txt2);
	font-size: 1.2rem;
	max-width: 430px;
	margin: 0 0 40px;
	line-height: 1.7;
}
.arcane-page .ai-hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 0;
}

/* Stats Bar */
.arcane-page .stats-bar {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg2);
	padding: 32px 0;
}
.arcane-page .stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
}
.arcane-page .stat-item {
	padding: 0 24px;
	border-right: 1px solid var(--border);
}
.arcane-page .stat-item:last-child { border-right: none; }
.arcane-page .stat-item strong {
	font-family: 'Syne', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--acc);
	display: block;
	margin-bottom: 4px;
}
.arcane-page .stat-item span {
	font-size: 12px;
	color: var(--txt3);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Intro / Why AI */
.arcane-page .intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.arcane-page .intro-grid--centered {
	grid-template-columns: 1fr;
	gap: 0;
}
.arcane-page .intro-img {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 4 / 3;
	position: relative;
}
.arcane-page .intro-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.75);
}
.arcane-page .intro-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.08), transparent);
}
.arcane-page .intro-grid--centered .intro-text {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}
.arcane-page .intro-grid--centered .label {
	justify-self: center;
}
.arcane-page .intro-text h2 { margin-bottom: 20px; }
.arcane-page .intro-grid--centered .intro-text h2 {
	font-size: clamp(2.8rem, 5.6vw, 4.2rem);
}
.arcane-page .intro-text p {
	color: var(--txt2);
	line-height: 1.75;
	margin-bottom: 16px;
}
.arcane-page .intro-grid--centered .intro-text p {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.arcane-page .benefit-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}
.arcane-page .intro-grid--centered .benefit-list {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
.arcane-page .benefit-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--txt2);
}
.arcane-page .benefit-list li::before {
	content: '✦';
	color: var(--acc);
	font-size: 10px;
	flex-shrink: 0;
	margin-top: 4px;
}

/* AI content sections */
.arcane-page .ai-problem-grid,
.arcane-page .ai-offerings-grid,
.arcane-page .ai-not-grid {
	display: grid;
	gap: 24px;
	align-items: stretch;
}
.arcane-page .ai-split-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: start;
	margin-top: 30px;
}
.arcane-page .ai-split-group {
	display: grid;
	gap: 16px;
}
.arcane-page .ai-split-title {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	margin: 0;
	min-height: 1.5em;
	color: var(--acc);
	text-align: center;
}
.arcane-page .ai-problem-grid,
.arcane-page .ai-not-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.arcane-page .ai-problem-grid--stacked,
.arcane-page .ai-not-grid--stacked {
	grid-template-columns: 1fr;
	gap: 14px;
}
.arcane-page .ai-offerings-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 40px;
}
.arcane-page .ai-problem-card,
.arcane-page .ai-offering-card,
.arcane-page .ai-not-card {
	position: relative;
	padding: 20px 20px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(10, 16, 30, 0.96), rgba(6, 10, 18, 0.98)),
		radial-gradient(circle at top right, rgba(var(--acc-rgb), 0.08), transparent 42%);
	overflow: hidden;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.arcane-page .ai-problem-card::before,
.arcane-page .ai-offering-card::before,
.arcane-page .ai-not-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.05), transparent 46%);
	pointer-events: none;
}
.arcane-page .ai-problem-card:hover,
.arcane-page .ai-offering-card:hover,
.arcane-page .ai-not-card:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--acc-rgb), 0.26);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.arcane-page .ai-problem-card > *,
.arcane-page .ai-offering-card > *,
.arcane-page .ai-not-card > * {
	position: relative;
	z-index: 1;
}
.arcane-page .ai-card-eyebrow {
	font-family: 'Syne', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--acc);
	margin-bottom: 18px;
}
.arcane-page .ai-problem-card h3,
.arcane-page .ai-offering-card h3,
.arcane-page .ai-not-card h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.18;
	margin-bottom: 10px;
}
.arcane-page .ai-problem-grid--stacked .ai-problem-card,
.arcane-page .ai-not-grid--stacked .ai-not-card {
	min-height: 138px;
}
.arcane-page .ai-problem-card p,
.arcane-page .ai-not-card p {
	color: var(--txt2);
	line-height: 1.62;
	margin: 0;
}
.arcane-page .ai-card-points {
	display: grid;
	gap: 12px;
	margin: 0;
}
.arcane-page .ai-card-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--txt2);
	line-height: 1.6;
}
.arcane-page .ai-card-points li::before {
	content: '→';
	color: var(--acc);
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}
.arcane-page .ai-chat-showcase {
	margin-top: 40px;
}
.arcane-page .faq-container--wide {
	max-width: 960px;
}
.arcane-page .section#faq {
	position: relative;
	border-top: 1px solid rgba(var(--acc-rgb), 0.14);
	background:
		linear-gradient(180deg, rgba(14, 20, 36, 0.98) 0%, rgba(12, 18, 32, 1) 100%);
}
.arcane-page .faq-container--wide .faq-list.faq-list--two-col .faq-item {
	height: 100%;
}
.arcane-page .faq-container--wide .faq-list.faq-list--two-col .faq-q {
	height: 98px;
}
.arcane-page .faq-a p {
	margin: 0;
}
@media (max-width: 1100px) {
	.arcane-page .ai-problem-grid,
	.arcane-page .ai-not-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.arcane-page .ai-split-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
@media (max-width: 760px) {
	.arcane-page .ai-offerings-grid {
		grid-template-columns: 1fr;
	}
	.arcane-page .ai-problem-card,
	.arcane-page .ai-offering-card,
	.arcane-page .ai-not-card {
		padding: 22px 20px;
	}
	.arcane-page .ai-chat-showcase {
		margin-top: 32px;
	}
	.arcane-page .ai-problem-grid--stacked .ai-problem-card,
	.arcane-page .ai-not-grid--stacked .ai-not-card {
		min-height: 0;
	}
	.arcane-page .faq-container--wide .faq-list.faq-list--two-col .faq-q {
		height: auto;
		min-height: 96px;
	}
}
@media (max-width: 560px) {
	.arcane-page .ai-problem-grid,
	.arcane-page .ai-not-grid {
		grid-template-columns: 1fr;
	}
}

/* Featured Products / chat demo */
.arcane-page .feat-product {
	padding: 80px 0;
	position: relative;
}
.arcane-page .feat-product:nth-of-type(even) { background: var(--bg2); }
.arcane-page .fp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.arcane-page .fp-grid.reverse { direction: rtl; }
.arcane-page .fp-grid.reverse > * { direction: ltr; }
.arcane-page .fp-img {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 4 / 3;
	position: relative;
}
.arcane-page .fp-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.65) saturate(1.1);
}
.arcane-page .fp-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.1), rgba(var(--acc2-rgb), 0.06));
}
.arcane-page .fp-img-corner {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--bg3);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 6px 12px;
	font-family: 'Syne', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--acc);
	z-index: 1;
}
.arcane-page .fp-text .label { margin-bottom: 12px; }
.arcane-page .fp-text h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin-bottom: 16px;
}
.arcane-page .fp-text p {
	color: var(--txt2);
	line-height: 1.75;
	margin-bottom: 24px;
}
.arcane-page .fp-features {
	display: grid;
	gap: 10px;
	margin-bottom: 32px;
}
.arcane-page .fp-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--txt2);
}
.arcane-page .fp-features li strong {
	color: var(--txt);
	font-weight: 500;
}
.arcane-page .fp-features li::before {
	content: '→';
	color: var(--acc);
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 1px;
}
.arcane-page .fp-chat-showcase {
	margin-top: 56px;
	padding: 36px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(10, 16, 30, 0.96), rgba(6, 10, 18, 0.96)),
		radial-gradient(circle at top right, rgba(var(--acc-rgb), 0.08), transparent 36%);
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 40px;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.arcane-page .fp-chat-showcase::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.05), transparent 40%);
	pointer-events: none;
}
.arcane-page .fp-chat-showcase > * {
	position: relative;
	z-index: 1;
}
.arcane-page .fp-chat-showcase__copy h3 {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	margin-bottom: 16px;
}
.arcane-page .fp-chat-showcase__copy p {
	color: var(--txt2);
	line-height: 1.75;
	margin-bottom: 20px;
}
.arcane-page .fp-chat-points {
	display: grid;
	gap: 10px;
}
.arcane-page .fp-chat-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--txt2);
	font-size: 0.92rem;
}
.arcane-page .fp-chat-points li::before {
	content: '✦';
	color: var(--acc);
	font-size: 10px;
	flex-shrink: 0;
	margin-top: 4px;
}
.arcane-page .fp-chat-showcase__visual {
	width: 100%;
}
.arcane-page .fp-chat-demo {
	position: relative;
	min-height: 520px;
	border-radius: 18px;
	border: 1px solid rgba(var(--acc-rgb), 0.18);
	background:
		linear-gradient(180deg, rgba(17, 12, 34, 0.92), rgba(9, 7, 20, 0.98)),
		radial-gradient(380px 280px at 86% 14%, rgba(var(--acc-rgb), 0.16), transparent 60%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	overflow: hidden;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 32px 80px rgba(0, 0, 0, 0.42);
	display: flex;
	flex-direction: column;
}
.arcane-page .fp-chat-demo__glow {
	position: absolute;
	inset: -36%;
	background: radial-gradient(360px 360px at 50% 36%, rgba(var(--acc-rgb), 0.2), transparent 66%);
	filter: blur(44px);
	opacity: 0.9;
	pointer-events: none;
}
.arcane-page .fp-chat-demo > * {
	position: relative;
	z-index: 1;
}
.arcane-page .fp-chat-demo__head,
.arcane-page .fp-chat-demo__foot {
	display: flex;
	align-items: center;
	padding: 0.95rem 1.1rem;
	background: rgba(0, 0, 0, 0.14);
}
.arcane-page .fp-chat-demo__head {
	gap: 0.5rem;
	border-bottom: 1px solid rgba(var(--acc-rgb), 0.1);
}
.arcane-page .fp-chat-demo__pip {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff5f57;
	flex-shrink: 0;
}
.arcane-page .fp-chat-demo__pip--amber { background: #febc2e; }
.arcane-page .fp-chat-demo__pip--green { background: #28c840; }
.arcane-page .fp-chat-demo__title,
.arcane-page .fp-chat-demo__foot span {
	font-family: 'Syne', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--txt3);
}
.arcane-page .fp-chat-demo__title {
	margin-left: auto;
}
.arcane-page .fp-chat-demo__body {
	flex: 1;
	padding: 1.1rem 1.1rem 0.7rem;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.arcane-page .fp-chat-demo__body::-webkit-scrollbar {
	display: none;
}
.arcane-page .fp-chat-stream {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	height: 100%;
	min-height: 100%;
	justify-content: flex-end;
}
.arcane-page .fp-chat-msg {
	max-width: 85%;
	padding: 0.78rem 1rem;
	border-radius: 16px;
	font-size: 0.95rem;
	line-height: 1.52;
	opacity: 0;
	transform: translateY(8px);
	animation: arcane-chat-msg-in 0.4s ease forwards;
}
.arcane-page .fp-chat-msg--user {
	align-self: flex-end;
	background: rgba(var(--acc-rgb), 0.16);
	border: 1px solid rgba(var(--acc-rgb), 0.28);
	color: var(--txt);
	border-bottom-right-radius: 6px;
}
.arcane-page .fp-chat-msg--ai {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(var(--acc-rgb), 0.1);
	color: var(--txt2);
	border-bottom-left-radius: 6px;
}
.arcane-page .fp-chat-msg--typing {
	display: inline-flex;
	padding: 0.85rem 1rem;
}
.arcane-page .fp-chat-typing {
	display: inline-flex;
	gap: 4px;
}
.arcane-page .fp-chat-typing span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--txt3);
	animation: arcane-chat-typing 1.2s ease infinite;
}
.arcane-page .fp-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.arcane-page .fp-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
.arcane-page .fp-chat-caret {
	display: inline-block;
	width: 1px;
	height: 1em;
	margin-left: 2px;
	background: currentColor;
	vertical-align: -2px;
	animation: arcane-chat-caret 1s steps(2) infinite;
}
.arcane-page .fp-chat-demo__foot {
	justify-content: space-between;
	border-top: 1px solid rgba(var(--acc-rgb), 0.1);
}
.arcane-page .fp-chat-demo__status {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}
.arcane-page .fp-chat-demo__live {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--acc);
	box-shadow: 0 0 0 0 rgba(var(--acc-rgb), 0.35);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes arcane-chat-typing {
	0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
	30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes arcane-chat-msg-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes arcane-chat-caret {
	50% { opacity: 0; }
}

/* Mini Products */
.arcane-page .mini-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.arcane-page .mini-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg2);
	transition: transform 0.3s, border-color 0.3s;
}
.arcane-page .mini-card:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--acc-rgb), 0.3);
}
.arcane-page .mini-img {
	height: 180px;
	overflow: hidden;
	position: relative;
}
.arcane-page .mini-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
	transition: filter 0.3s;
}
.arcane-page .mini-card:hover .mini-img img { filter: brightness(0.75); }
.arcane-page .mini-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--bg2), transparent 60%);
}
.arcane-page .mini-body { padding: 24px; }
.arcane-page .mini-tag {
	font-family: 'Syne', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--acc);
	margin-bottom: 8px;
}
.arcane-page .mini-body h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}
.arcane-page .mini-body p {
	color: var(--txt2);
	font-size: 0.875rem;
	line-height: 1.65;
}

/* Industries */
.arcane-page .industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.arcane-page .ind-card {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 28px 24px;
	text-align: center;
	transition: all 0.3s;
}
.arcane-page .ind-card:hover {
	border-color: rgba(var(--acc-rgb), 0.3);
	background: var(--bg3);
}
.arcane-page .ind-icon {
	font-size: 28px;
	margin-bottom: 12px;
}
.arcane-page .ind-card h4 {
	font-family: 'Syne', sans-serif;
	font-size: 0.95rem;
	margin-bottom: 6px;
}
.arcane-page .ind-card p {
	font-size: 0.8rem;
	color: var(--txt3);
	line-height: 1.5;
}

/* Integration */
.arcane-page .integration-visual {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 48px;
}
.arcane-page .integration-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('../images/neural-network.jpg') center/cover no-repeat;
	opacity: 0.07;
}
.arcane-page .int-nodes {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}
.arcane-page .int-node {
	background: var(--bg3);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 16px 20px;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--txt2);
	white-space: nowrap;
}
.arcane-page .int-node.center {
	background: rgba(var(--acc-rgb), 0.1);
	border-color: var(--acc);
	color: var(--acc);
	box-shadow: var(--glow-sm);
}
.arcane-page .int-arrow {
	color: var(--txt3);
	font-size: 18px;
}

/* Final CTA — AI page variant */
.arcane-page .final-cta-ai {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	text-align: center;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(4, 8, 16, 0.98) 0%, rgba(3, 7, 14, 1) 100%),
		radial-gradient(circle at 72% 36%, rgba(var(--acc-rgb), 0.08), transparent 42%);
	border-top: 1px solid rgba(var(--acc-rgb), 0.16);
}
.arcane-page .final-cta-ai .final-cta-bg {
	position: absolute;
	left: -180px;
	bottom: -8px;
	top: 0;
	width: min(64vw, 860px);
	height: auto;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}
.arcane-page .final-cta-ai .final-cta-bg img {
	width: 100%;
	height: calc(100% + 148px);
	object-fit: cover;
	object-position: 18% bottom;
	opacity: 0.74;
	filter: brightness(1.08) saturate(1.02);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 64%, transparent 100%);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 64%, transparent 100%);
}
.arcane-page .final-cta-ai .final-cta-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 8, 16, 0.03) 0%, rgba(5, 8, 16, 0.16) 44%, rgba(5, 8, 16, 0.52) 100%);
}
.arcane-page .final-cta-ai .final-cta-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(1, 4, 10, 0.08) 0%, rgba(1, 4, 10, 0.2) 100%),
		radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--acc-rgb), 0.05), transparent 72%);
	z-index: 0;
	pointer-events: none;
}
.arcane-page .final-cta-ai .final-cta-content {
	position: relative;
	z-index: 2;
}
.arcane-page .final-cta-ai h2 {
	font-size: clamp(2.2rem, 4.4vw, 3.52rem);
	margin-bottom: 16px;
}
.arcane-page .final-cta-ai p {
	color: var(--txt2);
	font-size: 1.1rem;
	margin-bottom: 40px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Services page additions
   ========================================================================== */

/* Small button variant */
.arcane-page .btn-sm { padding: 9px 20px; font-size: 13px; }
/* WCAG 2.5.5 — keep small buttons at a 44px tap target on touch viewports */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
	.arcane-page .btn-sm { min-height: 44px; padding: 10px 20px; }
}

/* Services Hero */
.arcane-page .svc-hero {
	min-height: 72vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
.arcane-page .svc-hero-bg-img {
	position: absolute; inset: 0;
	background: url('../images/vackground.jpg') center/cover no-repeat;
	opacity: 0.2;
	z-index: 0;
}
.arcane-page .svc-hero-bg-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, var(--bg) 30%, rgba(5,8,16,0.7) 60%, var(--bg) 100%);
	z-index: 1;
}
.arcane-page .svc-hero-grid {
	position: absolute; inset: 0;
	z-index: 2;
	background-image: radial-gradient(circle, rgba(var(--acc-rgb),0.1) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.4;
}
.arcane-page .svc-hero-content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.arcane-page .svc-hero h1 {
	font-size: clamp(2.4rem, 4.5vw, 3.8rem);
	margin-bottom: 20px;
}
.arcane-page .svc-hero h1 em { font-style: normal; color: var(--acc); }
.arcane-page .svc-hero-sub {
	color: var(--txt2);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 32px;
	max-width: 460px;
}
.arcane-page .svc-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.arcane-page .svc-hero-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.arcane-page .hero-svc-pill {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 22px 24px;
	min-height: 97px;
	transition: all 0.25s;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.arcane-page .hero-svc-pill:hover {
	border-color: rgba(var(--acc-rgb), 0.3);
	background: var(--bg3);
}
.arcane-page .hero-svc-pill span {
	font-family: 'Syne', sans-serif;
	font-size: 16.8px;
	font-weight: 600;
	color: var(--txt);
	display: block;
	margin-bottom: 6px;
	line-height: 1.2;
}
.arcane-page .hero-svc-pill p {
	font-size: 12.6px;
	color: var(--txt3);
	line-height: 1.45;
}

/* Sticky Service Nav */
.arcane-page .svc-nav {
	position: sticky;
	top: 120px;
	z-index: 90;
	background: var(--bg2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 0;
	min-height: 68px;
	overflow: visible;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
/* Hide the sticky service nav on tablet portrait + mobile — drawer menu
   already provides navigation and the bar takes vertical space. */
@media (max-width: 1024px) {
	.arcane-page .svc-nav { display: none; }
}

/* Hide the "What's included in each package" comparison section on mobile —
   the table doesn't read well at narrow widths. */
@media (max-width: 768px) {
	.arcane-page .compare-section { display: none; }
}
.arcane-page .svc-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	gap: 20px;
	padding: 0 12px;
	min-height: 68px;
	width: min(1440px, calc(100vw - 32px));
	max-width: none;
	margin: 0 auto;
}
.arcane-page .svc-nav-inner::-webkit-scrollbar { display: none; }
.arcane-page .svc-nav-item {
	display: flex;
	align-items: center;
	height: 68px;
	box-sizing: border-box;
	flex-shrink: 0;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txt2);
	text-decoration: none;
	padding: 0 14px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
	white-space: nowrap;
	line-height: 1.15;
}
.arcane-page .svc-nav-item:hover,
.arcane-page .svc-nav-item.active {
	color: var(--acc);
	border-bottom-color: var(--acc);
}

/* Service sections */
.arcane-page .svc-section {
	padding: 88px 0;
	position: relative;
	scroll-margin-top: 188px;
}
.arcane-page .svc-section.section-alt { background: var(--bg2); }
.arcane-page .svc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.arcane-page .svc-grid.flip { direction: rtl; }
.arcane-page .svc-grid.flip > * { direction: ltr; }
.arcane-page .svc-img-wrap { position: relative; }
.arcane-page .svc-img {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 4 / 3;
	position: relative;
}
.arcane-page .svc-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6) saturate(1.05);
	transition: filter 0.4s;
}
.arcane-page #web-design .svc-img img {
	object-position: center 62%;
}
.arcane-page #hosting .svc-img img {
	object-fit: fill;
	object-position: center center;
}
.arcane-page .svc-section:hover .svc-img img {
	filter: brightness(0.7) saturate(1.1);
}
.arcane-page .svc-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.08), rgba(var(--acc2-rgb), 0.05));
}
.arcane-page .svc-img-badge {
	position: absolute;
	top: -14px;
	right: 24px;
	background: var(--bg3);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 8px 16px;
	font-family: 'Syne', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--acc);
	box-shadow: var(--glow-sm);
}
.arcane-page .svc-img-num {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-family: 'Syne', sans-serif;
	font-size: 3rem;
	font-weight: 800;
	color: rgba(var(--acc-rgb), 0.12);
	line-height: 1;
	z-index: 1;
}
.arcane-page .svc-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.arcane-page .svc-text .label { margin-bottom: 10px; }
.arcane-page .svc-text h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	margin-bottom: 14px;
}
.arcane-page .svc-text h2 a {
	color: inherit;
	text-decoration: none;
}
.arcane-page .svc-text h2 a:hover {
	color: var(--acc);
}
.arcane-page .svc-text .lead {
	color: var(--txt2);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 28px;
}
.arcane-page #ingredients .svc-text .btn {
	align-self: flex-start;
}
.arcane-page .includes-title {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt3);
	margin-bottom: 14px;
}
.arcane-page .includes-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 28px;
}
.arcane-page .includes-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--txt2);
	line-height: 1.5;
}
.arcane-page .includes-list li::before {
	content: '→';
	color: var(--acc);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}
.arcane-page .who-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 12px;
	color: var(--txt3);
	margin-bottom: 24px;
}
.arcane-page .who-tag strong {
	color: var(--txt2);
	font-weight: 500;
}
.arcane-page .svc-ctas {
	display: flex;
	gap: 12px;
	align-items: center;
}
.arcane-page .svc-learn {
	font-size: 13px;
	color: var(--txt3);
	text-decoration: none;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 4px;
}
.arcane-page .svc-learn:hover { color: var(--acc); }

/* Why Us cards */
.arcane-page .why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.arcane-page .why-intro {
	color: var(--txt2);
	font-size: 1.05rem;
	max-width: 520px;
	margin-bottom: 48px;
}
.arcane-page .why-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 36px 28px;
	background: var(--bg2);
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s;
}
.arcane-page .why-card:hover { border-color: rgba(var(--acc-rgb), 0.3); }
.arcane-page .why-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--acc), var(--acc2));
}
.arcane-page .why-num {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(var(--acc-rgb), 0.28);
	margin-bottom: 12px;
	line-height: 1;
}
.arcane-page .why-card h3 {
	font-size: 1rem;
	margin-bottom: 10px;
}
.arcane-page .why-card p {
	color: var(--txt2);
	font-size: 0.875rem;
	line-height: 1.65;
}

/* Comparison table */
.arcane-page .compare-intro {
	color: var(--txt2);
	font-size: 1.05rem;
	max-width: 520px;
	margin-bottom: 40px;
}
.arcane-page .compare-wrap {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg2);
	position: relative;
}
/* Horizontal-scroll affordance: subtle right-edge fade on touch viewports
   to hint that the comparison table extends beyond the viewport. */
@media (max-width: 960px) {
	.arcane-page .compare-wrap::after {
		content: '';
		position: absolute;
		top: 0; right: 0; bottom: 0;
		width: 32px;
		pointer-events: none;
		background: linear-gradient(to left, var(--bg2), rgba(0, 0, 0, 0));
		border-radius: 0 8px 8px 0;
	}
}
.arcane-page .compare-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0;
}
.arcane-page .compare-table th {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt3);
	padding: 16px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	background: transparent;
}
.arcane-page .compare-table th:not(:first-child) {
	text-align: center;
	color: var(--acc);
}
.arcane-page .compare-table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(var(--acc-rgb), 0.06);
	font-size: 0.9rem;
	color: var(--txt2);
	vertical-align: middle;
	background: transparent;
}
.arcane-page .compare-table td:not(:first-child) { text-align: center; }
.arcane-page .compare-table tr:hover td { background: var(--card); }
.arcane-page .compare-table tr:last-child td { border-bottom: none; }
.arcane-page .compare-table .check { color: var(--acc); font-size: 16px; }
.arcane-page .compare-table .dash { color: var(--txt3); font-size: 16px; }
.arcane-page .compare-foot {
	margin-top: 24px;
	text-align: center;
}

/* Services page final CTA variant (starfield) */
.arcane-page .svc-final-cta {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	text-align: center;
}
.arcane-page .svc-final-cta .final-cta-bg {
	position: absolute;
	inset: 0;
	background: url('../images/starfield.jpg') center/cover no-repeat;
	opacity: 0.1;
}
.arcane-page .svc-final-cta .final-cta-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--acc-rgb), 0.05), var(--bg) 80%);
}
.arcane-page .svc-final-cta .final-cta-content {
	position: relative;
	z-index: 1;
}
.arcane-page .svc-final-cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
}
.arcane-page .svc-final-cta p {
	color: var(--txt2);
	font-size: 1.05rem;
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* ════════════  SEO PAGE  ════════════ */

/* Hero — centred, text-focused, tighter vertical spacing */
.arcane-page .seo-hero {
	background: var(--bg);
	min-height: 0;
	padding: 140px 0 72px;
	display: block;
}
.arcane-page .seo-hero .hero-bg { display: none; }

/* Ambient cyan glow centred behind the headline */
.arcane-page .seo-hero-bg-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	width: 700px;
	height: 400px;
	background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.18) 0%, rgba(0, 212, 255, 0.06) 50%, transparent 75%);
	filter: blur(56px);
	pointer-events: none;
	z-index: 0;
}

/* Single-column centred content */
.arcane-page .seo-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}
.arcane-page .seo-hero-content .hero-eyebrow {
	justify-content: center;
	margin-bottom: 20px;
}

/* h1 — large focal headline, "today" in solid cyan */
.arcane-page .seo-hero h1 {
	font-size: clamp(3.2rem, 6.5vw, 5.5rem);
	margin-bottom: 24px;
}
.arcane-page .seo-hero h1 em.acc {
	font-style: normal;
	color: var(--acc);
	-webkit-text-fill-color: var(--acc);
}

/* Subtext */
.arcane-page .seo-hero-content .hero-sub {
	font-size: 1.15rem;
	color: var(--txt2);
	max-width: 580px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

/* CTAs centred */
.arcane-page .seo-hero-content .hero-ctas {
	justify-content: center;
	margin-bottom: 0;
}
.arcane-page .hero-proof {
	display: flex;
	gap: 32px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.arcane-page .hero-proof-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.arcane-page .hero-proof-item strong {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--acc);
	letter-spacing: 0.01em;
}
.arcane-page .hero-proof-item span {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted, #4a5a78);
}

.arcane-page .google-img-wrap {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg2);
	box-shadow: 0 0 60px rgba(0, 212, 255, 0.18);
	aspect-ratio: 4 / 3;
}
.arcane-page .google-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.85) saturate(1.05);
}
.arcane-page .google-blur-zone {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5,8,16,0) 0%, rgba(5,8,16,0.55) 70%, rgba(5,8,16,0.85) 100%);
	pointer-events: none;
}
.arcane-page .google-img-label {
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--acc);
	background: rgba(5, 8, 16, 0.7);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 6px 10px;
	backdrop-filter: blur(8px);
}
.arcane-page .google-rank-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	padding: 14px 18px;
	background: rgba(5, 8, 16, 0.85);
	border: 1px solid rgba(0, 212, 255, 0.35);
	border-radius: 8px;
	box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
	backdrop-filter: blur(10px);
}
.arcane-page .google-rank-badge span {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted, #4a5a78);
}
.arcane-page .google-rank-badge strong {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--acc);
	line-height: 1;
}

/* Why SEO — 3 cards */
.arcane-page .why-seo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}
.arcane-page .why-seo-card {
	padding: 36px 28px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg2);
	transition: border-color 0.3s, transform 0.3s;
	display: flex;
	flex-direction: column;
}
.arcane-page .why-seo-card:hover {
	border-color: rgba(0, 212, 255, 0.3);
	transform: translateY(-2px);
}
.arcane-page .why-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(0, 212, 255, 0.08);
	border: 1px solid var(--border);
	margin-bottom: 20px;
}
.arcane-page .why-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--acc);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.arcane-page .why-seo-card h3 {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
	min-height: 3.2em;
}
.arcane-page .why-seo-card p {
	color: var(--text-secondary, #8a9ab8);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 24px;
	flex: 1;
}
.arcane-page .why-seo-stat {
	padding-top: 20px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
}
.arcane-page .why-seo-stat strong {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--acc);
	line-height: 1;
}
.arcane-page .why-seo-stat span {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted, #4a5a78);
}

/* SERP visual section */
.arcane-page .serp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.arcane-page .serp-visual {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.arcane-page .serp-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--serp-bg-image);
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: brightness(0.7) saturate(0.9);
	z-index: 0;
}
.arcane-page .serp-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 12, 22, 0.48), rgba(8, 12, 22, 0.9));
	z-index: 0;
}
.arcane-page .serp-visual > * {
	position: relative;
	z-index: 1;
}
.arcane-page .serp-visual.serp-visual--image {
	padding: 0;
	aspect-ratio: 4 / 3;
}
.arcane-page .serp-visual.serp-visual--image::before {
	content: none;
}
.arcane-page .serp-visual.serp-visual--image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 12, 22, 0.12), rgba(8, 12, 22, 0.42));
	z-index: 0;
}
.arcane-page .serp-visual.serp-visual--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.82) saturate(0.92);
}
.arcane-page .serp-visual.serp-visual--image > * {
	z-index: 1;
}
.arcane-page .serp-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: rgba(5, 8, 16, 0.6);
	margin-bottom: 24px;
}
.arcane-page .serp-bar-icon {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid var(--text-muted, #4a5a78);
	flex-shrink: 0;
}
.arcane-page .serp-bar-text {
	flex: 1;
	height: 8px;
	background: linear-gradient(90deg, rgba(138,154,184,0.25), rgba(138,154,184,0.05));
	border-radius: 4px;
}
.arcane-page .serp-result {
	position: relative;
	padding: 16px;
	border-radius: 6px;
	margin-bottom: 8px;
	transition: background 0.3s;
}
.arcane-page .serp-result.top {
	background: rgba(0, 212, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.25);
	box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}
.arcane-page .serp-rank-pill {
	position: absolute;
	top: -10px;
	right: 12px;
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--bg);
	background: var(--acc);
	padding: 4px 10px;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}
.arcane-page .serp-result-url {
	font-size: 12px;
	color: var(--text-muted, #4a5a78);
	margin-bottom: 4px;
}
.arcane-page .serp-result-title {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary, #e8edf8);
	margin-bottom: 4px;
	line-height: 1.3;
}
.arcane-page .serp-result.top .serp-result-title { color: var(--acc); }
.arcane-page .serp-result-desc {
	font-size: 0.85rem;
	color: var(--text-secondary, #8a9ab8);
	line-height: 1.5;
}
.arcane-page .serp-text h2 { margin-bottom: 20px; }
.arcane-page .serp-text p {
	color: var(--text-secondary, #8a9ab8);
	line-height: 1.7;
	margin-bottom: 16px;
}
.arcane-page .serp-text .label { margin-bottom: 12px; }
.arcane-page .serp-text .btn { margin-top: 16px; }

/* Pillars — 4 cards in 2x2 */
.arcane-page .seo-pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 56px;
}
.arcane-page .pillar-card {
	padding: 40px 32px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg);
	transition: border-color 0.3s, transform 0.3s;
}
.arcane-page .pillar-card:hover {
	border-color: rgba(0, 212, 255, 0.3);
	transform: translateY(-2px);
}
.arcane-page .pillar-num {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--acc);
	margin-bottom: 16px;
}
.arcane-page .pillar-card h3 {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.3;
}
.arcane-page .pillar-card p {
	color: var(--text-secondary, #8a9ab8);
	line-height: 1.65;
	margin: 0 0 24px;
}
.arcane-page .pillar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.arcane-page .pillar-tag {
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--text-secondary, #8a9ab8);
	background: rgba(0, 212, 255, 0.05);
	border: 1px solid var(--border);
	padding: 6px 12px;
	border-radius: 16px;
}

/* Process split layout */
.arcane-page .seo-process-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 80px;
	align-items: start;
}
.arcane-page .seo-process-grid > div:first-child { position: sticky; top: 120px; }
.arcane-page .seo-process-lead {
	color: var(--text-secondary, #8a9ab8);
	line-height: 1.7;
	margin: 20px 0 32px;
}
.arcane-page .process-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.arcane-page .process-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
}
.arcane-page .process-item:last-child { border-bottom: none; }
.arcane-page .process-step-num {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--acc);
	opacity: 0.5;
	line-height: 1;
}
.arcane-page .process-item h3 {
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 8px;
}
.arcane-page .process-item p {
	color: var(--text-secondary, #8a9ab8);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Included checklist */
.arcane-page .included-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 32px;
	margin-top: 48px;
}
.arcane-page .included-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	font-size: 0.95rem;
	color: var(--text-primary, #e8edf8);
}
.arcane-page .included-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	color: var(--acc);
	font-size: 12px;
	font-weight: 700;
}

/* FAQ */
.arcane-page .faq-container {
	max-width: 820px;
	margin: 0 auto;
}
.arcane-page .faq-intro {
	color: var(--text-secondary, #8a9ab8);
	margin: 12px 0 40px;
	max-width: 600px;
}
.arcane-page .faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.arcane-page .faq-list.faq-list--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: start;
}
.arcane-page .faq-list.faq-list--two-col .faq-item {
	height: 100%;
}
.arcane-page .faq-item {
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg2);
	overflow: hidden;
	transition: border-color 0.3s;
}
.arcane-page .faq-item.open { border-color: rgba(0, 212, 255, 0.3); }
.arcane-page .faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display, 'Syne', sans-serif);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary, #e8edf8);
	transition: color 0.2s;
}
.arcane-page .faq-list.faq-list--two-col .faq-q {
	min-height: 98px;
}
.arcane-page .faq-q:hover { color: var(--acc); }
.arcane-page .faq-arrow {
	color: var(--acc);
	font-size: 12px;
	transition: transform 0.3s;
	flex-shrink: 0;
}
.arcane-page .faq-item.open .faq-arrow { transform: rotate(180deg); }
.arcane-page .faq-a {
	max-height: 0;
	overflow: hidden;
	padding: 0 28px;
	color: var(--text-secondary, #8a9ab8);
	line-height: 1.7;
	font-size: 0.95rem;
	transition: max-height 0.4s ease, padding 0.3s ease;
}
.arcane-page .faq-item.open .faq-a {
	max-height: 400px;
	padding: 0 28px 24px;
}

/* SEO final CTA */
.arcane-page .seo-final-cta { position: relative; overflow: hidden; }
.arcane-page .seo-final-cta-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	z-index: 0;
}
.arcane-page .seo-final-cta-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(0,212,255,0.18), transparent 65%), linear-gradient(180deg, rgba(5,8,16,0.7), rgba(5,8,16,0.92));
	z-index: 1;
}
.arcane-page .seo-final-cta .final-cta-content { position: relative; z-index: 2; }

/* ============================================================
   Contact Page
   ============================================================ */

/* Hero — shorter than full-bleed home hero, centred copy */
.arcane-page .contact-hero {
	min-height: 0;
	padding-top: 160px;
	padding-bottom: 80px;
	display: block;
}
.arcane-page .contact-hero-inner {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	max-width: 880px;
}
.arcane-page .contact-hero-inner .hero-eyebrow {
	justify-content: center;
}
.arcane-page .contact-hero-h1 {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}
.arcane-page .contact-hero-h1 em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .contact-hero-sub {
	max-width: 640px;
	margin: 0 auto 48px;
	font-size: 1.1rem;
	line-height: 1.7;
}
.arcane-page .contact-hero-pills {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 880px;
	margin: 0 auto;
}
.arcane-page .contact-pill {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: rgba(0, 212, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 10px;
	text-decoration: none;
	color: var(--txt);
	transition: all 0.25s ease;
	text-align: left;
}
.arcane-page a.contact-pill:hover {
	border-color: rgba(0, 212, 255, 0.45);
	background: rgba(0, 212, 255, 0.07);
	transform: translateY(-2px);
	box-shadow: 0 0 28px rgba(0, 212, 255, 0.12);
}
.arcane-page .contact-pill-ico {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(0, 212, 255, 0.08);
	border: 1px solid var(--border);
	color: var(--acc);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}
.arcane-page .contact-pill-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.arcane-page .contact-pill-body strong {
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--txt);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.arcane-page .contact-pill-body span {
	font-size: 12px;
	color: var(--txt3);
	letter-spacing: 0.04em;
}

/* Main 2-column layout */
.arcane-page .contact-main { padding: 80px 0 120px; }
.arcane-page .contact-main-top { padding-top: 160px; }
.arcane-page .contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

/* Form card */
.arcane-page .contact-form-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	align-self: start;
	height: auto;
	min-height: 0;
	padding: 22px 26px 20px;
	background: linear-gradient(160deg, rgba(0, 212, 255, 0.04), rgba(124, 58, 237, 0.03));
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
}
.arcane-page .contact-form-card-wide {
	max-width: 880px;
	margin: 0 auto 48px;
	padding: 56px 56px 48px;
}
.arcane-page .contact-form-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}
.arcane-page .contact-form-title {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}
.arcane-page .contact-form-title em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .contact-form-subtitle {
	color: var(--txt2);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0;
}

/* Side row beneath the form */
.arcane-page .contact-side-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 880px;
	margin: 0 auto;
	flex-direction: row;
	position: static;
}
.arcane-page .contact-form-card > * { position: relative; z-index: 1; width: 100%; }
.arcane-page .contact-form-card .contact-form-card-glow {
	position: absolute;
	pointer-events: none;
	top: -180px;
	right: -160px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
	filter: blur(20px);
	z-index: 0;
}
.arcane-page .contact-form-card h2 {
	font-size: clamp(1.6rem, 2.6vw, 2rem);
	margin-bottom: 12px;
}
.arcane-page .contact-form-lead {
	color: var(--txt2);
	margin-bottom: 32px;
	max-width: 520px;
}
.arcane-page .contact-form-fallback {
	padding: 24px;
	border: 1px dashed var(--border);
	border-radius: 8px;
	color: var(--txt2);
}
.arcane-page .contact-form-fallback a { color: var(--acc); text-decoration: none; }

/* Form intro now sits above the form inside the card */
.arcane-page .contact-form-wrap-top { margin-top: 12px; }
.arcane-page .contact-form-meta {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.arcane-page .contact-form-meta .label { margin-bottom: 12px; }
.arcane-page .contact-form-meta-title {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 2.4vw, 1.85rem);
	line-height: 1.15;
	margin: 0 0 12px;
}
.arcane-page .contact-form-meta-title em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .contact-form-meta-sub {
	color: var(--txt2);
	font-size: 0.98rem;
	line-height: 1.65;
	margin: 0;
	max-width: 540px;
}

/* Contact Form 7 dark overrides */
.arcane-page .contact-form-wrap .wpcf7 { color: var(--txt); }
.arcane-page .contact-form-wrap .wpcf7-form p {
	margin: 0 0 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--txt2);
}
.arcane-page .contact-form-wrap label {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--txt2);
	margin-bottom: 2px;
}
.arcane-page .contact-form-wrap input[type="text"],
.arcane-page .contact-form-wrap input[type="email"],
.arcane-page .contact-form-wrap input[type="url"],
.arcane-page .contact-form-wrap input[type="tel"],
.arcane-page .contact-form-wrap input[type="number"],
.arcane-page .contact-form-wrap input[type="date"],
.arcane-page .contact-form-wrap select,
.arcane-page .contact-form-wrap textarea {
	width: 100%;
	background: rgba(5, 8, 16, 0.55);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--txt);
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	padding: 10px 14px;
	line-height: 1.5;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	box-shadow: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
/* iOS Safari auto-zooms on focus when input font-size < 16px. The
   ≤560px rule below already bumps to 16px, but iPad portrait/landscape
   (1024/1180) and any touch device above 560px also need the bump. */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
	.arcane-page .contact-form-wrap input[type="text"],
	.arcane-page .contact-form-wrap input[type="email"],
	.arcane-page .contact-form-wrap input[type="url"],
	.arcane-page .contact-form-wrap input[type="tel"],
	.arcane-page .contact-form-wrap input[type="number"],
	.arcane-page .contact-form-wrap input[type="date"],
	.arcane-page .contact-form-wrap select,
	.arcane-page .contact-form-wrap textarea,
	.arcane-page .contact-form-wrap input[type="submit"] {
		font-size: 16px;
	}
}
.arcane-page .contact-form-wrap textarea {
	height: 90px !important;
	min-height: 90px !important;
	resize: vertical;
}
.arcane-page .contact-form-wrap input:focus,
.arcane-page .contact-form-wrap select:focus,
.arcane-page .contact-form-wrap textarea:focus {
	outline: none;
	border-color: rgba(0, 212, 255, 0.55);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
	background: rgba(5, 8, 16, 0.75);
}
.arcane-page .contact-form-wrap input::placeholder,
.arcane-page .contact-form-wrap textarea::placeholder {
	color: var(--txt3);
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	letter-spacing: normal;
	text-transform: none;
}
.arcane-page .contact-form-wrap input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	width: auto;
	min-width: 220px;
	background: var(--acc);
	color: #050810;
	border: none;
	border-radius: 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: none;
	padding: 14px 32px;
	cursor: pointer;
	transition: all 0.2s;
}
.arcane-page .contact-form-wrap input[type="submit"]:hover {
	box-shadow: var(--glow);
	transform: translateY(-1px);
}
.arcane-page .contact-form-wrap .wpcf7-spinner {
	background-color: rgba(0, 212, 255, 0.25);
}
.arcane-page .contact-form-wrap .wpcf7-not-valid-tip {
	color: #ff7a8b;
	font-size: 12px;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: normal;
	text-transform: none;
	margin-top: 4px;
}
.arcane-page .contact-form-wrap .wpcf7 form .wpcf7-response-output {
	border-radius: 8px;
	border-width: 1px;
	padding: 14px 18px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	letter-spacing: normal;
	text-transform: none;
	color: var(--txt);
}
.arcane-page .contact-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.arcane-page .contact-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: rgba(255, 122, 139, 0.4);
	background: rgba(255, 122, 139, 0.06);
}
.arcane-page .contact-form-wrap .wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(0, 212, 255, 0.4);
	background: rgba(0, 212, 255, 0.06);
}

/* Side column */
.arcane-page .contact-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 110px;
}
.arcane-page .contact-side-card {
	padding: 32px 28px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
}
.arcane-page .contact-side-card h3 {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: 12px;
}
.arcane-page .contact-side-card h3 em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .contact-side-card p {
	color: var(--txt2);
	font-size: 0.95rem;
	margin-bottom: 20px;
}
.arcane-page .contact-prefer {
	background: linear-gradient(160deg, rgba(0, 212, 255, 0.06), rgba(124, 58, 237, 0.04));
	border-color: rgba(0, 212, 255, 0.2);
}
.arcane-page .contact-prefer-btn {
	width: 100%;
	justify-content: center;
	font-size: 14px;
}

/* What happens next */
.arcane-page .contact-next-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.arcane-page .contact-next-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	align-items: start;
}
.arcane-page .contact-next-num {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--acc);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 255, 0.3);
	background: rgba(0, 212, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-align: center;
	line-height: 1;
}
.arcane-page .contact-next-item strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--txt);
	margin-bottom: 4px;
}
.arcane-page .contact-next-item span:not(.contact-next-num) {
	display: block;
	color: var(--txt2);
	font-size: 0.92rem;
	line-height: 1.55;
}
.arcane-page .contact-direct-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.arcane-page .contact-direct-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--txt2);
	text-decoration: none;
	font-size: 0.98rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
}
.arcane-page .contact-direct-link:hover {
	color: var(--acc);
}
.arcane-page .contact-direct-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: currentColor;
	background-color: currentColor;
}
.arcane-page .contact-direct-icon--email {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.6 8-5.6V8H4Zm16 8V10.64l-7.43 5.2a1 1 0 0 1-1.14 0L4 10.64V16h16Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.6 8-5.6V8H4Zm16 8V10.64l-7.43 5.2a1 1 0 0 1-1.14 0L4 10.64V16h16Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.arcane-page .contact-direct-icon--phone {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.32.56 3.57.56a1 1 0 0 1 1 1V20a2 2 0 0 1-2 2C10.16 22 2 13.84 2 4a2 2 0 0 1 2-2h3.5a1 1 0 0 1 1 1c0 1.25.19 2.45.56 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.32.56 3.57.56a1 1 0 0 1 1 1V20a2 2 0 0 1-2 2C10.16 22 2 13.84 2 4a2 2 0 0 1 2-2h3.5a1 1 0 0 1 1 1c0 1.25.19 2.45.56 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Final CTA tweak so it doesn't look identical to other pages */
.arcane-page .contact-final-cta { padding: 96px 0; }

/* ============================================================
   Portfolio (Homepage) — laptop-focused, transparent PNGs
   ============================================================ */

.arcane-page .portfolio-section { position: relative; overflow: hidden; }
.arcane-page .portfolio-head {
	max-width: 720px;
	margin: 0 auto 64px;
	text-align: center;
}
.arcane-page .portfolio-head .label {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.arcane-page .portfolio-head h2 em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .portfolio-head .section-intro {
	margin-left: auto;
	margin-right: auto;
}

/* Grid — 4 columns on desktop */
.arcane-page .portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

/* Card — dark glass surface with a subtle cyan glow at rest */
.arcane-page .portfolio-card {
	display: block;
	text-decoration: none;
	color: inherit;
	text-align: center;
	position: relative;
	padding: 20px 20px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(0, 212, 255, 0.1);
	box-shadow:
		0 4px 24px rgba(0, 212, 255, 0.08),
		0 2px 12px rgba(0, 0, 0, 0.40);
	transition:
		transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.55s ease,
		border-color 0.45s ease;
}
.arcane-page .portfolio-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 212, 255, 0.35);
	box-shadow:
		0 0 0 1px rgba(0, 212, 255, 0.18),
		0 8px 40px rgba(0, 212, 255, 0.22),
		0 4px 20px rgba(0, 0, 0, 0.50),
		0 0 60px rgba(0, 212, 255, 0.10);
}

/* Stage holds the laptop image + glow + ground shadow */
.arcane-page .portfolio-card-stage {
	position: relative;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	isolation: isolate;
}

/* Spotlight glow behind the laptop — appears on hover */
.arcane-page .portfolio-card-glow {
	position: absolute;
	inset: 8% 0 12% 0;
	background:
		radial-gradient(ellipse at 50% 55%, rgba(0, 212, 255, 0.55) 0%, rgba(0, 212, 255, 0.18) 35%, transparent 70%),
		radial-gradient(ellipse at 50% 70%, rgba(124, 58, 237, 0.35) 0%, transparent 60%);
	filter: blur(28px);
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
	z-index: 0;
	pointer-events: none;
}
.arcane-page .portfolio-card:hover .portfolio-card-glow {
	opacity: 1;
	transform: scale(1);
}

/* Soft elliptical "ground shadow" under the laptop */
.arcane-page .portfolio-card-shadow {
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: 4%;
	height: 18px;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 75%);
	filter: blur(8px);
	z-index: 0;
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease, left 0.6s ease, right 0.6s ease;
	opacity: 0.85;
	pointer-events: none;
}
.arcane-page .portfolio-card:hover .portfolio-card-shadow {
	transform: scaleY(1.4);
	left: 8%;
	right: 8%;
	opacity: 1;
}

/* The laptop image itself — resting scale(1.2) makes it 20% larger visually */
.arcane-page .portfolio-card-laptop {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	object-fit: contain;
	transform: translateY(0) scale(1.2);
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
	filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
	will-change: transform;
}
.arcane-page .portfolio-card:hover .portfolio-card-laptop {
	transform: translateY(-10px) scale(1.25);
	filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(0, 212, 255, 0.25));
}

/* "Visit Site" pill that fades up under the laptop on hover */
.arcane-page .portfolio-card-cta {
	position: absolute;
	left: 0; right: 0;
	bottom: -6px;
	display: flex;
	justify-content: center;
	z-index: 3;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.05s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s;
	pointer-events: none;
}
.arcane-page .portfolio-card:hover .portfolio-card-cta {
	opacity: 1;
	transform: translateY(0);
}
.arcane-page .portfolio-card-cta-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: var(--acc);
	color: #050810;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: 50px;
	box-shadow: 0 0 24px rgba(0, 212, 255, 0.5);
	white-space: nowrap;
}

/* Meta block beneath the stage */
.arcane-page .portfolio-card-meta {
	width: 100%;
	text-align: center;
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.arcane-page .portfolio-card-name {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--txt);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
	white-space: nowrap;
	text-align: center;
}
.arcane-page .portfolio-card-name-text { transition: color 0.3s ease; white-space: nowrap; }
.arcane-page .portfolio-card:hover .portfolio-card-name-text { color: var(--acc); }
.arcane-page .portfolio-card-url {
	display: block;
	width: 100%;
	text-align: center;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: var(--txt3);
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
}
.arcane-page .portfolio-card:hover .portfolio-card-url { color: var(--txt2); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.arcane-page .portfolio-card,
	.arcane-page .portfolio-card-laptop,
	.arcane-page .portfolio-card-glow,
	.arcane-page .portfolio-card-shadow,
	.arcane-page .portfolio-card-cta {
		transition: opacity 0.2s ease, color 0.2s ease;
		transform: none !important;
	}
}

/* ════════════  PORTFOLIO PAGE  ════════════ */

/* Hero */
.arcane-page .pf-hero {
	display: flex;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	padding-top: 120px; /* nav (84px) + 36px matching gap below headline */
	padding-bottom: 28px;
}
.arcane-page .pf-hero-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(var(--acc-rgb), 0.09) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.4;
}
.arcane-page .pf-hero-orb {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--acc-rgb), 0.08) 0%, transparent 70%);
	top: -200px;
	right: -100px;
	animation: drift1 14s ease-in-out infinite;
}
.arcane-page .pf-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}
.arcane-page .pf-hero-inner .hero-eyebrow {
	margin-bottom: 12px;
}
.arcane-page .pf-hero h1 {
	font-size: clamp(2.8rem, 5.5vw, 5rem);
	letter-spacing: -0.03em;
	margin: 0;
}
.arcane-page .pf-hero h1 em {
	font-style: normal;
	color: var(--acc);
}

/* Grid rows */
.arcane-page .pf-rows {
	padding: 8px 32px 96px;
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.arcane-page .pf-grid {
	display: grid;
	gap: 24px;
}
.arcane-page .pf-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.arcane-page .pf-grid-2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 816px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Project card */
.arcane-page .proj-card {
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.arcane-page .proj-card:hover {
	transform: translateY(-4px);
}
.arcane-page .proj-card:hover .browser {
	border-color: rgba(var(--acc-rgb), 0.3);
	box-shadow: var(--glow);
}

/* Hover overlay */
.arcane-page .proj-overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 16, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	text-decoration: none;
}
.arcane-page .proj-card:hover .proj-overlay {
	opacity: 1;
}
.arcane-page .proj-visit {
	background: var(--acc);
	color: #050810;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
}

/* Browser chrome */
.arcane-page .browser {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg2);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.arcane-page .browser-bar {
	height: 34px;
	background: var(--bg3);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 12px;
	gap: 6px;
	flex-shrink: 0;
}
.arcane-page .b-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex-shrink: 0;
}
.arcane-page .b-url {
	flex: 1;
	height: 18px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
	margin: 0 8px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	overflow: hidden;
}
.arcane-page .b-url-text {
	font-size: 9px;
	color: var(--txt3);
	font-family: 'DM Sans', sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.arcane-page .browser-screen {
	background: var(--bg3);
	position: relative;
	overflow: hidden;
}
.arcane-page .browser-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	filter: brightness(0.75);
	display: block;
}

/* Card metadata */
.arcane-page .proj-meta {
	padding: 18px 4px 4px;
}
.arcane-page .proj-name {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--txt);
	margin-bottom: 3px;
}
.arcane-page .proj-url {
	font-size: 11px;
	color: var(--txt3);
	display: block;
	margin-bottom: 10px;
}
.arcane-page .proj-desc {
	font-size: 0.8rem;
	color: var(--txt2);
	line-height: 1.55;
	margin-bottom: 10px;
}
.arcane-page .proj-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.arcane-page .proj-tag {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 3px;
	padding: 3px 8px;
	font-family: 'Syne', sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.07em;
	color: var(--txt3);
	text-transform: uppercase;
}

/* Final CTA */
.arcane-page .pf-cta {
	border-top: 1px solid var(--border);
	padding: 96px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.arcane-page .pf-cta-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(var(--acc-rgb), 0.04), transparent);
	pointer-events: none;
}
.arcane-page .pf-cta-inner {
	position: relative;
	z-index: 1;
}
.arcane-page .pf-cta h2 {
	font-size: clamp(2.4rem, 4.8vw, 3.6rem);
	margin-bottom: 16px;
}
.arcane-page .pf-cta h2 em {
	font-style: normal;
	color: var(--acc);
}
.arcane-page .pf-cta p {
	color: var(--txt2);
	font-size: 1.05rem;
	margin-bottom: 40px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.arcane-page .pf-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ──────────────  Responsive  ────────────── */

/* ── Tablet (≤ 960px) ── */
@media (max-width: 960px) {
	/* Container */
	.arcane-page .container { padding: 0 24px; }

	/* Section spacing */
	.arcane-page .section { padding: 56px 0; }
	.arcane-page .ai-teaser { padding: 56px 0; }
	.arcane-page .about-teaser { padding: 56px 0; }
	.arcane-page .final-cta { padding: 72px 0; }
	.arcane-page .final-cta-ai { padding: 72px 0; }
	.arcane-page .seo-final-cta { padding: 72px 0; }
	.arcane-page .contact-final-cta { padding: 72px 0; }
	.arcane-page .pf-cta { padding: 72px 0; }

	/* Hero */
	.arcane-page .hero { min-height: auto; padding-top: 120px; padding-bottom: 56px; }
	.arcane-page .hero-content { grid-template-columns: 1fr; gap: 56px; }
	.arcane-page .svc-section { scroll-margin-top: 100px; }
	.arcane-page .hero-visual {
		height: 360px;
		width: 100%;
		justify-self: stretch;
	}
	.arcane-page .hv-badge { right: -4px; bottom: -24px; }
	.arcane-page .hv-builder-scene { grid-template-columns: 78px 1fr; }
	.arcane-page .hv-builder-canvas {
		--dot-nav-x: 18px;
		--dot-nav-y: 18px;
		--dot-hero-x: 124px;
		--dot-hero-y: 72px;
		--dot-stats-x: 138px;
		--dot-stats-y: 162px;
		--dot-cards-x: 142px;
		--dot-cards-y: 248px;
	}
	.arcane-page .hv-site-hero-panel { grid-template-columns: 1fr; }
	.arcane-page .hv-site-preview { justify-content: flex-start; }
	.arcane-page .hv-site-nav-links span:nth-child(3) { display: none; }

	/* About teaser */
	.arcane-page .about-teaser-content { max-width: 100%; }

	/* AI teaser */
	.arcane-page .ai-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .ai-teaser-visual { justify-content: center; }
	.arcane-page .ai-teaser-circle { width: 300px; height: 300px; }

	/* Grids */
	.arcane-page .intro-grid,
	.arcane-page .fp-grid { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .fp-grid.reverse { direction: ltr; }
	.arcane-page .fp-chat-showcase { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
	.arcane-page .fp-chat-demo { min-height: 460px; }
	.arcane-page .services-grid { grid-template-columns: repeat(2, 1fr); }
	.arcane-page .pricing-grid,
	.arcane-page .testi-grid,
	.arcane-page .mini-grid { grid-template-columns: 1fr; }
	.arcane-page .process-steps { grid-template-columns: repeat(2, 1fr); }
	.arcane-page .process-steps::before { display: none; }
	.arcane-page .industries-grid { grid-template-columns: repeat(2, 1fr); }
	.arcane-page .stats-inner { grid-template-columns: repeat(2, 1fr); }
	.arcane-page .stat-item:nth-child(2) { border-right: none; }
	.arcane-page .stat-item { padding: 16px 12px; }
	.arcane-page .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.arcane-page .footer-bottom { flex-wrap: wrap; gap: 12px; }
	.arcane-page #colophon .site-middle-footer-inner-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
	.arcane-page #colophon .site-footer-middle-section-1 { grid-column: 1 / -1; }
	.arcane-page #colophon .footer-brand img { width: 220px; }
	.arcane-page #colophon .footer-brand p { max-width: 420px; }
	.arcane-page #colophon .footer-html-inner p { flex-wrap: wrap; }
	.arcane-page #colophon .footer-col ul { gap: 14px; }
	.arcane-page #colophon .footer-col ul a { padding: 8px 0; }

	/* Other pages */
	.arcane-page .ai-hero-content {
		width: 100%;
		max-width: 100%;
		padding: 132px 24px 80px;
	}
	.arcane-page .ai-hero-bg-overlay { background: rgba(5, 8, 16, 0.80); }
	.arcane-page .nav-links { display: none; }
	.arcane-page .svc-hero-content { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .svc-grid { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .svc-grid.flip { direction: ltr; }
	/* Tighten vertical space between consecutive service sections on
	   mobile/tablet — desktop has the 2-column layout so the gap matters
	   less, but stacked the 88+88px section padding compounds. */
	.arcane-page .svc-section { padding: 40px 0; }
	/* Bring the "Ready to Start?" CTA closer to the previous service. */
	.arcane-page .svc-final-cta { padding: 56px 0 80px; }
	.arcane-page .why-grid { grid-template-columns: repeat(2, 1fr); }
	.arcane-page .compare-wrap { overflow-x: auto; }

	/* Ticker */
	.arcane-page .ticker { padding: 20px 0; }
	.arcane-page .ticker-item { font-size: 14px; }

	/* SEO page */
	.arcane-page .seo-hero .hero-content { grid-template-columns: 1fr; gap: 56px; }
	.arcane-page .google-img-wrap { max-width: 540px; margin: 0 auto; }
	.arcane-page .why-seo-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
	.arcane-page .serp-grid { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .seo-pillars { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
	.arcane-page .seo-process-grid { grid-template-columns: 1fr; gap: 48px; }
	.arcane-page .seo-process-grid > div:first-child { position: static; }
	.arcane-page .included-grid { grid-template-columns: 1fr 1fr; gap: 12px 24px; }

	/* Portfolio */
	.arcane-page .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
	.arcane-page .portfolio-head { margin-bottom: 48px; }

	/* Contact page */
	.arcane-page .contact-hero { padding-top: 130px; padding-bottom: 64px; }
	.arcane-page .contact-hero-pills { grid-template-columns: 1fr; gap: 12px; max-width: 480px; }
	.arcane-page .contact-main { padding: 56px 0 88px; }
	.arcane-page .contact-main-top { padding-top: 130px; }
	.arcane-page .contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.arcane-page .contact-side { position: static; flex-direction: row; gap: 20px; }
	.arcane-page .contact-side-card { flex: 1; }
	.arcane-page .contact-form-card { padding: 30px 26px 26px; }
	.arcane-page .contact-form-card-wide { padding: 44px 36px 36px; margin-bottom: 32px; }
	.arcane-page .contact-form-header { margin-bottom: 32px; }
	.arcane-page .contact-side-row { gap: 20px; }

	/* Portfolio page */
	.arcane-page .pf-grid-3 { grid-template-columns: 1fr; }
	.arcane-page .pf-grid-2 { grid-template-columns: 1fr; max-width: 480px; }
	.arcane-page .pf-rows { padding: 24px 24px 72px; }
}

/* ── Mobile (≤ 560px) ── */
@media (max-width: 560px) {
	/* Container */
	.arcane-page .container { padding: 0 28px; }

	/* Section spacing — keep consecutive-section gaps under ~80px on mobile */
	.arcane-page .section { padding: 40px 0; }
	.arcane-page .ai-teaser { padding: 40px 0; }
	.arcane-page .about-teaser { padding: 40px 0; }
	.arcane-page .final-cta { padding: 56px 0; }
	.arcane-page .svc-section { padding: 32px 0; }
	.arcane-page .svc-final-cta { padding: 40px 0 64px; }
	.arcane-page .final-cta-ai { padding: 56px 0; }
	.arcane-page .seo-final-cta { padding: 56px 0; }
	.arcane-page .seo-faq-section { padding-top: 24px; }
	.arcane-page .contact-final-cta { padding: 56px 0; }
	.arcane-page .pf-cta { padding: 56px 0; }

	/* Typography */
	.arcane-page h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
	.arcane-page .section-intro { font-size: 1rem; margin-bottom: 40px; }

	/* Hero */
	.arcane-page .hero { padding-top: 100px; padding-bottom: 40px; }
	.arcane-page .hero-content { gap: 18px; }
	.arcane-page .svc-nav { top: 96px; }
	.arcane-page .svc-section { scroll-margin-top: 156px; }
	.arcane-page .hero-main { font-size: clamp(1.84rem, 7.56vw, 2.47rem); }
	.arcane-page .hero-sub { font-size: 1rem; margin-bottom: 32px; }
	.arcane-page .hero-visual {
		height: 360px;
		width: 100%;
		justify-self: stretch;
	}
	.arcane-page .hv-badge { right: -6px; bottom: -20px; padding: 14px 16px; }
	.arcane-page .hv-badge strong { font-size: 14px; }
	.arcane-page .hv-badge-sub { font-size: 10px; }
	.arcane-page .hv-builder-scene { grid-template-columns: 1fr; }
	.arcane-page .hv-builder-sidebar { display: none; }
	.arcane-page .hv-builder-toolbar { padding: 0 10px; }
	.arcane-page .hv-builder-canvas {
		padding: 10px;
		--dot-nav-x: 12px;
		--dot-nav-y: 10px;
		--dot-hero-x: 82px;
		--dot-hero-y: 46px;
		--dot-stats-x: 92px;
		--dot-stats-y: 106px;
		--dot-cards-x: 96px;
		--dot-cards-y: 156px;
	}
	.arcane-page .hv-site-shell { padding: 8px; gap: 6px; }
	.arcane-page .hv-site-nav { grid-template-columns: 42px 1fr 40px; gap: 6px; padding-bottom: 6px; }
	.arcane-page .hv-site-nav-links { gap: 6px; }
	.arcane-page .hv-site-nav-links span { width: 24px; height: 5px; }
	.arcane-page .hv-site-nav-links span:nth-child(2),
	.arcane-page .hv-site-nav-links span:nth-child(3) { display: none; }
	.arcane-page .hv-site-hero-panel { min-height: 74px; padding: 8px; gap: 8px; }
	.arcane-page .hv-copy-kicker { width: 48px; height: 5px; }
	.arcane-page .hv-copy-line { height: 8px; }
	.arcane-page .hv-copy-actions { gap: 6px; margin-top: 3px; }
	.arcane-page .hv-copy-actions span { width: 52px; height: 10px; }
	.arcane-page .hv-preview-window { max-width: 100%; padding: 6px; gap: 4px; }
	.arcane-page .hv-preview-bar { height: 5px; }
	.arcane-page .hv-preview-panel.hero { height: 30px; }
	.arcane-page .hv-preview-panel.half { height: 18px; }
	.arcane-page .hv-site-stats-row,
	.arcane-page .hv-site-card-grid { gap: 6px; }
	.arcane-page .hv-stat-block,
	.arcane-page .hv-site-service-card { padding: 6px; border-radius: 10px; }
	.arcane-page .hv-service-icon { width: 14px; height: 14px; margin-bottom: 5px; }
	.arcane-page .hv-service-line { height: 5px; margin-bottom: 4px; }
	.arcane-page .hv-stat-value { width: 28px; height: 8px; margin-bottom: 4px; }
	.arcane-page .hv-stat-label { height: 4px; }
	.arcane-page .hv-site-footer-line { height: 7px; }
	.arcane-page .hv-builder-dot {
		width: 10px;
		height: 10px;
	}
	.arcane-page .hv-builder-pulse {
		width: 20px;
		height: 20px;
	}

	/* Buttons */
	.arcane-page .btn { padding: 14px 22px; font-size: 15px; }
	.arcane-page .hero-ctas { gap: 12px; }
	.arcane-page .final-cta-btns { flex-direction: column; align-items: center; }
	.arcane-page .final-cta-btns .btn { width: 100%; justify-content: center; max-width: 320px; }

	/* AI teaser */
	.arcane-page .ai-teaser-circle { width: 240px; height: 240px; }

	/* Ticker */
	.arcane-page .ticker { padding: 16px 0; }
	.arcane-page .ticker-item { font-size: 12px; }

	/* Process */
	.arcane-page .process-steps { grid-template-columns: 1fr; }

	/* Grids */
	.arcane-page .services-grid { grid-template-columns: 1fr; }
	.arcane-page .industries-grid { grid-template-columns: 1fr; }
	.arcane-page .footer-grid { grid-template-columns: 1fr; }
	.arcane-page #colophon .site-middle-footer-inner-wrap { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
	.arcane-page #colophon .site-footer-middle-section-1 { grid-column: 1 / -1; }
	.arcane-page #colophon .site-footer-middle-section-4 { grid-column: 1 / -1; }
	.arcane-page #colophon .footer-brand img { width: 180px; }
	.arcane-page #colophon .footer-brand p {
		max-width: none;
		margin-top: 10px;
		line-height: 1.35;
	}
	.arcane-page #colophon .footer-col h4 { margin-bottom: 10px; }
	.arcane-page #colophon .footer-col ul { gap: 6px; }
	.arcane-page #colophon .footer-col ul a {
		padding: 2px 0;
		line-height: 1.2;
	}
	.arcane-page #colophon .footer-contact-link {
		gap: 8px;
		align-items: flex-start;
	}
	.arcane-page #colophon .footer-html-inner p {
		gap: 8px;
		line-height: 1.2;
	}
	.arcane-page .stats-inner { grid-template-columns: 1fr; }
	.arcane-page .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 12px; }
	.arcane-page .stat-item:last-child { border-bottom: none; }

	/* Other pages */
	.arcane-page .svc-hero-right { grid-template-columns: 1fr; }
	.arcane-page .includes-list { grid-template-columns: 1fr; }
	.arcane-page .fp-chat-showcase { padding: 24px; gap: 24px; }
	.arcane-page .fp-chat-showcase__copy h3 { font-size: 1.35rem; }
	.arcane-page .fp-chat-demo { min-height: 420px; }
	.arcane-page .fp-chat-msg { max-width: 92%; font-size: 0.9rem; }

	/* SEO page — mobile */
	.arcane-page .hero-proof { gap: 20px; margin-top: 28px; }
	.arcane-page .hero-proof-item strong { font-size: 1.3rem; }
	.arcane-page .google-rank-badge { padding: 10px 14px; bottom: 14px; right: 14px; }
	.arcane-page .google-rank-badge strong { font-size: 1.3rem; }
	.arcane-page .why-seo-card { padding: 28px 22px; }
	.arcane-page .why-seo-stat strong { font-size: 1.2rem; }
	.arcane-page .pillar-card { padding: 32px 24px; }
	.arcane-page .pillar-card h3 { font-size: 1.2rem; }
	.arcane-page .serp-visual { padding: 16px; }
	.arcane-page .included-grid { grid-template-columns: 1fr; gap: 8px; }
	.arcane-page .faq-list.faq-list--two-col .faq-q {
		min-height: 0;
	}
	.arcane-page .faq-q { padding: 18px 20px; font-size: 0.98rem; gap: 16px; }
	.arcane-page .faq-item.open .faq-a { padding: 0 20px 20px; }
	.arcane-page .process-item { grid-template-columns: 44px 1fr; gap: 16px; }
	.arcane-page .process-step-num { font-size: 1.3rem; }

	/* Portfolio — mobile */
	.arcane-page .portfolio-grid { grid-template-columns: 1fr; gap: 40px; max-width: 360px; margin-left: auto; margin-right: auto; }
	.arcane-page .portfolio-card-meta { margin-top: 20px; }
	.arcane-page .portfolio-card-name { font-size: 1.1rem; }
	.arcane-page .portfolio-card-cta-pill { padding: 7px 14px; font-size: 11px; }

	/* Contact page — mobile */
	.arcane-page .contact-hero { padding-top: 110px; padding-bottom: 48px; }
	.arcane-page .contact-main-top { padding-top: 110px; }
	.arcane-page .contact-hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
	.arcane-page .contact-pill { padding: 14px 14px; }
	.arcane-page .contact-pill-ico { width: 34px; height: 34px; font-size: 14px; }
	.arcane-page .contact-pill-body strong { font-size: 0.88rem; }
	.arcane-page .contact-side { flex-direction: column; }
	.arcane-page .contact-side-row { grid-template-columns: 1fr; gap: 16px; }
	.arcane-page .contact-form-card { padding: 24px 20px 22px; border-radius: 10px; }
	.arcane-page .contact-form-card-wide { padding: 32px 22px 28px; margin-bottom: 24px; }
	.arcane-page .contact-form-header { margin-bottom: 24px; }
	.arcane-page .contact-form-title { font-size: clamp(1.6rem, 7.5vw, 2.1rem); }
	.arcane-page .contact-form-subtitle { font-size: 0.98rem; }
	.arcane-page .contact-form-card h2 { font-size: clamp(1.4rem, 7vw, 1.75rem); }
	.arcane-page .contact-form-wrap input[type="text"],
	.arcane-page .contact-form-wrap input[type="email"],
	.arcane-page .contact-form-wrap input[type="url"],
	.arcane-page .contact-form-wrap input[type="tel"],
	.arcane-page .contact-form-wrap select,
	.arcane-page .contact-form-wrap textarea { font-size: 16px; padding: 13px 14px; }
	.arcane-page .contact-form-wrap input[type="submit"] { width: 100%; min-width: 0; }
	.arcane-page .contact-side-card { padding: 26px 22px; }
	.arcane-page .contact-next-item { grid-template-columns: 40px 1fr; gap: 12px; }
	.arcane-page .contact-next-num { width: 40px; height: 40px; font-size: 1rem; }

	/* Final CTA */
	.arcane-page .final-cta h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
	.arcane-page .final-cta .label { font-size: 13px; }

	/* Footer */
	.arcane-page .footer { padding: 48px 0 24px; }
	.arcane-page .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
	.arcane-page #colophon .footer-html-inner p { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.arcane-page .hv-build-target {
		opacity: 1;
		transform: none;
	}

	.arcane-page .target-stats .hv-stat-block,
	.arcane-page .target-cards .hv-site-service-card {
		opacity: 1;
		transform: none;
	}

	.arcane-page .hv-builder-pulse {
		opacity: 0;
	}

	.arcane-page .hv-builder-canvas.is-static .hv-builder-dot {
		transform: translate(calc(var(--builder-dot-x) - 50%), calc(var(--builder-dot-y) - 50%));
	}
}

/* ── Web Design page additions ── */
.arcane-page .hero-content.hero-content--single {
	grid-template-columns: 1fr;
	max-width: 880px;
	text-align: left;
	gap: 0;
}
/* The single-column web-design hero has long lines that don't fit on small
   screens. Each line is already its own <span> block, so dropping nowrap on
   mobile lets text wrap inside the line without changing the line break
   between lines. */
@media (max-width: 768px) {
	.arcane-page .web-design-hero .hero-main-line { white-space: normal; }
}

/* Ingredients card (What makes a good website) */
.arcane-page .ingredients-card {
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--bg2);
	padding: 36px 32px;
	position: relative;
	overflow: hidden;
}
.arcane-page .ingredients-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--acc), var(--acc2));
}
.arcane-page .ingredients-list {
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 0;
}
.arcane-page .ingredients-list li {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--txt);
}
.arcane-page .ingredients-list li::before {
	font-size: 13px;
}

/* Two-up package/option grid */
.arcane-page .pricing-grid.pricing-grid--two {
	grid-template-columns: repeat(2, 1fr);
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.arcane-page #included h2 {
	margin-bottom: 28px;
}

/* Optional add-ons */
.arcane-page .addons-container { text-align: center; }
.arcane-page .addons-container .section-intro { margin-left: auto; margin-right: auto; }
.arcane-page .addons-pills {
	justify-content: center;
	gap: 14px;
	margin-bottom: 24px;
}
.arcane-page .addons-pill {
	padding: 10px 18px;
	font-size: 12px;
	letter-spacing: 0.05em;
	border-radius: 999px;
	color: var(--txt);
	transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	text-decoration: none;
}
.arcane-page .addons-pill:hover {
	border-color: var(--acc);
	color: var(--acc);
	transform: translateY(-1px);
}
.arcane-page .addons-note {
	color: var(--txt2);
	font-size: 0.9rem;
	margin: 0;
}
.arcane-page .addons-note a { color: var(--acc); text-decoration: none; }
.arcane-page .addons-note a:hover { text-decoration: underline; }

/* Web Design page process section */
.arcane-page .web-process-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}
.arcane-page .web-process-step {
	position: relative;
	padding: 22px 0 0;
	border-top: 1px solid rgba(var(--acc-rgb), 0.55);
	min-height: 0;
}
.arcane-page .web-process-step::before {
	display: none;
}
.arcane-page .web-process-step::after {
	display: none;
}
.arcane-page .web-process-step.is-last::after {
	display: none;
}
.arcane-page .web-process-step .ps-num {
	width: auto;
	height: auto;
	margin: 0 0 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acc);
	line-height: 1;
}
.arcane-page .web-process-step .ps-num::before {
	content: 'Step ';
	margin-right: 0.1em;
}
.arcane-page .web-process-step h3 {
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	margin-bottom: 14px;
}
.arcane-page .web-process-step p {
	color: var(--txt2);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
	max-width: 24ch;
}

@media (max-width: 768px) {
	.arcane-page .services-grid,
	.arcane-page .why-grid,
	.arcane-page .included-grid,
	.arcane-page .portfolio-grid,
	.arcane-page .svc-hero-right,
	.arcane-page .includes-list,
	.arcane-page .faq-list.faq-list--two-col {
		grid-template-columns: 1fr;
	}
	.arcane-page .portfolio-grid {
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}
	.arcane-page .hero-content.hero-content--single {
		max-width: 100%;
	}
	.arcane-page .web-design-hero .hero-main {
		max-width: 8ch;
		font-size: clamp(2.3rem, 10vw, 3.8rem);
		line-height: 0.98;
	}
	.arcane-page .pricing-grid.pricing-grid--two { grid-template-columns: 1fr; }
	.arcane-page .web-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.arcane-page .web-process-step.is-last::after,
	.arcane-page .web-process-step:nth-child(2)::after { display: none; }
	.arcane-page .web-design-hero .hero-main-line {
		white-space: normal;
		overflow-wrap: normal;
		word-break: normal;
	}
	.arcane-page .web-design-hero .hero-sub {
		max-width: 100%;
	}
	.arcane-page .web-design-hero .hero-ctas .btn,
	.arcane-page .svc-hero-ctas .btn,
	.arcane-page .ai-hero-ctas .btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}
}
@media (max-width: 560px) {
	.arcane-page .web-process-steps { grid-template-columns: 1fr; }
	.arcane-page .web-process-step::after { display: none; }
	.arcane-page .benefit-list { grid-template-columns: 1fr; }
	.arcane-page .web-design-hero .hero-main {
		max-width: 7.8ch;
		font-size: clamp(1.85rem, 11vw, 2.75rem);
	}
}
