@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,900");

:root {
	--text: #f7f7f7;
	--muted: rgba(255, 255, 255, 0.8);
	--card: rgba(0, 0, 0, 0.45);
	--border: rgba(255, 255, 255, 0.15);
	--accent: #43b4ff;
	--accent-2: #2ecc71;
	--bg: #0c2433;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	color: var(--text);
	background: var(--bg);
	min-height: 100vh;
}

body:before {
	content: '';
	position: fixed;
	inset: 0;
	background: linear-gradient(130deg, rgba(67, 180, 255, 0.2), rgba(46, 204, 113, 0.12));
	pointer-events: none;
}

body:after {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("images/overlay.svg"), url("images/overlay-pattern.png");
	background-repeat: no-repeat, repeat;
	background-size: cover, auto;
	opacity: 0.6;
	pointer-events: none;
}

.page-wrapper {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 2rem 1.5rem 3rem 1.5rem;
}

.back-link {
	color: var(--muted);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.9rem;
}

.page-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.35rem;
	backdrop-filter: blur(4px);
	margin-top: 0.5rem;
}

.page-header {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1.2rem;
}

.page-header h1 {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.page-header p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.back-link:hover {
	color: #fff;
}

.section {
	margin-bottom: 1rem;
}

.section h2 {
	margin: 0 0 0.35rem 0;
	font-size: 1.1rem;
	letter-spacing: -0.01em;
}

.section p {
	margin: 0 0 0.4rem 0;
	color: var(--muted);
	line-height: 1.6;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.65rem;
	margin: 0.6rem 0 1rem 0;
}

.stat {
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0.8rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.04);
}

.stat-number {
	font-size: 1.5rem;
	font-weight: 900;
}

.stat-label {
	color: var(--muted);
	font-size: 0.9rem;
}

.list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.4rem;
}

.list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5rem;
}

.list .dot {
	margin-top: 0.35rem;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: var(--accent);
}

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0.3rem 0 0.8rem 0;
}

.chip {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.35rem 0.7rem;
	font-size: 0.9rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.button {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: #fff;
	padding: 0.6rem 0.95rem;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	min-width: 160px;
}

.button:hover {
	background: rgba(255, 255, 255, 0.18);
}

.button.primary {
	background: #fff;
	color: #0f1f2b;
	border-color: #fff;
}

.muted {
	color: var(--muted);
}

@media screen and (max-width: 640px) {
	.page-header h1 {
		font-size: 1.65rem;
	}

	.page-wrapper {
		padding: 1.5rem 1rem 2.5rem 1rem;
	}

	.button {
		width: 100%;
		text-align: center;
	}
}
