/**
 * WK Kinetic — Premium layer v3.
 * Depth, gradients, glows, layered hero, motion system, background rhythm,
 * intentional spacing, editorial product listing, redesigned cards, custom form.
 * Loads after kinetic.css.
 */

:root {
	--wk-radius-lg: 20px;
	--wk-radius-xl: 28px;
	--wk-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--wk-ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
	--wk-ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
	--wk-ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--wk-grad-text: linear-gradient(100deg, #dfe2f1 0%, #a6c8ff 50%, #00d2ff 100%);
	--wk-grad-brand: linear-gradient(135deg, #0b4c8c 0%, #00d2ff 100%);
}

/* ---------- Gradient text ---------- */
.wk-gradient-text, .wk-gradient-text * {
	background: var(--wk-grad-text);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Eyebrow with leading line ---------- */
.wk-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.wk-eyebrow::before {
	content: ""; width: 28px; height: 1px;
	background: linear-gradient(to right, var(--wp--preset--color--digital-cyan), transparent);
}
.wk-eyebrow:has(.wk-indicator)::before { display: none; }

/* ---------- Accent line under section headings ---------- */
h2.wk-accent::after, h1.wk-accent::after {
	content: ""; display: block; height: 3px; width: 56px; margin-top: 16px;
	border-radius: 3px; background: var(--wk-grad-brand);
	transition: width 0.8s var(--wk-ease-quint) 0.15s;
}
html.wk-js .wk-reveal h2.wk-accent::after,
html.wk-js .wk-reveal h1.wk-accent::after { width: 0; }
html.wk-js .wk-reveal.is-visible h2.wk-accent::after,
html.wk-js .wk-reveal.is-visible h1.wk-accent::after { width: 56px; }

/* ---------- Intentional vertical rhythm (tightened) ---------- */
.wk-section { position: relative; isolation: isolate; overflow-x: clip; padding-block: clamp(40px, 5vw, 80px); }
.wk-section.wk-tight { padding-block: clamp(24px, 3vw, 44px); }
.wk-section.wk-loose { padding-block: clamp(60px, 7vw, 112px); }
/* Kill any horizontal overflow from decorative layers, globally. */
html, body { overflow-x: clip; }
main.wp-block-group, .wp-block-post-content { overflow-x: clip; }
/* Trim intro spacing so headings sit closer to their content. */
.wk-section .alignwide + .alignwide { margin-top: 0; }

/* ---------- Background rhythm ---------- */
.wk-band {
	background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.006));
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wk-band-2 { background: linear-gradient(180deg, rgba(10,14,24,0.5), rgba(10,14,24,0.2)); }
.wk-grid-bg::after {
	content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none; opacity: 0.5;
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
	background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
	background-size: 56px 56px;
}

/* ---------- Ambient section glows (clipped by section overflow) ---------- */
.wk-glow-tl::before, .wk-glow-br::after {
	content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
	filter: blur(80px); opacity: 0.45; z-index: -1; pointer-events: none;
}
.wk-glow-tl::before { background: radial-gradient(circle, rgba(11,76,140,0.5), transparent 70%); top: -120px; left: -80px; }
.wk-glow-br::after  { background: radial-gradient(circle, rgba(0,210,255,0.28), transparent 70%); bottom: -140px; right: -80px; }

/* ---------- Animated gradient background ---------- */
.wk-anim-gradient::before {
	content: ""; position: absolute; inset: -20%; z-index: -3; pointer-events: none;
	background:
		radial-gradient(40% 40% at 20% 25%, rgba(11,76,140,0.45), transparent 70%),
		radial-gradient(35% 45% at 80% 30%, rgba(0,210,255,0.22), transparent 70%),
		radial-gradient(45% 40% at 60% 90%, rgba(5,142,202,0.25), transparent 70%);
	animation: wk-bg-pan 20s var(--wk-ease-quart) infinite alternate;
}
@keyframes wk-bg-pan {
	0%   { transform: translate3d(-3%, -2%, 0) scale(1.04); }
	100% { transform: translate3d(3%, 2%, 0) scale(1.12); }
}

/* ---------- Glowing divider ---------- */
.wk-divider { height: 1px; border: 0; margin: 0; background: linear-gradient(to right, transparent, rgba(5,142,202,0.6), transparent); }

/* ---------- Motion primitives ---------- */
@keyframes wk-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes wk-float-x { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-8px); } }
@keyframes wk-spin { to { transform: rotate(360deg); } }
@keyframes wk-spin-rev { to { transform: rotate(-360deg); } }
@keyframes wk-glow-pulse { 0%,100% { box-shadow: inset 0 0 20px rgba(0,210,255,0.15); } 50% { box-shadow: inset 0 0 30px rgba(0,210,255,0.32), 0 0 22px -4px rgba(0,210,255,0.25); } }
.wk-float { animation: wk-float 6s ease-in-out infinite; }
.wk-float-slow { animation: wk-float-x 9s ease-in-out infinite; }

/* ---------- Icon badge (used widely) ---------- */
.wk-icon-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; border-radius: 16px; flex: 0 0 auto;
	background: linear-gradient(135deg, rgba(0,210,255,0.18), rgba(11,76,140,0.25));
	border: 1px solid rgba(0,210,255,0.35);
	box-shadow: inset 0 0 20px rgba(0,210,255,0.15);
	transition: transform 0.4s var(--wk-ease-quint), box-shadow 0.4s var(--wk-ease-quint);
}
.wk-icon-badge .material-symbols-outlined { font-size: 28px; color: var(--wp--preset--color--digital-cyan); }
.wk-icon-badge p, .wk-hero-cap p, .wk-float-card p { margin: 0; }
.wk-prod-tagline { margin: 0; }
.wk-card:hover .wk-icon-badge, .wk-svc-card:hover .wk-icon-badge, .wk-svc-split:hover .wk-icon-badge { transform: translateY(-3px) scale(1.06); box-shadow: inset 0 0 26px rgba(0,210,255,0.3), 0 0 18px -4px rgba(0,210,255,0.4); }
.wk-icon-badge-sm { width: 42px; height: 42px; border-radius: 12px; }
.wk-icon-badge-sm .material-symbols-outlined { font-size: 22px; }

/* ---------- Premium image media ---------- */
.wk-media { position: relative; border-radius: var(--wk-radius-lg); overflow: hidden; isolation: isolate; }
.wk-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-media::before {
	content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(180deg, rgba(15,19,29,0) 40%, rgba(15,19,29,0.55) 100%),
	            linear-gradient(120deg, rgba(11,76,140,0.25), rgba(0,210,255,0.05) 60%, transparent);
}
.wk-media::after {
	content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; pointer-events: none; padding: 1px;
	background: linear-gradient(135deg, rgba(0,210,255,0.6), rgba(5,142,202,0.15) 50%, transparent);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
}
.wk-media:hover img { transform: scale(1.05); }
.wk-media-float { box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8), 0 0 60px -20px rgba(0,210,255,0.25); }
figure.wk-media { margin: 0; }
figure.wk-media img { border-radius: var(--wk-radius-lg); }

/* =========================================================
   HERO — layered cinematic composition
   ========================================================= */
.wk-hero { overflow: clip; }
.wk-hero .wk-hero-caps { margin-top: 28px; }
.wk-hero-cap {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 16px; border-radius: 999px;
	background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
	font-family: var(--wp--preset--font-family--geist); font-size: 13px; color: var(--wp--preset--color--ink);
	transition: border-color 0.35s var(--wk-ease-quint), background 0.35s, transform 0.35s;
}
.wk-hero-cap .material-symbols-outlined { font-size: 18px; color: var(--wp--preset--color--digital-cyan); }
.wk-hero-cap:hover { border-color: rgba(0,210,255,0.4); background: rgba(0,210,255,0.06); transform: translateY(-2px); }

.wk-hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
/* Rotating decorative orbits */
.wk-hero-visual::before, .wk-hero-visual::after {
	content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
	border: 1px solid rgba(0,210,255,0.14);
}
.wk-hero-visual::before { width: 108%; padding-bottom: 108%; inset: auto; animation: wk-spin 46s linear infinite; -webkit-mask: radial-gradient(closest-side, transparent 96%, #000 97%); mask: radial-gradient(closest-side, transparent 96%, #000 97%); }
.wk-hero-visual::after  { width: 78%; padding-bottom: 78%; border-color: rgba(166,200,255,0.12); border-style: dashed; animation: wk-spin-rev 60s linear infinite; -webkit-mask: radial-gradient(closest-side, transparent 96%, #000 97%); mask: radial-gradient(closest-side, transparent 96%, #000 97%); }
.wk-hero-frame { position: relative; z-index: 2; width: 78%; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.85), 0 0 80px -24px rgba(0,210,255,0.35); }
.wk-hero-frame img { display: block; width: 100%; }
.wk-hero-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(0,210,255,0.12), transparent 45%), linear-gradient(0deg, rgba(15,19,29,0.55), transparent 55%); }
.wk-hero-frame::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(0,210,255,0.7), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }

.wk-float-card {
	position: absolute; z-index: 3;
	display: inline-flex; align-items: center; gap: 12px;
	padding: 14px 18px; border-radius: 16px;
	background: rgba(10,14,24,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(0,210,255,0.28);
	box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
	will-change: transform;
}
.wk-float-card .material-symbols-outlined { font-size: 24px; color: var(--wp--preset--color--digital-cyan); }
.wk-float-card .wk-fc-k { font-family: var(--wp--preset--font-family--geist); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wp--preset--color--ink-muted); }
.wk-float-card .wk-fc-v { font-family: var(--wp--preset--font-family--montserrat); font-weight: 600; font-size: 16px; color: #fff; }
.wk-fc-1 { top: 6%; right: -4%; animation: wk-float 7s ease-in-out infinite; }
.wk-fc-2 { bottom: 8%; left: -6%; animation: wk-float-x 9s ease-in-out infinite; }
.wk-fc-3 { bottom: 30%; right: -8%; animation: wk-float 8s ease-in-out infinite 0.6s; }
.wk-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #00d2ff; box-shadow: 0 0 10px rgba(0,210,255,0.9); animation: wk-glow-pulse 2s ease-in-out infinite; }
@media (max-width: 900px) {
	.wk-hero-visual { min-height: 340px; margin-top: 12px; }
	.wk-hero-frame { width: 84%; }
	.wk-float-card { display: none; }
	.wk-hero-visual::before, .wk-hero-visual::after { opacity: 0.5; }
}

/* =========================================================
   PRODUCTS — editorial listing
   ========================================================= */
.wk-prod-list { counter-reset: wkprod; }
.wk-prod-list > * { counter-increment: wkprod; }
.wk-prod-list > * + * { margin-top: clamp(28px, 4vw, 56px); }
.wk-prod-index::before { content: counter(wkprod, decimal-leading-zero); }
.wk-prod-row {
	position: relative; overflow: hidden;
	display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
	border-radius: var(--wk-radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint), transform 0.5s var(--wk-ease-quint);
}
.wk-prod-row:hover { transform: translateY(-4px); border-color: rgba(0,210,255,0.4); box-shadow: 0 50px 110px -50px rgba(0,0,0,0.9), 0 0 60px -22px rgba(0,210,255,0.3); }
.wk-prod-row .wp-block-post-featured-image { margin: 0; position: relative; min-height: 280px; overflow: hidden; }
.wk-prod-row .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-prod-row:hover .wp-block-post-featured-image img { transform: scale(1.06); }
.wk-prod-row .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(15,19,29,0.65)), linear-gradient(120deg, rgba(11,76,140,0.4), transparent 55%); }
.wk-prod-body { padding: clamp(28px, 3.5vw, 52px); display: flex; flex-direction: column; justify-content: center; gap: 14px; position: relative; }
/* Watermark index number */
.wk-prod-body .wk-prod-index {
	position: absolute; top: 18px; right: 26px; z-index: 0;
	font-family: var(--wp--preset--font-family--montserrat); font-weight: 800; font-size: clamp(64px, 8vw, 120px); line-height: 1;
	color: rgba(255,255,255,0.04); letter-spacing: -0.04em; pointer-events: none;
}
.wk-prod-body > * { position: relative; z-index: 1; }
/* First (featured) product = full-bleed feature */
.wk-prod-list > *:first-child .wk-prod-row { grid-template-columns: 1.25fr 1fr; }
.wk-prod-list > *:first-child .wk-prod-row .wp-block-post-featured-image { min-height: 360px; }
/* Alternate image side on even rows */
.wk-prod-list > *:nth-child(even) .wk-prod-row { grid-template-columns: 1fr 1.1fr; }
.wk-prod-list > *:nth-child(even) .wk-prod-row .wp-block-post-featured-image { order: 2; }
.wk-prod-list > *:nth-child(even) .wk-prod-row .wp-block-post-featured-image::after { background: linear-gradient(270deg, transparent 55%, rgba(15,19,29,0.65)), linear-gradient(300deg, rgba(11,76,140,0.4), transparent 55%); }
.wk-prod-tagline {
	display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
	padding: 5px 14px; border-radius: 999px; background: rgba(0,210,255,0.1);
	border: 1px solid rgba(0,210,255,0.3); color: var(--wp--preset--color--digital-cyan);
	font-family: var(--wp--preset--font-family--geist); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
@media (max-width: 900px) {
	.wk-prod-row, .wk-prod-list > *:first-child .wk-prod-row, .wk-prod-list > *:nth-child(even) .wk-prod-row { grid-template-columns: 1fr; }
	.wk-prod-row .wp-block-post-featured-image, .wk-prod-list > *:first-child .wk-prod-row .wp-block-post-featured-image { min-height: 220px; }
	.wk-prod-list > *:nth-child(even) .wk-prod-row .wp-block-post-featured-image { order: 0; }
}

/* =========================================================
   SERVICE cards (grid) + split rows (archive)
   ========================================================= */
.wk-svc-card {
	position: relative; overflow: hidden; border-radius: var(--wk-radius-lg);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid var(--wk-border-hairline);
	transition: transform 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint);
}
.wk-svc-card .wp-block-post-featured-image { margin: 0; position: relative; }
.wk-svc-card .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,19,29,0) 30%, rgba(15,19,29,0.85) 100%), linear-gradient(120deg, rgba(11,76,140,0.35), transparent 60%); }
.wk-svc-card .wp-block-post-featured-image img { transition: transform 0.9s var(--wk-ease-quart); width: 100%; }
.wk-svc-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.85), 0 0 40px -12px rgba(0,210,255,0.35); }
.wk-svc-card:hover .wp-block-post-featured-image img { transform: scale(1.06); }
.wk-svc-card::before { content: ""; position: absolute; inset: 0; z-index: 4; border-radius: inherit; padding: 1px; opacity: 0; background: linear-gradient(135deg, #00d2ff, #058eca 50%, transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; transition: opacity 0.5s var(--wk-ease-quint); pointer-events: none; }
.wk-svc-card:hover::before { opacity: 1; }

.wk-svc-split {
	display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden; border-radius: var(--wk-radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
	border: 1px solid var(--wk-border-hairline);
	transition: border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint), transform 0.5s var(--wk-ease-quint);
}
.wk-svc-split:hover { transform: translateY(-3px); border-color: rgba(0,210,255,0.4); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.85), 0 0 50px -20px rgba(0,210,255,0.25); }
.wk-svc-split .wp-block-post-featured-image { margin: 0; position: relative; min-height: 296px; height: 100%; overflow: hidden; }
.wk-svc-split .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-svc-split:hover .wp-block-post-featured-image img { transform: scale(1.05); }
.wk-svc-split .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(15,19,29,0.6)), linear-gradient(120deg, rgba(11,76,140,0.35), transparent 55%); }
.wk-svc-split .wk-svc-body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.wk-svc-list > *:nth-child(even) .wk-svc-split { grid-template-columns: 1fr 1.05fr; }
.wk-svc-list > *:nth-child(even) .wk-svc-split .wp-block-post-featured-image { order: 2; }
.wk-svc-list > *:nth-child(even) .wk-svc-split .wp-block-post-featured-image::after { background: linear-gradient(270deg, transparent 50%, rgba(15,19,29,0.6)), linear-gradient(300deg, rgba(11,76,140,0.35), transparent 55%); }
@media (max-width: 900px) {
	.wk-svc-split, .wk-svc-list > *:nth-child(even) .wk-svc-split { grid-template-columns: 1fr; }
	.wk-svc-split .wp-block-post-featured-image { min-height: 220px; }
	.wk-svc-list > *:nth-child(even) .wk-svc-split .wp-block-post-featured-image { order: 0; }
}

/* Step number + stat number */
.wk-step-num { font-family: var(--wp--preset--font-family--geist); font-size: 40px; font-weight: 600; line-height: 1; background: var(--wk-grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wk-stat-num { background: var(--wk-grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Chips premium */
.wk-chip { transition: border-color 0.3s var(--wk-ease-quint), background 0.3s, transform 0.3s; }
.wk-chip:hover { transform: translateY(-2px); }

/* ---------- Animated underline on nav ---------- */
.wk-header .wp-block-navigation .wp-block-navigation-item a {
	position: relative; padding-bottom: 3px;
	background-image: linear-gradient(var(--wp--preset--color--digital-cyan), var(--wp--preset--color--digital-cyan));
	background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
	transition: background-size 0.35s var(--wk-ease-quint), color 0.3s var(--wk-ease-quint);
}
.wk-header .wp-block-navigation .wp-block-navigation-item a:hover { background-size: 100% 1.5px; }

/* ---------- Button feedback ---------- */
.wp-element-button { transition: box-shadow 0.3s var(--wk-ease-quint), transform 0.18s var(--wk-ease-quint); }
.wp-element-button:active { transform: scale(0.97); }
.is-style-wk-primary .wp-block-button__link::after { content: "→"; margin-left: 8px; display: inline-block; transition: transform 0.3s var(--wk-ease-quint); }
.is-style-wk-primary .wp-block-button__link:hover::after { transform: translateX(4px); }

/* ---------- CONTACT FORM — custom-designed ---------- */
.wk-form .wpcf7-form, .wk-form form { display: block; }
.wk-form p { margin: 0 0 20px; }
.wk-form label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wp--preset--color--ink-muted); margin-bottom: 10px; }
.wk-form input[type="text"], .wk-form input[type="email"], .wk-form input[type="tel"], .wk-form select, .wk-form textarea {
	background: rgba(10,14,24,0.65); border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 16px 18px; font-size: 16px;
	transition: border-color 0.3s var(--wk-ease-quint), box-shadow 0.3s var(--wk-ease-quint), background 0.3s;
}
.wk-form input:hover, .wk-form select:hover, .wk-form textarea:hover { border-color: rgba(0,210,255,0.35); }
.wk-form input:focus, .wk-form select:focus, .wk-form textarea:focus { outline: none; background: rgba(10,14,24,0.9); border-color: var(--wp--preset--color--digital-cyan); box-shadow: 0 0 0 4px rgba(0,210,255,0.12), 0 0 24px -6px rgba(0,210,255,0.4); }
.wk-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.wk-form .wpcf7-submit { margin-top: 4px; padding: 16px 32px; font-size: 15px; border-radius: 12px; background: var(--wk-grad-brand); border: 0; color: #fff; font-family: var(--wp--preset--font-family--geist); font-weight: 600; cursor: pointer; transition: box-shadow 0.3s var(--wk-ease-quint), transform 0.18s; }
.wk-form .wpcf7-submit::after { content: "→"; margin-left: 8px; display: inline-block; transition: transform 0.3s var(--wk-ease-quint); }
.wk-form .wpcf7-submit:hover { box-shadow: var(--wk-glow-cyan-strong); }
.wk-form .wpcf7-submit:hover::after { transform: translateX(4px); }
.wpcf7-not-valid { border-color: var(--wp--preset--color--error) !important; }
.wpcf7-not-valid-tip { margin-top: 6px; font-size: 12px; }
.wpcf7-response-output { border-radius: 12px; padding: 14px 18px; font-size: 14px; backdrop-filter: blur(8px); }
.wpcf7 form.sent .wpcf7-response-output { background: rgba(0,210,255,0.08); }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { background: rgba(255,180,171,0.08); }

/* ---------- Scroll reveal (JS-gated) ---------- */
html.wk-js .wk-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--wk-ease-quint), transform 0.7s var(--wk-ease-quint); will-change: opacity, transform; }
html.wk-js .wk-reveal.is-visible { opacity: 1; transform: none; }
html.wk-js .wk-reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--wk-ease-quint), transform 0.6s var(--wk-ease-quint); }
html.wk-js .wk-reveal-stagger.is-visible > * { opacity: 1; transform: none; }
html.wk-js .wk-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.wk-js .wk-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
html.wk-js .wk-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
html.wk-js .wk-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
html.wk-js .wk-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Typography polish ---------- */
h1, h2 { letter-spacing: -0.02em; }
.wk-lead { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; color: var(--wp--preset--color--ink-muted); }

/* ---------- Balanced media ratios (prevent tall/dominant images) ---------- */
.wk-media-balanced { aspect-ratio: 4 / 3; }
.wk-media-balanced img { width: 100%; height: 100%; object-fit: cover; }
.wk-media-wide { aspect-ratio: 21 / 8; }
.wk-media-wide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Section separators + tone variation ---------- */
.wk-sep-top { border-top: 1px solid rgba(255,255,255,0.06); }
.wk-sep-glow::before {
	content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	width: min(680px, 80%); height: 1px; z-index: 1; pointer-events: none;
	background: linear-gradient(to right, transparent, rgba(0,210,255,0.5), transparent);
}
.wk-tone-a { background: linear-gradient(180deg, rgba(11,76,140,0.05), transparent 60%); }
.wk-tone-b { background: linear-gradient(180deg, transparent, rgba(0,210,255,0.035)); }

/* ---------- Hero: side-by-side info cards (replaces floaters) ---------- */
.wk-hero-visual { position: relative; display: block; }
.wk-hero-visual::before, .wk-hero-visual::after { z-index: 0; }
.wk-hero-frame { margin: 0 auto; width: 88%; }
.wk-hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.wk-hero-card {
	display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-radius: 16px;
	background: rgba(10,14,24,0.55); border: 1px solid rgba(0,210,255,0.22);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	transition: transform 0.4s var(--wk-ease-quint), border-color 0.4s var(--wk-ease-quint);
}
.wk-hero-card:hover { transform: translateY(-3px); border-color: rgba(0,210,255,0.45); }
.wk-hero-card .material-symbols-outlined { font-size: 26px; color: var(--wp--preset--color--digital-cyan); }
.wk-hero-card p { margin: 0; }
@media (max-width: 520px) { .wk-hero-cards { grid-template-columns: 1fr; } }

/* ---------- Process TIMELINE (fills width, no empty gaps) ---------- */
.wk-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.wk-timeline::before {
	content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 2px; z-index: 0;
	background: linear-gradient(to right, transparent, rgba(0,210,255,0.45) 12%, rgba(0,210,255,0.45) 88%, transparent);
}
.wk-timeline > * { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.wk-tl-node {
	display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px;
	background: linear-gradient(135deg, rgba(0,210,255,0.2), rgba(11,76,140,0.35)); border: 1px solid rgba(0,210,255,0.4);
	box-shadow: 0 0 0 6px rgba(15,19,29,1), inset 0 0 20px rgba(0,210,255,0.18);
	transition: transform 0.4s var(--wk-ease-quint), box-shadow 0.4s var(--wk-ease-quint);
}
.wk-tl-node .material-symbols-outlined { font-size: 26px; color: var(--wp--preset--color--digital-cyan); }
.wk-timeline > *:hover .wk-tl-node { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 0 6px rgba(15,19,29,1), inset 0 0 26px rgba(0,210,255,0.32), 0 0 20px -4px rgba(0,210,255,0.5); }
.wk-tl-step { font-family: var(--wp--preset--font-family--geist); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wp--preset--color--digital-cyan); margin: 0; }
@media (max-width: 860px) {
	.wk-timeline { grid-template-columns: 1fr; gap: 24px; padding-left: 8px; }
	.wk-timeline::before { top: 0; bottom: 0; left: 27px; right: auto; width: 2px; height: auto; background: linear-gradient(to bottom, transparent, rgba(0,210,255,0.45) 8%, rgba(0,210,255,0.45) 92%, transparent); }
	.wk-timeline > * { flex-direction: row; align-items: flex-start; }
	.wk-timeline > * .wk-tl-text { padding-top: 4px; }
}

/* ---------- AI Technologies — asymmetric split ---------- */
.wk-tech-split { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.wk-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wk-tech-item {
	display: flex; gap: 14px; align-items: flex-start; padding: 22px; border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
	border: 1px solid var(--wk-border-hairline);
	transition: transform 0.45s var(--wk-ease-quint), border-color 0.45s var(--wk-ease-quint), box-shadow 0.45s var(--wk-ease-quint);
}
.wk-tech-item:hover { transform: translateY(-4px); border-color: rgba(0,210,255,0.4); box-shadow: 0 24px 50px -28px rgba(0,0,0,0.85); }
.wk-tech-item p { margin: 0; }
@media (max-width: 860px) { .wk-tech-split { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .wk-tech-grid { grid-template-columns: 1fr; } }

/* ---------- Services — LIGHT enterprise list (no heavy images) ---------- */
.wk-svc-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 32px; }
.wk-svc-light > * {
	display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start;
	padding: 22px 4px; border-top: 1px solid rgba(255,255,255,0.07);
	transition: background 0.3s var(--wk-ease-quint);
}
.wk-svc-light > *:hover { background: linear-gradient(90deg, rgba(0,210,255,0.05), transparent); }
.wk-svc-light .wk-svc-ic {
	grid-row: span 3; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, rgba(0,210,255,0.16), rgba(11,76,140,0.24)); border: 1px solid rgba(0,210,255,0.3);
}
.wk-svc-light .wk-svc-ic .material-symbols-outlined { font-size: 24px; color: var(--wp--preset--color--digital-cyan); }
.wk-svc-light .wp-block-post-title { margin: 0; }
.wk-svc-light .wp-block-post-title a { transition: color 0.3s var(--wk-ease-quint); }
.wk-svc-light .wp-block-post-title a:hover { color: var(--wp--preset--color--digital-cyan); }
.wk-svc-light .wp-block-post-excerpt { margin: 0; }
.wk-svc-light .wp-block-post-excerpt p { margin: 6px 0 0; }
@media (max-width: 900px) { .wk-svc-light { grid-template-columns: repeat(2, 1fr); column-gap: 28px; } }
@media (max-width: 560px) { .wk-svc-light { grid-template-columns: 1fr; } }

/* =========================================================
   v4 — process redesign, editorial products, adaptive grids, nav dropdown
   ========================================================= */

/* ---------- Adaptive auto-fit grid (never leaves empty columns) ---------- */
.wk-auto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; margin: 0; padding: 0; list-style: none; }
.wk-auto-grid > li { margin: 0; }
.wk-auto-grid-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.wk-auto-grid-sm > li { margin: 0; }

/* ---------- HOW WE WORK — professional process (card + connector flow) ---------- */
.wk-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.wk-process-step {
	position: relative; display: flex; flex-direction: column; gap: 14px;
	padding: 30px 26px; border-radius: 18px;
	background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: transform 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-process-step:hover { transform: translateY(-6px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85), 0 0 34px -12px rgba(0,210,255,0.3); }
.wk-process-head { display: flex; align-items: center; justify-content: space-between; }
.wk-process-num { font-family: var(--wp--preset--font-family--geist); font-size: 30px; font-weight: 600; line-height: 1; color: rgba(255,255,255,0.10); letter-spacing: -0.02em; }
.wk-process-step .wp-block-heading { margin: 0; }
.wk-process-step p { margin: 0; }
/* Flow connector between cards (desktop) */
.wk-process-step:not(:last-child)::after {
	content: ""; position: absolute; top: 56px; right: -13px; width: 26px; height: 2px; z-index: 2;
	background: linear-gradient(to right, rgba(0,210,255,0.6), rgba(0,210,255,0.1));
}
.wk-process-step:not(:last-child)::before {
	content: ""; position: absolute; top: 52px; right: -15px; width: 8px; height: 8px; border-radius: 50%; z-index: 3;
	background: var(--wp--preset--color--digital-cyan); box-shadow: 0 0 10px rgba(0,210,255,0.8);
}
@media (max-width: 980px) { .wk-process { grid-template-columns: repeat(2, 1fr); } .wk-process-step:not(:last-child)::after, .wk-process-step:not(:last-child)::before { display: none; } }
@media (max-width: 520px) { .wk-process { grid-template-columns: 1fr; } }

/* ---------- PRODUCTS — editorial featured + adaptive rest ---------- */
.wk-prod-feature .wp-block-post-template, .wk-feat-loop { margin: 0; padding: 0; list-style: none; }
.wk-prod-feature .wp-block-post-template > li { margin: 0; }
.wk-prod-feature .wk-feat {
	display: grid; grid-template-columns: 1.25fr 1fr; overflow: hidden; border-radius: var(--wk-radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.09); position: relative;
	transition: border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-prod-feature .wk-feat:hover { border-color: rgba(0,210,255,0.45); box-shadow: 0 50px 120px -50px rgba(0,0,0,0.9), 0 0 70px -24px rgba(0,210,255,0.32); }
.wk-prod-feature .wk-feat .wp-block-post-featured-image { margin: 0; position: relative; min-height: 380px; overflow: hidden; }
.wk-prod-feature .wk-feat .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-prod-feature .wk-feat:hover .wp-block-post-featured-image img { transform: scale(1.05); }
.wk-prod-feature .wk-feat .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(15,19,29,0.55)), linear-gradient(120deg, rgba(11,76,140,0.35), transparent 55%); }
.wk-feat-body { padding: clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.wk-feat-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: rgba(0,210,255,0.12); border: 1px solid rgba(0,210,255,0.35); color: var(--wp--preset--color--digital-cyan); font-family: var(--wp--preset--font-family--geist); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 860px) { .wk-prod-feature .wk-feat { grid-template-columns: 1fr; } .wk-prod-feature .wk-feat .wp-block-post-featured-image { min-height: 240px; } }

.wk-prod-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px; margin: 24px 0 0; padding: 0; list-style: none; }
.wk-prod-cards > * { display: flex; margin: 0; }
.wk-prod-cards .wk-pcard { flex: 1;
	position: relative; overflow: hidden; border-radius: var(--wk-radius-lg); display: flex; flex-direction: column;
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08); padding-bottom: 26px;
	transition: transform 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-prod-cards .wk-pcard:hover { transform: translateY(-6px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.85), 0 0 40px -12px rgba(0,210,255,0.32); }
.wk-prod-cards .wk-pcard .wp-block-post-featured-image { margin: 0 0 16px; position: relative; overflow: hidden; }
.wk-prod-cards .wk-pcard .wp-block-post-featured-image img { transition: transform 0.9s var(--wk-ease-quart); width: 100%; height: 100%; object-fit: cover; }
.wk-prod-cards .wk-pcard:hover .wp-block-post-featured-image img { transform: scale(1.06); }
.wk-prod-cards .wk-pcard .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,19,29,0.7)); }
/* consistent internal rhythm: side padding + tidy vertical spacing */
.wk-prod-cards .wk-pcard > :not(.wp-block-post-featured-image) { margin-left: 26px !important; margin-right: 26px !important; margin-block-start: 0 !important; }
.wk-prod-cards .wk-pcard > :not(.wp-block-post-featured-image) + :not(.wp-block-post-featured-image) { margin-top: 8px !important; }

/* ---------- Navigation dropdown (glass submenu) ---------- */
.wk-header .wp-block-navigation .wp-block-navigation-submenu > .wp-block-navigation-item__content { display: inline-flex; align-items: center; }
.wk-header .wp-block-navigation .wp-block-navigation__submenu-container {
	background: rgba(12, 16, 26, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--wk-border-teal); border-radius: 14px; padding: 8px; min-width: 240px;
	box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9), 0 0 40px -18px rgba(0,210,255,0.3);
	margin-top: 10px;
}
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content { border-radius: 9px; padding: 10px 14px; background-size: 0 0 !important; transition: background-color 0.25s var(--wk-ease-quint), color 0.25s; }
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover { background-color: rgba(0,210,255,0.10); color: var(--wp--preset--color--digital-cyan); }
.wk-header .wp-block-navigation .wp-block-navigation__submenu-icon { margin-left: 4px; }

/* =========================================================
   v5 — visual consistency: equal-height cards, premium dropdown,
   unified spacing, responsive polish
   ========================================================= */

/* ---------- Equal-height cards across every grid ---------- */
.wk-auto-grid, .wk-tech-grid, .wk-process, .wk-svc-cards, .wk-prod-cards { align-items: stretch; }
.wk-auto-grid, .wk-tech-grid, .wk-process, .wk-svc-cards, .wk-prod-cards { grid-auto-rows: 1fr; }
/* Query-loop grids: the <li> is the grid item; make the inner card fill it. */
.wk-svc-cards > li, .wk-prod-cards > li, .wk-auto-grid > li { display: flex; }
.wk-svc-cards > li > *, .wk-prod-cards > li > *, .wk-auto-grid > li > * { flex: 1; min-width: 0; }
/* Cards render as equal-height flex columns (direct grid children stretch to the row). */
.wk-card, .wk-prodx-card, .wk-scard, .wk-pcard { display: flex; flex-direction: column; height: 100%; }
.wk-tech-item, .wk-process-step { height: 100%; }

/* Uniform baseline: these containers are display:grid applied to WordPress FLOW
   groups, so core adds `margin-block-start` (block-gap) to every child except the
   first — pushing the other cards down while the first stays put. We space with
   `gap` instead, so zero those child margins → every card in a row aligns exactly. */
.wk-auto-grid > *,
.wk-tech-grid > *,
.wk-tech-split > *,
.wk-process > *,
.wk-svc-cards > *,
.wk-prod-cards > *,
.wk-svc-split > *,
.wk-hero-cards > *,
.wk-prod-editorial > *,
.wk-ed-stack .wp-block-post-template > * { margin-block-start: 0 !important; }

/* ---------- Products archive — editorial (1 large featured + 2 stacked beside) ---------- */
.wk-prod-editorial { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: stretch; }
.wk-prod-editorial > * { min-width: 0; }
.wk-prod-editorial .wp-block-query, .wk-prod-editorial .wp-block-post-template { height: 100%; margin: 0; padding: 0; list-style: none; }
.wk-prod-editorial .wp-block-post-template > li { margin: 0; height: 100%; display: flex; }
.wk-ed-body { display: flex; flex-direction: column; gap: 14px; }
.wk-ed-body > * { margin: 0; }
/* Large featured card (image fills remaining height) */
.wk-ed-feature .wp-block-post-template { display: flex; }
.wk-ed-card-lg {
	display: flex; flex-direction: column; flex: 1; overflow: hidden; border-radius: var(--wk-radius-xl);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.09);
	transition: border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-ed-card-lg:hover { border-color: rgba(0,210,255,0.45); box-shadow: 0 50px 110px -50px rgba(0,0,0,0.9), 0 0 64px -24px rgba(0,210,255,0.3); }
.wk-ed-card-lg .wp-block-post-featured-image { margin: 0; flex: 0 0 auto; height: clamp(220px, 24vw, 300px); position: relative; overflow: hidden; }
.wk-ed-card-lg .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-ed-card-lg:hover .wp-block-post-featured-image img { transform: scale(1.05); }
.wk-ed-card-lg .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,19,29,0.6)); }
/* Body absorbs the remaining column height so the featured card matches the two stacked cards */
.wk-ed-card-lg .wk-ed-body { padding: clamp(26px, 3vw, 38px); flex: 1; justify-content: center; }
/* Two small stacked horizontal cards */
.wk-ed-stack .wp-block-post-template { display: flex; flex-direction: column; gap: 24px; }
.wk-ed-stack .wp-block-post-template > li { flex: 1; }
.wk-ed-card-sm {
	display: grid; grid-template-columns: 42% 1fr; flex: 1; overflow: hidden; border-radius: var(--wk-radius-lg);
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border: 1px solid rgba(255,255,255,0.08);
	transition: border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint), transform 0.5s var(--wk-ease-quint);
}
.wk-ed-card-sm:hover { transform: translateY(-3px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85), 0 0 34px -12px rgba(0,210,255,0.28); }
.wk-ed-card-sm .wp-block-post-featured-image { margin: 0; position: relative; overflow: hidden; min-height: 150px; }
.wk-ed-card-sm .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--wk-ease-quart); }
.wk-ed-card-sm:hover .wp-block-post-featured-image img { transform: scale(1.06); }
.wk-ed-card-sm .wp-block-post-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(15,19,29,0.45)); }
.wk-ed-card-sm .wk-ed-body { padding: 22px 24px; justify-content: center; gap: 8px; }
@media (max-width: 920px) {
	.wk-prod-editorial { grid-template-columns: 1fr; }
	.wk-ed-card-lg .wp-block-post-featured-image { min-height: 220px; }
}
@media (max-width: 560px) {
	.wk-ed-card-sm { grid-template-columns: 1fr; }
	.wk-ed-card-sm .wp-block-post-featured-image { min-height: 180px; }
}

/* ---------- Stat cards (metrics band) ---------- */
.wk-stat {
	display: flex; flex-direction: column; align-items: flex-start; gap: 14px; height: 100%;
	padding: 30px 28px; border-radius: 18px;
	background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: transform 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-stat:hover { transform: translateY(-5px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85), 0 0 34px -12px rgba(0,210,255,0.3); }
.wk-stat > * { margin: 0; }
.wk-stat .wk-stat-num { line-height: 1; }

/* ---------- Services — uniform equal-height cards + bottom-aligned CTA ---------- */
.wk-svc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; margin: 0; padding: 0; list-style: none; }
.wk-svc-cards > li { margin: 0; }
.wk-scard {
	display: flex; flex-direction: column; gap: 14px; height: 100%;
	padding: 28px; border-radius: var(--wk-radius-lg);
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: transform 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-scard:hover { transform: translateY(-6px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85), 0 0 34px -12px rgba(0,210,255,0.3); }
.wk-scard .wp-block-post-title { margin: 0; }
.wk-scard .wp-block-post-title a { transition: color 0.3s var(--wk-ease-quint); }
.wk-scard .wp-block-post-title a:hover { color: var(--wp--preset--color--digital-cyan); }
.wk-scard .wp-block-post-excerpt { margin: 0; }
.wk-scard .wp-block-post-excerpt p { margin: 0; }
.wk-scard .wp-block-read-more { margin-top: auto; align-self: flex-start; color: var(--wp--preset--color--digital-cyan); font-family: var(--wp--preset--font-family--geist); font-size: 14px; text-decoration: none; }
.wk-scard .wp-block-read-more:hover { text-decoration: underline; }

/* ---------- Products showcase — compact card layout ---------- */
.wk-prodx-card {
	display: flex; flex-direction: column; gap: 10px; height: 100%;
	padding: 26px; border-radius: var(--wk-radius-lg);
	background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: transform 0.5s var(--wk-ease-quint), border-color 0.5s var(--wk-ease-quint), box-shadow 0.5s var(--wk-ease-quint);
}
.wk-prodx-card:hover { transform: translateY(-5px); border-color: rgba(0,210,255,0.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85), 0 0 32px -12px rgba(0,210,255,0.3); }
.wk-prodx-card .wk-prodx-head { display: flex; align-items: center; gap: 12px; }
.wk-prodx-card .wk-prodx-head .wk-eyebrow { margin: 0; }
.wk-prodx-card h3 { margin: 0; }
.wk-prodx-card p { margin: 0; }
.wk-prodx-card .wk-prodx-link { margin-top: auto; }

/* =========================================================
   UNIFIED SECTION-HEADER RHYTHM — one scale, applied site-wide.
   Eyebrow → Title → Description → (content), identical everywhere.
   (Card titles are h3, so these h1/h2-scoped rules never touch cards.)
   ========================================================= */
/* eyebrow → section title */
.wk-section:not(.wk-hero) .wk-eyebrow + h1,
.wk-section:not(.wk-hero) .wk-eyebrow + h2 { margin-top: 12px !important; }
/* section title → description */
.wk-section:not(.wk-hero) h1 + .wk-lead,
.wk-section:not(.wk-hero) h2 + .wk-lead,
.wk-section:not(.wk-hero) h1.wk-accent + .wk-lead,
.wk-section:not(.wk-hero) h2.wk-accent + .wk-lead { margin-top: 18px !important; }
/* the accent underline hugs its heading consistently */
.wk-section h1.wk-accent::after,
.wk-section h2.wk-accent::after { margin-top: 14px; }
/* section header block → the content below it (cards / grid / image) */
.wk-section .wk-intro { margin-bottom: clamp(28px, 3.2vw, 40px) !important; }
.wk-section .wk-intro > * { margin-block-start: 0; }
/* bare section titles (no wrapper) get the same header→content gap */
.wk-section > .wp-block-heading:first-child,
.wk-section > .alignwide.wp-block-heading { margin-bottom: clamp(28px, 3.2vw, 40px) !important; }

/* ---------- Premium NAVIGATION DROPDOWN (robust hover + unified styling) ----------
   The WordPress Navigation block uses the Interactivity API (JS mouseenter/leave +
   click + click-outside), not pure CSS :hover. The real bug was a dead gap between
   the parent item and the panel; a transparent hover bridge keeps the pointer over a
   hoverable descendant so neither the CSS nor the JS ever fires a premature close. */
.wk-header .wp-block-navigation .has-child { position: relative; }

/* One consistent dark-glass surface (no white/inconsistent item backgrounds) */
.wk-header .wp-block-navigation__submenu-container {
	background: linear-gradient(180deg, rgba(26,31,44,0.98), rgba(18,22,32,0.98)) !important;
	backdrop-filter: blur(28px) saturate(1.2); -webkit-backdrop-filter: blur(28px) saturate(1.2);
	border: 1px solid rgba(0,210,255,0.22) !important;
	border-radius: 16px !important; padding: 8px !important; min-width: 306px;
	box-shadow: 0 40px 84px -28px rgba(0,0,0,0.72), 0 0 52px -20px rgba(0,210,255,0.28), inset 0 1px 0 rgba(255,255,255,0.06) !important;
	margin-top: 12px !important; position: absolute; left: 0;
	transform: translateY(6px); transition: transform 0.26s var(--wk-ease-quint), opacity 0.26s var(--wk-ease-quint);
}
/* Transparent hover bridge covering the 12px gap → cursor never leaves the item */
.wk-header .wp-block-navigation__submenu-container::before {
	content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 18px; background: transparent;
}
/* Glowing top accent */
.wk-header .wp-block-navigation__submenu-container::after {
	content: ""; position: absolute; top: 0; left: 16px; right: 16px; height: 1px;
	background: linear-gradient(to right, transparent, rgba(0,210,255,0.55), transparent);
}
.wk-header .wp-block-navigation-submenu:hover > .wp-block-navigation__submenu-container,
.wk-header .wp-block-navigation-submenu:focus-within > .wp-block-navigation__submenu-container { transform: translateY(0); }

/* Items: uniform — transparent by default, cyan tint on hover, consistent text */
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item { padding: 0 !important; background: transparent !important; }
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	display: block; width: 100%; border-radius: 11px; padding: 12px 16px !important; margin: 2px 0;
	background: transparent !important; color: var(--wp--preset--color--ink) !important; background-size: 0 0 !important;
	transition: background-color 0.25s var(--wk-ease-quint), transform 0.25s var(--wk-ease-quint), color 0.25s;
}
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__label { font-family: var(--wp--preset--font-family--montserrat); font-weight: 600; font-size: 15px; color: #fff; }
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__description { display: block; font-family: var(--wp--preset--font-family--geist); font-weight: 400; font-size: 12px; letter-spacing: 0.02em; color: var(--wp--preset--color--ink-muted); margin-top: 3px; }
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible { background: rgba(0,210,255,0.12) !important; transform: translateX(3px); }
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item:hover .wp-block-navigation-item__label,
.wk-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover .wp-block-navigation-item__label { color: var(--wp--preset--color--digital-cyan) !important; }
/* Chevron */
.wk-header .wp-block-navigation .wp-block-navigation__submenu-icon { transition: transform 0.3s var(--wk-ease-quint); }
.wk-header .wp-block-navigation-submenu:hover > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon { transform: rotate(180deg); }

/* Desktop show/hide controlled here (hover + focus + JS hover-intent `wk-open`),
   so the panel stays open across the gap and for a grace period after leaving. */
@media (min-width: 783px) {
	.wk-header .wp-block-navigation__submenu-container { opacity: 0; visibility: hidden; pointer-events: none; }
	.wk-header .has-child:hover > .wp-block-navigation__submenu-container,
	.wk-header .has-child:focus-within > .wp-block-navigation__submenu-container,
	.wk-header .has-child.wk-open > .wp-block-navigation__submenu-container { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

/* ---------- Responsive polish ---------- */
@media (max-width: 782px) {
	/* Mobile nav: submenu inline, not a floating panel */
	.wk-header .wp-block-navigation__submenu-container { position: static !important; transform: none !important; margin-top: 6px !important; box-shadow: none !important; background: rgba(255,255,255,0.03) !important; min-width: 0; }
	/* Buttons stretch nicely, never overflow */
	.wp-block-buttons { flex-wrap: wrap; }
	.wk-hero .wp-block-buttons .wp-block-button { flex: 1 1 auto; }
	.wk-hero .wp-block-button__link { display: block; text-align: center; }
	/* Section titles a touch tighter */
	.wk-section .wk-intro { margin-bottom: 28px; }
}
@media (max-width: 600px) {
	.wk-scard, .wk-prodx-card, .wk-process-step, .wk-tech-item { padding: 22px; }
	.wk-feat-body, .wk-svc-body, .wk-prod-body { padding: 26px 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.wk-float, .wk-float-slow, .wk-fc-1, .wk-fc-2, .wk-fc-3, .wk-live-dot,
	.wk-hero-visual::before, .wk-hero-visual::after, .wk-anim-gradient::before { animation: none !important; }
	.wk-reveal, .wk-reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
	.wk-media img, .wk-svc-card, .wk-svc-split, .wk-prod-row, .wk-process-step, .wk-prod-cards .wk-pcard, .wk-prod-feature .wk-feat { transition: none !important; }
	h2.wk-accent::after, h1.wk-accent::after { transition: none !important; }
}
