:root {
	--canvas: #f2f7fa;
	--surface: #ffffff;
	--surface-soft: #e8f0f4;
	--text: #172434;
	--muted: #526579;
	--fog: #718295;
	--cyan: #00e5ff;
	--blue: #3b82f6;
	--green: #00ff88;
	--line: rgba(20, 83, 105, 0.18);
	--max: 1200px;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--canvas);
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	line-height: 1.6;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
textarea {
	font: inherit;
}
button {
	color: inherit;
}
.site-noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.035;
	z-index: 10;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.container {
	width: min(var(--max), calc(100% - 48px));
	margin: 0 auto;
}
.site-header {
	position: fixed;
	z-index: 20;
	top: 0;
	width: 100%;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 max(24px, calc((100vw - var(--max)) / 2));
	background: rgba(242, 247, 250, 0.88);
	border-bottom: 1px solid rgba(20, 83, 105, 0.12);
	backdrop-filter: blur(18px);
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font:
		700 14px/1 "Space Mono",
		monospace;
	letter-spacing: 0.12em;
}
.brand-dot {
	color: var(--cyan);
}
.brand-mark {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: flex-end;
	gap: 3px;
}
.brand-mark span {
	display: block;
	width: 5px;
	background: var(--cyan);
	box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}
.brand-mark span:nth-child(1) {
	height: 10px;
	opacity: 0.45;
}
.brand-mark span:nth-child(2) {
	height: 17px;
	opacity: 0.75;
}
.brand-mark span:nth-child(3) {
	height: 22px;
}
.main-nav {
	display: flex;
	gap: 34px;
	margin-left: auto;
	margin-right: 34px;
}
.main-nav a,
.footer-column a,
.footer-column span:not(.eyebrow) {
	color: var(--muted);
	font-size: 14px;
	transition: color 0.2s ease;
}
.main-nav a:hover,
.footer-column a:hover,
.active-link {
	color: var(--text) !important;
}
.main-nav a:hover {
	text-shadow: 0 0 14px rgba(0, 229, 255, 0.65);
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	border-radius: 8px;
	padding: 14px 22px;
	border: 1px solid var(--cyan);
	font-weight: 700;
	font-size: 14px;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		background 0.2s;
}
.button:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 0 25px rgba(0, 229, 255, 0.22);
}
.button-primary {
	border: 0;
	color: #fff;
	background: linear-gradient(135deg, var(--cyan), #5a9dff);
}
.button-secondary {
	color: var(--cyan);
	background: transparent;
}
.button-secondary:hover {
	background: rgba(0, 229, 255, 0.08);
}
.button-small {
	padding: 10px 15px;
	font-size: 12px;
	color: var(--cyan);
}
.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 8px;
}
.menu-toggle span {
	display: block;
	width: 17px;
	height: 1px;
	margin: 5px auto;
	background: var(--cyan);
}

.hero {
	min-height: 760px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 72% 35%, rgba(34, 66, 150, 0.14), transparent 45%),
		radial-gradient(ellipse at 10% 0%, rgba(0, 229, 255, 0.12), transparent 35%);
}
.hero::after {
	content: "";
	position: absolute;
	right: 8%;
	top: 23%;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(0, 229, 255, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 80px rgba(0, 229, 255, 0.06),
		inset 0 0 60px rgba(59, 130, 246, 0.05);
	opacity: 0.7;
}
.hero-grid {
	position: absolute;
	inset: auto 0 0;
	height: 35%;
	opacity: 0.22;
	background:
		linear-gradient(rgba(20, 83, 105, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 83, 105, 0.16) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to top, black, transparent);
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 710px;
	padding-top: 56px;
}
.eyebrow {
	display: block;
	color: var(--cyan);
	font:
		12px/1.2 "Space Mono",
		monospace;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.eyebrow::before {
	content: "// ";
	color: var(--green);
}
.hero h1 {
	max-width: 720px;
	margin: 23px 0 22px;
	font-size: clamp(48px, 7vw, 84px);
	line-height: 0.98;
	letter-spacing: -0.055em;
	font-weight: 700;
}
.hero h1 em {
	color: var(--cyan);
	font-style: normal;
}
.hero-lead {
	max-width: 525px;
	margin: 0 0 36px;
	color: var(--muted);
	font-size: 18px;
}
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.hero-meta {
	display: flex;
	gap: 30px;
	margin-top: 78px;
	color: var(--fog);
	font:
		11px "Space Mono",
		monospace;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.hero-meta span::before {
	content: "•";
	color: var(--green);
	margin-right: 8px;
}

.section {
	padding: 112px 0;
}
.section-alt {
	background: var(--surface-soft);
	border-block: 1px solid rgba(0, 229, 255, 0.05);
}
.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 42px;
}
.section-heading h2,
.page-heading h1 {
	margin: 12px 0 0;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.045em;
}
.section-heading p {
	max-width: 365px;
	margin: 0;
	color: var(--muted);
}
.text-link {
	color: var(--cyan);
	font:
		12px "Space Mono",
		monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.text-link:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}
.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.about-copy {
	max-width: 520px;
	color: var(--muted);
	font-size: 18px;
}
.about-copy strong {
	color: var(--text);
	font-weight: 500;
}
.signal-list {
	border-top: 1px solid var(--line);
}
.signal-item {
	display: flex;
	justify-content: space-between;
	padding: 19px 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
}
.signal-item strong {
	color: var(--text);
	font:
		14px "Space Mono",
		monospace;
}
.game-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.game-card {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 22px;
	background: var(--surface);
	border: 1px solid rgba(20, 83, 105, 0.14);
	border-radius: 16px;
	transition:
		transform 0.25s,
		box-shadow 0.25s,
		border-color 0.25s;
	box-shadow: 0 12px 28px rgba(39, 68, 87, 0.06);
}
.game-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 229, 255, 0.4);
	box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}
.game-art {
	height: 178px;
	display: flex;
	align-items: flex-end;
	padding: 20px;
	margin-bottom: 25px;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	background:
		radial-gradient(circle at 75% 25%, rgba(0, 229, 255, 0.45), transparent 22%), linear-gradient(135deg, #17243e, #11111b 65%);
}
.game-art::before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	right: -30px;
	top: -70px;
	/* border: 1px solid rgba(0, 229, 255, 0.5); */
	border-radius: 50%;
	box-shadow: 0 0 40px rgba(0, 229, 255, 0.24);
}
/* .game-art.art-ember { background: radial-gradient(circle at 68% 35%, rgba(255,179,71,.48), transparent 19%), linear-gradient(135deg, #352318, #121019 65%); }.game-art.art-ember::before { border-color: rgba(255,179,71,.5); box-shadow: 0 0 40px rgba(255,179,71,.18); } */
/* .game-art.art-orbit { background: radial-gradient(circle at 50% 40%, rgba(59,130,246,.5), transparent 18%), linear-gradient(135deg, #18223d, #121019 65%); } */
.game-art .art-label {
	position: relative;
	z-index: 1;
	font:
		11px "Space Mono",
		monospace;
	letter-spacing: 0.1em;
	color: rgba(234, 238, 245, 0.7);
}
.game-card h3 {
	margin: 0 0 8px;
	font-size: 22px;
	letter-spacing: -0.03em;
}
.game-card p {
	margin: 0 0 21px;
	color: var(--muted);
	font-size: 14px;
}
.game-card .text-link {
	margin-top: auto;
}
.news-list {
	border-top: 1px solid var(--line);
}
.news-row {
	display: grid;
	grid-template-columns: 130px 1fr 110px;
	gap: 24px;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}
.news-row time {
	color: var(--fog);
	font:
		12px "Space Mono",
		monospace;
}
.news-row h3 {
	margin: 0 0 5px;
	font-size: 18px;
}
.news-row p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}
.contact-strip {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.contact-strip p {
	max-width: 420px;
	color: var(--muted);
}

.page-shell {
	padding: 165px 0 112px;
	min-height: 70vh;
	background: radial-gradient(ellipse at 85% 0%, rgba(34, 66, 150, 0.25), transparent 40%);
}
.page-heading {
	max-width: 680px;
	margin-bottom: 58px;
}
.page-heading p {
	color: var(--muted);
	font-size: 18px;
	max-width: 560px;
}
.detail-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 70px;
}
.detail-content {
	max-width: 700px;
}
.detail-content h2 {
	margin-top: 48px;
	font-size: 28px;
}
.detail-content p,
.detail-content li {
	color: var(--muted);
}
.detail-content ul {
	padding-left: 20px;
}
.detail-aside {
	border-top: 1px solid var(--line);
	align-self: start;
}
.aside-row {
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}
.aside-row span {
	display: block;
	color: var(--fog);
	font:
		10px "Space Mono",
		monospace;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}
.aside-row strong {
	font-size: 14px;
	font-weight: 500;
}
.wide-art {
	height: 300px;
	margin-bottom: 40px;
	border-radius: 16px;
	background:
		radial-gradient(circle at 70% 40%, rgba(0, 229, 255, 0.5), transparent 17%), linear-gradient(130deg, #17243e, #11111b 64%);
	position: relative;
	overflow: hidden;
}
.wide-art::after {
	content: "PRYXIS / FIELD NOTE";
	position: absolute;
	left: 28px;
	bottom: 25px;
	font:
		12px "Space Mono",
		monospace;
	color: rgba(234, 238, 245, 0.7);
	letter-spacing: 0.1em;
}
.article-meta {
	color: var(--fog);
	font:
		12px "Space Mono",
		monospace;
}
.contact-layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 75px;
}
.contact-form {
	display: grid;
	gap: 18px;
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.field label {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 13px;
}
.field input,
.field textarea {
	width: 100%;
	padding: 13px 15px;
	color: var(--text);
	background: var(--surface);
	border: 1px solid #2a2a3a;
	border-radius: 10px;
	outline: 0;
}
.field textarea {
	min-height: 150px;
	resize: vertical;
}
.field input:focus,
.field textarea:focus {
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.form-status {
	min-height: 24px;
	color: var(--green);
	font:
		12px "Space Mono",
		monospace;
}
.contact-info {
	border-top: 1px solid var(--line);
}
.contact-info .aside-row a {
	color: var(--cyan);
}
.site-footer {
	padding: 65px 0 25px;
	border-top: 1px solid rgba(0, 229, 255, 0.08);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 30px;
}
.footer-copy {
	color: var(--fog);
	font-size: 13px;
}
.footer-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-column .eyebrow {
	margin-bottom: 10px;
	font-size: 10px;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 70px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 229, 255, 0.08);
	color: var(--fog);
	font:
		11px "Space Mono",
		monospace;
}
.footer-bottom a:hover {
	color: var(--text);
}
.status i {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 8px var(--green);
}
.reveal {
	animation: rise 0.65s both;
}
@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.field input,
.field textarea {
	border-color: #c1d0d8;
}
.main-nav.open {
	background: rgba(242, 247, 250, 0.98);
}
.game-art-echoes-of-void,
.wide-art-echoes-of-void {
	background-image: linear-gradient(rgba(10, 20, 34, 0.2), rgba(10, 20, 34, 0.36)), url("images/echoes-of-void.jpg");
	background-size: cover;
	background-position: center;
}
.game-art-emberline,
.wide-art-emberline {
	background-image: linear-gradient(rgba(10, 20, 34, 0.16), rgba(10, 20, 34, 0.34)), url("images/emberline.jpg");
	background-size: cover;
	background-position: center;
}
.game-art-orbit-9,
.wide-art-orbit-9 {
	background-image: linear-gradient(rgba(10, 20, 34, 0.16), rgba(10, 20, 34, 0.34)), url("images/orbit-9.jpg");
	background-size: cover;
	background-position: center;
}
@media (max-width: 760px) {
	.container {
		width: min(100% - 34px, var(--max));
	}
	.site-header {
		height: 66px;
		padding: 0 17px;
	}
	.main-nav,
	.site-header > .button {
		display: none;
	}
	.menu-toggle {
		display: block;
	}
	.main-nav.open {
		position: absolute;
		display: flex;
		flex-direction: column;
		gap: 0;
		top: 65px;
		left: 0;
		width: 100%;
		margin: 0;
		padding: 8px 17px 16px;
		background: rgba(10, 10, 18, 0.97);
		border-bottom: 1px solid var(--line);
	}
	.main-nav.open a {
		padding: 13px 0;
	}
	.hero {
		min-height: 700px;
	}
	.hero::after {
		right: -130px;
		top: 20%;
		width: 300px;
		height: 300px;
	}
	.hero h1 {
		font-size: clamp(46px, 14vw, 70px);
	}
	.hero-lead {
		font-size: 16px;
	}
	.hero-meta {
		margin-top: 55px;
		gap: 14px;
		flex-wrap: wrap;
	}
	.section {
		padding: 78px 0;
	}
	.section-heading,
	.about-layout,
	.contact-strip,
	.contact-layout,
	.detail-layout {
		display: block;
	}
	.section-heading > * + * {
		margin-top: 20px;
	}
	.about-layout > * + * {
		margin-top: 40px;
	}
	.game-grid {
		grid-template-columns: 1fr;
	}
	.game-card {
		min-height: 0;
	}
	.news-row {
		grid-template-columns: 1fr;
		gap: 7px;
	}
	.news-row .text-link {
		margin-top: 8px;
		display: inline-block;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 22px;
	}
	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}
	.footer-bottom {
		flex-wrap: wrap;
		margin-top: 45px;
	}
	.page-shell {
		padding-top: 125px;
	}
	.page-heading {
		margin-bottom: 40px;
	}
	.detail-layout > * + * {
		margin-top: 45px;
	}
	.field-row {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.contact-layout > * + * {
		margin-top: 50px;
	}
	.wide-art {
		height: 220px;
	}
}
