:root {
	--rcsc-ink: #e7eefc;
	--rcsc-muted: #95a3b8;
	--rcsc-panel: #111a29;
	--rcsc-line: rgba(130, 160, 210, 0.18);
	--rcsc-blue: #4ea3ff;
	--rcsc-teal: #17e6c2;
	--rcsc-amber: #ffb84d;
	--rcsc-navy: #07111f;
	--rcsc-deep: #030712;
	--rcsc-white: #ffffff;
}

.rcsc-site {
	color: var(--rcsc-ink);
	background: var(--rcsc-deep);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html,
body,
#wrapper,
#content,
.rcsc-site,
.rcsc-site main,
.rcsc-site .content-wrap {
	background: var(--rcsc-deep) !important;
}

html,
body {
	overflow-x: hidden;
}

.rcsc-site,
#wrapper {
	overflow-x: clip;
}

.rcsc-site .content-wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.rcsc-site ::selection {
	background: rgba(23, 230, 194, 0.34);
	color: var(--rcsc-white);
}

.rcsc-site a,
.rcsc-site button,
.rcsc-site input,
.rcsc-site textarea,
.rcsc-site select {
	-webkit-tap-highlight-color: rgba(23, 230, 194, 0.18);
}

.rcsc-site a:focus-visible,
.rcsc-site button:focus-visible,
.rcsc-site input:focus-visible,
.rcsc-site textarea:focus-visible,
.rcsc-site select:focus-visible,
.rcsc-site .button:focus-visible {
	outline: 2px solid rgba(23, 230, 194, 0.86);
	outline-offset: 3px;
}

#header.rcsc-header,
.rcsc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background:
		linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(7, 17, 31, 0.94));
	border-bottom: 1px solid var(--rcsc-line);
	backdrop-filter: blur(16px);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

#header.rcsc-header #header-wrap,
#header.rcsc-header.full-header #header-wrap,
#header.rcsc-header.sticky-header #header-wrap,
#header.rcsc-header.transparent-header #header-wrap {
	background:
		linear-gradient(90deg, rgba(3, 7, 18, 0.99), rgba(7, 17, 31, 0.96)) !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

#header.rcsc-header .header-row,
.rcsc-header .header-row {
	min-height: 92px;
}

.rcsc-logo a {
	display: inline-flex;
	gap: 0.75rem;
	align-items: center;
	color: var(--rcsc-white);
	font-weight: 800;
	letter-spacing: 0;
}

#logo img.rcsc-logo-image,
.rcsc-logo-image {
	display: block;
	width: min(360px, 43vw);
	height: auto !important;
	max-height: 60px !important;
}

.rcsc-logo-mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--rcsc-white);
	background:
		linear-gradient(135deg, rgba(78, 163, 255, 0.95), rgba(23, 230, 194, 0.78)),
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 28%);
	border-radius: 8px;
	font-size: 0.85rem;
	box-shadow: 0 0 28px rgba(23, 230, 194, 0.26);
}

.rcsc-logo-text {
	font-size: 1rem;
	max-width: 260px;
	line-height: 1.1;
}

.rcsc-menu-toggle {
	display: none;
	align-items: center;
	gap: 0.6rem;
	min-height: 2.55rem;
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(23, 230, 194, 0.26);
	border-radius: 999px;
	background: rgba(3, 7, 18, 0.56);
	color: rgba(231, 238, 252, 0.9);
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	box-shadow: inset 0 0 18px rgba(23, 230, 194, 0.06);
}

.rcsc-menu-toggle-icon,
.rcsc-menu-toggle-icon::before,
.rcsc-menu-toggle-icon::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--rcsc-teal);
	transition: transform 180ms ease, opacity 180ms ease;
}

.rcsc-menu-toggle-icon {
	position: relative;
}

.rcsc-menu-toggle-icon::before,
.rcsc-menu-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.rcsc-menu-toggle-icon::before {
	top: -6px;
}

.rcsc-menu-toggle-icon::after {
	top: 6px;
}

body.rcsc-menu-open .rcsc-menu-toggle-icon {
	background: transparent;
}

body.rcsc-menu-open .rcsc-menu-toggle-icon::before {
	transform: translateY(6px) rotate(45deg);
}

body.rcsc-menu-open .rcsc-menu-toggle-icon::after {
	transform: translateY(-6px) rotate(-45deg);
}

.rcsc-nav .menu-container {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	padding: 0.35rem;
	margin: 0;
	border: 1px solid rgba(78, 163, 255, 0.16);
	border-radius: 999px;
	background: rgba(3, 7, 18, 0.46);
	box-shadow:
		inset 0 0 22px rgba(23, 230, 194, 0.04),
		0 10px 34px rgba(0, 0, 0, 0.18);
	list-style: none;
}

.rcsc-nav.primary-menu {
	margin-left: auto;
}

.rcsc-nav .menu-container > .menu-item {
	margin: 0;
}

.rcsc-nav .menu-container > .menu-item > a,
.rcsc-nav .menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 2.35rem;
	padding: 0.55rem 0.85rem;
	border: 1px solid transparent;
	border-radius: 999px;
	color: rgba(231, 238, 252, 0.82);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	text-transform: none;
	letter-spacing: 0;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rcsc-nav .menu-container > .menu-item > a:hover,
.rcsc-nav .menu-container > .current-menu-item > a,
.rcsc-nav .menu-container > .current_page_item > a,
.rcsc-nav .menu-container > .current-menu-ancestor > a,
.rcsc-nav .menu-link:hover,
.rcsc-nav .current-menu-item .menu-link {
	border-color: rgba(23, 230, 194, 0.3);
	background: rgba(23, 230, 194, 0.08);
	box-shadow: 0 0 22px rgba(23, 230, 194, 0.08);
	color: var(--rcsc-white);
}

.rcsc-nav .menu-container > .current-menu-item > a,
.rcsc-nav .menu-container > .current_page_item > a {
	color: var(--rcsc-teal);
}

.rcsc-nav .menu-container > .menu-item:last-child > a {
	border-color: rgba(23, 230, 194, 0.32);
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.14), rgba(78, 163, 255, 0.08)),
		rgba(3, 7, 18, 0.46);
}

.rcsc-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(5rem, 8vw, 8rem) 0;
	min-height: calc(100vh - 92px);
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(3, 7, 18, 0.98) 0%, rgba(3, 7, 18, 0.88) 44%, rgba(3, 7, 18, 0.34) 100%),
		linear-gradient(180deg, rgba(3, 7, 18, 0.18), rgba(3, 7, 18, 0.92)),
		var(--rcsc-hero-image, url("../img/jarvis-cyber-hero.png")) center / cover no-repeat;
	color: var(--rcsc-white);
}

.rcsc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(78, 163, 255, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(78, 163, 255, 0.08) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 76%);
}

.rcsc-hero .container {
	position: relative;
	z-index: 1;
}

.rcsc-hero h1,
.rcsc-section h2,
.rcsc-process h2,
.rcsc-contact h2,
.rcsc-briefing h2 {
	letter-spacing: 0;
}

.rcsc-site h2,
.rcsc-site .h2,
main#content h2 {
	color: #f7fbff !important;
	text-shadow: 0 0 28px rgba(78, 163, 255, 0.16);
}

.rcsc-hero h1 {
	max-width: 820px;
	font-size: clamp(3rem, 6vw, 5.4rem);
	line-height: 0.96;
	color: var(--rcsc-white);
}

.rcsc-hero-copy {
	max-width: 680px;
	margin: 1.5rem 0 2rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.55;
}

.rcsc-kicker {
	margin-bottom: 0.75rem;
	color: var(--rcsc-teal);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rcsc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.rcsc-button-primary {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--rcsc-teal), var(--rcsc-blue));
	border-color: transparent;
	color: #03101c;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: 0 18px 46px rgba(23, 230, 194, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.rcsc-button-primary::after {
	content: "";
	position: absolute;
	inset: -40% auto -40% -55%;
	width: 46%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
	transform: skewX(-18deg);
	transition: left 420ms ease;
}

.rcsc-button-primary:hover::after,
.rcsc-button-primary:focus-visible::after {
	left: 110%;
}

.rcsc-button-secondary {
	color: var(--rcsc-white) !important;
	border-color: rgba(255, 255, 255, 0.56) !important;
	background: rgba(7, 17, 31, 0.2) !important;
	text-transform: none;
	letter-spacing: 0;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rcsc-button-primary:hover,
.rcsc-button-secondary:hover {
	transform: translateY(-2px);
}

.rcsc-button-primary:hover {
	filter: saturate(1.08);
	box-shadow: 0 22px 58px rgba(23, 230, 194, 0.28);
}

.rcsc-button-secondary:hover {
	color: #03101c !important;
	background: var(--rcsc-teal) !important;
	border-color: var(--rcsc-teal) !important;
}

.rcsc-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	max-width: 640px;
	margin-top: 2.5rem;
}

.rcsc-hero-metrics div {
	padding: 1rem;
	border: 1px solid rgba(130, 160, 210, 0.22);
	border-radius: 8px;
	background: rgba(7, 17, 31, 0.64);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rcsc-hero-metrics div:hover {
	transform: translateY(-3px);
	border-color: rgba(23, 230, 194, 0.32);
	background: rgba(9, 22, 39, 0.78);
}

.rcsc-hero-metrics strong {
	display: block;
	color: var(--rcsc-amber);
	font-size: 0.8rem;
}

.rcsc-hero-metrics span {
	display: block;
	margin-top: 0.25rem;
	color: rgba(231, 238, 252, 0.78);
	font-weight: 700;
}

.rcsc-command-panel {
	position: relative;
	overflow: hidden;
	min-height: 430px;
	padding: 2rem;
	border: 1px solid rgba(23, 230, 194, 0.28);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(9, 20, 36, 0.88), rgba(4, 10, 20, 0.74)),
		radial-gradient(circle at 70% 30%, rgba(23, 230, 194, 0.16), transparent 34%);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), inset 0 0 80px rgba(78, 163, 255, 0.08);
}

.rcsc-command-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, transparent, rgba(23, 230, 194, 0.08), transparent);
	transform: translateX(-120%);
	animation: rcsc-panel-sheen 8s ease-in-out infinite;
}

.rcsc-command-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(23, 230, 194, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(78, 163, 255, 0.08) 1px, transparent 1px);
	background-size: 36px 36px;
}

.rcsc-command-top,
.rcsc-radar,
.rcsc-command-stack {
	position: relative;
	z-index: 1;
}

.rcsc-command-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--rcsc-teal);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.rcsc-command-label {
	display: block;
	line-height: 1.35;
}

.rcsc-command-top i {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--rcsc-teal);
	box-shadow: 0 0 22px var(--rcsc-teal);
}

.rcsc-radar {
	--rcsc-radar-angle: 0deg;
	display: grid;
	place-items: center;
	width: min(100%, 300px);
	aspect-ratio: 1;
	margin: 2.6rem auto 2rem;
	border: 1px solid rgba(78, 163, 255, 0.3);
	border-radius: 50%;
	overflow: hidden;
	background:
		radial-gradient(circle, transparent 0 23%, rgba(78, 163, 255, 0.08) 24% 25%, transparent 26% 48%, rgba(78, 163, 255, 0.1) 49% 50%, transparent 51%),
		radial-gradient(circle at center, rgba(23, 230, 194, 0.08), transparent 64%),
		#050d18;
	box-shadow: inset 0 0 60px rgba(78, 163, 255, 0.12), 0 0 80px rgba(23, 230, 194, 0.08);
}

.rcsc-radar::before,
.rcsc-radar::after {
	content: "";
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	pointer-events: none;
}

.rcsc-radar::before {
	background-image:
		linear-gradient(rgba(78, 163, 255, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(78, 163, 255, 0.14) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.28;
	mask-image: radial-gradient(circle, #000 0 67%, transparent 68%);
}

.rcsc-radar::after {
	border: 1px solid rgba(78, 163, 255, 0.26);
	box-shadow:
		0 0 0 46px rgba(78, 163, 255, 0.03),
		0 0 0 92px rgba(78, 163, 255, 0.025),
		inset 0 0 24px rgba(23, 230, 194, 0.1);
}

.rcsc-radar-core {
	width: 18px;
	height: 18px;
	border: 3px solid var(--rcsc-teal);
	border-radius: 999px;
	background: rgba(23, 230, 194, 0.16);
	box-shadow: 0 0 40px var(--rcsc-teal);
	animation: rcsc-radar-pulse 2.4s ease-in-out infinite;
}

.rcsc-radar-sweep {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background:
		conic-gradient(from var(--rcsc-radar-angle), rgba(23, 230, 194, 0.5), rgba(23, 230, 194, 0.14) 14deg, rgba(23, 230, 194, 0.02) 45deg, transparent 72deg);
	mask-image: radial-gradient(circle, transparent 0 11%, #000 12% 68%, transparent 69%);
	mix-blend-mode: screen;
}

.rcsc-radar-blip {
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--rcsc-amber);
	box-shadow: 0 0 20px rgba(255, 184, 77, 0.9);
	opacity: 0;
}

.rcsc-radar-blip-1 {
	top: 33%;
	left: 62%;
	animation: rcsc-radar-blip 4.2s ease-in-out infinite 0.3s;
}

.rcsc-radar-blip-2 {
	top: 58%;
	left: 36%;
	animation: rcsc-radar-blip 4.2s ease-in-out infinite 1.5s;
}

.rcsc-radar-blip-3 {
	top: 24%;
	left: 44%;
	animation: rcsc-radar-blip 4.2s ease-in-out infinite 2.7s;
}

.rcsc-command-stack {
	display: grid;
	gap: 0.75rem;
}

.rcsc-command-stack div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(130, 160, 210, 0.18);
	border-radius: 8px;
	background: rgba(3, 7, 18, 0.58);
}

.rcsc-command-stack span {
	color: var(--rcsc-muted);
}

.rcsc-command-stack strong {
	color: var(--rcsc-white);
}

.rcsc-site .section {
	margin: 0 !important;
	background-color: transparent !important;
}

.rcsc-intel-strip {
	padding: 1rem 0;
	border-top: 1px solid var(--rcsc-line);
	border-bottom: 1px solid var(--rcsc-line);
	background: #06101d !important;
}

.rcsc-intel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	overflow: hidden;
	background: var(--rcsc-line);
}

.rcsc-intel-grid span {
	display: block;
	padding: 1rem;
	background: rgba(9, 20, 36, 0.92);
	color: rgba(231, 238, 252, 0.8);
	font-size: 0.82rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.rcsc-section,
section.rcsc-section {
	background:
		linear-gradient(180deg, #07111f, #0b1423) !important;
}

.rcsc-service {
	position: relative;
	height: 100%;
	padding: 1.5rem;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(17, 26, 41, 0.98), rgba(7, 17, 31, 0.98));
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.rcsc-service::before,
.rcsc-page-card::before,
.rcsc-page-panel::before,
.rcsc-cert-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(23, 230, 194, 0.42), transparent 32%, transparent 68%, rgba(78, 163, 255, 0.28)) top / 100% 1px no-repeat,
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
	opacity: 0.72;
}

.rcsc-service:hover {
	transform: translateY(-5px);
	border-color: rgba(23, 230, 194, 0.34);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), 0 0 34px rgba(23, 230, 194, 0.08);
}

.rcsc-service i {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--rcsc-teal);
	font-size: 2rem;
}

.rcsc-service h3 {
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
	color: var(--rcsc-white);
}

.rcsc-service p,
.rcsc-process p,
.rcsc-contact p {
	color: var(--rcsc-muted);
}

.rcsc-process,
section.rcsc-process {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background:
		linear-gradient(135deg, rgba(3, 7, 18, 0.97), rgba(6, 16, 29, 0.96)),
		linear-gradient(90deg, rgba(78, 163, 255, 0.05), transparent) !important;
}

.rcsc-steps {
	display: grid;
	gap: 1rem;
}

.rcsc-steps div {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.2rem 1rem;
	padding: 1.25rem;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background: rgba(17, 26, 41, 0.86);
	transition: transform 200ms ease, border-color 200ms ease;
}

.rcsc-steps div::after,
.rcsc-page-step::after {
	content: "";
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 34px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(23, 230, 194, 0.7));
	opacity: 0.72;
}

.rcsc-steps div:hover {
	transform: translateX(4px);
	border-color: rgba(78, 163, 255, 0.34);
}

.rcsc-steps span {
	grid-row: span 2;
	color: var(--rcsc-teal);
	font-weight: 900;
}

.rcsc-steps strong {
	font-size: 1.1rem;
	color: var(--rcsc-white);
}

.rcsc-steps p {
	margin: 0;
}

.rcsc-contact,
section.rcsc-contact {
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.12), transparent 38%),
		var(--rcsc-navy) !important;
	color: var(--rcsc-white);
}

.rcsc-contact-note {
	margin-top: 2rem;
	padding: 1rem;
	border: 1px solid rgba(23, 230, 194, 0.24);
	border-radius: 8px;
	background: rgba(7, 17, 31, 0.72);
}

.rcsc-contact-note strong,
.rcsc-contact-note span {
	display: block;
}

.rcsc-contact-note strong {
	color: var(--rcsc-white);
}

.rcsc-contact-note span {
	margin-top: 0.4rem;
	color: var(--rcsc-muted);
}

.rcsc-form-panel,
.rcsc-content .entry-content > .wpcf7 {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid rgba(130, 160, 210, 0.2);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(17, 26, 41, 0.95), rgba(7, 17, 31, 0.95)),
		radial-gradient(circle at 85% 10%, rgba(23, 230, 194, 0.14), transparent 30%);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.rcsc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rcsc-form-field,
.rcsc-form-field-wide {
	display: block;
	margin-bottom: 1rem;
}

.rcsc-form-field-wide {
	grid-column: 1 / -1;
}

.rcsc-form-panel label,
.rcsc-content .entry-content > .wpcf7 label {
	display: block;
	margin-bottom: 0.45rem;
	color: rgba(231, 238, 252, 0.88);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rcsc-form-panel .wpcf7-form-control:not(.wpcf7-submit),
.rcsc-content .entry-content > .wpcf7 .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	min-height: 48px;
	padding: 0.8rem 0.95rem;
	border: 1px solid rgba(130, 160, 210, 0.26);
	border-radius: 8px;
	background: rgba(3, 7, 18, 0.55);
	color: var(--rcsc-white);
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.rcsc-form-panel select.wpcf7-form-control,
.rcsc-content .entry-content > .wpcf7 select.wpcf7-form-control {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--rcsc-teal) 50%),
		linear-gradient(135deg, var(--rcsc-teal) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 20px,
		calc(100% - 12px) 20px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.rcsc-form-panel ::placeholder,
.rcsc-content .entry-content > .wpcf7 ::placeholder {
	color: rgba(149, 163, 184, 0.72);
	opacity: 1;
}

.rcsc-form-panel textarea.wpcf7-form-control,
.rcsc-content .entry-content > .wpcf7 textarea.wpcf7-form-control {
	min-height: 150px;
	resize: vertical;
}

.rcsc-form-panel .wpcf7-form-control:not(.wpcf7-submit):focus,
.rcsc-content .entry-content > .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: rgba(23, 230, 194, 0.72);
	box-shadow: 0 0 0 3px rgba(23, 230, 194, 0.12);
}

.rcsc-form-panel .wpcf7-submit,
.rcsc-content .entry-content > .wpcf7 .wpcf7-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.8rem 1.4rem;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--rcsc-teal), var(--rcsc-blue));
	color: #03101c;
	font-weight: 900;
	text-transform: none;
	box-shadow: 0 18px 46px rgba(23, 230, 194, 0.18);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.rcsc-form-panel .wpcf7-submit:hover,
.rcsc-form-panel .wpcf7-submit:focus-visible,
.rcsc-content .entry-content > .wpcf7 .wpcf7-submit:hover,
.rcsc-content .entry-content > .wpcf7 .wpcf7-submit:focus-visible {
	transform: translateY(-2px);
	filter: saturate(1.08);
	box-shadow: 0 22px 58px rgba(23, 230, 194, 0.28);
}

.rcsc-form-panel .wpcf7-spinner,
.rcsc-content .entry-content > .wpcf7 .wpcf7-spinner {
	vertical-align: middle;
}

.rcsc-form-panel .wpcf7-response-output,
.rcsc-content .entry-content > .wpcf7 .wpcf7-response-output {
	margin: 1rem 0 0;
	border-radius: 8px;
	color: var(--rcsc-white);
}

.rcsc-form-panel .wpcf7-not-valid-tip,
.rcsc-content .entry-content > .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	color: #ffb84d;
}

.rcsc-briefing,
section.rcsc-briefing {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background: #081320 !important;
}

.rcsc-briefing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rcsc-briefing-grid div {
	padding: 1.25rem;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background: rgba(17, 26, 41, 0.74);
	transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.rcsc-briefing-grid div:hover {
	transform: translateY(-4px);
	border-color: rgba(23, 230, 194, 0.28);
	background: rgba(17, 26, 41, 0.92);
}

.rcsc-briefing-grid strong {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--rcsc-white);
	font-size: 1.1rem;
}

.rcsc-briefing-grid span {
	color: var(--rcsc-muted);
}

.rcsc-founder,
section.rcsc-founder {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background:
		linear-gradient(135deg, rgba(78, 163, 255, 0.1), transparent 36%),
		#050d18 !important;
}

.rcsc-founder-card {
	position: relative;
	overflow: hidden;
	padding: 2rem;
	border: 1px solid rgba(23, 230, 194, 0.24);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(17, 26, 41, 0.96), rgba(7, 17, 31, 0.96)),
		radial-gradient(circle at 75% 20%, rgba(23, 230, 194, 0.22), transparent 32%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.rcsc-founder-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(78, 163, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(78, 163, 255, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
}

.rcsc-founder-monogram {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	margin-bottom: 2rem;
	border: 1px solid rgba(23, 230, 194, 0.5);
	border-radius: 50%;
	color: var(--rcsc-teal);
	font-size: 2.3rem;
	font-weight: 900;
	box-shadow: inset 0 0 40px rgba(23, 230, 194, 0.12), 0 0 34px rgba(23, 230, 194, 0.12);
}

.rcsc-founder-card p,
.rcsc-founder-card h2 {
	position: relative;
	z-index: 1;
}

.rcsc-founder-card p {
	margin-bottom: 0.5rem;
	color: var(--rcsc-muted);
	font-weight: 800;
	text-transform: uppercase;
}

.rcsc-founder-card h2,
.rcsc-founder h2 {
	color: var(--rcsc-white);
}

.rcsc-founder p {
	color: var(--rcsc-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.rcsc-linkedin-button::before {
	content: "\f472";
	display: inline-block;
	margin-right: 0.55rem;
	font-family: bootstrap-icons;
	vertical-align: -0.08em;
}

.rcsc-contact h2 {
	color: var(--rcsc-white);
}

#footer.rcsc-footer,
.rcsc-footer {
	padding: 4rem 0 2rem;
	background:
		linear-gradient(180deg, #050d18, #030712) !important;
	color: rgba(231, 238, 252, 0.72) !important;
}

#footer.rcsc-footer p,
#footer.rcsc-footer li,
.rcsc-footer p,
.rcsc-footer li {
	color: rgba(231, 238, 252, 0.72) !important;
}

#footer.rcsc-footer a,
.rcsc-footer a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--rcsc-white) !important;
}

#footer.rcsc-footer a:hover,
.rcsc-footer a:hover {
	color: var(--rcsc-teal) !important;
}

.rcsc-footer-social {
	justify-content: flex-end;
	margin-top: 0.7rem;
}

.rcsc-footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

#footer.rcsc-footer .rcsc-footer-brand,
#footer.rcsc-footer .rcsc-footer-heading,
.rcsc-footer-brand,
.rcsc-footer-heading {
	color: var(--rcsc-white) !important;
	font-weight: 800;
}

#footer.rcsc-footer .rcsc-footer-menu,
.rcsc-footer-menu {
	margin: 0;
	list-style: none;
}

#footer.rcsc-footer .rcsc-footer-bottom,
.rcsc-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

#footer.rcsc-footer .rcsc-footer-legal,
.rcsc-footer-legal {
	font-size: 0.92rem;
	font-weight: 800;
	white-space: nowrap;
}

.rcsc-content {
	min-height: 55vh;
	background: #07111f;
}

.rcsc-entry-section {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background:
		linear-gradient(180deg, #07111f, #050d18) !important;
}

.rcsc-content .entry-content {
	color: rgba(231, 238, 252, 0.82);
	font-size: 1.05rem;
	line-height: 1.7;
}

.rcsc-content .entry-content > *:first-child {
	margin-top: 0;
}

.rcsc-content .entry-content h2,
.rcsc-content .entry-content h3 {
	color: var(--rcsc-white) !important;
	letter-spacing: 0;
}

.rcsc-content .entry-content p,
.rcsc-content .entry-content li {
	color: rgba(231, 238, 252, 0.78);
}

.rcsc-content .entry-content a {
	color: var(--rcsc-teal);
	font-weight: 800;
}

.rcsc-page-grid,
.rcsc-page-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.rcsc-page-grid.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rcsc-page-card,
.rcsc-page-panel {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 1.35rem;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(17, 26, 41, 0.94), rgba(7, 17, 31, 0.94)),
		radial-gradient(circle at 90% 12%, rgba(23, 230, 194, 0.12), transparent 28%);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.rcsc-page-card:hover,
.rcsc-page-panel:hover {
	transform: translateY(-4px);
	border-color: rgba(23, 230, 194, 0.32);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.rcsc-page-card h2,
.rcsc-page-card h3,
.rcsc-page-panel h2,
.rcsc-page-panel h3 {
	margin-bottom: 0.75rem;
}

.rcsc-page-card .rcsc-page-icon {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--rcsc-teal);
	font-size: 1.8rem;
}

.rcsc-page-steps {
	position: relative;
	display: grid;
	gap: 0.9rem;
	margin: 2.25rem 0;
	padding-left: 0.35rem;
}

.rcsc-page-steps::before {
	position: absolute;
	top: 1.5rem;
	bottom: 1.5rem;
	left: 1.85rem;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(23, 230, 194, 0.42), transparent);
	content: "";
}

.rcsc-page-step {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	gap: 0.25rem 1rem;
	align-items: start;
	min-height: 6.2rem;
	padding: 1.2rem 1.25rem 1.2rem 1rem;
	border: 1px solid rgba(78, 163, 255, 0.16);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.09), transparent 42%),
		rgba(17, 26, 41, 0.82);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.rcsc-page-step span {
	grid-row: span 2;
	display: inline-grid;
	place-items: center;
	width: 2.65rem;
	height: 2.65rem;
	border: 1px solid rgba(23, 230, 194, 0.44);
	border-radius: 999px;
	background: rgba(3, 7, 18, 0.82);
	box-shadow: 0 0 22px rgba(23, 230, 194, 0.08);
	color: var(--rcsc-teal);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
}

.rcsc-page-step strong {
	color: var(--rcsc-white);
	font-size: 1.12rem;
	line-height: 1.3;
}

.rcsc-page-step p {
	grid-column: 2;
	margin: 0;
	max-width: 66ch;
}

.rcsc-page-step p:empty {
	display: none;
}

.rcsc-page-cta {
	position: relative;
	overflow: hidden;
	margin-top: 2.5rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid rgba(23, 230, 194, 0.24);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.12), transparent 45%),
		rgba(3, 7, 18, 0.62);
}

.rcsc-content .entry-content .rcsc-page-cta .rcsc-button-primary {
	border: 1px solid rgba(23, 230, 194, 0.42);
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.12), rgba(51, 124, 246, 0.08)),
		rgba(7, 17, 31, 0.78);
	box-shadow:
		0 14px 36px rgba(0, 0, 0, 0.18),
		inset 0 0 24px rgba(23, 230, 194, 0.06);
	color: rgba(231, 238, 252, 0.94);
}

.rcsc-content .entry-content .rcsc-page-cta .rcsc-button-primary:hover,
.rcsc-content .entry-content .rcsc-page-cta .rcsc-button-primary:focus {
	border-color: rgba(23, 230, 194, 0.72);
	background:
		linear-gradient(135deg, rgba(23, 230, 194, 0.18), rgba(51, 124, 246, 0.12)),
		rgba(7, 17, 31, 0.9);
	box-shadow:
		0 18px 46px rgba(0, 0, 0, 0.22),
		0 0 28px rgba(23, 230, 194, 0.1);
	color: var(--rcsc-white);
	filter: none;
}

.rcsc-profile-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
	margin: 2rem 0;
}

.rcsc-profile-layout-service {
	grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
	align-items: center;
}

.rcsc-profile-portrait {
	overflow: hidden;
	border: 1px solid rgba(23, 230, 194, 0.22);
	border-radius: 8px;
	background: rgba(3, 7, 18, 0.55);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.rcsc-profile-portrait img,
.rcsc-photo-grid img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rcsc-profile-portrait img {
	aspect-ratio: 4 / 5;
}

.rcsc-service-portrait img {
	aspect-ratio: 1;
}

.rcsc-profile-portrait figcaption {
	padding: 0.8rem 1rem;
	border-top: 1px solid rgba(23, 230, 194, 0.18);
	background: rgba(3, 7, 18, 0.7);
	color: rgba(231, 238, 252, 0.78);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rcsc-service-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.35rem 0 0;
}

.rcsc-service-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.35rem 0.7rem;
	border: 1px solid rgba(23, 230, 194, 0.26);
	border-radius: 999px;
	background: rgba(23, 230, 194, 0.07);
	color: rgba(231, 238, 252, 0.86);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rcsc-service-brief {
	margin: 2rem 0;
}

.rcsc-professional-feature {
	display: grid;
	grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 0.58fr);
	gap: clamp(1rem, 3vw, 2rem);
	align-items: center;
	margin: 2rem 0;
}

.rcsc-professional-feature .rcsc-profile-portrait img {
	aspect-ratio: 1;
	object-position: center top;
}

.rcsc-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1rem 0 2rem;
}

.rcsc-photo-grid figure {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background: rgba(3, 7, 18, 0.5);
}

.rcsc-photo-grid img {
	aspect-ratio: 1;
}

.rcsc-photo-grid figcaption {
	padding: 0.65rem 0.75rem;
	color: rgba(231, 238, 252, 0.76);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.rcsc-timeline {
	display: grid;
	gap: 1rem;
	margin: 2rem 0;
}

.rcsc-timeline-item {
	position: relative;
	padding: 1.25rem 1.25rem 1.25rem 1.5rem;
	border: 1px solid var(--rcsc-line);
	border-left: 3px solid var(--rcsc-teal);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(17, 26, 41, 0.92), rgba(7, 17, 31, 0.92)),
		radial-gradient(circle at 90% 15%, rgba(78, 163, 255, 0.12), transparent 28%);
	transition: transform 200ms ease, border-color 200ms ease;
}

.rcsc-timeline-item:hover {
	transform: translateX(4px);
	border-color: rgba(23, 230, 194, 0.34);
}

.rcsc-timeline-item span {
	display: inline-flex;
	margin-bottom: 0.5rem;
	color: var(--rcsc-amber);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rcsc-timeline-item h3 {
	margin-bottom: 0.35rem;
}

.rcsc-timeline-item p {
	margin-bottom: 0;
}

.rcsc-page-hero,
section.rcsc-page-hero {
	padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
	background:
		linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(7, 17, 31, 0.86)),
		url("../img/jarvis-cyber-hero.png") center / cover no-repeat !important;
	color: var(--rcsc-white);
}

.rcsc-page-hero h1 {
	max-width: 920px;
	color: var(--rcsc-white);
	font-size: clamp(2.7rem, 5vw, 5rem);
	line-height: 1;
	letter-spacing: 0;
}

.rcsc-page-hero p {
	max-width: 760px;
	color: rgba(231, 238, 252, 0.78);
	font-size: 1.15rem;
	line-height: 1.65;
}

.rcsc-credential-section,
.rcsc-certifications,
section.rcsc-credential-section,
section.rcsc-certifications {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background: #07111f !important;
}

.rcsc-credential-section h2,
.rcsc-certifications h2,
.rcsc-cert-card h3 {
	color: var(--rcsc-white);
	letter-spacing: 0;
}

.rcsc-credential-section p {
	color: var(--rcsc-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.rcsc-skills-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rcsc-skill-chip {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 68px;
	padding: 1rem;
	border: 1px solid var(--rcsc-line);
	border-radius: 8px;
	background: rgba(17, 26, 41, 0.82);
	color: rgba(231, 238, 252, 0.86);
	font-weight: 800;
}

.rcsc-skill-chip i {
	color: var(--rcsc-teal);
	font-size: 1.3rem;
}

.rcsc-certifications,
section.rcsc-certifications {
	background:
		linear-gradient(135deg, rgba(78, 163, 255, 0.08), transparent 36%),
		#050d18 !important;
}

.rcsc-certifications h2 {
	font-size: clamp(1.4rem, 2.5vw, 2.3rem);
	line-height: 1.25;
}

.rcsc-cert-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.rcsc-cert-card {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 1.35rem;
	border: 1px solid rgba(23, 230, 194, 0.22);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(17, 26, 41, 0.96), rgba(7, 17, 31, 0.96)),
		radial-gradient(circle at 85% 12%, rgba(23, 230, 194, 0.13), transparent 30%);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.rcsc-cert-card:hover {
	transform: translateY(-4px);
	border-color: rgba(23, 230, 194, 0.36);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.rcsc-cert-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.rcsc-cert-card-top span {
	display: inline-flex;
	color: var(--rcsc-amber);
	font-weight: 900;
}

.rcsc-cert-badge {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	padding: 0.35rem;
	border: 1px solid rgba(130, 160, 210, 0.2);
	border-radius: 8px;
	background: rgba(3, 7, 18, 0.45);
}

.rcsc-cert-badge img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rcsc-cert-card h3 {
	font-size: 1.15rem;
	line-height: 1.35;
}

.rcsc-cert-meta {
	margin: 1rem 0 0;
	color: rgba(231, 238, 252, 0.74);
	font-size: 0.92rem;
	line-height: 1.5;
}

.rcsc-cert-meta strong,
.rcsc-cert-meta span {
	display: block;
}

.rcsc-cert-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.2rem;
}

.rcsc-cert-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0.45rem 0.7rem;
	border: 1px solid rgba(23, 230, 194, 0.32);
	border-radius: 8px;
	color: var(--rcsc-teal);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rcsc-cert-actions a:hover {
	border-color: var(--rcsc-teal);
	background: rgba(23, 230, 194, 0.1);
	color: var(--rcsc-white);
}

.rcsc-post-summary {
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--rcsc-line);
}

.rcsc-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 560ms ease, transform 560ms ease;
}

.rcsc-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes rcsc-panel-sheen {
	0%,
	62% {
		transform: translateX(-120%);
		opacity: 0;
	}
	72% {
		opacity: 1;
	}
	100% {
		transform: translateX(120%);
		opacity: 0;
	}
}

@keyframes rcsc-radar-pulse {
	0%,
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 28px rgba(23, 230, 194, 0.75);
	}
	50% {
		transform: scale(1.12);
		box-shadow: 0 0 48px rgba(23, 230, 194, 0.95);
	}
}

@keyframes rcsc-radar-blip {
	0%,
	44%,
	100% {
		opacity: 0;
		transform: scale(0.65);
	}
	50%,
	64% {
		opacity: 1;
		transform: scale(1);
	}
	78% {
		opacity: 0;
		transform: scale(1.75);
	}
}

.rcsc-page-hero,
section.rcsc-page-hero,
.rcsc-hero {
	isolation: isolate;
}

.rcsc-page-hero,
section.rcsc-page-hero {
	position: relative;
	overflow: hidden;
}

.rcsc-page-hero::before,
section.rcsc-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(78, 163, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(78, 163, 255, 0.055) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.rcsc-page-hero .container,
section.rcsc-page-hero .container {
	position: relative;
	z-index: 1;
}

.rcsc-page-hero::after,
section.rcsc-page-hero::after {
	content: "";
	position: absolute;
	z-index: 1;
	right: max(2rem, 8vw);
	bottom: -1px;
	left: max(2rem, 8vw);
	height: 1px;
	pointer-events: none;
	background: linear-gradient(90deg, transparent, rgba(23, 230, 194, 0.58), rgba(78, 163, 255, 0.38), transparent);
}

.rcsc-content .entry-content a:not(.button),
.rcsc-footer a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
	transition: color 160ms ease, text-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.rcsc-content .entry-content a:not(.button):hover {
	color: var(--rcsc-white);
	text-shadow: 0 0 18px rgba(23, 230, 194, 0.26);
}

.rcsc-skill-chip,
.rcsc-timeline-item,
.rcsc-photo-grid figure,
.rcsc-service-badges span {
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.rcsc-skill-chip:hover,
.rcsc-photo-grid figure:hover {
	transform: translateY(-3px);
	border-color: rgba(23, 230, 194, 0.32);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.rcsc-photo-grid img,
.rcsc-service-portrait img,
.rcsc-professional-feature .rcsc-profile-portrait img {
	filter: saturate(0.96) contrast(1.04);
	transition: filter 220ms ease, transform 220ms ease;
}

.rcsc-photo-grid figure:hover img,
.rcsc-service-portrait:hover img,
.rcsc-professional-feature .rcsc-profile-portrait:hover img {
	filter: saturate(1.04) contrast(1.08);
	transform: scale(1.018);
}

#footer.rcsc-footer,
.rcsc-footer {
	position: relative;
	border-top: 1px solid rgba(23, 230, 194, 0.16);
}

#footer.rcsc-footer::before,
.rcsc-footer::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(23, 230, 194, 0.48), rgba(78, 163, 255, 0.32), transparent);
}

.rcsc-footer-social a {
	min-height: 2.25rem;
	padding: 0.45rem 0.65rem;
	border: 1px solid rgba(130, 160, 210, 0.16);
	border-radius: 999px;
	background: rgba(3, 7, 18, 0.28);
}

.rcsc-footer-social a:hover {
	border-color: rgba(23, 230, 194, 0.38);
	background: rgba(23, 230, 194, 0.08);
}

@media (prefers-reduced-motion: reduce) {
	.rcsc-reveal,
	.rcsc-button-primary,
	.rcsc-button-secondary,
	.rcsc-hero-metrics div,
	.rcsc-service,
	.rcsc-steps div,
	.rcsc-briefing-grid div,
	.rcsc-page-card,
	.rcsc-page-panel,
	.rcsc-timeline-item,
	.rcsc-cert-card,
	.rcsc-skill-chip,
	.rcsc-photo-grid figure,
	.rcsc-photo-grid img,
	.rcsc-service-portrait img,
	.rcsc-professional-feature .rcsc-profile-portrait img,
	.rcsc-footer a {
		transition: none;
	}

	.rcsc-reveal {
		opacity: 1;
		transform: none;
	}

	.rcsc-command-panel::after,
	.rcsc-radar-core,
	.rcsc-radar-blip {
		animation: none;
	}
}

@media (max-width: 991.98px) {
	#header.rcsc-header .header-row,
	.rcsc-header .header-row {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.85rem;
		min-height: auto;
		padding: 0.8rem 0;
	}

	.rcsc-menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.rcsc-nav.primary-menu {
		order: 3;
		width: 100%;
		margin-left: 0;
	}

	.rcsc-nav .menu-container {
		display: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		padding: 0.65rem;
		border-radius: 14px;
		background: rgba(3, 7, 18, 0.92);
		box-shadow: inset 0 0 28px rgba(23, 230, 194, 0.05), 0 16px 40px rgba(0, 0, 0, 0.26);
	}

	body.rcsc-menu-open .rcsc-nav .menu-container {
		display: grid;
	}

	.rcsc-nav .menu-container > .menu-item {
		min-width: 0;
	}

	.rcsc-nav .menu-container > .menu-item > a,
	.rcsc-nav .menu-link {
		justify-content: center;
		width: 100%;
		min-height: 2.75rem;
		padding: 0.65rem 0.75rem;
		font-size: 0.88rem;
		text-align: center;
	}

	.rcsc-nav .menu-container > .menu-item:last-child > a {
		border-color: transparent;
		background: transparent;
		box-shadow: none;
	}

	.rcsc-hero {
		min-height: auto;
		padding: 4.5rem 0;
		background-position: 58% center;
	}

	.rcsc-hero h1 {
		font-size: clamp(2.75rem, 9vw, 4.25rem);
		line-height: 1;
	}

	.rcsc-hero-copy {
		font-size: 1.05rem;
	}

	.rcsc-hero-metrics {
		margin-top: 1.8rem;
	}

	.rcsc-command-panel {
		min-height: 320px;
		padding: 1.35rem;
	}

	.rcsc-radar {
		width: min(100%, 230px);
		margin: 1.8rem auto 1.35rem;
	}

	.rcsc-page-hero,
	section.rcsc-page-hero {
		padding: 4rem 0 3.25rem;
	}

	.rcsc-page-hero h1 {
		font-size: clamp(2.35rem, 9vw, 3.7rem);
		line-height: 1.04;
	}

	.rcsc-page-hero p {
		font-size: 1.02rem;
		line-height: 1.55;
	}

	.rcsc-intel-grid,
	.rcsc-briefing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rcsc-page-grid,
	.rcsc-page-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rcsc-profile-layout {
		grid-template-columns: 1fr;
	}

	.rcsc-footer-contact {
		align-items: flex-start;
		text-align: left;
	}

	.rcsc-footer-social {
		justify-content: flex-start;
	}

	.rcsc-professional-feature {
		grid-template-columns: 1fr;
	}

	.rcsc-cert-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.rcsc-logo-image {
		width: min(210px, 58vw);
		max-height: 44px !important;
	}

	.rcsc-logo-text {
		max-width: 190px;
	}

	.rcsc-menu-toggle {
		min-height: 2.45rem;
		padding: 0.5rem 0.68rem;
	}

	.rcsc-nav .menu-container {
		grid-template-columns: 1fr;
	}

	.rcsc-hero {
		padding: 3.25rem 0 3.5rem;
	}

	.rcsc-hero h1 {
		font-size: clamp(2.28rem, 11vw, 3.05rem);
	}

	.rcsc-hero-copy {
		margin: 1rem 0 1.35rem;
		font-size: 1rem;
		line-height: 1.5;
	}

	.rcsc-command-panel {
		min-height: 0;
		padding: 1rem;
	}

	.rcsc-command-top {
		font-size: 0.68rem;
		letter-spacing: 0.08em;
	}

	.rcsc-radar {
		width: min(100%, 180px);
		margin: 1rem auto 0.9rem;
	}

	.rcsc-radar::after {
		box-shadow:
			0 0 0 30px rgba(78, 163, 255, 0.03),
			0 0 0 60px rgba(78, 163, 255, 0.022),
			inset 0 0 20px rgba(23, 230, 194, 0.1);
	}

	.rcsc-command-stack {
		gap: 0.55rem;
	}

	.rcsc-command-stack div {
		align-items: center;
		padding: 0.65rem 0.75rem;
		font-size: 0.86rem;
		line-height: 1.2;
	}

	.rcsc-page-hero,
	section.rcsc-page-hero {
		padding: 3rem 0 2.5rem;
	}

	.rcsc-page-hero h1 {
		font-size: clamp(1.85rem, 8.5vw, 2.35rem);
		line-height: 1.08;
	}

	.rcsc-page-hero p {
		font-size: 0.98rem;
		line-height: 1.5;
	}

	.rcsc-actions .button {
		width: 100%;
		text-align: center;
	}

	.rcsc-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.rcsc-intel-grid,
	.rcsc-briefing-grid,
	.rcsc-form-grid,
	.rcsc-skills-grid,
	.rcsc-page-grid,
	.rcsc-page-grid.two,
	.rcsc-page-card-grid,
	.rcsc-photo-grid,
	.rcsc-cert-grid {
		grid-template-columns: 1fr;
	}

	.rcsc-form-field-wide {
		grid-column: auto;
	}

	.rcsc-hero-metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.45rem;
		margin-top: 1.15rem;
	}

	.rcsc-hero-metrics div {
		padding: 0.65rem 0.45rem;
	}

	.rcsc-hero-metrics strong,
	.rcsc-hero-metrics span {
		font-size: 0.68rem;
		line-height: 1.2;
	}
}
