/* Vertical Corridor Map — interactive (Figma standalone) */
.gt-land-vgc {
	--vcm-brand: #22d3ee;
	--vcm-brand-soft: #67e8f9;
	--vcm-planned: #34d399;
	--vcm-planned-soft: #6ee7b7;
	--vcm-terminal: #fbbf24;
	--vcm-ink-0: #f1f5ff;
	--vcm-ink-1: #cbd5e1;
	--vcm-ink-2: rgb(203 213 225 / 0.78);
	--vcm-map-tint: 0.45;
	--vcm-map-overlay-r: 3;
	--vcm-map-overlay-g: 6;
	--vcm-map-overlay-b: 17;
	--vcm-map-overlay-opacity: 0.45;
	--vcm-route-opacity: 1;
	--vcm-pulse-duration: 2.4s;
	--vcm-font-display: var(--gt-display-font, var(--gt-font-saira), system-ui, sans-serif);
	--vcm-font-ui: var(--gt-ui-font, var(--gt-font-inter), system-ui, sans-serif);
	--vcm-map-pos-x: 56%;
	--vcm-map-pos-y: 58%;
	--vcm-map-scale: 1.08;

	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: var(--vcm-min-h, 88vh);
	padding-block: clamp(3.5rem, 7vw, 5rem);
	--vcm-pad-top: clamp(5rem, 9vw, 7.5rem);
	--vcm-header-mt: clamp(2.25rem, 5vw, 4rem);
	--vcm-header-overlay-h: 370px;
	padding-top: var(--vcm-pad-top);
	background: #030611;
	color: var(--vcm-ink-0);
}

/* Λευκή διαγώνια πάνω (αντί για clip-path που έδειχνε γκρι από το section από πάνω) */
.gt-land-vgc:not(.gt-land-vgc--embed):not(.gt-land-vgc--embed-bg)::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 3;
	width: 100%;
	height: calc(100% + 2px);
	pointer-events: none;
	background: #fff;
	/* +0.35% overlap — αποφυγή λεπτής λευκής γραμμής (subpixel anti-alias) */
	clip-path: polygon(0 0, 100% 0, 100% calc(13% + 0.35%), 0 0);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(13% + 0.35%), 0 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.gt-land-vgc__map-stage {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	background: #030611;
}

.gt-land-vgc__map-stage .vgc-fullmap {
	pointer-events: auto;
}

.gt-land-vgc__inner {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin-inline: auto;
}

.gt-land-vgc__header {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-top: var(--vcm-header-mt);
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
	isolation: isolate;
}

/* Gradient πάνω→κάτω στο ύψος του τίτλου — καλύτερη ανάγνωση πάνω από τον χάρτη */
.gt-land-vgc__header::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	height: var(--vcm-header-overlay-h);
	transform: translateX(-50%);
	top: calc(-1 * (var(--vcm-pad-top) + var(--vcm-header-mt)));
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgb(3 6 17 / 0.94) 0%,
		rgb(3 6 17 / 0.82) 28%,
		rgb(3 6 17 / 0.58) 52%,
		rgb(3 6 17 / 0.28) 78%,
		transparent 100%
	);
}

.gt-land-vgc__eyebrow {
	margin: 0 0 1rem;
	font-family: var(--vcm-font-display);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--vcm-brand-soft);
}

.gt-land-vgc__title {
	margin: 0 0 0.875rem;
	font-family: var(--vcm-font-display);
	font-size: clamp(1.75rem, 3.6vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--vcm-ink-0);
}

.gt-land-vgc__lead {
	margin: 0 auto;
	max-width: 42rem;
	font-family: var(--vcm-font-ui);
	font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
	line-height: 1.6;
	color: rgb(226 232 240 / 0.88);
}

.gt-land-vgc__body {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	min-height: clamp(440px, 58vh, 760px);
	margin-top: clamp(-1.25rem, -2.5vh, -2rem);
}

.gt-land-vgc__rail {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	width: min(100%, 480px);
	padding: clamp(0.65rem, 1.5vw, 1rem);
	pointer-events: none;
}

.gt-land-vgc__rail > * {
	pointer-events: auto;
}

@media (min-width: 1024px) {
	.gt-land-vgc__body {
		margin-top: clamp(-2rem, -4vh, -3.25rem);
	}

	.gt-land-vgc__rail {
		width: min(48%, 520px);
		padding: clamp(0.75rem, 1.5vw, 1.15rem);
	}
}

.gt-land-vgc__item {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	width: 100%;
	margin: 0;
	padding: 0.5rem 1.15rem;
	font: inherit;
	color: inherit;
	text-align: left;
	appearance: none;
	cursor: pointer;
	background: rgb(8 14 32 / 0.72);
	border: 1px solid rgb(125 211 252 / 0.14);
	border-radius: 10px;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.gt-land-vgc__item:hover,
.gt-land-vgc__item.is-rail-hover {
	border-color: rgb(34 211 238 / 0.55);
	background: rgb(11 22 48 / 0.88);
	box-shadow: 0 0 0 1px rgb(34 211 238 / 0.25), 0 8px 20px rgb(0 0 0 / 0.3);
}

.gt-land-vgc__item.is-focused {
	border-color: var(--vcm-brand);
	background: rgb(34 211 238 / 0.1);
	box-shadow: 0 0 0 1px rgb(34 211 238 / 0.35), 0 8px 24px rgb(0 0 0 / 0.35);
}

.gt-land-vgc__item--planned.is-focused {
	border-color: var(--vcm-planned);
	background: rgb(52 211 153 / 0.1);
	box-shadow: 0 0 0 1px rgb(52 211 153 / 0.35), 0 8px 24px rgb(0 0 0 / 0.35);
}

.gt-land-vgc__item-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
}

.gt-land-vgc__item-icon svg {
	display: block;
	width: 1.3rem;
	height: 1.3rem;
}

.gt-land-vgc__item-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.gt-land-vgc__item-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
}

.gt-land-vgc__item-name {
	font-family: var(--vcm-font-ui);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--vcm-ink-0);
}

.gt-land-vgc__badge {
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	font-family: var(--vcm-font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gt-land-vgc__badge--active {
	background: rgb(52 211 153 / 0.2);
	color: var(--vcm-planned-soft);
}

.gt-land-vgc__badge--planned {
	background: rgb(59 130 246 / 0.2);
	color: #93c5fd;
}

.gt-land-vgc__item-desc {
	font-family: var(--vcm-font-ui);
	font-size: 0.75rem;
	line-height: 1.35;
	color: var(--vcm-ink-2);
}

.gt-land-vgc .vgc-fullmap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	isolation: isolate;
	background: transparent;
	transform: scale(var(--vcm-map-scale, 1.14));
	transform-origin: var(--vcm-map-pos-x, 56%) var(--vcm-map-pos-y, 52%);
}

.gt-land-vgc .vgc-map-img,
.gt-land-vgc .vgc-route-img,
.gt-land-vgc object.vgc-route-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--vcm-map-pos-x, 56%) var(--vcm-map-pos-y, 58%);
	pointer-events: none;
}

/* Hotspots / labels: image % → container % (object-fit: cover, matches route overlay) */
.gt-land-vgc .vgc-map-positioned {
	position: absolute;
	transform: translate(-50%, -50%);
}

.gt-land-vgc .vgc-map-img {
	z-index: 0;
	image-rendering: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gt-land-vgc .vgc-map-tint {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: var(--vcm-map-overlay-opacity, 0.45);
	background:
		radial-gradient(
			ellipse at 68% 78%,
			rgb(34 211 238 / calc(var(--vcm-map-overlay-opacity, 0.45) * 0.15)),
			transparent 48%
		),
		linear-gradient(
			180deg,
			rgb(
				var(--vcm-map-overlay-r) var(--vcm-map-overlay-g) var(--vcm-map-overlay-b) /
					calc(var(--vcm-map-overlay-opacity, 0.45) * 0.55)
			),
			rgb(
				var(--vcm-map-overlay-r) var(--vcm-map-overlay-g) var(--vcm-map-overlay-b) /
					calc(var(--vcm-map-overlay-opacity, 0.45) * 0.35)
			)
		);
}

.gt-land-vgc--no-map-overlay .vgc-map-tint {
	opacity: 0;
	visibility: hidden;
}

.gt-land-vgc .vgc-route-img,
.gt-land-vgc object.vgc-route-img {
	z-index: 2;
	opacity: var(--vcm-route-opacity, 1);
	filter: drop-shadow(0 1px 4px rgb(0 0 0 / 0.35));
}

.gt-land-vgc .vgc-clabel {
	padding: 3px 8px 3px 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	border-radius: 999px;
	font-family: var(--vcm-font-ui);
	font-size: 9.5px;
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgb(241 245 255 / 0.72);
	background: rgb(3 6 17 / 0.55);
	border: 1px solid rgb(125 211 252 / 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 3;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s,
		font-weight 0.2s;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.7);
}

.gt-land-vgc .vgc-clabel:hover {
	background: rgb(11 22 48 / 0.85);
	border-color: rgb(125 211 252 / 0.55);
}

.gt-land-vgc .vgc-clabel.is-focused,
.gt-land-vgc .vgc-clabel.is-rail-hover {
	background: rgb(34 211 238 / 0.18);
	border-color: rgb(125 211 252 / 0.45);
	color: rgb(241 245 255 / 0.95);
	font-weight: 400;
	box-shadow: 0 0 20px rgb(34 211 238 / 0.25);
}

/* Country markers on map — off; bullets = route PNG + interactive hotspots */
.gt-land-vgc .vgc-country-dot {
	display: none !important;
}

.gt-land-vgc .vgc-country-dot__ring {
	position: absolute;
	inset: 0;
	border: 2px solid rgb(255 255 255 / 0.45);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.4;
	transition:
		opacity 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.gt-land-vgc .vgc-country-dot__core {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: rgb(255 255 255 / 0.85);
	box-shadow: 0 0 8px rgb(255 255 255 / 0.45);
	pointer-events: none;
	opacity: 0.45;
	transform: translate(-50%, -50%);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		background 0.2s ease;
}

.gt-land-vgc .vgc-country-dot.is-planned .vgc-country-dot__ring {
	border-color: rgb(52 211 153 / 0.55);
}

.gt-land-vgc .vgc-country-dot.is-planned .vgc-country-dot__core {
	background: rgb(52 211 153 / 0.95);
	box-shadow: 0 0 10px rgb(52 211 153 / 0.5);
}

.gt-land-vgc .vgc-country-dot.is-focused .vgc-country-dot__ring {
	opacity: 0.65;
	border-color: rgb(125 211 252 / 0.55);
}

.gt-land-vgc .vgc-country-dot.is-focused .vgc-country-dot__core {
	opacity: 0.75;
}

.gt-land-vgc .vgc-country-dot.is-rail-hover .vgc-country-dot__ring,
.gt-land-vgc .vgc-country-dot.is-rail-hover .vgc-country-dot__core {
	opacity: 0.45;
}

.gt-land-vgc.is-rail-hovering .vgc-country-dot:not(.is-rail-hover) .vgc-country-dot__ring {
	opacity: 0.2;
}

.gt-land-vgc.is-rail-hovering .vgc-country-dot:not(.is-rail-hover) .vgc-country-dot__core {
	opacity: 0.22;
}

.gt-land-vgc .vgc-clabel.is-planned {
	border-color: rgb(52 211 153 / 0.35);
	color: var(--vcm-planned-soft);
}

.gt-land-vgc .vgc-clabel.is-planned.is-focused {
	background: rgb(52 211 153 / 0.22);
	border-color: var(--vcm-planned);
	color: #fff;
	box-shadow: 0 0 0 1px var(--vcm-planned), 0 0 24px rgb(52 211 153 / 0.45);
}

.gt-land-vgc .vgc-clabel-code {
	font-size: 8.5px;
	font-weight: 400;
	letter-spacing: 0.06em;
	padding: 1px 5px;
	background: rgb(34 211 238 / 0.12);
	border-radius: 10px;
	color: rgb(103 232 249 / 0.85);
	line-height: 1.15;
}

.gt-land-vgc .vgc-clabel.is-planned .vgc-clabel-code {
	background: rgb(52 211 153 / 0.2);
	color: var(--vcm-planned-soft);
}

.gt-land-vgc .vgc-clabel.is-focused .vgc-clabel-code {
	background: rgb(34 211 238 / 0.45);
	color: #fff;
}

.gt-land-vgc .vgc-clabel.is-planned.is-focused .vgc-clabel-code {
	background: rgb(52 211 153 / 0.45);
	color: #fff;
}

.gt-land-vgc .vgc-clabel-name {
	white-space: nowrap;
}

.gt-land-vgc .vgc-hotspot {
	width: 28px;
	height: 28px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 5;
}

.gt-land-vgc .vgc-hotspot.is-terminal {
	width: 36px;
	height: 36px;
}

.gt-land-vgc .vgc-hotspot-core {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	background: rgb(251 146 60 / 0.95);
	box-shadow: 0 0 10px rgb(251 146 60 / 0.55);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.gt-land-vgc .vgc-hs-planned .vgc-hotspot-core {
	background: rgb(52 211 153 / 0.9);
	box-shadow: 0 0 10px rgb(52 211 153 / 0.5);
}

.gt-land-vgc .vgc-hotspot.is-terminal .vgc-hotspot-core {
	width: 9px;
	height: 9px;
	background: rgb(239 68 68 / 0.95);
	box-shadow: 0 0 12px rgb(239 68 68 / 0.65);
}

.gt-land-vgc .vgc-hotspot-pulse {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	pointer-events: none;
	background: rgb(251 146 60 / 0.5);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.4);
	transform-origin: center center;
	animation: none;
}

.gt-land-vgc .vgc-hs-planned .vgc-hotspot-pulse {
	background: rgb(52 211 153 / 0.5);
}

.gt-land-vgc .vgc-hotspot.is-terminal .vgc-hotspot-pulse {
	background: rgb(239 68 68 / 0.55);
}

.gt-land-vgc .vgc-hotspot:hover .vgc-hotspot-core,
.gt-land-vgc .vgc-hotspot.is-route-highlight .vgc-hotspot-core,
.gt-land-vgc .vgc-hotspot.is-active .vgc-hotspot-core {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.15);
}

.gt-land-vgc .vgc-hotspot.is-route-highlight .vgc-hotspot-pulse,
.gt-land-vgc .vgc-hotspot.is-active .vgc-hotspot-pulse {
	opacity: 1;
	animation: gt-vcm-pulse var(--vcm-pulse-duration) ease-out infinite;
}

.gt-land-vgc .vgc-hotspot:hover .vgc-hotspot-pulse {
	opacity: 1;
	animation: gt-vcm-pulse calc(var(--vcm-pulse-duration) * 0.75) ease-out infinite;
}

.gt-land-vgc.is-rail-hovering .vgc-hotspot:not(.is-route-highlight):not(.is-active) .vgc-hotspot-core,
.gt-land-vgc.is-route-active .vgc-hotspot:not(.is-route-highlight):not(.is-active) .vgc-hotspot-core {
	opacity: 0;
}

.gt-land-vgc .vgc-hotspot:hover,
.gt-land-vgc .vgc-hotspot.is-active {
	z-index: 8;
}

@keyframes gt-vcm-pulse {
	0% {
		transform: translate(-50%, -50%) scale(0.35);
		opacity: 0.85;
	}

	65% {
		opacity: 0.35;
	}

	100% {
		transform: translate(-50%, -50%) scale(2.2);
		opacity: 0;
	}
}

.gt-land-vgc .vgc-hotspot-tip {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	background: rgb(3 6 17 / 0.92);
	color: rgb(241 245 255 / 0.9);
	font-family: var(--vcm-font-ui);
	font-size: 9.5px;
	font-weight: 300;
	letter-spacing: 0.03em;
	padding: 6px 10px;
	border-radius: 10px;
	border: 1px solid rgb(125 211 252 / 0.4);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s;
	z-index: 10;
	box-shadow: 0 6px 18px rgb(0 0 0 / 0.6);
}

.gt-land-vgc .vgc-hotspot-tip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: rgb(3 6 17 / 0.95);
}

.gt-land-vgc .vgc-hotspot:hover .vgc-hotspot-tip,
.gt-land-vgc .vgc-hotspot:focus-visible .vgc-hotspot-tip,
.gt-land-vgc .vgc-hotspot.is-active .vgc-hotspot-tip {
	opacity: 1;
}

.gt-land-vgc .vgc-overlay-title {
	position: absolute;
	top: clamp(20px, 3.5vh, 44px);
	left: clamp(20px, 3.5vw, 44px);
	z-index: 6;
	max-width: min(540px, 90%);
	pointer-events: none;
}

.gt-land-vgc .vgc-overlay-eyebrow {
	font-family: var(--vcm-font-display);
	font-size: clamp(10px, 1.1vw, 12.5px);
	font-weight: 600;
	letter-spacing: 0.32em;
	color: var(--vcm-brand-soft);
	text-transform: uppercase;
	margin-bottom: 10px;
	text-shadow: 0 2px 8px rgb(0 0 0 / 0.85);
}

.gt-land-vgc .vgc-overlay-title h2 {
	font-family: var(--vcm-font-display);
	font-weight: 700;
	font-size: clamp(24px, 3.4vw, 44px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--vcm-ink-0);
	text-shadow: 0 4px 18px rgb(0 0 0 / 0.95);
	text-wrap: balance;
}

.gt-land-vgc .vgc-overlay-title h2 em {
	font-style: normal;
	background: linear-gradient(120deg, #fbbf24, #22d3ee 50%, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Mobile/tablet: κείμενο + λίστα πάνω, χάρτης από κάτω full-bleed (desktop ≥1025px overlay) */

@media (prefers-reduced-motion: reduce) {
	.gt-land-vgc .vgc-hotspot.is-route-highlight .vgc-hotspot-pulse,
	.gt-land-vgc .vgc-hotspot.is-active .vgc-hotspot-pulse {
		animation: none;
		opacity: 0.65;
		transform: translate(-50%, -50%) scale(1);
	}
}

/* —— Embed (π.χ. Location of projects) —— */
.gt-land-vgc--embed {
	clip-path: none;
	-webkit-clip-path: none;
	min-height: clamp(14rem, 42vw, 28rem);
	padding: 0;
	background: #030611;
	border: 1px solid rgb(126 218 255 / 0.15);
	border-radius: 10px;
	box-shadow: 0 12px 40px rgb(0 0 0 / 0.45);
	overflow: hidden;
	cursor: default;
}

.gt-land-vgc--embed:hover {
	cursor: default;
}

.gt-land-vgc--embed .gt-land-vgc__map-stage {
	position: relative;
	inset: auto;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: inherit;
	pointer-events: auto;
}

.gt-land-vgc--embed .vgc-fullmap {
	position: absolute;
	inset: 0;
}

/* Full-section background embed (Location of projects) */
.gt-land-vgc--embed-bg {
	clip-path: none;
	-webkit-clip-path: none;
	min-height: 100%;
	cursor: default;
}
