:root {
	--night: #07101f;
	--night-soft: #0d1a31;
	--blue: #2563ff;
	--blue-light: #78a0ff;
	--cyan: #44d8ff;
	--white: #f8faff;
	--muted: #9caac0;
	--line: rgba(255, 255, 255, .11);
	--ease: cubic-bezier(.2, .75, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-height: 100%; background: var(--night); }
body {
	min-height: 100vh;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 75% 25%, rgba(37,99,255,.12), transparent 31%),
		linear-gradient(135deg, #050b16 0%, #081326 56%, #07101f 100%);
	color: var(--white);
	font-family: "Tajawal", "Segoe UI", Tahoma, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar { min-height: calc(100vh - 32px); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.particle-canvas, .grid-overlay, .ambient { position: fixed; inset: 0; pointer-events: none; }
.particle-canvas { z-index: 1; width: 100%; height: 100%; opacity: .58; }
.grid-overlay {
	z-index: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.grid-overlay::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(5,11,22,.98), transparent 30%, transparent 70%, rgba(5,11,22,.75));
}
.ambient { z-index: 0; border-radius: 50%; filter: blur(100px); opacity: .3; }
.ambient-one { width: 430px; height: 430px; top: -180px; right: -90px; background: #1f5bff; animation: drift-one 12s infinite alternate var(--ease); }
.ambient-two { width: 390px; height: 390px; left: -160px; bottom: -180px; background: #00a8e8; animation: drift-two 15s infinite alternate var(--ease); }

.coming-shell {
	position: relative; z-index: 2;
	width: min(calc(100% - 80px), 1440px);
	min-height: 100vh; margin-inline: auto;
	display: grid; grid-template-rows: auto 1fr auto;
}
.coming-header {
	display: flex; align-items: center; justify-content: space-between; gap: 30px;
	min-height: 114px; border-bottom: 1px solid var(--line);
	animation: reveal-down .8s both var(--ease);
}
.coming-brand {
	display: inline-flex; align-items: center; max-width: min(270px, 48vw);
	padding: 8px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px;
	background: rgba(255,255,255,.96); box-shadow: 0 12px 35px rgba(0,0,0,.2);
}
.coming-brand img, .coming-brand .custom-logo {
	width: 220px; max-width: 100%; height: auto; max-height: 52px;
	object-fit: contain; filter: none;
}
.custom-logo-link, .coming-brand > a { display: flex; max-width: 100%; }
.live-status {
	display: flex; align-items: center; gap: 9px; padding: 9px 14px;
	border: 1px solid var(--line); border-radius: 999px;
	background: rgba(255,255,255,.045); backdrop-filter: blur(12px);
	color: #b8c4d7; font-size: 12px;
}
.live-status span, .coming-footer div span {
	width: 7px; height: 7px; border-radius: 50%; background: #42e486;
	box-shadow: 0 0 0 6px rgba(66,228,134,.1), 0 0 18px rgba(66,228,134,.7);
	animation: status-pulse 2s infinite;
}

.coming-content {
	display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
	align-items: center; gap: clamp(40px, 7vw, 120px);
	padding: 76px 0 64px;
}
.content-column { position: relative; z-index: 3; max-width: 690px; animation: reveal-up .9s .12s both var(--ease); }
.coming-badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px; border: 1px solid rgba(120,160,255,.24); border-radius: 999px;
	background: rgba(37,99,255,.09); color: #a9c1ff;
	font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.badge-spark { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.badge-spark::before, .badge-spark::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(68,216,255,.45); border-radius: 50%; animation: spark-ring 2.3s infinite; }
.badge-spark::after { animation-delay: 1.1s; }
h1 {
	max-width: 750px; margin: 27px 0 24px;
	font-size: clamp(48px, 5.7vw, 82px); font-weight: 800;
	line-height: 1.12; letter-spacing: -.035em;
	text-wrap: balance; overflow-wrap: anywhere;
	background: linear-gradient(135deg, white 15%, #dbe6ff 55%, #77a0ff);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.coming-description {
	max-width: 590px; margin: 0;
	color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.85;
	text-wrap: pretty;
}
.launch-progress { max-width: 560px; margin-top: 37px; }
.progress-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 11px; color: #8998ae; font-size: 11px; }
.progress-head strong { color: #b9ccff; font-weight: 700; }
.progress-track { height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.085); }
.progress-track span {
	display: block; width: 76%; height: 100%; border-radius: inherit;
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	box-shadow: 0 0 18px rgba(68,216,255,.55);
	transform-origin: right center; animation: progress-in 1.6s .7s both var(--ease);
}
.coming-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.primary-action {
	position: relative; display: grid; grid-template-columns: 36px auto; grid-template-rows: auto auto;
	column-gap: 12px; min-width: 205px; min-height: 61px; padding: 11px 20px;
	border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
	background: linear-gradient(135deg, #1662f5, #0c48c9);
	box-shadow: 0 18px 45px rgba(16,80,221,.3);
	transition: transform .25s var(--ease), box-shadow .25s;
}
.primary-action::before {
	content: ""; position: absolute; inset: 0; overflow: hidden; border-radius: inherit;
	background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.17), transparent 68%);
	transform: translateX(110%); transition: transform .65s;
}
.primary-action:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(16,80,221,.4); }
.primary-action:hover::before { transform: translateX(-110%); }
.primary-action svg { grid-row: 1 / 3; align-self: center; width: 32px; height: 32px; }
.primary-action span { align-self: end; font-size: 14px; font-weight: 800; line-height: 1.2; }
.primary-action small { align-self: start; color: rgba(255,255,255,.7); font-size: 9px; }
.secondary-action { display: inline-flex; align-items: center; gap: 10px; padding: 13px 4px; color: #b2bfd3; font-size: 13px; font-weight: 700; }
.secondary-action span { color: var(--cyan); transition: transform .2s; }
.secondary-action:hover span { transform: translateX(-5px); }

.visual-column { position: relative; width: 100%; min-width: 0; min-height: 530px; display: grid; place-items: center; animation: visual-in 1.2s .25s both var(--ease); }
.core {
	position: relative; z-index: 2; width: clamp(245px, 28vw, 390px); aspect-ratio: 1;
	display: grid; place-items: center; border: 1px solid rgba(120,160,255,.2); border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.12), transparent 30%), linear-gradient(145deg, rgba(29,61,119,.48), rgba(8,19,40,.75));
	box-shadow: inset 0 0 70px rgba(65,123,255,.12), 0 45px 100px rgba(0,0,0,.35);
	backdrop-filter: blur(20px); animation: core-float 5s infinite alternate var(--ease);
}
.core::before { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(120,160,255,.2); border-radius: 50%; animation: spin 35s linear infinite; }
.core-glow { position: absolute; inset: 25%; border-radius: 50%; background: #246bff; filter: blur(55px); opacity: .38; animation: core-pulse 3.5s infinite alternate; }
.core-logo {
	position: relative; z-index: 2; width: 68%; padding: 18px; border: 1px solid rgba(255,255,255,.12);
	border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 22px 55px rgba(0,0,0,.28);
}
.core-logo img { width: 100%; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(113,153,255,.2); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 17px var(--cyan); }
.orbit-one { width: 80%; aspect-ratio: 1; animation: spin 25s linear infinite; }
.orbit-one::before { top: 9%; left: 20%; }
.orbit-one::after { right: 4%; bottom: 32%; background: #6791ff; }
.orbit-two { width: 98%; aspect-ratio: 1; border-style: dashed; opacity: .42; animation: spin-reverse 42s linear infinite; }
.orbit-two::before { left: 8%; bottom: 24%; }
.orbit-two::after { top: 2%; right: 39%; }
.floating-card {
	position: absolute; z-index: 4; min-width: 150px; padding: 14px 17px;
	border: 1px solid rgba(255,255,255,.12); border-radius: 15px;
	background: rgba(11,25,50,.64); box-shadow: 0 16px 45px rgba(0,0,0,.22);
	backdrop-filter: blur(16px); animation: card-float 4s infinite alternate var(--ease);
}
.floating-card span { display: block; color: #668bd9; font-family: "Manrope", sans-serif; font-size: 9px; letter-spacing: .14em; }
.floating-card strong { display: block; margin-top: 4px; font-size: 12px; }
.card-one { top: 17%; right: 2%; }
.card-two { left: 0; bottom: 21%; animation-delay: .8s; }
.card-three { right: 12%; bottom: 5%; animation-delay: 1.6s; }

.coming-footer {
	display: flex; align-items: center; justify-content: space-between; gap: 25px;
	min-height: 82px; border-top: 1px solid var(--line);
	color: #67758b; font-family: "Manrope", "Tajawal", sans-serif; font-size: 10px;
	animation: reveal-up .8s .5s both var(--ease);
}
.coming-footer div { display: flex; align-items: center; gap: 9px; font-family: "Tajawal", sans-serif; }
.coming-footer div span { width: 5px; height: 5px; box-shadow: 0 0 12px rgba(66,228,134,.65); }

@keyframes reveal-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes reveal-down { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes visual-in { from { opacity: 0; transform: scale(.88) rotate(-3deg); } to { opacity: 1; transform: none; } }
@keyframes progress-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes core-float { from { transform: translateY(-8px); } to { transform: translateY(10px); } }
@keyframes card-float { from { transform: translateY(-6px); } to { transform: translateY(8px); } }
@keyframes core-pulse { from { transform: scale(.88); opacity: .28; } to { transform: scale(1.12); opacity: .5; } }
@keyframes status-pulse { 0%,100% { opacity: .65; } 50% { opacity: 1; box-shadow: 0 0 0 8px rgba(66,228,134,0), 0 0 20px rgba(66,228,134,.8); } }
@keyframes spark-ring { from { transform: scale(.5); opacity: .8; } to { transform: scale(2.3); opacity: 0; } }
@keyframes drift-one { to { transform: translate(-80px, 80px) scale(1.15); } }
@keyframes drift-two { to { transform: translate(90px, -55px) scale(.9); } }

@media (max-width: 980px) {
	.coming-shell { width: min(calc(100% - 36px), 760px); }
	.coming-header { min-height: 96px; }
	.coming-content { grid-template-columns: 1fr; gap: 35px; padding: 52px 0 40px; text-align: center; }
	.content-column { margin-inline: auto; }
	.coming-badge { margin-inline: auto; }
	.coming-description { margin-inline: auto; }
	.coming-actions { justify-content: center; }
	.visual-column { width: 100%; max-width: 560px; min-height: 430px; margin-inline: auto; }
	.launch-progress { margin-inline: auto; }
}

@media (max-width: 600px) {
	body.admin-bar { min-height: calc(100vh - 46px); }
	.coming-shell { width: min(calc(100% - 24px), 560px); }
	.coming-header { min-height: 78px; gap: 12px; }
	.coming-brand { max-width: min(175px, 54vw); padding: 6px 10px; border-radius: 12px; }
	.coming-brand img, .coming-brand .custom-logo { width: 150px; max-height: 38px; }
	.live-status { padding: 7px 9px; font-size: 9px; }
	.coming-content { gap: 22px; padding: 36px 0 28px; }
	.coming-badge { padding: 7px 11px; font-size: 10px; }
	h1 { margin: 21px 0 18px; font-size: clamp(37px, 10.5vw, 50px); line-height: 1.18; letter-spacing: -.025em; }
	.coming-description { font-size: 14px; line-height: 1.8; }
	.launch-progress { margin-top: 28px; }
	.coming-actions { margin-top: 28px; }
	.coming-actions { flex-direction: column; }
	.primary-action { width: 100%; max-width: 330px; }
	.visual-column { min-height: 320px; }
	.core { width: clamp(210px, 65vw, 270px); }
	.core-logo { padding: 13px; border-radius: 15px; }
	.orbit-one { width: 84%; }
	.orbit-two { width: 98%; }
	.floating-card { min-width: 95px; padding: 9px 11px; }
	.floating-card strong { font-size: 9px; }
	.card-one { top: 12%; right: 0; }
	.card-two { left: 0; bottom: 18%; }
	.card-three { right: 7%; bottom: 2%; }
	.coming-footer { flex-direction: column-reverse; justify-content: center; padding: 20px 0; text-align: center; }
}

@media (max-width: 430px) {
	.live-status { display: none; }
	.coming-header { justify-content: center; }
	.coming-brand { max-width: 210px; }
	.visual-column { min-height: 340px; }
	.floating-card { display: none; }
}

@media (max-height: 760px) and (min-width: 981px) {
	.coming-header { min-height: 88px; }
	.coming-content { padding: 34px 0; }
	h1 { font-size: clamp(44px, 5vw, 70px); }
	.visual-column { min-height: 430px; }
	.core { width: clamp(245px, 24vw, 310px); }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
