/*
 * CyberUnify — site styles.
 *
 * One stylesheet, no framework, no build step. Organised as: tokens, reset,
 * primitives, layout, components, then page-specific blocks.
 *
 * Colour decisions worth knowing:
 *   Dark sections carry the brand; light sections carry the reading. Alternating
 *   them gives the page rhythm without needing decoration. Cyan is reserved for
 *   interaction and emphasis — it never appears as a large fill, which is what
 *   keeps it readable as a signal.
 */

/* =========================================================================
   1. Tokens
   ====================================================================== */

:root {
	/* Brand */
	--navy-900: #060e1b;
	--navy-800: #071120;
	--navy-700: #0b1b32;
	--navy-600: #102542;
	--navy-500: #16304f;
	--navy-400: #21426a;

	--cyan-400: #59d2ee;
	--cyan-500: #45c8e8;
	--cyan-600: #1b8fb5;
	--cyan-700: #14708f;

	--teal-500: #2dc1a6;

	/* Neutrals */
	--white: #ffffff;
	--surface: #f6f8fb;
	--surface-2: #eef2f7;
	--hairline: #dde4ec;
	--slate-700: #33475f;
	--slate-600: #4a6076;
	--slate-500: #64798f;
	--slate-300: #a9bace;
	--slate-200: #c9d6e3;

	--ink: #0a1628;

	/* Type */
	--font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-display: "Segoe UI Semibold", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Menlo, Consolas, monospace;

	--fs-xs: 0.8125rem;
	--fs-sm: 0.9375rem;
	--fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
	--fs-lg: clamp(1.125rem, 1.06rem + 0.3vw, 1.3125rem);
	--fs-xl: clamp(1.375rem, 1.25rem + 0.6vw, 1.75rem);
	--fs-2xl: clamp(1.75rem, 1.5rem + 1.1vw, 2.5rem);
	--fs-3xl: clamp(2.125rem, 1.7rem + 1.9vw, 3.25rem);
	--fs-4xl: clamp(2.5rem, 1.85rem + 2.9vw, 4rem);

	/* Space */
	--sp-1: 0.5rem;
	--sp-2: 1rem;
	--sp-3: 1.5rem;
	--sp-4: 2.5rem;
	--sp-5: 4rem;
	--sp-6: 6rem;
	--sp-7: 8rem;

	/* Shell */
	--shell: 1200px;
	--shell-narrow: 760px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);

	/* Effects */
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-card: 0 1px 2px rgb(10 22 40 / 4%), 0 10px 28px rgb(10 22 40 / 6%);
	--shadow-lift: 0 2px 6px rgb(10 22 40 / 7%), 0 20px 48px rgb(10 22 40 / 11%);
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================================
   2. Reset
   ====================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: clip;
	max-width: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.65;
	color: var(--slate-700);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	opacity: 1 !important;
	overflow-x: clip;
	max-width: 100%;
}

@supports not (overflow: clip) {
	html, body { overflow-x: hidden; }
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.022em;
	color: var(--ink);
	text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* Elementor Canvas / legacy .cu-page: keep author heading colours */
body.elementor-template-canvas h1,
body.elementor-template-canvas h2,
body.elementor-template-canvas h3,
body.elementor-template-canvas h4,
body.elementor-template-canvas h5,
body.elementor-template-canvas h6,
.cu-page h1,
.cu-page h2,
.cu-page h3,
.cu-page h4,
.cu-page h5,
.cu-page h6 {
	color: inherit;
}

a { color: var(--cyan-700); text-underline-offset: 0.18em; }
a:hover { color: var(--cyan-600); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

button { font: inherit; color: inherit; }

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--cyan-600);
	outline-offset: 3px;
	border-radius: 3px;
}

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

.cu-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 0.75rem 1.25rem;
	background: var(--cyan-500);
	color: var(--navy-800);
	font-weight: 700;
	text-decoration: none;
}
.cu-skip:focus { left: 0.5rem; top: 0.5rem; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* =========================================================================
   3. Layout primitives
   ====================================================================== */

.cu-shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.cu-main { display: block; }

.cu-section { padding-block: clamp(3.5rem, 7vw, var(--sp-6)); }

.cu-section--muted { background: var(--surface); }

.cu-section--dark {
	background: var(--navy-800);
	color: var(--slate-300);
}
.cu-section--dark h1, .cu-section--dark h2, .cu-section--dark h3 { color: var(--white); }

.cu-section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.cu-section__head--center { margin-inline: auto; text-align: center; }
.cu-section__head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--sp-3);
	max-width: none;
	flex-wrap: wrap;
}

.cu-section__title { font-size: var(--fs-2xl); }
.cu-section__lede {
	margin-top: var(--sp-2);
	font-size: var(--fs-lg);
	color: var(--slate-600);
}
.cu-section--dark .cu-section__lede { color: var(--slate-300); }

.cu-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 var(--sp-2);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cyan-700);
}
.cu-section--dark .cu-eyebrow,
.cu-hero .cu-eyebrow,
.cu-cta .cu-eyebrow { color: var(--cyan-400); }

.cu-grid { display: grid; gap: var(--sp-3); }
@media (min-width: 640px) { .cu-grid--3, .cu-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cu-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.cu-icon { flex: none; }

/* =========================================================================
   4. Buttons and links
   ====================================================================== */

.cu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.6rem;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.cu-btn--sm { padding: 0.65rem 1.1rem; font-size: var(--fs-xs); }

.cu-btn--primary {
	background: var(--cyan-500);
	border-color: var(--cyan-500);
	color: var(--navy-800);
}
.cu-btn--primary:hover {
	background: var(--cyan-400);
	border-color: var(--cyan-400);
	color: var(--navy-900);
	transform: translateY(-1px);
}

.cu-btn--ghost {
	background: transparent;
	border-color: currentColor;
	color: var(--ink);
}
.cu-hero .cu-btn--ghost,
.cu-cta .cu-btn--ghost,
.cu-r7 .cu-btn--ghost,
.cu-section--dark .cu-btn--ghost { color: var(--white); }
.cu-btn--ghost:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--navy-800);
}

.cu-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 700;
	text-decoration: none;
	color: var(--cyan-700);
}
.cu-link:hover { gap: 0.65rem; }
.cu-link .cu-icon { transition: transform 160ms var(--ease); }

/* =========================================================================
   5. Alert bar
   ====================================================================== */

.cu-alertbar {
	background: var(--navy-900);
	color: var(--slate-300);
	font-size: var(--fs-xs);
	border-bottom: 1px solid rgb(255 255 255 / 7%);
}
.cu-alertbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-2);
	flex-wrap: wrap;
	padding-block: 0.6rem;
}
.cu-alertbar__label { display: inline-flex; align-items: center; gap: 0.45rem; }
.cu-alertbar__label .cu-icon { color: var(--cyan-400); }
.cu-alertbar__link { color: var(--white); text-decoration: none; }
.cu-alertbar__link:hover { color: var(--cyan-400); }

/* =========================================================================
   6. Header
   ====================================================================== */

.cu-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(7 17 32 / 97%);
	border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.cu-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	min-height: 68px;
}

.cu-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-decoration: none;
	color: var(--white);
}
.cu-logo__mark {
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	border-radius: 9px;
	background: linear-gradient(145deg, var(--cyan-500), var(--cyan-700));
	color: var(--navy-900);
}
.cu-logo__cyber { color: var(--white); }
.cu-logo__unify { color: var(--cyan-500); }

.custom-logo-link { display: inline-block; }
.custom-logo { max-height: 40px; width: auto; }

/* Navigation */

.cu-nav { display: flex; align-items: center; gap: var(--sp-3); }

.cu-nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cu-nav__list a {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	text-decoration: none;
	color: var(--slate-200);
	white-space: nowrap;
}
.cu-nav__list a:hover,
.cu-nav__list .current-menu-item > a { color: var(--white); }

.cu-nav__actions { display: flex; align-items: center; gap: var(--sp-2); }

.cu-nav__phone {
	display: none;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-sm);
	font-weight: 600;
	text-decoration: none;
	color: var(--slate-200);
	white-space: nowrap;
}
.cu-nav__phone:hover { color: var(--white); }
@media (min-width: 1100px) { .cu-nav__phone { display: inline-flex; } }

/* Submenus */

.cu-nav__list .sub-menu {
	position: absolute;
	min-width: 15rem;
	margin: 0.6rem 0 0;
	padding: 0.5rem;
	list-style: none;
	background: var(--navy-700);
	border: 1px solid var(--navy-500);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lift);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 140ms var(--ease), transform 140ms var(--ease), visibility 140ms;
}
.cu-nav__list > li { position: relative; }
.cu-nav__list > li:hover > .sub-menu,
.cu-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.cu-nav__list .sub-menu a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	white-space: normal;
}
.cu-nav__list .sub-menu a:hover { background: var(--navy-500); }

/* Burger */

.cu-burger {
	display: grid;
	place-items: center;
	position: relative;
	z-index: 220;
	width: 42px; height: 42px;
	background: transparent;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: var(--radius-sm);
	cursor: pointer;
}
.cu-burger__bars,
.cu-burger__bars::before,
.cu-burger__bars::after {
	display: block;
	width: 18px; height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 180ms var(--ease), opacity 120ms linear;
}
.cu-burger__bars { position: relative; }
.cu-burger__bars::before,
.cu-burger__bars::after { content: ""; position: absolute; left: 0; }
.cu-burger__bars::before { top: -6px; }
.cu-burger__bars::after { top: 6px; }

.cu-burger[aria-expanded="true"] .cu-burger__bars { background: transparent; }
.cu-burger[aria-expanded="true"] .cu-burger__bars::before { transform: translateY(6px) rotate(45deg); }
.cu-burger[aria-expanded="true"] .cu-burger__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1024px) {
	.cu-burger { display: none; }
}

@media (max-width: 1023px) {
	.cu-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		z-index: 200;
		width: min(22rem, 88vw);
		max-width: 100%;
		height: 100vh;
		height: 100dvh;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: var(--sp-3);
		padding: 5.5rem var(--sp-3) var(--sp-3);
		background: var(--navy-800);
		border-left: 1px solid var(--navy-500);
		overflow-x: hidden;
		overflow-y: auto;
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		transition: transform 240ms var(--ease), visibility 240ms;
	}
	.cu-nav.is-open {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
	}

	body.cu-nav-open::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 190;
		background: rgb(6 14 27 / 55%);
	}

	.cu-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.cu-nav__list a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--navy-600); font-size: var(--fs-base); }

	.cu-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		border: 0;
		padding: 0 0 0 var(--sp-2);
		margin: 0;
	}

	.cu-nav__actions { flex-direction: column; align-items: stretch; margin-top: auto; padding-top: var(--sp-3); }
	.cu-nav__actions .cu-btn { width: 100%; }
	.cu-nav__phone { display: inline-flex; }
}

/* =========================================================================
   7. Hero
   ====================================================================== */

.cu-hero {
	position: relative;
	overflow: hidden;
	background: var(--navy-800);
	color: var(--slate-300);
	padding-block: clamp(3.5rem, 9vw, 7rem);
}

/* A single soft radial rather than a background image: no request, no LCP
   penalty, and it scales to any viewport without art direction. */
.cu-hero__glow {
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 120%;
	background:
		radial-gradient(60% 55% at 72% 18%, rgb(69 200 232 / 16%), transparent 68%),
		radial-gradient(45% 45% at 12% 8%, rgb(45 193 166 / 10%), transparent 70%);
	pointer-events: none;
}

.cu-hero__inner { position: relative; max-width: 60rem; }

.cu-hero__title {
	font-size: var(--fs-4xl);
	color: var(--white);
	max-width: 20ch;
}

.cu-hero__lede {
	margin-top: var(--sp-3);
	max-width: 58ch;
	font-size: var(--fs-lg);
	color: var(--slate-300);
}

.cu-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin-top: var(--sp-4);
}

.cu-hero__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-3);
	margin: var(--sp-5) 0 0;
	padding-top: var(--sp-4);
	border-top: 1px solid rgb(255 255 255 / 12%);
}
@media (min-width: 480px) {
	.cu-hero__stats {
		grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	}
}

@media (max-width: 639px) {
	.cu-hero__actions,
	.cu-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.cu-hero__actions .cu-btn,
	.cu-cta__actions .cu-btn {
		width: 100%;
	}
	.cu-hero {
		padding-block: clamp(2.5rem, 8vw, 4rem);
	}
	.cu-section {
		padding-block: clamp(2.75rem, 8vw, 4.5rem);
	}
}
.cu-stat { margin: 0; }
.cu-stat__value {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1.1;
	color: var(--cyan-400);
}
.cu-stat__label {
	margin: 0.35rem 0 0;
	font-size: var(--fs-sm);
	color: var(--slate-300);
}

/* =========================================================================
   8. Trust bar
   ====================================================================== */

.cu-trustbar {
	background: var(--navy-900);
	border-bottom: 1px solid rgb(255 255 255 / 8%);
	padding-block: var(--sp-3);
}
.cu-trustbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	flex-wrap: wrap;
}
.cu-trustbar__label {
	margin: 0;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--slate-500);
}
.cu-trustbar__marks {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}
.cu-trustbar__mark {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--slate-300);
}
.cu-trustbar__badge img { max-height: 40px; width: auto; }

/* =========================================================================
   9. Cards
   ====================================================================== */

.cu-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--hairline);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: box-shadow 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}
.cu-card:hover {
	box-shadow: var(--shadow-lift);
	transform: translateY(-3px);
	border-color: var(--slate-200);
}

.cu-card--service { padding: var(--sp-3); }

.cu-card__icon {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	margin-bottom: var(--sp-2);
	border-radius: 11px;
	background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
	color: var(--cyan-400);
}

.cu-card__title {
	font-size: var(--fs-xl);
	margin-bottom: 0.6rem;
}
.cu-card__title a { color: inherit; text-decoration: none; }

/* Stretch the title link over the whole card so the entire surface is
   clickable, while the accessible name stays just the title. */
.cu-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}
.cu-card { position: relative; }

.cu-card__body {
	font-size: var(--fs-sm);
	color: var(--slate-600);
	margin-bottom: var(--sp-2);
}

.cu-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 700;
	color: var(--cyan-700);
}
.cu-card:hover .cu-card__more { gap: 0.7rem; }
.cu-card__more .cu-icon { transition: transform 160ms var(--ease); }

.cu-card--post .cu-card__inner { padding: var(--sp-3); display: flex; flex-direction: column; flex: 1; }
.cu-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.cu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease); }
.cu-card:hover .cu-card__media img { transform: scale(1.03); }

.cu-card__meta {
	margin-bottom: 0.5rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--slate-500);
}

/* =========================================================================
   10. Split / pillars
   ====================================================================== */

.cu-split { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 960px) { .cu-split { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }

.cu-split__lead .cu-btn { margin-top: var(--sp-3); }

.cu-pillars {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
}
@media (min-width: 640px) { .cu-pillars { grid-template-columns: repeat(2, 1fr); } }

.cu-pillar {
	padding: var(--sp-3);
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--radius);
}
.cu-pillar__icon {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	margin-bottom: var(--sp-2);
	border-radius: 10px;
	background: rgb(69 200 232 / 12%);
	color: var(--cyan-400);
}
.cu-pillar__title { font-size: var(--fs-lg); color: var(--white); margin-bottom: 0.45rem; }
.cu-pillar__body { font-size: var(--fs-sm); color: var(--slate-300); margin: 0; }

/* =========================================================================
   11. Steps
   ====================================================================== */

.cu-steps {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}
@media (min-width: 720px) { .cu-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cu-steps { grid-template-columns: repeat(4, 1fr); } }

.cu-step {
	position: relative;
	padding-top: var(--sp-3);
	border-top: 2px solid var(--hairline);
}
.cu-step::before {
	content: "";
	position: absolute;
	top: -2px; left: 0;
	width: 2.5rem; height: 2px;
	background: var(--cyan-500);
}
.cu-step__num {
	display: block;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--cyan-700);
	margin-bottom: 0.5rem;
}
.cu-step__title { font-size: var(--fs-lg); margin-bottom: 0.4rem; }
.cu-step__body { font-size: var(--fs-sm); color: var(--slate-600); margin: 0; }

/* =========================================================================
   12. FAQ
   ====================================================================== */

.cu-faq__inner { max-width: var(--shell-narrow); }

.cu-faq__item {
	border-bottom: 1px solid var(--hairline);
}
.cu-faq__q {
	position: relative;
	display: block;
	padding: var(--sp-3) 2.5rem var(--sp-3) 0;
	font-family: var(--font-display);
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}
.cu-faq__q::-webkit-details-marker { display: none; }
.cu-faq__q::after {
	content: "";
	position: absolute;
	right: 0.4rem;
	top: calc(var(--sp-3) + 0.45em);
	width: 0.65rem; height: 0.65rem;
	border-right: 2px solid var(--cyan-600);
	border-bottom: 2px solid var(--cyan-600);
	transform: rotate(45deg);
	transition: transform 180ms var(--ease);
}
.cu-faq__item[open] .cu-faq__q::after { transform: rotate(-135deg); }
.cu-faq__a { padding-bottom: var(--sp-3); color: var(--slate-600); max-width: 62ch; }

/* =========================================================================
   13. CTA
   ====================================================================== */

.cu-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy-800);
	color: var(--slate-300);
	padding-block: clamp(3.5rem, 8vw, var(--sp-6));
}
.cu-cta__glow {
	position: absolute;
	inset: auto -5% -55% 20%;
	height: 140%;
	background: radial-gradient(50% 50% at 50% 50%, rgb(69 200 232 / 15%), transparent 70%);
	pointer-events: none;
}
.cu-cta__inner { position: relative; max-width: 46rem; }
.cu-cta__title { font-size: var(--fs-3xl); color: var(--white); }
.cu-cta__body { margin-top: var(--sp-2); font-size: var(--fs-lg); }
.cu-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.cu-cta__note {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: var(--sp-3);
	font-size: var(--fs-sm);
	color: var(--slate-500);
}
.cu-cta__note .cu-icon { color: var(--cyan-400); }

/* =========================================================================
   14. Footer
   ====================================================================== */

.cu-footer {
	background: var(--navy-900);
	color: var(--slate-300);
	padding-block: var(--sp-5) var(--sp-3);
	font-size: var(--fs-sm);
}

.cu-footer__grid { display: grid; gap: var(--sp-4); }
@media (min-width: 720px) { .cu-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cu-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: var(--sp-5); } }

.cu-logo--footer { margin-bottom: var(--sp-2); }
.cu-footer__blurb { max-width: 34ch; color: var(--slate-500); }
.cu-footer__tier {
	display: inline-block;
	margin-top: var(--sp-2);
	padding: 0.35rem 0.7rem;
	border: 1px solid var(--navy-400);
	border-radius: 999px;
	font-size: var(--fs-xs);
	font-weight: 700;
	color: var(--cyan-400);
}

.cu-footer__heading {
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: var(--sp-2);
}

.cu-footer__list { margin: 0; padding: 0; list-style: none; }
.cu-footer__list li { margin-bottom: 0.55rem; }
.cu-footer__list a { color: var(--slate-300); text-decoration: none; }
.cu-footer__list a:hover { color: var(--cyan-400); }
.cu-footer__list--contact li { display: flex; align-items: center; gap: 0.5rem; }
.cu-footer__list--contact .cu-icon { color: var(--slate-500); }

.cu-footer__cta { margin-top: var(--sp-2); }

.cu-footer__base {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--sp-3);
	flex-wrap: wrap;
	margin-top: var(--sp-5);
	padding-top: var(--sp-3);
	border-top: 1px solid rgb(255 255 255 / 8%);
	font-size: var(--fs-xs);
	color: var(--slate-500);
}
.cu-footer__copy { margin: 0; max-width: 62ch; }
.cu-footer__tm { display: block; margin-top: 0.4rem; opacity: 0.75; }
.cu-footer__legal { display: flex; gap: var(--sp-2); margin: 0; padding: 0; list-style: none; flex-wrap: wrap; }
.cu-footer__legal a { color: var(--slate-500); text-decoration: none; }
.cu-footer__legal a:hover { color: var(--white); }

/* =========================================================================
   15. Page / article
   ====================================================================== */

.cu-page { padding-block: clamp(2.5rem, 6vw, var(--sp-5)); }

.cu-pagehead {
	background: var(--navy-800);
	color: var(--slate-300);
	padding-block: clamp(2.5rem, 6vw, var(--sp-5));
}
.cu-pagehead__inner { max-width: 52rem; }
.cu-pagehead__title { font-size: var(--fs-3xl); color: var(--white); }
.cu-pagehead__lede { margin-top: var(--sp-2); font-size: var(--fs-lg); color: var(--slate-300); }

.cu-prose { max-width: var(--shell-narrow); margin-inline: auto; }
.cu-prose > * + * { margin-top: 1.15em; }
.cu-prose h2 { font-size: var(--fs-xl); margin-top: 2em; }
.cu-prose h3 { font-size: var(--fs-lg); margin-top: 1.6em; }
.cu-prose ul, .cu-prose ol { padding-left: 1.3em; }
.cu-prose li + li { margin-top: 0.4em; }
.cu-prose img { border-radius: var(--radius); }
.cu-prose blockquote {
	margin: 1.5em 0;
	padding-left: var(--sp-3);
	border-left: 3px solid var(--cyan-500);
	font-size: var(--fs-lg);
	color: var(--ink);
}
.cu-prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.cu-prose :where(th, td) { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--hairline); text-align: left; }
.cu-prose th { font-family: var(--font-display); color: var(--ink); }
.cu-prose figure { margin: 0; }

.cu-checks { list-style: none; padding: 0; margin: 0; }
.cu-checks li {
	position: relative;
	padding-left: 1.9rem;
	margin-bottom: 0.65rem;
}
.cu-checks li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.42em;
	width: 1.05rem; height: 1.05rem;
	background: currentColor;
	color: var(--cyan-600);
	-webkit-mask: var(--cu-check) center / contain no-repeat;
	mask: var(--cu-check) center / contain no-repeat;
}
.cu-section--dark .cu-checks li::before { color: var(--cyan-400); }

:root {
	--cu-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8.2 14.6 4 10.4l1.4-1.4 2.8 2.8 6.4-6.4L16 6.8z'/%3E%3C/svg%3E");
}

/* Tables never force the page to scroll sideways. */
.cu-prose .cu-tablewrap { overflow-x: auto; }

/* =========================================================================
   16. Service detail
   ====================================================================== */

.cu-servicehead__meta {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	margin-bottom: var(--sp-2);
}
.cu-servicehead__icon {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 12px;
	background: rgb(69 200 232 / 12%);
	color: var(--cyan-400);
}

.cu-deliverables {
	margin-top: var(--sp-4);
	padding: var(--sp-3);
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius);
}
.cu-deliverables h2 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }

/* =========================================================================
   17. Pagination, search, 404
   ====================================================================== */

.cu-pagination {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-top: var(--sp-4);
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 700;
}
.cu-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: 0.6rem;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-sm);
	text-decoration: none;
	color: var(--slate-700);
}
.cu-pagination .page-numbers:hover { border-color: var(--cyan-600); color: var(--cyan-700); }
.cu-pagination .page-numbers.current {
	background: var(--navy-800);
	border-color: var(--navy-800);
	color: var(--white);
}

.cu-searchform { display: flex; gap: 0.5rem; max-width: 28rem; }
.cu-searchform input[type="search"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-sm);
	font: inherit;
	background: var(--white);
	color: var(--ink);
}
.cu-searchform input[type="search"]:focus { border-color: var(--cyan-600); }

.cu-empty { max-width: 44rem; }

/* =========================================================================
   18. Contact page
   ====================================================================== */

.cu-contact {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	max-width: none;
}
@media (min-width: 900px) {
	.cu-contact { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

.cu-contact__subtitle { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }

.cu-contact__methods { list-style: none; margin: 0 0 var(--sp-4); padding: 0; }
.cu-contact__methods li {
	display: flex;
	gap: var(--sp-2);
	align-items: flex-start;
	margin-bottom: var(--sp-3);
}
.cu-contact__ic {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px; height: 42px;
	border-radius: 10px;
	background: var(--surface);
	border: 1px solid var(--hairline);
	color: var(--cyan-deep, #1b8fb5);
}
.cu-contact__label {
	display: block;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--slate-500);
	margin-bottom: 0.15rem;
}
.cu-contact__methods a { color: var(--ink); text-decoration: none; font-weight: 600; }
.cu-contact__methods a:hover { color: var(--cyan-700); }

.cu-contact__social ul { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0.4rem 0 0; padding: 0; }
.cu-contact__social a {
	display: inline-block;
	padding: 0.35rem 0.8rem;
	border: 1px solid var(--hairline);
	border-radius: 999px;
	font-size: var(--fs-sm);
	font-weight: 600;
	text-decoration: none;
	color: var(--slate-700);
}
.cu-contact__social a:hover { border-color: var(--cyan-600); color: var(--cyan-700); }

/* Form */

.cu-form { display: grid; gap: var(--sp-3); }
.cu-field-row { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .cu-field-row { grid-template-columns: 1fr 1fr; } }

.cu-field { margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.cu-field label {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--ink);
}
.cu-req { color: var(--signal, #e5484d); }

.cu-field input,
.cu-field textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	font: inherit;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-sm);
	transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.cu-field input:focus,
.cu-field textarea:focus {
	outline: none;
	border-color: var(--cyan-600);
	box-shadow: 0 0 0 3px rgb(69 200 232 / 22%);
}
.cu-field textarea { resize: vertical; min-height: 8rem; }

/* Honeypot — visually and semantically removed, still in the DOM for bots. */
.cu-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.cu-form__foot {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	flex-wrap: wrap;
}
.cu-form__note {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-xs);
	color: var(--slate-500);
	max-width: 34ch;
}
.cu-form__note .cu-icon { color: var(--cyan-deep, #1b8fb5); flex: none; }

.cu-notice {
	padding: var(--sp-2) var(--sp-3);
	margin-bottom: var(--sp-3);
	border-radius: var(--radius-sm);
	border: 1px solid;
	font-size: var(--fs-sm);
}
.cu-notice--success { background: rgb(45 193 166 / 10%); border-color: rgb(45 193 166 / 45%); color: #12705f; }
.cu-notice--error { background: rgb(229 72 77 / 8%); border-color: rgb(229 72 77 / 40%); color: #a3282c; }

/* Map */

.cu-map { line-height: 0; border-top: 1px solid var(--hairline); }
.cu-map iframe { display: block; width: 100%; filter: grayscale(0.15); }

/* Stat band (About) */

.cu-statband {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: var(--sp-3);
	margin: 0;
	text-align: center;
}

/* =========================================================================
   19. Industries strip
   ====================================================================== */

.cu-industries {
	background: var(--navy-900);
	border-bottom: 1px solid rgb(255 255 255 / 8%);
	padding-block: var(--sp-3);
}
.cu-industries__inner {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	flex-wrap: wrap;
}
.cu-industries__label {
	margin: 0;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--slate-500);
	white-space: nowrap;
}
.cu-industries__list {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(0.75rem, 2.5vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}
.cu-industries__list li {
	position: relative;
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--slate-300);
	padding-left: 1.1rem;
}
.cu-industries__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 6px; height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: var(--cyan-500);
}

/* =========================================================================
   20. Rapid7 spotlight
   ====================================================================== */

.cu-r7 {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 120% at 100% 0%, #0c2036 0%, var(--navy-800) 45%, var(--navy-900) 100%);
	color: var(--slate-300);
	padding-block: clamp(3.5rem, 8vw, var(--sp-6));
	border-block: 1px solid rgb(69 200 232 / 18%);
}
.cu-r7__glow {
	position: absolute;
	inset: -20% -10% auto auto;
	width: 60%; height: 120%;
	background: radial-gradient(50% 50% at 70% 20%, rgb(45 193 166 / 14%), transparent 70%);
	pointer-events: none;
}
.cu-r7__inner {
	position: relative;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 940px) { .cu-r7__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; } }

.cu-r7__lead .cu-section__title { color: var(--white); }
.cu-r7__lead .cu-section__lede { color: var(--slate-300); }

.cu-r7__stat {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	margin-top: var(--sp-3);
	padding: var(--sp-2) var(--sp-3);
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-left: 3px solid var(--cyan-500);
	border-radius: var(--radius-sm);
}
.cu-r7__stat-num {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1;
	color: var(--cyan-400);
}
.cu-r7__stat-text { font-size: var(--fs-sm); color: var(--slate-300); }
.cu-r7__stat-src {
	display: block;
	margin-top: 0.2rem;
	font-size: var(--fs-xs);
	color: var(--slate-500);
	font-style: italic;
}

.cu-r7__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }

.cu-r7__reasons { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.cu-r7__reason {
	display: flex;
	gap: var(--sp-2);
	padding: var(--sp-3);
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--radius);
}
.cu-r7__reason-ic {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px; height: 42px;
	border-radius: 10px;
	background: rgb(69 200 232 / 12%);
	color: var(--cyan-400);
}
.cu-r7__reason-title { font-size: var(--fs-base); color: var(--white); margin-bottom: 0.25rem; }
.cu-r7__reason-body { font-size: var(--fs-sm); color: var(--slate-300); margin: 0; }

/* =========================================================================
   21. Capabilities grid
   ====================================================================== */

.cu-caps__grid {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
}
@media (min-width: 620px) { .cu-caps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cu-caps__grid { grid-template-columns: repeat(3, 1fr); } }

.cu-caps__item {
	padding: var(--sp-3);
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius);
	transition: border-color 160ms var(--ease), transform 160ms var(--ease);
}
.cu-caps__item:hover { border-color: var(--slate-200); transform: translateY(-2px); }
.cu-caps__ic {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	margin-bottom: var(--sp-2);
	border-radius: 10px;
	background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
	color: var(--cyan-400);
}
.cu-caps__title { font-size: var(--fs-lg); margin-bottom: 0.35rem; }
.cu-caps__body { font-size: var(--fs-sm); color: var(--slate-600); margin: 0; }

/* =========================================================================
   22. Resources
   ====================================================================== */

.cu-card--resource { padding: var(--sp-3); }
.cu-card__src { font-size: var(--fs-xs); color: var(--slate-500); margin: 0 0 var(--sp-2); }

.cu-download {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	flex-wrap: wrap;
	margin: var(--sp-4) 0;
	padding: var(--sp-3);
	background: var(--navy-800);
	color: var(--slate-300);
	border-radius: var(--radius);
}
.cu-download__ic {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 12px;
	background: rgb(69 200 232 / 14%);
	color: var(--cyan-400);
	flex: none;
}
.cu-download__body { flex: 1; min-width: 12rem; }
.cu-download__title { color: var(--white); font-size: var(--fs-lg); margin: 0; }
.cu-download__src { font-size: var(--fs-xs); color: var(--slate-500); margin: 0.2rem 0 0; }
.cu-resource-cta {
	padding: var(--sp-2) var(--sp-3);
	background: var(--surface);
	border-radius: var(--radius-sm);
	font-size: var(--fs-sm);
}

/* =========================================================================
   23. Print
   ====================================================================== */

@media print {
	.cu-header, .cu-footer, .cu-alertbar, .cu-cta, .cu-burger, .cu-nav { display: none !important; }
	.cu-hero, .cu-section--dark { background: none !important; color: #000 !important; }
	body { color: #000; background: #fff; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}
