*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	font-family:'Inter',sans-serif;
	background:#0f172a;
	color:#ffffff;
	min-height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:30px;
	overflow:hidden;
	position:relative;
}

/* Background glow */
body::before{
	content:"";
	position:absolute;
	width:500px;
	height:500px;
	background:#2563eb;
	filter:blur(160px);
	opacity:0.25;
	top:-120px;
	right:-120px;
}

body::after{
	content:"";
	position:absolute;
	width:400px;
	height:400px;
	background:#7c3aed;
	filter:blur(160px);
	opacity:0.20;
	bottom:-120px;
	left:-120px;
}

.container{
	position:relative;
	z-index:2;
	max-width:720px;
	width:100%;
	background:rgba(255,255,255,0.05);
	border:1px solid rgba(255,255,255,0.08);
	backdrop-filter:blur(14px);
	border-radius:28px;
	padding:50px;
	text-align:center;
	box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

/* HEADER */
.header{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:16px;
	margin-bottom:40px;
}

.logo{
	width:64px;
	height:64px;
	border-radius:18px;
	background:linear-gradient(135deg,#2563eb,#7c3aed);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:26px;
	font-weight:700;
	color:#fff;
	box-shadow:0 10px 30px rgba(37,99,235,0.35);
}

.brand{
	text-align:left;
}

.brand h2{
	font-size:26px;
	font-weight:700;
	line-height:1.1;
}

.brand span{
	font-size:14px;
	color:rgba(255,255,255,0.65);
	letter-spacing:0.5px;
}

.badge{
	display:inline-block;
	padding:10px 18px;
	border-radius:999px;
	background:rgba(255,255,255,0.08);
	border:1px solid rgba(255,255,255,0.08);
	font-size:14px;
	font-weight:600;
	letter-spacing:0.4px;
	margin-bottom:28px;
}

h1{
	font-size:clamp(38px, 6vw, 64px);
	line-height:1.05;
	margin-bottom:24px;
	font-weight:700;
}

p{
	font-size:18px;
	line-height:1.7;
	color:rgba(255,255,255,0.78);
	margin-bottom:18px;
}

.contact-box{
	margin-top:40px;
	padding-top:30px;
	border-top:1px solid rgba(255,255,255,0.08);
}

.contact-title{
	font-size:15px;
	text-transform:uppercase;
	letter-spacing:1.5px;
	color:rgba(255,255,255,0.55);
	margin-bottom:18px;
}

.contact{
	display:flex;
	flex-direction:column;
	gap:12px;
	align-items:center;
}

.contact a{
	color:#ffffff;
	text-decoration:none;
	font-size:18px;
	font-weight:500;
	transition:0.25s ease;
}

.contact a:hover{
	color:#93c5fd;
}

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

@media(max-width:640px){

	.container{
		padding:40px 28px;
	}

	.header{
		flex-direction:column;
		text-align:center;
	}

	.brand{
		text-align:center;
	}

	p{
		font-size:16px;
	}

	.contact a{
		font-size:16px;
	}
}