/* Coming soon gate — white field, blue bloom at base */
.webob-coming-soon {
	margin: 0;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 24px;
	font-family: "Inter", sans-serif;
	color: #0d192e;
	background:
		radial-gradient(90% 55% at 50% 110%, rgba(176, 214, 255, 0.9) 0%, rgba(230, 242, 255, 0.45) 40%, rgba(255, 255, 255, 0) 70%),
		linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #f5f9ff 78%, #e6f2ff 100%);
	overflow: hidden;
	position: relative;
}

.webob-coming-soon__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	opacity: 0.55;
	animation: webob-coming-soon-drift 12s ease-in-out infinite alternate;
}

.webob-coming-soon__glow--a {
	width: min(70vw, 420px);
	height: min(70vw, 420px);
	background: rgba(0, 123, 255, 0.22);
	left: -8%;
	bottom: -12%;
}

.webob-coming-soon__glow--b {
	width: min(55vw, 320px);
	height: min(55vw, 320px);
	background: rgba(0, 229, 255, 0.18);
	right: -6%;
	bottom: 4%;
	animation-delay: -4s;
}

.webob-coming-soon__main {
	position: relative;
	z-index: 1;
	width: min(100%, 440px);
	text-align: center;
	animation: webob-coming-soon-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.webob-coming-soon__brand {
	display: inline-flex;
	margin-bottom: 40px;
	transition: opacity 0.2s ease;
}

.webob-coming-soon__brand:hover {
	opacity: 0.85;
}

.webob-coming-soon__brand img {
	width: 160px;
	height: auto;
	display: block;
}

.webob-coming-soon__eyebrow {
	margin: 0 0 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #007bff;
}

.webob-coming-soon__title {
	margin: 0 0 16px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: clamp(32px, 8vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	color: #0d192e;
}

.webob-coming-soon__desc {
	margin: 0 0 32px;
	font-size: 16px;
	line-height: 1.5;
	color: #5c5c5c;
}

.webob-coming-soon__form {
	text-align: left;
}

.webob-coming-soon__label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #0d192e;
}

.webob-coming-soon__field {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.webob-coming-soon__input {
	width: 100%;
	min-height: 52px;
	padding: 14px 18px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	font-size: 16px;
	color: #0d192e;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.webob-coming-soon__input:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.16);
}

.webob-coming-soon__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 52px;
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: #007bff;
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.webob-coming-soon__submit:hover {
	opacity: 0.92;
}

.webob-coming-soon__submit:active {
	transform: translateY(1px);
}

.webob-coming-soon__error {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: #b42318;
	animation: webob-coming-soon-shake 0.4s ease;
}

@keyframes webob-coming-soon-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes webob-coming-soon-drift {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(12px, -18px, 0) scale(1.06);
	}
}

@keyframes webob-coming-soon-shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-4px);
	}
	75% {
		transform: translateX(4px);
	}
}

@media (min-width: 640px) {
	.webob-coming-soon__field {
		flex-direction: row;
		align-items: stretch;
	}

	.webob-coming-soon__input {
		flex: 1;
	}

	.webob-coming-soon__submit {
		width: auto;
		min-width: 148px;
		flex-shrink: 0;
	}

	.webob-coming-soon__brand img {
		width: 180px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.webob-coming-soon__main,
	.webob-coming-soon__glow,
	.webob-coming-soon__error {
		animation: none;
	}
}
