/*
 * Genius Vision VMS product page.
 *
 * Every declaration here is the resolved value of a Tailwind utility that was
 * on the original React component (frontend/src/components/products/VmsPage.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)
 *   gray-50/60    #fcfcfd        red-400       #f87171
 *   amber-400     #fbbf24        emerald-400   #34d399
 *   emerald-300   #6ee7b7        emerald-500   #10b981
 *   blue-500      #3b82f6
 */

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

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

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

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

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

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

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

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

/* The shared .gvd-eyebrow is reused; these are the product-page deltas
   (border, larger padding, semibold, icon slot, no trailing margin). */
.gvd-vms__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-vms__eyebrow .gvd-svg { flex-shrink: 0; }

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

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

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

.gvd-vms__head--light .gvd-vms__h2 { color: #fff; }

/* mt-5 text-lg leading-relaxed */
.gvd-vms__lede {
	margin: 1.25rem 0 0;
	color: #6b7280;
	font-size: 1.125rem;
	line-height: 1.625;
}

.gvd-vms__head--light .gvd-vms__lede { color: rgba(255, 255, 255, 0.65); }

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

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

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

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

.gvd-vms__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-vms__orb {
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
}

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

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

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

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

.gvd-vms__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;
}

/* gap-14, lg:grid-cols-[1.05fr_0.95fr] */
.gvd-vms__heroinner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: 3.5rem;
}

@media (min-width: 1024px) {
	.gvd-vms__heroinner { grid-template-columns: 1.05fr 0.95fr; }
}

.gvd-vms__herocopy { min-width: 0; }

/* mt-5, text-4xl sm:text-5xl lg:text-[3.1rem], leading-[1.06] */
.gvd-vms__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-vms__herotitle { font-size: 3rem; } }
@media (min-width: 1024px) { .gvd-vms__herotitle { font-size: 3.1rem; } }

/* mt-6 max-w-xl text-lg leading-relaxed text-white/65 */
.gvd-vms__herolede {
	max-width: 36rem;
	margin: 1.5rem 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.125rem;
	line-height: 1.625;
}

/* mt-7 rounded-xl border-white/10 bg-white/5 px-4 py-2.5 text-sm */
.gvd-vms__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-vms__pillicon { flex-shrink: 0; color: #2563eb; }
.gvd-vms__pill strong { color: #fff; font-weight: 600; }

/* mt-9 */
.gvd-vms__actions { margin-top: 2.25rem; }

/* px-8 on the CTA buttons */
.gvd-vms__btnwide { padding-inline: 2rem; }

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

/* mt-16 lg:mt-20 */
.gvd-vms__statwrap { position: relative; z-index: 1; margin-top: 4rem; }

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

/* gap-px over bg-white/10 draws the hairline dividers. */
.gvd-vms__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-vms__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

.gvd-vms__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-vms__statvalue { font-size: 2.25rem; } }

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

/* ================================================== hero product stage == */

.gvd-vms__heromedia { position: relative; min-width: 0; }

.gvd-vms__stage {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

/* The accent bloom behind the photography, kept inside the column so it can
   never widen the document on a narrow viewport. */
.gvd-vms__stageglow {
	position: absolute;
	inset: -1.5rem -0.75rem;
	border-radius: 2.5rem;
	background: radial-gradient(60% 55% at 50% 40%, rgba(37, 99, 235, 0.32), transparent 70%);
	filter: blur(48px);
	pointer-events: none;
}

/* The supplied montage is a transparent cut-out, so it sits straight on the
   dark hero — no plate, and its own aspect ratio is preserved. */
.gvd-vms__montage {
	position: relative;
	margin: 0;
	animation: gvd-vms-float 8s ease-in-out infinite;
}

.gvd-vms__montageshot {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.55));
}


@keyframes gvd-vms-float {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -9px, 0); }
}

/* The hardware strip. These photographs are cut-outs on white, so each gets a
   light plate rather than sitting on the dark band. */
.gvd-vms__strip {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gvd-vms__stripitem {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
	text-align: center;
}

.gvd-vms__stripplate {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 5.5rem;
	padding: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.875rem;
	background: #fefefe;
}

.gvd-vms__stripshot {
	display: block;
	width: 100%;
	height: 100%;
	/* Same wide white margin as the catalogue shots — cropped the same way. */
	object-fit: cover;
	object-position: center;
}

.gvd-vms__striplabel {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.75rem;
	letter-spacing: 0.03em;
	line-height: 1.3;
}

@media (min-width: 640px) {
	.gvd-vms__stripplate { height: 6.5rem; }
}

/* ================================================== shared icon chips === */

/* h-12 w-12 rounded-xl bg-accent/10 */
.gvd-vms__icon48 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	transition: background-color 0.3s ease;
}

/* h-11 w-11 rounded-xl bg-accent/10 */
.gvd-vms__icon44 {
	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;
}

/* ======================================================= value proposition */

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

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

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

.gvd-vms__valuecard {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	padding: 1.5rem;
	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-vms__valuecard: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-vms__valuecard:hover .gvd-vms__icon48 { background: rgba(37, 99, 235, 0.2); }

.gvd-vms__valuelabel {
	margin: 0;
	color: #1a1a2e;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.375;
}

/* ============================================================= overview == */

/* gap-12 lg:grid-cols-2 lg:items-center */
.gvd-vms__split {
	display: grid;
	gap: 3rem;
}

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

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

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

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

.gvd-vms__overviewcard {
	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);
}

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

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

/* --- overview intro column --------------------------------------------- */

.gvd-vms__overviewintro { min-width: 0; }

/* ==================================================== product catalogue = */

/* --- shared traits strip ------------------------------------------------ */

.gvd-vms__traits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.gvd-vms__trait {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9375rem;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	background: #fff;
	color: #1a1a2e;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.3;
}

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

/* --- range filter -------------------------------------------------------- */

/* Plain links resolved on the server, so the filter works with JS off. */
.gvd-vms__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.gvd-vms__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	padding: 0.5rem 0.875rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #1a1a2e;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gvd-vms__chip:hover,
.gvd-vms__chip:focus-visible {
	border-color: rgba(37, 99, 235, 0.4);
	color: #2563eb;
	text-decoration: none;
}

.gvd-vms__chip.is-active {
	border-color: #2563eb;
	background: #2563eb;
	color: #fff;
}

.gvd-vms__chipn {
	display: inline-block;
	min-width: 1.375rem;
	padding: 0.0625rem 0.375rem;
	border-radius: 999px;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.gvd-vms__chip.is-active .gvd-vms__chipn {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.gvd-vms__filternote {
	margin: 1rem 0 0;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
}

/* --- the grid ------------------------------------------------------------ */

/* One grid for the whole hardware catalogue. Every cell is the same height,
   so a row that is not full still reads as part of the grid. */
.gvd-vms__models {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 2.25rem 0 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) { .gvd-vms__models { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .gvd-vms__models { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.gvd-vms__modelitem { display: flex; min-width: 0; }

.gvd-vms__model {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #eef1f6;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
	color: inherit;
	text-decoration: none;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gvd-vms__model:hover,
.gvd-vms__model:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
	text-decoration: none;
}

.gvd-vms__model:focus-visible {
	outline: 2px solid #2563eb;
	outline-offset: 3px;
}

/* Every supplied shot is a product cut-out on white, so the stage is a light
   panel; object-fit keeps each chassis in proportion while the photograph
   takes most of the tile. */
.gvd-vms__modelmedia {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 9.5rem;
	padding: 0;
	/* The supplied photographs are cut-outs on white, so the stage is white
	   too — otherwise the photo's own white margin shows as a seam. */
	background: #fff;
}

@media (min-width: 1024px) {
	.gvd-vms__modelmedia { height: 10.5rem; }
}

.gvd-vms__modelshot {
	display: block;
	width: 100%;
	height: 100%;
	/* The source photographs carry a wide white margin, so `cover` is used to
	   crop that dead space away rather than let the chassis sit small in its
	   tile. The margin is empty white, so nothing of the product is lost. */
	object-fit: cover;
	object-position: center;
}

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

/* The range, which used to be a section header, now rides on the card. */
.gvd-vms__modelbadge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	max-width: calc(100% - 1rem);
	overflow: hidden;
	padding: 0.1875rem 0.5rem;
	border-radius: 999px;
	background: rgba(11, 27, 61, 0.82);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gvd-vms__modelbody {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.875rem 1rem 1.125rem;
	border-top: 1px solid #eef1f6;
}

/* The primary line: it is what buyers scan for. */
.gvd-vms__modelno {
	display: block;
	overflow-wrap: anywhere;
	color: #1a1a2e;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.35;
}

/* Two lines, always — so every card in the row is the same height. */
.gvd-vms__modelname {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: 2.5rem;
	color: #6b7280;
	font-size: 0.8125rem;
	line-height: 1.4;
}

@media (max-width: 479px) {
	.gvd-vms__models { grid-template-columns: minmax(0, 1fr); }
	.gvd-vms__modelmedia { height: 11rem; }
}

/* ========================================================= core features = */

/* The shared .gvd-grid--3 carries the columns; the original uses gap-6. */
.gvd-vms__aftheading.gvd-grid--3 { gap: 1.5rem; }
.gvd-vms__aftheading.gvd-grid > .gvd-reveal { height: 100%; }

.gvd-vms__feature {
	display: flex;
	flex-direction: column;
	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-vms__feature: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-vms__featuretitle {
	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;
}

/* mt-4 space-y-2 */
.gvd-vms__points {
	display: grid;
	gap: 0.5rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.gvd-vms__points li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.5;
}

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

/* mt-5 border-t pt-4 text-sm font-medium text-accent */
.gvd-vms__featuretag {
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid #f3f4f6;
	color: #2563eb;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}

/* ============================================================= use cases = */

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

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

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

.gvd-vms__usecase {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	height: 100%;
	padding: 1.5rem;
	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, box-shadow 0.3s ease;
}

.gvd-vms__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);
}

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

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

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

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

.gvd-vms__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%);
}

/* The original scrolled this row horizontally; here it wraps, so the page
   itself never gains a sideways scrollbar. */
.gvd-vms__pipeline {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 0.5rem;
}

@media (min-width: 1024px) { .gvd-vms__pipeline { gap: 0.75rem; } }

/* w-28 flex-col items-center gap-3 rounded-2xl border-white/10 bg-white/[0.05] p-4 */
.gvd-vms__pipestep {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	width: 7rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	text-align: center;
}

/* h-12 w-12 rounded-xl bg-accent/15 ring-1 ring-accent/30 */
.gvd-vms__pipeicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	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-vms__pipelabel { color: #fff; font-size: 0.75rem; font-weight: 500; line-height: 1.25; }

/* h-6 w-6 rounded-full bg-accent text-white, vertically centred beside the
   cards it joins. */
.gvd-vms__pipearrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 9999px;
	background: #2563eb;
	color: #fff;
}

/* ============================================================== why vms == */

.gvd-vms__whyrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 100%;
	padding: 1.25rem;
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	background: #fcfcfd;
}

.gvd-vms__whylabel { color: #1a1a2e; font-weight: 500; line-height: 1.45; }

/* =========================================== technical strength + compliance */

/* gap-14 lg:grid-cols-2 */
.gvd-vms__duo { display: grid; gap: 3.5rem; }

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

/* mt-8 space-y-3 */
.gvd-vms__techlist { display: grid; gap: 0.75rem; margin-top: 2rem; }

.gvd-vms__techrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	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;
}

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

/* mt-8 space-y-4 */
.gvd-vms__complist { display: grid; gap: 1rem; margin-top: 2rem; }

.gvd-vms__comprow {
	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-vms__complabel {
	min-width: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a2e;
}

.gvd-vms__compseal { flex-shrink: 0; margin-left: auto; color: #10b981; }

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

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

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

/* mt-6 text-3xl sm:text-4xl lg:text-5xl leading-[1.1] */
.gvd-vms__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-vms__ctatitle { font-size: 2.25rem; } }
@media (min-width: 1024px) { .gvd-vms__ctatitle { font-size: 3rem; } }

.gvd-vms__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-vms__ctaactions { margin-top: 2.5rem; }

/* mt-8 inline-flex gap-2 text-sm text-white/60 */
.gvd-vms__ctamail {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gvd-vms__ctamail:hover { color: #fff; }
.gvd-vms__ctamailicon { flex-shrink: 0; color: #2563eb; }

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

@media (prefers-reduced-motion: reduce) {
	.gvd-vms__orb--a,
	.gvd-vms__orb--b,
	.gvd-vms__montage { animation: none; }

	.gvd-vms__model:hover { transform: none; }
}

/* ========================================================= product tiers = */

/* mt-14 grid gap-6 lg:grid-cols-3 */
.gvd-vms__tiers {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 1fr);
}

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

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

.gvd-vms__tier {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 1.5rem;
	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-vms__tier:hover {
	transform: translateY(-6px);
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.gvd-vms__tier--featured {
	border-color: rgba(37, 99, 235, 0.3);
	background: #0b1b3d;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.gvd-vms__badge {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	background: #2563eb;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* h-14 w-14 rounded-2xl bg-accent/10 (accent/20 on the featured card) */
.gvd-vms__tiericon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gvd-vms__tier--featured .gvd-vms__tiericon { background: rgba(37, 99, 235, 0.2); }

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

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

.gvd-vms__tier--featured .gvd-vms__tiername { color: #fff; }

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

.gvd-vms__tier--featured .gvd-vms__tiertext { color: rgba(255, 255, 255, 0.65); }

/* mt-5 space-y-2.5 */
.gvd-vms__tiercaps {
	display: grid;
	gap: 0.625rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.gvd-vms__tiercaps li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	color: #1a1a2e;
	font-size: 0.875rem;
	line-height: 1.5;
}

.gvd-vms__tier--featured .gvd-vms__tiercaps li { color: rgba(255, 255, 255, 0.8); }

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

/* mt-6 border-t pt-4 text-xs italic */
.gvd-vms__tierideal {
	margin: 1.5rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid #f3f4f6;
	color: #6b7280;
	font-size: 0.75rem;
	font-style: italic;
	line-height: 1.5;
}

.gvd-vms__tier--featured .gvd-vms__tierideal {
	border-top-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
}
