* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	min-height: 100vh;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 18% 18%, rgba(206, 157, 96, .28), transparent 20rem),
		radial-gradient(circle at 82% 70%, rgba(89, 127, 124, .34), transparent 24rem),
		linear-gradient(135deg, #0b0a09 0%, #17120f 48%, #071214 100%);
	color: #f4efe6;
	font-family: Inter, sans-serif;
}

.soon-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem;
	position: relative;
	isolation: isolate;
}

.soon-orbit {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.soon-orbit span {
	position: absolute;
	width: clamp(12rem, 28vw, 28rem);
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(244, 239, 230, .12);
	border-radius: 50%;
	animation: drift 16s ease-in-out infinite alternate;
}

.soon-orbit span:nth-child(1) {
	top: 12%;
	left: 10%;
}

.soon-orbit span:nth-child(2) {
	right: 12%;
	bottom: 10%;
	animation-duration: 20s;
}

.soon-orbit span:nth-child(3) {
	top: 32%;
	right: 28%;
	width: clamp(7rem, 15vw, 14rem);
	animation-duration: 13s;
}

.soon-card {
	width: min(42rem, 100%);
	padding: clamp(2rem, 5vw, 4.5rem);
	border: 1px solid rgba(244, 239, 230, .14);
	background: rgba(9, 8, 7, .66);
	box-shadow: 0 36px 120px rgba(0, 0, 0, .42);
	backdrop-filter: blur(18px);
	text-align: center;
}

.soon-kicker {
	margin-bottom: 1.1rem;
	color: rgba(244, 239, 230, .58);
	font-size: .75rem;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.soon-card h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(4rem, 12vw, 9rem);
	font-weight: 300;
	line-height: .85;
}

.soon-card p:not(.soon-kicker) {
	max-width: 28rem;
	margin: 1.5rem auto 0;
	color: rgba(244, 239, 230, .72);
	line-height: 1.7;
}

.soon-card a {
	display: inline-flex;
	margin-top: 2rem;
	padding: .85rem 1rem;
	border: 1px solid rgba(244, 239, 230, .2);
	color: #f4efe6;
	text-decoration: none;
	transition: transform .25s ease, border-color .25s ease;
}

.soon-card a:hover,
.soon-card a:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(244, 239, 230, .5);
	outline: none;
}

@keyframes drift {
	to {
		transform: translate3d(2rem, -1rem, 0) scale(1.08);
	}
}
