/*
 * Neubit Command & Control product page.
 *
 * Every declaration here is the resolved value of a Tailwind utility that was
 * on the original React component (NeubitPage.js / NeubitVisuals.js), so the
 * rendered page matches the old site rather than approximating it.
 *
 * Tailwind values used repeatedly:
 *   accent        #2563eb        accent-hover  #1d4ed8
 *   primary       #0b1b3d        text          #1a1a2e
 *   text-muted    #6b7280        gray-100      #f3f4f6
 *   gray-200      #e5e7eb        gray-50/70    #fbfcfc (over white)
 *   red-400       #f87171        amber-400     #fbbf24
 *   emerald-400   #34d399        emerald-300   #6ee7b7
 *   blue-500      #3b82f6
 */

.gvd-nb {
	background: #fff;
	color: #1a1a2e;
}

/* =============================================================== bands === */

/* py-20 lg:py-28 */
.gvd-nb__band {
	position: relative;
	overflow: hidden;
	padding-block: 5rem;
}

@media (min-width: 1024px) {
	.gvd-nb__band { padding-block: 7rem; }
}

.gvd-nb__band--white { background: #fff; }
.gvd-nb__band--tint  { background: #fbfcfc; }
.gvd-nb__band--dark  { background: #0b1b3d; }
.gvd-nb__band--cta   { background: #0b1b3d; }

.gvd-nb__band > .gvd-container { position: relative; z-index: 1; }

/* max-w-4xl / max-w-5xl inside the shared container. */
.gvd-nb__narrow { max-width: 56rem; }
.gvd-nb__medium { max-width: 64rem; }
.gvd-nb__center { text-align: center; }

/* mt-14 — the gap the original leaves between a heading and its content. */
.gvd-nb__aftheading { margin-top: 3.5rem; }

/* ======================================================= section heads === */

/* The shared .gvd-eyebrow is reused; these are the product-page deltas
   (border, larger padding, semibold, no trailing margin). */
.gvd-nb__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0;
	padding: 0.375rem 0.875rem;
	border: 1px solid rgba(37, 99, 235, 0.2);
	background: rgba(37, 99, 235, 0.1);
	font-weight: 600;
	letter-spacing: 0.05em;
}

.gvd-nb__head { max-width: 48rem; }
.gvd-nb__head--center { margin-inline: auto; text-align: center; }

/* text-3xl sm:text-4xl, leading-[1.12], tracking-tight */
.gvd-nb__h2 {
	margin-top: 1.25rem;
	font-size: 1.875rem;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

@media (min-width: 640px) {
	.gvd-nb__h2 { font-size: 2.25rem; }
}

.gvd-nb__head--light .gvd-nb__h2 { color: #fff; }

.gvd-nb__lede {
	margin: 1.25rem 0 0;
	color: #6b7280;
	font-size: 1.125rem;
	line-height: 1.625;
}

.gvd-nb__head--light .gvd-nb__lede { color: rgba(255, 255, 255, 0.65); }

/* ================================================================ hero === */

/* py-24 lg:py-32 on #0B1B3D */
.gvd-nb__hero {
	position: relative;
	overflow: hidden;
	padding-block: 6rem;
	background: #0b1b3d;
}

@media (min-width: 1024px) {
	.gvd-nb__hero { padding-block: 8rem; }
}

.gvd-nb__herogradient {
	background: linear-gradient(to bottom right, #0b1b3d, #0e2a5e, #0b1b3d);
}

.gvd-nb__herogrid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 30%, transparent 75%);
}

/* The two slowly drifting blurred orbs. */
.gvd-nb__orb {
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
}

.gvd-nb__orb--a {
	left: -6rem;
	top: 2.5rem;
	width: 18rem;
	height: 18rem;
	background: rgba(37, 99, 235, 0.25);
	filter: blur(110px);
	animation: gvd-nb-drift-a 12s ease-in-out infinite;
}

.gvd-nb__orb--b {
	right: 0;
	top: 33.333%;
	width: 20rem;
	height: 20rem;
	background: rgba(59, 130, 246, 0.2);
	filter: blur(130px);
	animation: gvd-nb-drift-b 15s ease-in-out infinite;
}

@keyframes gvd-nb-drift-a {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, -20px); }
}

@keyframes gvd-nb-drift-b {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-40px, 30px); }
}

.gvd-nb__hairline {
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(37, 99, 235, 0.6), transparent);
	pointer-events: none;
}

.gvd-nb__heroinner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: 3.5rem;
}

@media (min-width: 1024px) {
	.gvd-nb__heroinner { grid-template-columns: 1.1fr 0.9fr; }
}

.gvd-nb__kicker {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	color: #2563eb;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.gvd-nb__kickersep { color: rgba(255, 255, 255, 0.3); }

/* text-4xl sm:text-5xl lg:text-[3.4rem], leading-[1.06] */
.gvd-nb__herotitle {
	margin: 1.25rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.025em;
	color: #fff;
}

@media (min-width: 640px) { .gvd-nb__herotitle { font-size: 3rem; } }
@media (min-width: 1024px) { .gvd-nb__herotitle { font-size: 3.4rem; } }

.gvd-nb__herolede {
	max-width: 36rem;
	margin: 1.5rem 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.125rem;
	line-height: 1.625;
}

.gvd-nb__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1.75rem 0 0;
	padding: 0.625rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	line-height: 1.4;
}

.gvd-nb__pillicon { flex-shrink: 0; color: #2563eb; }
.gvd-nb__pill strong { color: #fff; font-weight: 600; }

.gvd-nb__actions { margin-top: 2.25rem; }
.gvd-nb__btnwide { padding-inline: 2rem; }

/* ---------------------------------------------------------- stat band --- */

.gvd-nb__statwrap { position: relative; z-index: 1; margin-top: 4rem; }

@media (min-width: 1024px) { .gvd-nb__statwrap { margin-top: 5rem; } }

/* gap-px over bg-white/10 draws the hairline dividers. */
.gvd-nb__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

@media (min-width: 1024px) {
	.gvd-nb__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.gvd-nb__stat { padding: 1.5rem; text-align: center; background: #0b1b3d; }

.gvd-nb__statvalue {
	display: block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

@media (min-width: 1024px) { .gvd-nb__statvalue { font-size: 2.25rem; } }

.gvd-nb__statlabel {
	margin: 0.25rem 0 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* ==================================================== command mockup ==== */

.gvd-nb__heromedia { position: relative; }

.gvd-nb__mockup { position: relative; width: 100%; }

/* Drawn as a pseudo-element so the bleed past the panel never widens the
   document on narrow viewports. */
.gvd-nb__mockup::before {
	content: "";
	position: absolute;
	inset: -1.5rem;
	border-radius: 2.5rem;
	background: rgba(37, 99, 235, 0.15);
	filter: blur(48px);
	pointer-events: none;
}

.gvd-nb__window {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
	background: rgba(10, 23, 48, 0.9);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
	overflow: hidden;
}

.gvd-nb__chrome {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.gvd-nb__dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; flex-shrink: 0; }
.gvd-nb__dot--red { background: rgba(248, 113, 113, 0.7); }
.gvd-nb__dot--amber { background: rgba(251, 191, 36, 0.7); }
.gvd-nb__dot--emerald { background: rgba(52, 211, 153, 0.7); }

.gvd-nb__chrometitle {
	margin-left: 0.5rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gvd-nb__live {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-left: auto;
	color: #6ee7b7;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gvd-nb__pulse {
	position: relative;
	display: block;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: #34d399;
	flex-shrink: 0;
}

.gvd-nb__pulse::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: rgba(52, 211, 153, 0.7);
	animation: gvd-nb-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes gvd-nb-ping {
	75%, 100% { transform: scale(2); opacity: 0; }
}

.gvd-nb__windowbody { display: grid; gap: 0.75rem; padding: 1rem; }

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

.gvd-nb__statchip {
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.04);
}

.gvd-nb__statchipvalue {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.gvd-nb__statchiplabel {
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 9px;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	line-height: 1.4;
}

.gvd-nb__panels { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; }

/* ------------------------------------------------------------- radar --- */

.gvd-nb__radar {
	position: relative;
	grid-column: span 3;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: #081226;
	overflow: hidden;
}

.gvd-nb__ring { position: absolute; border: 1px solid rgba(37, 99, 235, 0.2); border-radius: 9999px; }

.gvd-nb__crossv {
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
	transform: translateX(-50%);
	background: rgba(37, 99, 235, 0.15);
}

.gvd-nb__crossh {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	transform: translateY(-50%);
	background: rgba(37, 99, 235, 0.15);
}

.gvd-nb__sweep {
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: conic-gradient(from 0deg, rgba(37, 99, 235, 0.45) 0deg, transparent 60deg);
	animation: gvd-nb-spin 4s linear infinite;
}

@keyframes gvd-nb-spin {
	to { transform: rotate(360deg); }
}

.gvd-nb__blip {
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: #2563eb;
	box-shadow: 0 0 8px 2px rgba(37, 99, 235, 0.6);
	animation: gvd-nb-blip 2s ease-in-out infinite;
}

@keyframes gvd-nb-blip {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.6); opacity: 0.5; }
}

/* -------------------------------------------------------- camera grid --- */

.gvd-nb__cams {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

/* The tile is the positioning context (the aspect box below is only a
   spacer), so the REC badge and caption pin to the stretched tile edges. */
.gvd-nb__cam {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	overflow: hidden;
}

.gvd-nb__camframe { aspect-ratio: 4 / 3; }

.gvd-nb__rec { position: absolute; right: 0.25rem; top: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.gvd-nb__recdot { width: 0.25rem; height: 0.25rem; border-radius: 9999px; background: #f87171; }
.gvd-nb__reclabel { color: #fca5a5; font-size: 7px; font-weight: 600; letter-spacing: 0.02em; }

.gvd-nb__scan {
	position: absolute;
	inset-inline: 0;
	top: 10%;
	height: 1px;
	background: rgba(37, 99, 235, 0.4);
	animation: gvd-nb-scan 3s linear infinite;
}

@keyframes gvd-nb-scan {
	0% { top: 10%; }
	50% { top: 85%; }
	100% { top: 10%; }
}

.gvd-nb__camlabel { position: absolute; bottom: 0.25rem; left: 0.375rem; color: rgba(255, 255, 255, 0.55); font-size: 7px; }

/* --------------------------------------------------------- event feed --- */

.gvd-nb__feed {
	display: grid;
	gap: 0.375rem;
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
}

.gvd-nb__feedrow { display: flex; align-items: center; gap: 0.625rem; }

.gvd-nb__feeddot { width: 0.375rem; height: 0.375rem; flex-shrink: 0; border-radius: 9999px; }
.gvd-nb__feeddot--red { background: #f87171; }
.gvd-nb__feeddot--amber { background: #fbbf24; }
.gvd-nb__feeddot--accent { background: #2563eb; }
.gvd-nb__feeddot--emerald { background: #34d399; }

.gvd-nb__feedlabel {
	color: rgba(255, 255, 255, 0.55);
	font-size: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gvd-nb__feedbar {
	margin-left: auto;
	flex-shrink: 0;
	max-width: 40%;
	height: 0.25rem;
	border-radius: 0.25rem;
	background: rgba(255, 255, 255, 0.1);
}

/* ==================================================== problem statement == */

.gvd-nb__statement {
	margin: 1.5rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.375;
	color: #1a1a2e;
}

@media (min-width: 640px) { .gvd-nb__statement { font-size: 1.875rem; } }
@media (min-width: 1024px) { .gvd-nb__statement { font-size: 2.5rem; } }

.gvd-nb__statementtext {
	max-width: 42rem;
	margin: 1.5rem auto 0;
	color: #6b7280;
	font-size: 1.125rem;
	line-height: 1.625;
}

/* ================================================ convergence diagram === */

.gvd-nb__converge { padding-block: 1rem; }

@media (max-width: 639px) {
	.gvd-nb__converge { padding: 2.5rem 1.5rem; }
}

.gvd-nb__convergestage {
	position: relative;
	width: 100%;
	max-width: 36rem;
	margin-inline: auto;
	aspect-ratio: 1 / 1;
}

.gvd-nb__spokes { position: absolute; inset: 0; width: 100%; height: 100%; }

.gvd-nb__packet {
	position: absolute;
	left: var(--gvd-nb-x);
	top: var(--gvd-nb-y);
	width: 0.5rem;
	height: 0.5rem;
	margin-left: -4px;
	margin-top: -4px;
	border-radius: 9999px;
	background: #2563eb;
	box-shadow: 0 0 8px 2px rgba(37, 99, 235, 0.5);
	opacity: 0;
	animation: gvd-nb-packet 2s ease-in-out infinite;
}

@keyframes gvd-nb-packet {
	0% { left: var(--gvd-nb-x); top: var(--gvd-nb-y); opacity: 0; }
	50% { opacity: 1; }
	100% { left: 50%; top: 50%; opacity: 0; }
}

.gvd-nb__node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	width: 6rem;
	transform: translate(-50%, -50%);
}

.gvd-nb__nodeicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #fff;
	color: #2563eb;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.gvd-nb__nodelabel {
	color: #6b7280;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}

.gvd-nb__hub {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	transform: translate(-50%, -50%);
	border-radius: 9999px;
	background: #0b1b3d;
	color: #2563eb;
	text-align: center;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1),
		0 0 0 4px rgba(37, 99, 235, 0.2);
}

.gvd-nb__hubglow {
	position: absolute;
	inset: -0.5rem;
	z-index: -1;
	border-radius: 9999px;
	background: rgba(37, 99, 235, 0.2);
	filter: blur(16px);
}

.gvd-nb__hubname {
	margin-top: 0.25rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}

.gvd-nb__hubrole { color: rgba(255, 255, 255, 0.5); font-size: 9px; }

/* ======================================================= flow diagram === */

.gvd-nb__flow { position: relative; }

.gvd-nb__track { display: none; }

@media (min-width: 1024px) {
	.gvd-nb__track {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 50%;
		height: 1px;
		transform: translateY(-50%);
		background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.4), rgba(37, 99, 235, 0.1));
	}
}

.gvd-nb__trackdot {
	position: absolute;
	top: 50%;
	width: 0.5rem;
	height: 0.5rem;
	margin-top: -0.25rem;
	border-radius: 9999px;
	background: #2563eb;
	box-shadow: 0 0 8px 2px rgba(37, 99, 235, 0.5);
	opacity: 0;
	animation: gvd-nb-travel 3s ease-in-out infinite;
}

.gvd-nb__trackdot:nth-child(2) { animation-delay: 1s; }
.gvd-nb__trackdot:nth-child(3) { animation-delay: 2s; }

@keyframes gvd-nb-travel {
	0% { left: 0; opacity: 0; }
	50% { opacity: 1; }
	100% { left: 100%; opacity: 0; }
}

.gvd-nb__flowgrid { position: relative; display: grid; gap: 1.5rem; }

@media (min-width: 1024px) {
	.gvd-nb__flowgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.gvd-nb__stage {
	position: relative;
	padding: 1.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gvd-nb__stagehead { display: flex; align-items: center; justify-content: space-between; }

.gvd-nb__stageicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: linear-gradient(to bottom right, #2563eb, #3b82f6);
	color: #fff;
	box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25), 0 4px 6px -4px rgba(37, 99, 235, 0.25);
}

.gvd-nb__stagenum {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: #f3f4f6;
}

.gvd-nb__stagetag {
	margin: 1.25rem 0 0;
	color: #2563eb;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gvd-nb__stagetitle {
	margin: 0.25rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a2e;
}

.gvd-nb__stagetext { margin: 0.5rem 0 0; color: #6b7280; font-size: 0.875rem; line-height: 1.625; }

/* =============================================== business impact rows === */

.gvd-nb__split {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.gvd-nb__split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.gvd-nb__impactlist { display: grid; gap: 0.75rem; }

.gvd-nb__impactrow {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fcfcfd;
}

.gvd-nb__impacttick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-nb__impacttext { margin: 0; padding-top: 0.25rem; color: #1a1a2e; }

/* =============================================== architecture diagram === */

.gvd-nb__darkgrid {
	opacity: 0.6;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
}

.gvd-nb__archwrap { max-width: 64rem; }

.gvd-nb__arch { display: grid; gap: 1.5rem; align-items: center; }

@media (min-width: 1024px) {
	.gvd-nb__arch { grid-template-columns: 1fr auto 1fr; }
}

.gvd-nb__archcol { display: grid; gap: 1.25rem; align-content: center; }

.gvd-nb__archcard {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.gvd-nb__archcard:hover {
	border-color: rgba(37, 99, 235, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

.gvd-nb__archicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.15);
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.3);
	color: #2563eb;
}

.gvd-nb__archtitle {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}

.gvd-nb__archtext { margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; }

/* ------------------------------------------------------- event bus ----- */

.gvd-nb__spine {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	padding-block: 1rem;
	min-height: 14rem;
	height: 100%;
}

.gvd-nb__spineinner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	width: 5rem;
	padding-block: 1.5rem;
	border: 1px solid rgba(37, 99, 235, 0.3);
	border-radius: 1rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-nb__spineglow {
	position: absolute;
	inset: -0.5rem;
	z-index: -1;
	border-radius: 1rem;
	background: rgba(37, 99, 235, 0.15);
	filter: blur(12px);
}

.gvd-nb__spinelabel {
	margin-top: 0.5rem;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
}

@media (min-width: 1024px) {
	.gvd-nb__spinelabel { writing-mode: vertical-rl; transform: rotate(180deg); }
}

.gvd-nb__spinepacket {
	position: absolute;
	left: 50%;
	top: 8%;
	width: 0.5rem;
	height: 0.5rem;
	margin-left: -0.25rem;
	border-radius: 9999px;
	background: #2563eb;
	box-shadow: 0 0 8px 2px rgba(37, 99, 235, 0.6);
	opacity: 0;
	animation: gvd-nb-spinepacket 2s linear infinite;
}

.gvd-nb__spinepacket + .gvd-nb__spinepacket { animation-delay: 1s; }

@keyframes gvd-nb-spinepacket {
	0% { top: 8%; opacity: 0; }
	50% { opacity: 1; }
	100% { top: 92%; opacity: 0; }
}

/* ======================================================== capabilities == */

.gvd-nb__cap {
	height: 100%;
	padding: 1.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gvd-nb__cap:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.gvd-nb__capicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	transition: background-color 0.3s ease;
}

.gvd-nb__cap:hover .gvd-nb__capicon { background: rgba(37, 99, 235, 0.2); }

.gvd-nb__captitle {
	margin: 1.25rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a2e;
}

.gvd-nb__captext { margin: 0.5rem 0 0; color: #6b7280; font-size: 0.875rem; line-height: 1.625; }

/* ============================================= modules & use-case grid == */

/* sm:grid-cols-2 lg:grid-cols-3, gap-4 */
.gvd-nb__modules {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) { .gvd-nb__modules { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .gvd-nb__modules { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.gvd-nb__modules > .gvd-reveal { height: 100%; }

.gvd-nb__module {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 100%;
	padding: 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gvd-nb__module:hover {
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.gvd-nb__moduleicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-nb__modulelabel { color: #1a1a2e; font-weight: 500; }

/* -------------------------------------------------------- use cases ---- */

.gvd-nb__usecase {
	position: relative;
	height: 100%;
	padding: 1.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gvd-nb__usecase:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Offset accent blob, as a pseudo-element for the same reason. */
.gvd-nb__usecase::before {
	content: "";
	position: absolute;
	right: -1.5rem;
	top: -1.5rem;
	width: 6rem;
	height: 6rem;
	border-radius: 9999px;
	background: rgba(37, 99, 235, 0.05);
	transition: background-color 0.3s ease;
}

.gvd-nb__usecase:hover::before { background: rgba(37, 99, 235, 0.1); }

.gvd-nb__usecase .gvd-nb__capicon { position: relative; }

.gvd-nb__usecasetitle {
	position: relative;
	margin: 1.25rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.375;
	color: #1a1a2e;
}

/* ========================================================== comparison == */

/* gap-px over bg-gray-200 gives the hairline grid. */
.gvd-nb__compare {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1px;
	border: 1px solid #e5e7eb;
	border-radius: 1.5rem;
	background: #e5e7eb;
	overflow: hidden;
}

@media (min-width: 768px) {
	.gvd-nb__compare { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.gvd-nb__comparehead {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.125rem;
	font-weight: 600;
}

.gvd-nb__comparehead--legacy { background: #f9fafb; color: #6b7280; }
.gvd-nb__comparehead--neubit { background: #0b1b3d; color: #fff; }
.gvd-nb__compareheadicon { color: #2563eb; }

.gvd-nb__comparecell {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.25rem;
	font-size: 0.875rem;
}

.gvd-nb__comparecell--legacy { background: #fff; color: #6b7280; }
.gvd-nb__comparecell--neubit { background: rgba(11, 27, 61, 0.02); color: #1a1a2e; font-weight: 500; }

.gvd-nb__comparex { flex-shrink: 0; margin-top: 0.125rem; color: #f87171; }
.gvd-nb__comparecheck { flex-shrink: 0; margin-top: 0.125rem; color: #2563eb; }

/* =========================================================== timeline === */

.gvd-nb__timeline { position: relative; padding-left: 1rem; }

.gvd-nb__rail {
	position: absolute;
	left: 1.65rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 1px;
	background: linear-gradient(to bottom, #2563eb, rgba(37, 99, 235, 0.4), transparent);
}

.gvd-nb__steps { display: grid; gap: 1.25rem; }

.gvd-nb__steprow { position: relative; display: flex; align-items: center; gap: 1.25rem; }

.gvd-nb__stepnum {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: #2563eb;
	color: #fff;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.gvd-nb__stepbody {
	flex: 1 1 auto;
	min-width: 0;
	padding: 1rem 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fcfcfd;
}

.gvd-nb__stepbody p { margin: 0; color: #1a1a2e; }

/* ========================================================= integration == */

.gvd-nb__ecosystem { display: grid; gap: 0.75rem; }

@media (min-width: 640px) {
	.gvd-nb__ecosystem { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.gvd-nb__ecorow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	height: 100%;
	padding: 1rem;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	color: #1a1a2e;
	font-size: 0.875rem;
	font-weight: 500;
}

.gvd-nb__ecosystem > .gvd-reveal { height: 100%; }
.gvd-nb__ecocheck { flex-shrink: 0; color: #2563eb; }

/* ================================================ scale + deployment ==== */

.gvd-nb__duo { display: grid; gap: 3.5rem; }

@media (min-width: 1024px) {
	.gvd-nb__duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.gvd-nb__scalelist { display: grid; gap: 0.75rem; margin-top: 2rem; }

.gvd-nb__scalerow {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	background: #fcfcfd;
	color: #1a1a2e;
}

.gvd-nb__scaleicon { flex-shrink: 0; color: #2563eb; }

.gvd-nb__deploylist { display: grid; gap: 1rem; margin-top: 2rem; }

.gvd-nb__deploy {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gvd-nb__deploy:hover {
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.gvd-nb__deploytitle {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a2e;
}

.gvd-nb__deploytext { margin: 0.125rem 0 0; color: #6b7280; font-size: 0.875rem; }

/* ========================================================== why neubit == */

.gvd-nb__whylist { display: grid; gap: 0.75rem; margin-top: 3rem; }

.gvd-nb__whyrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gvd-nb__whytick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-nb__whylabel { color: #1a1a2e; font-weight: 500; }

/* ================================================================= CTA == */

.gvd-nb__ctaglow {
	background: radial-gradient(ellipse at bottom, rgba(37, 99, 235, 0.25) 0%, transparent 55%);
}

.gvd-nb__ctainner { max-width: 48rem; text-align: center; }

.gvd-nb__ctatitle {
	margin: 1.5rem 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #fff;
}

@media (min-width: 640px) { .gvd-nb__ctatitle { font-size: 2.25rem; } }
@media (min-width: 1024px) { .gvd-nb__ctatitle { font-size: 3rem; } }

.gvd-nb__ctatext {
	max-width: 36rem;
	margin: 1.5rem auto 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.125rem;
	line-height: 1.7;
}

.gvd-nb__ctaactions { margin-top: 2.5rem; }

/* ==================================================== reduced motion ==== */

@media (prefers-reduced-motion: reduce) {
	.gvd-nb__orb--a,
	.gvd-nb__orb--b,
	.gvd-nb__pulse::before,
	.gvd-nb__sweep,
	.gvd-nb__blip,
	.gvd-nb__scan,
	.gvd-nb__packet,
	.gvd-nb__trackdot,
	.gvd-nb__spinepacket { animation: none; }

	.gvd-nb__packet,
	.gvd-nb__trackdot,
	.gvd-nb__spinepacket { opacity: 0; }
}

/* ------------------------------------------------- platform advantage ---- */

.gvd-nb__advantage {
	display: grid;
	gap: 2.5rem;
	align-items: center;
	margin-top: 2.5rem;
}

@media (min-width: 1024px) {
	.gvd-nb__advantage { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
}

.gvd-nb__advantagefig { margin: 0; }

.gvd-nb__advantagefig img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.875rem;
}

.gvd-nb__advantagelist {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gvd-nb__advantageitem {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 1rem 1.125rem;
	border: 1px solid rgba(229, 231, 235, 0.8);
	border-radius: 0.75rem;
	background: #fff;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.gvd-nb__advantageitem:hover {
	border-color: rgba(37, 99, 235, 0.4);
	transform: translateX(3px);
}

.gvd-nb__advantageicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.625rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-nb__advantagetitle {
	display: block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1a1a2e;
}

.gvd-nb__advantagedesc {
	display: block;
	margin-top: 0.125rem;
	color: #6b7280;
	font-size: 0.875rem;
}
