/* =====================================================================
   Expoverse — booth "Contact Us" glass modal (paired with contact.js)
   Same glass language as the rest of the custom UI. Company logo sits on a
   white chip so dark logos stay legible. Loads after app.css.
   ===================================================================== */

.expo-ct-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(14px, 4vw, 40px);
	background: radial-gradient(120% 120% at 50% 0%, rgba(20, 24, 45, .42), rgba(6, 8, 16, .66));
	-webkit-backdrop-filter: blur(10px) saturate(120%);
	backdrop-filter: blur(10px) saturate(120%);
	opacity: 0;
	transition: opacity .26s cubic-bezier(.22, 1, .36, 1);
	font-family: var(--expo-font, 'Inter', system-ui, sans-serif);
}
.expo-ct-backdrop.is-open { opacity: 1; }

.expo-ct-card {
	position: relative;
	width: min(440px, 100%);
	max-height: 90vh;
	overflow: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(22px, 4vw, 32px);
	color: #f4f7ff;
	background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .28);
	-webkit-backdrop-filter: blur(26px) saturate(165%);
	backdrop-filter: blur(26px) saturate(165%);
	transform: translateY(18px) scale(.95);
	opacity: 0;
	transition: transform .42s cubic-bezier(.22, 1.4, .42, 1), opacity .3s ease;
}
.expo-ct-backdrop.is-open .expo-ct-card { transform: none; opacity: 1; }

.expo-ct-x {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #f4f7ff;
	cursor: pointer;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .20);
	border-radius: 50%;
	transition: background .15s ease, transform .15s ease;
}
.expo-ct-x svg { width: 18px; height: 18px; }
.expo-ct-x:hover { background: rgba(255, 255, 255, .2); transform: scale(1.07); }

/* company logo on a white chip so dark logos stay legible */
.expo-ct-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(110px, 40%, 168px);
	min-height: 78px;
	padding: 14px 18px;
	margin-bottom: 16px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}
.expo-ct-logo img { max-width: 100%; max-height: 64px; width: auto; height: auto; display: block; }

.expo-ct-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--expo-accent-1, #5eead4);
}
.expo-ct-name {
	margin: 4px 0 18px;
	font-family: var(--expo-font-display, 'Sora', var(--expo-font, sans-serif));
	font-size: clamp(20px, 3.4vw, 26px);
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.2;
}

.expo-ct-rows {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.expo-ct-row {
	display: flex;
	align-items: center;
	gap: 13px;
	width: 100%;
	padding: 12px 14px;
	text-align: left;
	text-decoration: none;
	color: #f4f7ff;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 14px;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.expo-ct-row:hover {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .28);
	transform: translateY(-1px);
}
.expo-ct-row__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	color: #06121f;
	background: linear-gradient(135deg, var(--expo-accent-1, #5eead4), var(--expo-accent-2, #818cf8));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}
.expo-ct-row__icon svg { width: 20px; height: 20px; }
.expo-ct-row__main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.expo-ct-row__main b { font-size: 14.5px; font-weight: 600; }
.expo-ct-row__main small {
	font-size: 12.5px;
	color: rgba(244, 247, 255, .66);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.expo-ct-row__go { flex: 0 0 auto; width: 18px; height: 18px; color: rgba(244, 247, 255, .5); }
.expo-ct-row:hover .expo-ct-row__go { color: rgba(244, 247, 255, .85); }

.expo-ct-empty {
	width: 100%;
	padding: 18px;
	font-size: 14px;
	color: rgba(244, 247, 255, .7);
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 14px;
}

@media (max-width: 760px) {
	.expo-ct-card { width: 100%; }
}
