*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-start: #3dac86;
	--bg-end: #337aee;
	--text: #ffffff;
	--muted: rgba(255, 255, 255, 0.8);
}

html,
body {
	height: 100%;
}

body {
	font-family: "Outfit", sans-serif;
	background: var(--bg-start);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
}

img {
	height: auto;
	display: block;
}

.coming-soon {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 3rem);
	overflow: hidden;
	background: linear-gradient(to right, var(--bg-start), var(--bg-end));
}

#particles-js {
	position: absolute;
	inset: 0;
	z-index: 0;
}

#particles-js canvas {
	display: block;
}

.content {
	position: relative;
	z-index: 1;
	width: min(100%, 56rem);
	text-align: center;
	animation: fade-up 0.9s ease both;
}

.logo {
	width: min(92vw, 48rem);
	max-width: none;
	margin: 0 auto 1.75rem;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
}

h1 {
	font-size: clamp(3.75rem, 5vw, 2.75rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.15;
}

p {
	margin-top: 0.85rem;
	font-size: clamp(0.95rem, 2.4vw, 1.1rem);
	font-weight: 300;
	color: var(--muted);
	letter-spacing: 0.02em;
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(1rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 768px) {
	.logo {
		margin-bottom: 0rem;
	}
}

@media (max-width: 567px) {
	.coming-soon {
		background: linear-gradient(to bottom, var(--bg-start), var(--bg-end));
	}
}

@media (prefers-reduced-motion: reduce) {
	.content {
		animation: none;
	}
}
