/* styles.css */
:root {
	--bg: #050506;
	--text: rgba(255, 255, 255, 0.92);
	--muted: rgba(255, 255, 255, 0.72);
	--muted2: rgba(255, 255, 255, 0.55);

	/* Ajrak maroon vibe (pulled from your logo family) */
	--accent: #7a0c0c;

	/* Glass */
	--glass: rgba(255, 255, 255, 0.06);
	--glass2: rgba(255, 255, 255, 0.1);
	--border: rgba(255, 255, 255, 0.16);

	--shadow: 0 35px 90px rgba(0, 0, 0, 0.62);
}

* {
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
}

/* Background */
.bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: var(--bg);
}
.bg__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	/* Make it luxurious: softer, darker, less “video-y” */
	filter: blur(14px) saturate(0.85) contrast(1.05) brightness(0.7);
	transform: scale(1.1);
	opacity: 0.9;
}
.bg__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(1200px 700px at 50% 35%, rgba(122, 12, 12, 0.22), transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.82));
}
.bg__vignette {
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 240px rgba(0, 0, 0, 0.8);
}
.bg__grain {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

/* Layout */
.wrap {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 48px 18px 22px;
}

/* Real glass panel */
.glass {
	width: min(780px, 92vw);
	padding: clamp(22px, 3.6vw, 46px);
	text-align: center;

	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 26px;
	box-shadow: var(--shadow);

	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);

	position: relative;
	overflow: hidden;
}

/* subtle inner glow */
.glass::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: radial-gradient(600px 220px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%), radial-gradient(500px 260px at 0% 20%, rgba(122, 12, 12, 0.14), transparent 60%), radial-gradient(500px 260px at 100% 20%, rgba(122, 12, 12, 0.1), transparent 60%);
	pointer-events: none;
}

.logo {
	width: min(320px, 70vw);
	height: auto;
	display: block;
	margin: 0 auto 14px;

	/* premium depth */
	filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.65)) drop-shadow(0 6px 48px rgba(0, 0, 0, 0.45));

	position: relative;
	z-index: 1;
}

.intro {
	margin: 8px auto 16px;
	max-width: 52ch;
	color: var(--muted);
	font-size: clamp(14px, 1.9vw, 16px);
	letter-spacing: 0.02em;
	position: relative;
	z-index: 1;
}

.divider {
	width: min(320px, 70%);
	height: 1px;
	margin: 10px auto 18px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	position: relative;
	z-index: 1;
}

.coming {
	margin: 0 auto 10px;
	font-size: clamp(28px, 4.2vw, 44px);
	letter-spacing: 0.2em;
	text-indent: 0.2em;
	font-weight: 750;
	position: relative;
	z-index: 1;
}

.tagline {
	margin: 0 auto 20px;
	font-size: clamp(16px, 2vw, 18px);
	color: rgba(255, 255, 255, 0.78);
	position: relative;
	z-index: 1;
}

/* WhatsApp button — premium, not “app-like” */
.wa {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 12px 18px;
	border-radius: 16px;

	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-weight: 650;
	letter-spacing: 0.01em;

	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);

	transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
	position: relative;
	z-index: 1;
}

.wa__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(122, 12, 12, 0.18);
}

.wa:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.26);
}
.wa:active {
	transform: translateY(0px);
}

.subtle {
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
	position: relative;
	z-index: 1;
}

.footer {
	margin-top: 18px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

/* Mobile tweaks */
@media (max-width: 420px) {
	.coming {
		letter-spacing: 0.16em;
		text-indent: 0.16em;
	}
	.wa {
		width: 100%;
		justify-content: center;
	}
	.logo {
		width: min(280px, 78vw);
	}
}

/* Subtle Ajrak maroon halo behind WhatsApp button */

.wa-float {
	right: 18px;
	bottom: 18px;
	z-index: 50;

	width: 54px;
	height: 54px;
	border-radius: 999px;

	display: grid;
	place-items: center;

	color: #fff;
	background: #238b49; /* WhatsApp green */
	border: 1px solid rgba(255, 255, 255, 0.18);

	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);

	text-decoration: none;
	transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;

	/* IMPORTANT for the glow layers */
	position: fixed;
	isolation: isolate;
}

.wa-float:hover {
	transform: translateY(-2px);
	background: #1ebe5d; /* slightly darker on hover */
	border-color: rgba(255, 255, 255, 0.26);
}

.wa-float:active {
	transform: translateY(0px);
}

.wa-float__icon {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

/* Slightly smaller on very small screens */
@media (max-width: 420px) {
	.wa-float {
		width: 50px;
		height: 50px;
		right: 14px;
		bottom: 14px;
	}
	.wa-float__icon {
		width: 24px;
		height: 24px;
	}
}
