* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	
	font-family: 'Segoe UI', system-ui, sans-serif;
	color: #cbd5f5;
	background: linear-gradient(135deg, #020617, #0f172a, #172554);
}

.coming-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/resources/images/bg_nodes.png);
  background-size: 100%;
  background-position: center;
  opacity: 0.02;
  z-index: 0;
}

.coming-wrapper {
	display: flex;
	flex: 1;
	align-items: center;
	
	justify-content: center;
	padding: 80px 20px;
}
.coming-center {
	max-width: 1100px;
	width: 100%;
	text-align: center;
}

.main-logo {
	max-width: 280px;
	margin-bottom: 32px;
}
.main-title {
	margin-bottom: 60px;
	font-size: 3.2rem;
	font-weight: 900;
}
.main-title span {
	margin: 0 6px;
}
.main-title .accent {
	color: #41cff5;
}

.content-row {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	
	align-items: center;
	justify-content: center;
}

.form-col {
	max-width: 640px;
	width: 100%;
}

.signup-text {
	margin-bottom: 20px;
	font-size: 1.25rem;
}
.signup-form {
	max-width: 100%;
	margin: 0 auto;
	
	display: flex;
	gap: 12px;
}
.signup-form input {
	flex: 1;
	padding: 14px 18px;
	
	border-radius: 999px;
	border: 1px solid rgba(65,207,245,.35);
	color: #e0f2fe;
	background: rgba(4,7,43,.7);
}
.signup-form button {
	padding: 14px 26px;

	border: none;
	border-radius: 999px;
	
	font-weight: 700;
	background: linear-gradient(135deg, #41cff5, #22d3ee);
	color: #020617;
	
	cursor: pointer;
}
.signup-note {
	margin-top: 10px;
	
	font-size: .9rem;
	color: #94a3b8;
}

.site-footer {
	padding: 24px 20px;
	border-top: 1px solid rgba(65, 207, 245, 0.15);
	
	text-align: center;	
	background: #020617;
}
.site-footer p {
	max-width: 720px;
	margin: 0 auto;
	
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	
	text-align: center;
}
.site-footer a {
	margin: 0 8px;
	
	color: #41cff5;
	font-weight: 500;
	text-decoration: none;
}
.site-footer a:hover {
	text-decoration: underline;
}
.site-footer a:first-child {
	margin-right: 12px;
    align-items: auto;

}

.site-footer a:last-child {
	margin-left: 12px;
}

.offerings {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	
	max-width: 640px;
}
.offering-card {
	padding: 26px 22px;
	
	border-radius: 16px;
	border: 1px solid rgba(65, 207, 245, 0.25);
	
	text-align: left;
	background: rgba(4, 7, 43, 0.6);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offering-card h3 {
	margin-bottom: 10px;
	
	font-size: 1.2rem;
	color: #41cff5;
}
.offering-card p {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #cbd5f5;
}
.offering-card:hover {
	transform: translateY(-6px);
	border-color: rgba(65, 207, 245, 0.6);
	box-shadow: 0 10px 40px rgba(65, 207, 245, 0.25), 0 0 30px rgba(65, 207, 245, 0.15);
}

@media (max-width: 900px) {
	.offerings {grid-template-columns: 1fr;}
}
@media (max-width: 700px) {
	.main-title {font-size: 2.6rem;}
	.content-row {gap: 40px;}
}
@media (max-width: 600px) {
	.site-footer p {
		flex-direction: column;
		gap: 6px;
	}
	.site-footer a {
		font-size: 0.9rem;
	}
}