@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap");

:root {
	/* Darker Blue Identity */
	--bg1: #03071e; /* darker edges */
	--bg2: #07163d; /* deep indigo */
	--bg3: #0b2a6a; /* subtle mid */

	/* Glass system */
	--card: rgba(255, 255, 255, 0.075);
	--stroke: rgba(255, 255, 255, 0.12);
	--text: rgba(255, 255, 255, 0.94);
	--muted: rgba(255, 255, 255, 0.66);

	/* Accent blues */
	--accent: #3b5cc4;
	--accent2: #173a8f;

	--shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
	--radius: 28px;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100vh;
}

body {
	margin: 0;
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
	color: var(--text);

	background: radial-gradient(
			1400px 900px at 50% 50%,
			rgba(8, 16, 45, 0.8),
			transparent 70%
		),
		linear-gradient(140deg, #02040f, #050b2a, #07163d);

	overflow: hidden;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background: radial-gradient(
		900px 400px at 50% 10%,
		rgba(120, 160, 255, 0.06),
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

.wave-text span {
	display: inline-block;
	position: relative;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 700;
	background: linear-gradient(110deg, #ffffff 20%, #9fb4ff 40%, #ffffff 60%);

	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	text-shadow: 0 8px 30px rgba(59, 92, 196, 0.35);
	animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
	animation-delay: 0s;
}
.wave-text span:nth-child(2) {
	animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
	animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
	animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
	animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
	animation-delay: 1s;
}
.wave-text span:nth-child(7) {
	animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
	animation-delay: 1.4s;
}
.wave-text span:nth-child(9) {
	animation-delay: 1.6s;
}
.wave-text span:nth-child(10) {
	animation-delay: 1.8s;
}
.wave-text span:nth-child(11) {
	animation-delay: 2s;
}

@keyframes wave {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Typing animation */
.type {
	color: #ffffff;
	max-width: 400px;
	font-weight: 500;
	font-family: "Space Grotesk";
	min-height: 100px;
	text-shadow: var(--accent);
}

.countdown {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid var(--stroke);
	background: rgba(0, 0, 0, 0.24);
	width: min(100%, 380px);
}

@media (width < 900px) {
	.countdown {
		margin-inline: auto;
	}
}

.countdown-label {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
}

.countdown-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(60px, 1fr));
	gap: 12px;
}

.countdown-item {
	text-align: center;
	padding: 8px 10px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.06);
}

.countdown-value {
	display: block;
	font-family: "Space Grotesk";
	font-size: 20px;
	font-weight: 600;
}

.countdown-unit {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

@media (max-width: 640px) {
	.countdown-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.cursor {
	display: inline-block;
	margin-left: 4px;
	animation: blink 1s steps(1) infinite;
	vertical-align: bottom;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

/* layout */
.wrap {
	height: 100vh;
	display: grid;
	place-items: center;
	padding: 28px 18px;
	position: relative;
}

/* TOP RIGHT BLUE GLOW */
.wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;

	background: radial-gradient(
			1000px 650px at 88% 16%,
			rgba(70, 110, 255, 0.38),
			transparent 62%
		),
		radial-gradient(
			700px 480px at 92% 10%,
			rgba(30, 58, 138, 0.34),
			transparent 65%
		);

	filter: blur(50px);
	opacity: 0.85;
	pointer-events: none;
}

/* BIG BACK GLOW UNDER CARD + LEFT GLOW */
.wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;

	background:
		/* Main cinematic glow */ radial-gradient(
			1400px 900px at 50% 72%,
			rgba(59, 92, 196, 0.35),
			transparent 68%
		),
		/* Left cinematic glow */
			radial-gradient(
				900px 700px at 8% 40%,
				rgba(30, 58, 138, 0.32),
				transparent 65%
			),
		/* Deep shadow anchor */
			radial-gradient(
				800px 700px at 70% 92%,
				rgba(2, 4, 15, 1),
				transparent 75%
			);

	filter: blur(55px);
	opacity: 0.95;
	pointer-events: none;
}

/* glass card */
.card {
	position: relative;
	z-index: 2;

	width: min(1040px, 100%);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.045)
	);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;

	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: radial-gradient(
			760px 300px at 24% 0%,
			rgba(59, 92, 196, 0.18),
			transparent 64%
		),
		radial-gradient(
			760px 300px at 88% 22%,
			rgba(23, 58, 143, 0.16),
			transparent 64%
		);
	opacity: 0.92;
	pointer-events: none;
}

.inner {
	position: relative;
	padding: 34px;
	display: grid;
	gap: 22px;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
}

@media (max-width: 900px) {
	.inner {
		grid-template-columns: 1fr;
		padding: 26px;
	}
}

/* badge */
.badge {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
	width: fit-content;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: 13px;
	color: var(--muted);
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(59, 92, 196, 0.95);
	box-shadow: 0 0 18px rgba(59, 92, 196, 0.45);
}

.lead {
	margin: 0;
	color: var(--muted);
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.8;
	max-width: 58ch;
}

/* actions */
.actions {
	margin-top: 18px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px solid var(--stroke);
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
	font-size: 14px;
	transition: transform 0.12s ease, background 0.12s ease;
}

.btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.095);
}

.btn.primary {
	border: 0;
	color: #060b18;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		rgba(59, 92, 196, 0.95),
		rgba(23, 58, 143, 0.94)
	);
	box-shadow: 0 16px 46px rgba(59, 92, 196, 0.16);
}

/* media panel */
.media {
	border-radius: 22px;
	border: 1px solid var(--stroke);
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	overflow: hidden;
	position: relative;
	min-height: 360px;
}

.media img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	transform: scale(1.02);
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62)),
		radial-gradient(
			520px 300px at 35% 22%,
			rgba(59, 92, 196, 0.05),
			transparent 64%
		);
	pointer-events: none;
}

.tag {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 10px 12px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(0, 0, 0, 0.34);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* footer */
.footer {
	padding: 18px 34px 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12.5px;
	position: relative;
}

.brand {
	display: flex;
	gap: 10px;
	align-items: center;
}

.brand img {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	box-shadow: 0 14px 32px rgba(59, 92, 196, 0.18);
}
