:root {
	--bg: #0f172a;
	--surface: #111a2e;
	--text: #e9eef7;
	--muted: #b7c3d8;
	--accent: #7dd3fc;
	--line: rgba(255, 255, 255, 0.08);
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Sora", "DM Sans", sans-serif;
	background: radial-gradient(circle at 15% 20%, rgba(125, 211, 252, 0.08), transparent 32%),
		linear-gradient(180deg, #0f172a 0%, #0f172a 100%);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 7vw;
	border-bottom: 1px solid var(--line);
	background: rgba(15, 23, 42, 0.92);
}

.logo {
	font-weight: 700;
	letter-spacing: 0.02em;
	font-size: 1rem;
}

.nav-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ghost-link {
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.ghost-link:hover {
	border-color: rgba(255, 255, 255, 0.18);
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}

.pill.primary {
	background: var(--accent);
	color: #0b1324;
	border-color: transparent;
}

.pill.ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--text);
}

.pill:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.2);
}

.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	padding: 44px 7vw 28px;
	align-items: center;
}

.hero-text h1 {
	font-size: clamp(2rem, 4vw, 2.6rem);
	margin: 10px 0 12px;
	line-height: 1.1;
}

.lede {
	color: var(--muted);
	margin: 0 0 16px;
	max-width: 620px;
	line-height: 1.5;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	font-weight: 700;
	font-size: 0.8rem;
	margin: 0 0 6px;
}

.hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.module-section {
	padding: 18px 7vw 36px;
}

.section-head h2 {
	margin: 6px 0;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.module-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.module-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px 14px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
	min-height: 180px;
	transition: transform 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}

.module-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
	background: #13203a;
}

.card-top h3 {
	margin: 6px 0 6px;
	font-size: 1.1rem;
}

.card-body {
	color: var(--muted);
	margin: 0;
	line-height: 1.4;
}

.tag {
	font-size: 0.82rem;
	color: var(--accent);
	margin: 0 0 2px;
	letter-spacing: 0.04em;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 12px;
}

.status {
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border: 1px solid var(--line);
}

.status.live {
	color: #79e6a2;
	border-color: rgba(121, 230, 162, 0.35);
}

.status.beta {
	color: #ffd166;
	border-color: rgba(255, 209, 102, 0.35);
}

.status.soon {
	color: #ff9f68;
	border-color: rgba(255, 159, 104, 0.35);
}

.cta {
	font-weight: 700;
	color: var(--accent);
}

.site-footer {
	padding: 22px 7vw 36px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	background: rgba(15, 23, 42, 0.95);
}

.footer-links {
	display: flex;
	gap: 14px;
}

.footer-links a {
	color: var(--text);
	opacity: 0.82;
	transition: opacity 0.15s ease;
}

.footer-links a:hover {
	opacity: 1;
}

@media (max-width: 720px) {
	.site-header {
		flex-wrap: wrap;
		gap: 10px;
	}

	.hero {
		padding-top: 32px;
	}
}

@media (max-width: 900px) {
	.site-header {
		padding: 14px 6vw;
	}

	.hero {
		padding: 36px 6vw 26px;
		text-align: left;
	}

	.module-section {
		padding: 16px 6vw 32px;
	}
}

@media (max-width: 560px) {
	.site-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-actions {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.hero {
		padding: 28px 6vw 22px;
		text-align: left;
		gap: 18px;
	}

	.hero-actions {
		width: 100%;
		flex-direction: row;
		gap: 8px;
	}

	.module-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.site-footer {
		padding: 18px 6vw 28px;
		flex-direction: column;
		align-items: flex-start;
	}
}
