:root {
	--bg: #071a2b;
	--glass: rgba(255, 255, 255, 0.08);
	--border: rgba(255, 255, 255, 0.14);
	--text: rgba(255, 255, 255, 0.92);
	--muted: rgba(255, 255, 255, 0.72);
	--shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	--radius: 22px;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	color: var(--text);
	background: var(--bg);
	overflow: hidden;
}

/* Background */
.bg {
	position: fixed;
	inset: 0;
	z-index: 0;
}

.bg__image {
	position: absolute;
	inset: 0;
	background: url("assets/bg.jpg") center/cover no-repeat;
	transform: scale(1.02);
	filter: saturate(1.05) contrast(1.02);
}

.bg__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(1200px 700px at 50% 35%, rgba(10, 175, 190, 0.18), transparent 60%), linear-gradient(180deg, rgba(4, 10, 18, 0.55), rgba(4, 10, 18, 0.8));
}

.bg__vignette {
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle at 50% 40%, transparent 45%, rgba(0, 0, 0, 0.55) 80%);
	pointer-events: none;
}

.bg__grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.08;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

/* Layout */
.wrap {
	position: relative;
	z-index: 1;
	min-height: 100%;
	display: grid;
	place-items: center;
	padding: 28px 18px 70px;
}

.glass {
	width: min(680px, 92vw);
	border-radius: var(--radius);
	background: var(--glass);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 26px 22px;
	text-align: center;
}

.logo {
	width: 120px;
	height: auto;
	display: block;
	margin: 0 auto 14px;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.intro {
	margin: 0 auto 14px;
	max-width: 38ch;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.5;
}

.divider {
	width: 84px;
	height: 1px;
	margin: 14px auto 18px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.coming {
	margin: 0;
	letter-spacing: 0.12em;
	font-weight: 800;
	font-size: clamp(1.65rem, 3vw, 2.4rem);
	text-transform: uppercase;
}

.tagline {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.cta {
	margin-top: 18px;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.88);
	background: rgba(255, 255, 255, 0.92);
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	transition: transform 160ms ease, opacity 160ms ease;
}

.btn:hover {
	transform: translateY(-1px);
	opacity: 0.95;
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 14px;
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.68);
	z-index: 2;
}

/* WhatsApp floating button */
.wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	color: white;
	text-decoration: none;
	transition: transform 160ms ease, opacity 160ms ease;
	z-index: 3;
}

.wa-float:hover {
	transform: translateY(-2px);
	opacity: 0.95;
}

.wa-float__icon {
	width: 26px;
	height: 26px;
}
