/* Open1320 Theme v0.2.1
 * Tactile industrial minimalism with restrained retro racing-game detail.
 */

:root {
	--o-bg: #090b0c;
	--o-bg-deep: #050607;
	--o-surface: #111517;
	--o-surface-raised: #171c1f;
	--o-surface-soft: #1c2225;
	--o-steel: #242b2f;
	--o-line: #30373b;
	--o-line-strong: #515b61;
	--o-text: #f2f1ec;
	--o-text-soft: #c3c6c5;
	--o-muted: #899196;
	--o-dim: #626a6e;
	--o-red: #bb2c2b;
	--o-red-bright: #eb5048;
	--o-red-dark: #641b1c;
	--o-amber: #d4a044;
	--o-green: #5bb875;
	--o-blue: #7fa6b4;
	--o-focus: #f1bd55;
	--o-shadow: 0 22px 60px rgba(0, 0, 0, .36);
	--o-shadow-small: 0 10px 28px rgba(0, 0, 0, .24);
	--o-max: 1480px;
	--o-content: 1120px;
	--o-display: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
	--o-body: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--o-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--o-pixel: "Lucida Console", Monaco, monospace;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--o-bg-deep);
}

@view-transition {
	navigation: auto;
}

::view-transition-old(root) {
	animation: open1320-view-out .16s ease both;
}

::view-transition-new(root) {
	animation: open1320-view-in .26s ease both;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .025), transparent 26%),
		repeating-radial-gradient(circle at 20% 40%, transparent 0 2px, rgba(255, 255, 255, .012) 3px 4px),
		linear-gradient(180deg, #0b0e0f 0, #07090a 100%);
	color: var(--o-text);
	font-family: var(--o-body);
	font-size: 16px;
	line-height: 1.58;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	opacity: .28;
	background:
		repeating-linear-gradient(96deg, transparent 0 28px, rgba(255, 255, 255, .018) 29px 30px),
		repeating-linear-gradient(3deg, transparent 0 3px, rgba(0, 0, 0, .18) 4px 5px);
	mix-blend-mode: soft-light;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, .24), transparent 16%, transparent 84%, rgba(0, 0, 0, .24));
}

[hidden] {
	display: none !important;
}

a {
	color: #e5e7e6;
	text-decoration-color: #6f777b;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

a:hover {
	color: #fff;
	text-decoration-color: var(--o-red-bright);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a,
input,
select,
summary {
	transition: border-color .18s ease, background-color .18s ease, color .18s ease, opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}

button {
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--o-focus);
	outline-offset: 3px;
}

::selection {
	background: var(--o-red);
	color: #fff;
}

h1,
h2,
h3,
p {
	overflow-wrap: anywhere;
}

code,
kbd,
samp {
	font-family: var(--o-mono);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.open1320-skip-link {
	position: fixed;
	left: 18px;
	top: -90px;
	z-index: 9999;
	background: #fff;
	color: #000;
	padding: 11px 16px;
	font-weight: 700;
}

.open1320-skip-link:focus {
	top: 14px;
}

/* Page load and progressive motion */
.open1320-route-progress {
	position: fixed;
	inset: 0 0 auto;
	height: 3px;
	z-index: 10000;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	background: rgba(255, 255, 255, .06);
}

.open1320-route-progress span {
	display: block;
	width: 32%;
	height: 100%;
	transform: translateX(-120%);
	background: linear-gradient(90deg, transparent, var(--o-red-bright) 40%, var(--o-amber));
	box-shadow: 0 0 16px rgba(235, 80, 72, .65);
}

.open1320-route-progress.is-active {
	opacity: 1;
}

.open1320-route-progress.is-active span {
	animation: open1320-progress 1.1s cubic-bezier(.25, .65, .2, 1) infinite;
}

.open1320-reveal {
	opacity: 0;
	transform: translateY(18px);
}

.open1320-reveal.is-visible,
.no-js .open1320-reveal {
	opacity: 1;
	transform: none;
	transition: opacity .55s ease, transform .55s ease;
}

.is-leaving body {
	opacity: .94;
}

/* Header */
.open1320-site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(7, 9, 10, .94);
	border-bottom: 1px solid var(--o-line);
	box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
	backdrop-filter: blur(16px);
}

.open1320-header-stripe {
	display: grid;
	grid-template-columns: 7fr 1fr 1fr;
	height: 3px;
}

.open1320-header-stripe span:nth-child(1) {
	background: var(--o-red);
}

.open1320-header-stripe span:nth-child(2) {
	background: var(--o-amber);
}

.open1320-header-stripe span:nth-child(3) {
	background: var(--o-green);
}

.open1320-header-inner {
	position: relative;
	width: min(var(--o-max), calc(100% - 42px));
	min-height: 82px;
	margin: auto;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
}

.open1320-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
}

.custom-logo-link,
.open1320-fallback-logo {
	display: block;
	width: 62px;
	height: 62px;
	flex: 0 0 62px;
}

.custom-logo,
.open1320-fallback-logo img {
	width: 62px;
	height: 62px;
	object-fit: contain;
}

.open1320-wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1;
	text-decoration: none;
}

.open1320-wordmark span {
	font-family: var(--o-display);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: .025em;
	text-transform: uppercase;
}

.open1320-wordmark small {
	margin-top: 7px;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.open1320-primary-nav {
	justify-self: end;
}

.open1320-nav-menu,
.open1320-submenu ul,
.open1320-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.open1320-nav-menu {
	display: flex;
	align-items: center;
	gap: 5px;
}

.open1320-nav-group {
	position: relative;
}

.open1320-nav-group-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	border: 1px solid transparent;
	background: transparent;
	padding: 8px 11px;
	font-family: var(--o-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
	cursor: pointer;
}

.open1320-nav-group-toggle svg {
	width: 11px;
	height: 8px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	transition: transform .18s ease;
}

.open1320-nav-group.is-current > .open1320-nav-group-toggle {
	color: #fff;
	border-bottom-color: var(--o-red-bright);
}

.open1320-nav-group-toggle:hover,
.open1320-nav-group.is-open > .open1320-nav-group-toggle {
	border-color: var(--o-line);
	background: var(--o-surface-raised);
	color: #fff;
}

.open1320-nav-group.is-open > .open1320-nav-group-toggle svg {
	transform: rotate(180deg);
}

.open1320-submenu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: 330px;
	padding: 12px;
	border: 1px solid var(--o-line-strong);
	background: #101416;
	box-shadow: var(--o-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.open1320-submenu::before {
	content: "";
	position: absolute;
	top: -13px;
	right: 25px;
	width: 28px;
	height: 13px;
	background: linear-gradient(135deg, transparent 49%, var(--o-line-strong) 50% 54%, #101416 55%);
}

.open1320-nav-group.is-open .open1320-submenu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.open1320-submenu-intro {
	margin: 0;
	padding: 4px 7px 11px;
	border-bottom: 1px solid var(--o-line);
	color: var(--o-muted);
	font-size: 12px;
}

.open1320-submenu a {
	display: block;
	padding: 10px 8px;
	border-left: 2px solid transparent;
	text-decoration: none;
}

.open1320-submenu a:hover,
.open1320-submenu a[aria-current="page"] {
	border-left-color: var(--o-red-bright);
	background: rgba(255, 255, 255, .035);
}

.open1320-submenu a span {
	display: block;
	font-family: var(--o-display);
	font-size: 17px;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.open1320-submenu a small {
	display: block;
	margin-top: 2px;
	color: var(--o-muted);
	font-size: 11px;
	line-height: 1.35;
}

.open1320-header-controls {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-self: end;
}

.open1320-header-directory {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 45px;
	border-left: 1px solid var(--o-line);
	padding-left: 17px;
	text-decoration: none;
	font-family: var(--o-display);
	font-size: 14px;
	letter-spacing: .025em;
	text-transform: uppercase;
}

.open1320-header-directory > span:last-child {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.open1320-header-directory small {
	margin-bottom: 4px;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .12em;
}

.open1320-live-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--o-green);
	box-shadow: 0 0 0 3px rgba(91, 184, 117, .11), 0 0 10px rgba(91, 184, 117, .56);
}

.open1320-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	border: 1px solid var(--o-line-strong);
	background: var(--o-surface);
	padding: 8px 11px;
	cursor: pointer;
}

.open1320-menu-icon {
	display: grid;
	gap: 4px;
	width: 20px;
}

.open1320-menu-icon i {
	display: block;
	height: 2px;
	background: #fff;
}

.open1320-menu-label {
	font-family: var(--o-mono);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Global shell and typography */
.open1320-page-shell {
	width: min(var(--o-max), calc(100% - 42px));
	margin: 0 auto;
}

.open1320-main {
	padding: 32px 0 86px;
}

.open1320-narrow {
	max-width: 960px;
	margin-inline: auto;
}

.open1320-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 17px;
	color: var(--o-dim);
	font-family: var(--o-mono);
	font-size: 10px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-breadcrumbs a {
	color: #aeb5b8;
	text-decoration: none;
}

.open1320-kicker {
	margin: 0 0 9px;
	color: #d6aa61;
	font-family: var(--o-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.open1320-terminal-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 24px;
	border: 1px solid var(--o-line);
	background: rgba(0, 0, 0, .24);
	padding: 7px 9px;
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.open1320-terminal-label code {
	color: var(--o-green);
}

.open1320-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.open1320-button,
.open1320-row-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 43px;
	border: 1px solid var(--o-line-strong);
	background: #171c1f;
	color: #f3f2ee;
	padding: 9px 15px;
	text-decoration: none;
	font-family: var(--o-mono);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.open1320-button::before,
.open1320-row-action::before {
	content: "";
	position: absolute;
	left: -1px;
	top: -1px;
	width: 8px;
	height: 8px;
	border-left: 2px solid #8a9398;
	border-top: 2px solid #8a9398;
}

.open1320-button svg,
.open1320-row-action svg,
.open1320-record-link svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.open1320-button:hover,
.open1320-row-action:hover {
	border-color: #899297;
	background: #232a2e;
	color: #fff;
	transform: translateY(-1px);
}

.open1320-button.is-primary {
	border-color: #de514a;
	background: var(--o-red);
}

.open1320-button.is-primary::before {
	border-color: #ff9b91;
}

.open1320-button.is-primary:hover {
	background: #d63d38;
}

.open1320-record-link,
.open1320-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #f2f1ed;
	font-family: var(--o-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
	text-decoration: none;
}

.open1320-record-link:hover svg,
.open1320-text-link:hover svg {
	transform: translateX(3px);
}

/* Homepage hero */
.open1320-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
	min-height: 590px;
	border: 1px solid var(--o-line);
	background: #101416;
	box-shadow: var(--o-shadow);
	overflow: hidden;
}

.open1320-hero::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(180deg, var(--o-red-bright), var(--o-red-dark));
}

.open1320-hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 5vw, 76px);
	background:
		linear-gradient(90deg, rgba(16, 20, 22, .99), rgba(16, 20, 22, .90) 88%, transparent),
		repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, .018) 32px);
}

.open1320-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(52px, 6.2vw, 92px);
	font-weight: 800;
	line-height: .88;
	letter-spacing: -.025em;
	text-transform: uppercase;
}

.open1320-hero h1 span,
.open1320-hero h1 em {
	display: block;
}

.open1320-hero h1 em {
	margin-top: 9px;
	color: #dadbd7;
	font-style: normal;
	-webkit-text-stroke: 1px #dadbd7;
	-webkit-text-fill-color: transparent;
}

.open1320-hero-lede {
	max-width: 680px;
	margin: 23px 0 0;
	color: var(--o-text-soft);
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.65;
}

.open1320-hero-standard {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 35px;
	border: 1px solid var(--o-line);
	background: var(--o-line);
}

.open1320-hero-standard > div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	background: rgba(8, 10, 11, .66);
	padding: 10px;
}

.open1320-hero-standard p {
	margin: 0;
	line-height: 1.15;
}

.open1320-hero-standard strong,
.open1320-hero-standard small {
	display: block;
}

.open1320-hero-standard strong {
	font-family: var(--o-display);
	font-size: 14px;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.open1320-hero-standard small {
	margin-top: 3px;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.open1320-hero-visual {
	position: relative;
	min-height: 590px;
	background:
		radial-gradient(circle at 72% 18%, rgba(187, 44, 43, .19), transparent 24%),
		linear-gradient(145deg, #171b1e, #090b0c 70%);
	overflow: hidden;
}

.open1320-hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, .13) 4px);
	mix-blend-mode: multiply;
}

.open1320-drag-strip {
	position: absolute;
	left: 30%;
	top: -8%;
	width: 54%;
	height: 116%;
	transform: perspective(700px) rotateX(58deg) rotateZ(-13deg);
	transform-origin: center;
	background: linear-gradient(90deg, #191d1f 0 12%, #34383a 12% 14%, #1b1f21 14% 47%, #d8d6c9 47% 49%, #1b1f21 49% 82%, #34383a 82% 84%, #191d1f 84%);
	box-shadow: 0 0 80px rgba(0, 0, 0, .9);
	opacity: .68;
}

.open1320-drag-strip span {
	position: absolute;
	left: 9%;
	right: 9%;
	height: 3px;
	background: rgba(255, 255, 255, .17);
}

.open1320-drag-strip span:nth-child(1) { top: 18%; }
.open1320-drag-strip span:nth-child(2) { top: 40%; }
.open1320-drag-strip span:nth-child(3) { top: 62%; }
.open1320-drag-strip span:nth-child(4) { top: 84%; }

.open1320-hero-visual-label {
	position: absolute;
	right: 22px;
	top: 18px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.open1320-hero-visual-label i {
	width: 32px;
	height: 1px;
	background: var(--o-red-bright);
}

.open1320-capture {
	position: absolute;
	z-index: 4;
	width: min(390px, 64%);
	border: 1px solid #596167;
	background: #101315;
	box-shadow: 0 24px 65px rgba(0, 0, 0, .52);
}

.open1320-capture.is-original {
	left: 8%;
	top: 12%;
	transform: rotate(-3deg);
}

.open1320-capture.is-project {
	right: 5%;
	bottom: 10%;
	transform: rotate(2deg);
}

.open1320-capture-bar {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 29px;
	border-bottom: 1px solid var(--o-line);
	background: #22282b;
	padding: 0 9px;
}

.open1320-capture-bar span {
	margin-right: auto;
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.open1320-capture-bar i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #61696d;
}

.open1320-capture-bar i:nth-of-type(1) { background: var(--o-red-bright); }
.open1320-capture-bar i:nth-of-type(2) { background: var(--o-amber); }
.open1320-capture-bar i:nth-of-type(3) { background: var(--o-green); }

.open1320-capture-screen {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #090b0c;
	overflow: hidden;
}

.open1320-capture-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.85) contrast(1.06);
}

.open1320-scanline-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0, 0, 0, .20) 3px 4px);
	mix-blend-mode: multiply;
}

.open1320-capture-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 11px;
}

.open1320-capture-footer strong {
	font-family: var(--o-display);
	font-size: 15px;
	letter-spacing: .025em;
	text-transform: uppercase;
}

.open1320-capture-footer span {
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 7px;
	letter-spacing: .08em;
}

.open1320-hero-stamp {
	position: absolute;
	left: 8%;
	bottom: 7%;
	z-index: 5;
	width: 128px;
	border: 2px solid rgba(223, 77, 71, .72);
	color: rgba(239, 91, 84, .86);
	padding: 7px 9px;
	transform: rotate(-6deg);
	text-align: center;
	font-family: var(--o-mono);
	text-transform: uppercase;
}

.open1320-hero-stamp span,
.open1320-hero-stamp strong,
.open1320-hero-stamp small {
	display: block;
}

.open1320-hero-stamp span,
.open1320-hero-stamp small {
	font-size: 7px;
	letter-spacing: .1em;
}

.open1320-hero-stamp strong {
	font-family: var(--o-display);
	font-size: 22px;
	letter-spacing: .04em;
}

/* Media skeletons and placeholders */
.open1320-media-frame {
	position: relative;
	background: #0b0d0e;
	overflow: hidden;
}

.js .open1320-media-frame.is-loading img {
	opacity: 0;
}

.open1320-media-frame img {
	transition: opacity .28s ease, transform .38s ease;
}

.open1320-media-frame.is-loaded img {
	opacity: 1;
}

.open1320-media-frame.is-loading::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .07) 45%, transparent 60%);
	transform: translateX(-100%);
	animation: open1320-skeleton 1.25s ease-in-out infinite;
}

.open1320-media-frame.is-error::after {
	content: "IMAGE UNAVAILABLE";
	position: absolute;
	inset: auto 10px 10px;
	padding: 6px;
	background: rgba(0, 0, 0, .78);
	color: #d7a39f;
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .08em;
}

.open1320-image-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 120px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	background:
		repeating-linear-gradient(-45deg, #101416 0 9px, #14191c 10px 18px),
		linear-gradient(180deg, #15191b, #0d1012);
	color: #6f777b;
	text-align: center;
}

.open1320-image-placeholder b {
	font-family: var(--o-display);
	font-size: clamp(23px, 3vw, 42px);
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-image-placeholder small {
	font-family: var(--o-mono);
	font-size: 7px;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.open1320-image-placeholder.is-capture b {
	font-size: clamp(18px, 2vw, 30px);
}

.open1320-media-corner {
	position: absolute;
	right: 9px;
	bottom: 9px;
	width: 16px;
	height: 16px;
	border-right: 1px solid rgba(255, 255, 255, .62);
	border-bottom: 1px solid rgba(255, 255, 255, .62);
}

/* Section rhythm */
.open1320-section {
	margin-top: 78px;
}

.open1320-section-heading {
	display: grid;
	grid-template-columns: 50px minmax(260px, .9fr) minmax(280px, 1fr) auto;
	align-items: end;
	gap: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--o-line);
	padding-bottom: 14px;
}


.open1320-section-index {
	color: var(--o-red-bright);
	font-family: var(--o-display);
	font-size: 44px;
	line-height: .82;
}

.open1320-section-heading h2,
.open1320-page-header h1 {
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(38px, 4.7vw, 64px);
	font-weight: 800;
	line-height: .92;
	letter-spacing: -.015em;
	text-transform: uppercase;
}

.open1320-section-heading > p {
	margin: 0;
	color: var(--o-muted);
	font-size: 14px;
	line-height: 1.5;
}

/* Game records */
.open1320-game-grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr .9fr;
	gap: 13px;
}

.open1320-game-card {
	position: relative;
	min-width: 0;
	border-top: 2px solid #596167;
	border-bottom: 1px solid var(--o-line);
	background: linear-gradient(180deg, var(--o-surface-raised), #111416);
	box-shadow: var(--o-shadow-small);
}

.open1320-game-card::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 2px;
	background: var(--o-red-bright);
}

.open1320-game-card:first-child {
	border-top-color: var(--o-red-bright);
}

.open1320-game-card-media {
	display: block;
	height: 190px;
	border-bottom: 1px solid var(--o-line);
	text-decoration: none;
}

.open1320-game-card:first-child .open1320-game-card-media {
	height: 230px;
}

.open1320-game-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.open1320-game-card:hover .open1320-game-card-media img {
	transform: scale(1.018);
}

.open1320-game-card-body {
	padding: 18px 19px 20px;
}

.open1320-game-card h3 {
	margin: 13px 0 7px;
	font-family: var(--o-display);
	font-size: clamp(25px, 2.3vw, 34px);
	font-weight: 800;
	line-height: .95;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.open1320-game-card h3 a {
	text-decoration: none;
}

.open1320-game-card p {
	margin: 0 0 18px;
	color: var(--o-muted);
	font-size: 13px;
}

.open1320-game-card.is-placeholder {
	border-top-color: #4a5155;
	box-shadow: none;
}

.open1320-game-card.is-placeholder .open1320-game-card-media {
	height: 190px;
}

.open1320-inspection-stamp {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	border: 1px solid #5d666b;
	color: #aeb4b6;
	padding: 3px 7px;
	font-family: var(--o-mono);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-inspection-stamp::before {
	content: "";
	width: 5px;
	height: 5px;
	margin-right: 6px;
	background: #7d868b;
}

.open1320-inspection-stamp.is-sample {
	border-color: #765c2f;
	color: #daba77;
}

/* Drag tree status */
.open1320-status-badge,
.open1320-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 28px;
	border: 1px solid #596267;
	background: #1b2124;
	color: #e7e8e5;
	padding: 4px 8px;
	font-family: var(--o-mono);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .065em;
	line-height: 1.15;
	text-transform: uppercase;
}

.open1320-tree-light {
	display: grid;
	grid-template-columns: repeat(3, 5px);
	gap: 3px;
	flex: 0 0 auto;
}

.open1320-tree-light i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #4e5559;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
}

.open1320-status-badge.is-good,
.open1320-badge.is-good {
	border-color: #396b49;
	background: #14231a;
	color: #b0dabb;
}

.open1320-status-badge.is-good .open1320-tree-light i:nth-child(3),
.open1320-tree-light.is-good i:nth-child(3),
.open1320-badge.is-good::before {
	background: var(--o-green);
	box-shadow: 0 0 8px rgba(91, 184, 117, .75);
}

.open1320-status-badge.is-warn,
.open1320-badge.is-warn {
	border-color: #765c2f;
	background: #292116;
	color: #e3bd73;
}

.open1320-status-badge.is-warn .open1320-tree-light i:nth-child(2),
.open1320-tree-light.is-warn i:nth-child(2),
.open1320-badge.is-warn::before {
	background: var(--o-amber);
	box-shadow: 0 0 8px rgba(212, 160, 68, .62);
}

.open1320-status-badge.is-bad,
.open1320-badge.is-bad {
	border-color: #743636;
	background: #2a1718;
	color: #e7a09b;
}

.open1320-status-badge.is-bad .open1320-tree-light i:nth-child(1),
.open1320-tree-light.is-bad i:nth-child(1),
.open1320-badge.is-bad::before {
	background: var(--o-red-bright);
	box-shadow: 0 0 8px rgba(235, 80, 72, .66);
}

.open1320-tree-light.is-neutral i:nth-child(2) {
	background: #8b9397;
}

.open1320-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #8b9397;
}

.open1320-tooltip-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.open1320-tooltip-trigger {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	padding: 0;
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	cursor: help;
	opacity: .72;
}

.open1320-tooltip-trigger:hover,
.open1320-tooltip-trigger:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, .08);
}

.open1320-tooltip {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	z-index: 100;
	width: min(270px, calc(100vw - 36px));
	padding: 9px 10px;
	border: 1px solid var(--o-line-strong);
	background: #0c0f10;
	box-shadow: var(--o-shadow-small);
	color: var(--o-text-soft);
	font-family: var(--o-body);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.45;
	text-align: left;
	text-transform: none;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 5px);
	transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.open1320-tooltip-wrap:hover .open1320-tooltip,
.open1320-tooltip-wrap:focus-within .open1320-tooltip,
.open1320-tooltip-wrap.is-open .open1320-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

/* Directory */
.open1320-directory-toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	min-height: 68px;
	border: 1px solid var(--o-line);
	border-bottom: 0;
	background: #161b1e;
	padding: 11px 14px;
}

.open1320-directory-toolbar label {
	display: grid;
	grid-template-columns: auto minmax(220px, 380px);
	align-items: center;
	gap: 11px;
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-directory-toolbar input {
	width: 100%;
	min-height: 40px;
	border: 1px solid var(--o-line-strong);
	border-radius: 0;
	background: #090b0c;
	color: #fff;
	padding: 8px 11px;
	font-family: var(--o-body);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: none;
}

.open1320-directory-toolbar input::placeholder {
	color: #727a7e;
}

.open1320-directory-toolbar p {
	margin: 0;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.open1320-directory-toolbar p strong {
	color: var(--o-text);
	font-size: 15px;
}

.open1320-directory {
	border: 1px solid var(--o-line);
	background: #0b0e0f;
}

.open1320-project-header,
.open1320-project-row {
	display: grid;
	grid-template-columns: 78px minmax(230px, 1.45fr) minmax(145px, .78fr) minmax(170px, .88fr) minmax(130px, .7fr) minmax(125px, .66fr) 102px;
	gap: 0;
	align-items: stretch;
}

.open1320-project-header {
	min-height: 38px;
	border-bottom: 1px solid var(--o-line-strong);
	background: #242a2e;
	color: #aeb4b7;
	font-family: var(--o-mono);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-project-header > span,
.open1320-project-row > div {
	min-width: 0;
	padding: 10px 11px;
}

.open1320-project-header > span + span,
.open1320-project-row > div + div {
	border-left: 1px solid rgba(255, 255, 255, .045);
}

.open1320-project-row {
	position: relative;
	min-height: 102px;
	border-bottom: 1px solid #292f32;
	background: #111517;
	font-size: 12px;
}

.open1320-project-row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #444c50;
	transition: background-color .18s ease, width .18s ease;
}

.open1320-project-row:nth-child(odd) {
	background: #14191b;
}

.open1320-project-row:last-child {
	border-bottom: 0;
}

.open1320-project-row:hover {
	background: #1a2023;
}

.open1320-project-row:hover::before {
	width: 4px;
	background: var(--o-red-bright);
}

.open1320-project-thumb {
	min-height: 100px;
	padding: 0 !important;
}

.open1320-project-thumb a,
.open1320-project-thumb img {
	display: block;
	width: 100%;
	height: 100%;
}

.open1320-project-thumb img {
	object-fit: cover;
}

.open1320-project-thumb .open1320-image-placeholder {
	min-height: 100px;
}

.open1320-project-thumb .open1320-image-placeholder b {
	font-size: 18px;
}

.open1320-project-name {
	position: relative;
	padding-left: 39px !important;
}

.open1320-row-index {
	position: absolute;
	left: 10px;
	top: 14px;
	color: #596166;
	font-family: var(--o-display);
	font-size: 20px;
	line-height: 1;
}

.open1320-project-name h2 {
	margin: 2px 0 5px;
	font-family: var(--o-display);
	font-size: 23px;
	font-weight: 800;
	line-height: .95;
	letter-spacing: .015em;
	text-transform: uppercase;
}

.open1320-project-name h2 a {
	text-decoration: none;
}

.open1320-project-name p {
	margin: 0 0 7px;
	color: #939b9f;
	font-size: 11px;
	line-height: 1.38;
}

.open1320-project-origin,
.open1320-project-status,
.open1320-project-build,
.open1320-project-review-date,
.open1320-project-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.open1320-project-origin strong {
	font-size: 12px;
}

.open1320-project-origin small,
.open1320-project-status > small {
	margin-top: 5px;
	color: var(--o-muted);
	font-size: 10px;
}

.open1320-project-build code {
	color: #d9d7cc;
	font-size: 10px;
	line-height: 1.4;
}

.open1320-project-review-date time {
	color: var(--o-text-soft);
	font-family: var(--o-mono);
	font-size: 9px;
	line-height: 1.45;
}

.open1320-project-details {
	align-items: center;
}

.open1320-row-action {
	min-height: 36px;
	padding: 7px 9px;
	font-size: 8px;
}

.open1320-mobile-label {
	display: none;
	margin-bottom: 4px;
	color: var(--o-dim);
	font-family: var(--o-mono);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-empty-state {
	grid-column: 1 / -1;
	padding: 40px;
	text-align: center;
}

.open1320-empty-state > span {
	color: var(--o-red-bright);
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .12em;
}

.open1320-empty-state h2,
.open1320-empty-state h3 {
	margin: 8px 0;
	font-family: var(--o-display);
	font-size: 30px;
	text-transform: uppercase;
}

.open1320-empty-state p {
	max-width: 620px;
	margin: auto;
	color: var(--o-muted);
}

/* Homepage review process */
.open1320-process-band {
	display: grid;
	grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
	gap: 40px;
	margin-top: 78px;
	border-top: 1px solid var(--o-line-strong);
	border-bottom: 1px solid var(--o-line);
	background:
		linear-gradient(90deg, rgba(187, 44, 43, .08), transparent 25%),
		repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, .018) 80px);
	padding: 42px 35px;
}

.open1320-process-intro h2 {
	margin: 0 0 24px;
	font-family: var(--o-display);
	font-size: clamp(34px, 4vw, 55px);
	line-height: .94;
	text-transform: uppercase;
}

.open1320-process-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.open1320-process-steps li {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid var(--o-line);
}

.open1320-process-steps li:first-child {
	border-top: 1px solid var(--o-line);
}

.open1320-process-steps li > span {
	color: var(--o-red-bright);
	font-family: var(--o-display);
	font-size: 34px;
	line-height: .9;
}

.open1320-process-steps strong {
	font-family: var(--o-display);
	font-size: 22px;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.open1320-process-steps p {
	margin: 2px 0 0;
	color: var(--o-muted);
	font-size: 13px;
}

.open1320-archive-teaser {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
	align-items: center;
	gap: 45px;
	margin-top: 58px;
	border: 1px solid var(--o-line);
	background: linear-gradient(135deg, #111517, #0a0c0d);
	padding: 36px 48px;
	overflow: hidden;
}

.open1320-archive-teaser::after {
	content: "";
	position: absolute;
	right: -10%;
	top: 0;
	width: 40%;
	height: 100%;
	background: repeating-linear-gradient(-50deg, transparent 0 18px, rgba(255, 255, 255, .022) 19px 20px);
}

.open1320-archive-teaser > div:last-child {
	position: relative;
	z-index: 2;
}

.open1320-archive-teaser h2 {
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(37px, 5vw, 64px);
	line-height: .92;
	text-transform: uppercase;
}

.open1320-archive-teaser p:not(.open1320-kicker) {
	max-width: 760px;
	color: var(--o-muted);
}

.open1320-archive-radar {
	position: relative;
	width: min(260px, 100%);
	aspect-ratio: 1;
	margin: auto;
	border: 1px solid #4c555a;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 34px, rgba(255, 255, 255, .08) 35px 36px);
}

.open1320-archive-radar::before,
.open1320-archive-radar::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, .12);
}

.open1320-archive-radar::before {
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
}

.open1320-archive-radar::after {
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
}

.open1320-archive-radar > span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 47%;
	height: 1px;
	transform-origin: left;
	transform: rotate(-28deg);
	background: linear-gradient(90deg, var(--o-red-bright), transparent);
	box-shadow: 0 0 12px rgba(235, 80, 72, .5);
}

.open1320-archive-radar i {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--o-amber);
	box-shadow: 0 0 10px rgba(212, 160, 68, .65);
}

.open1320-archive-radar i:nth-of-type(1) { left: 23%; top: 38%; }
.open1320-archive-radar i:nth-of-type(2) { right: 27%; top: 25%; background: var(--o-green); }
.open1320-archive-radar i:nth-of-type(3) { right: 20%; bottom: 28%; background: var(--o-red-bright); }

.open1320-archive-radar b {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--o-display);
	font-size: 28px;
	letter-spacing: .07em;
}

.open1320-callout {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	margin-top: 42px;
	border-top: 1px solid var(--o-line-strong);
	border-bottom: 1px solid var(--o-line);
	padding: 30px 10px;
}

.open1320-callout-marker {
	display: grid;
	place-items: center;
	min-height: 86px;
	border: 1px dashed #697176;
	color: var(--o-muted);
	font-family: var(--o-mono);
}

.open1320-callout-marker span {
	font-size: 7px;
	letter-spacing: .1em;
}

.open1320-callout-marker strong {
	font-family: var(--o-display);
	font-size: 38px;
	line-height: .8;
}

.open1320-callout h2 {
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(31px, 4vw, 51px);
	line-height: .95;
	text-transform: uppercase;
}

.open1320-callout p:not(.open1320-kicker) {
	margin: 8px 0 0;
	color: var(--o-muted);
}

.open1320-callout .open1320-actions {
	margin-top: 0;
	justify-content: flex-end;
}

/* Page headers and general content */
.open1320-page-header {
	position: relative;
	margin-bottom: 34px;
	border-left: 4px solid var(--o-red);
	background:
		repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, .018) 48px),
		linear-gradient(100deg, #151a1c, #0d1011);
	padding: 34px 38px;
	box-shadow: var(--o-shadow-small);
}

.open1320-archive-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
	align-items: end;
	gap: 30px;
}

.open1320-page-header-code {
	position: absolute;
	right: 18px;
	top: 13px;
	color: #596166;
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .12em;
}

.open1320-archive-header > p,
.open1320-page-intro {
	margin: 0;
	color: var(--o-text-soft);
	font-size: 15px;
}

.open1320-page-content,
.open1320-subsection {
	border: 1px solid var(--o-line);
	background: var(--o-surface);
	padding: clamp(24px, 4vw, 44px);
}

.open1320-page-content > h1,
.open1320-page-content > header h1 {
	font-family: var(--o-display);
	font-size: clamp(38px, 6vw, 66px);
	line-height: .95;
	text-transform: uppercase;
}

.open1320-prose {
	color: var(--o-text-soft);
}

.open1320-prose > *:first-child {
	margin-top: 0;
}

.open1320-prose h2,
.open1320-prose h3,
.open1320-info-panel h2,
.open1320-detail-columns h2,
.open1320-subsection h2,
.open1320-review h2,
.open1320-review h3 {
	font-family: var(--o-display);
	letter-spacing: .02em;
	text-transform: uppercase;
}

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

/* Single records */
.open1320-record-header {
	display: grid;
	grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
	border: 1px solid var(--o-line);
	background: #111517;
	box-shadow: var(--o-shadow);
}

.open1320-record-media {
	min-height: 390px;
	border-right: 1px solid var(--o-line);
	background: #080a0b;
	overflow: hidden;
}

.open1320-record-media img,
.open1320-record-media .open1320-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.open1320-record-heading {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 68px);
	background: repeating-linear-gradient(0deg, transparent 0 35px, rgba(255, 255, 255, .018) 36px);
}

.open1320-record-heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--o-red);
}

.open1320-record-heading h1 {
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(48px, 7vw, 88px);
	line-height: .88;
	text-transform: uppercase;
}

.open1320-record-summary {
	max-width: 720px;
	margin: 18px 0;
	color: var(--o-text-soft);
	font-size: 17px;
}

.open1320-status-line,
.open1320-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
}

.open1320-chips {
	margin-top: 12px;
}

.open1320-chip {
	display: inline-flex;
	border-bottom: 1px solid #596166;
	color: #afb5b7;
	padding: 3px 2px;
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-detail-columns,
.open1320-overview-grid,
.open1320-home-split,
.open1320-policy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.open1320-detail-columns > div,
.open1320-info-panel,
.open1320-history-grid > section,
.open1320-review,
.open1320-evidence {
	border-top: 2px solid #4d565a;
	background: var(--o-surface-raised);
	padding: 22px;
}

.open1320-detail-columns h2,
.open1320-info-panel h2,
.open1320-history-grid h2 {
	margin: 0 0 15px;
	font-size: 24px;
}

.open1320-history-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.open1320-definitions {
	margin: 0;
}

.open1320-definition {
	display: grid;
	grid-template-columns: minmax(130px, .75fr) minmax(0, 1.25fr);
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--o-line);
}

.open1320-definition:first-child {
	border-top: 1px solid var(--o-line);
}

.open1320-definition dt {
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.open1320-definition dd {
	margin: 0;
	color: var(--o-text-soft);
}

.open1320-definitions-wide {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 28px;
}

.open1320-link-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.open1320-link-list li {
	border-bottom: 1px solid var(--o-line);
}

.open1320-link-list a {
	display: block;
	padding: 10px 0;
	font-family: var(--o-mono);
	font-size: 10px;
	text-transform: uppercase;
}

.open1320-notice {
	position: relative;
	margin-top: 18px;
	border: 1px solid #665b3e;
	border-left: 4px solid var(--o-amber);
	background: #211d15;
	padding: 17px 19px;
}

.open1320-notice strong {
	display: block;
	margin-bottom: 5px;
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.open1320-notice p:last-child {
	margin-bottom: 0;
}

.open1320-notice.is-serious {
	border-color: #6f3535;
	border-left-color: var(--o-red-bright);
	background: #281617;
}

.open1320-notice.is-development {
	border-color: #6d552c;
	background: #211b11;
}

.open1320-notice.is-limit {
	border-color: #4d5e65;
	border-left-color: var(--o-blue);
	background: #131d20;
}

.open1320-notice.is-unconfirmed {
	border-style: dashed;
}

/* Tabs */
.open1320-tabs {
	margin-top: 28px;
}

.open1320-tabbar {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border: 1px solid var(--o-line);
	background: #0d1011;
}

.open1320-tabbar button {
	min-height: 50px;
	border: 0;
	border-right: 1px solid var(--o-line);
	background: transparent;
	color: #aeb4b7;
	padding: 10px;
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
}

.open1320-tabbar button:last-child {
	border-right: 0;
}

.open1320-tabbar button[aria-selected="true"] {
	background: var(--o-surface-raised);
	color: #fff;
	box-shadow: inset 0 -3px var(--o-red-bright);
}

.open1320-section-selector {
	display: none;
}

.open1320-tab-panel {
	margin-top: 0;
	border: 1px solid var(--o-line);
	border-top: 0;
	background: #101416;
	padding: clamp(22px, 4vw, 40px);
}

.js .open1320-tab-panel[hidden] {
	display: none;
}

.open1320-section-label {
	display: inline-block;
	margin-bottom: 18px;
	border-left: 3px solid var(--o-blue);
	background: #1a2226;
	color: #b6cbd2;
	padding: 6px 9px;
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-section-label.is-review {
	border-left-color: var(--o-red-bright);
	background: #251819;
	color: #dfaaa6;
}

/* Reviews and history */
.open1320-review-heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.open1320-review-heading h2 {
	margin: 0;
	font-size: 31px;
}

.open1320-review-summary,
.open1320-review-findings,
.open1320-evidence {
	margin-top: 20px;
}

.open1320-review-findings details {
	border-bottom: 1px solid var(--o-line);
}

.open1320-review-findings details:first-child {
	border-top: 1px solid var(--o-line);
}

.open1320-review-findings summary {
	padding: 13px 4px;
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
	cursor: pointer;
}

.open1320-review-findings details > div {
	padding: 0 5px 14px;
	color: var(--o-text-soft);
}

.open1320-evidence code {
	word-break: break-all;
}

.open1320-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
}

.open1320-timeline li {
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr);
	gap: 24px;
	border-bottom: 1px solid var(--o-line);
	padding: 20px 0;
}

.open1320-timeline li:first-child {
	border-top: 1px solid var(--o-line);
}

.open1320-timeline-date {
	color: var(--o-amber);
	font-family: var(--o-mono);
	font-size: 10px;
}

.open1320-timeline-body h2 {
	margin: 0;
	font-family: var(--o-display);
	font-size: 26px;
	text-transform: uppercase;
}

/* Archive intro and policy */
.open1320-archive-status-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid var(--o-line);
	border-left: 1px solid var(--o-line);
}

.open1320-archive-status-grid article {
	min-height: 240px;
	border-right: 1px solid var(--o-line);
	border-bottom: 1px solid var(--o-line);
	background: var(--o-surface);
	padding: 22px;
}

.open1320-archive-status-grid h2 {
	font-family: var(--o-display);
	font-size: 23px;
	line-height: 1;
	text-transform: uppercase;
}

.open1320-archive-status-grid p {
	color: var(--o-muted);
	font-size: 13px;
}

.open1320-status-light {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #687075;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, .025);
}

.open1320-status-light.is-green { background: var(--o-green); box-shadow: 0 0 12px rgba(91, 184, 117, .55); }
.open1320-status-light.is-amber { background: var(--o-amber); box-shadow: 0 0 12px rgba(212, 160, 68, .5); }
.open1320-status-light.is-red { background: var(--o-red-bright); box-shadow: 0 0 12px rgba(235, 80, 72, .5); }

.open1320-policy-steps {
	margin-top: 30px;
}

.open1320-policy-steps article {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 20px;
	border-bottom: 1px solid var(--o-line);
	padding: 22px 0;
}

.open1320-policy-steps article:first-child {
	border-top: 1px solid var(--o-line);
}

.open1320-policy-steps article > span {
	color: var(--o-red-bright);
	font-family: var(--o-display);
	font-size: 38px;
	line-height: .9;
}

.open1320-policy-steps h2 {
	margin: 0;
	font-family: var(--o-display);
	font-size: 27px;
	text-transform: uppercase;
}

.open1320-policy-steps p {
	margin: 4px 0 0;
	color: var(--o-muted);
}

/* Error states */
.open1320-error-screen {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	border: 1px solid var(--o-line-strong);
	background: #0e1213;
	box-shadow: var(--o-shadow);
}

.open1320-error-code {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-right: 1px solid var(--o-line);
	background:
		repeating-linear-gradient(-45deg, rgba(187, 44, 43, .1) 0 12px, transparent 13px 25px),
		#171b1d;
	padding: 25px;
	text-align: center;
}

.open1320-error-code span,
.open1320-error-code small {
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .1em;
}

.open1320-error-code strong {
	color: var(--o-red-bright);
	font-family: var(--o-display);
	font-size: 88px;
	line-height: .9;
}

.open1320-error-copy {
	padding: clamp(30px, 6vw, 70px);
}

.open1320-error-copy h1 {
	margin: 0;
	font-family: var(--o-display);
	font-size: clamp(44px, 7vw, 76px);
	line-height: .9;
	text-transform: uppercase;
}

.open1320-error-copy > p:not(.open1320-kicker) {
	color: var(--o-muted);
	font-size: 16px;
}

.open1320-error-diagnostic {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	border-top: 1px solid var(--o-line);
	padding: 18px 24px;
	color: var(--o-muted);
}

.open1320-error-diagnostic > span {
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-error-diagnostic ol {
	margin: 0;
	padding-left: 20px;
	font-size: 13px;
}

/* Footer */
.open1320-site-footer {
	position: relative;
	border-top: 1px solid var(--o-line);
	background: #07090a;
}

.open1320-footer-track {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 3px;
	gap: 5px;
}

.open1320-footer-track span {
	background: linear-gradient(90deg, transparent, var(--o-red));
}

.open1320-footer-track span:last-child {
	background: linear-gradient(90deg, var(--o-red), transparent);
}

.open1320-footer-inner {
	width: min(var(--o-max), calc(100% - 42px));
	margin: auto;
	padding: 34px 0;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 22px 45px;
}

.open1320-footer-index {
	display: block;
	margin-bottom: 7px;
	color: var(--o-red-bright);
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .12em;
}

.open1320-footer-brand strong {
	font-family: var(--o-display);
	font-size: 29px;
	text-transform: uppercase;
}

.open1320-footer-brand p {
	margin: 4px 0 0;
	color: var(--o-muted);
}

.open1320-footer-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 8px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-footer-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.open1320-footer-meta code {
	color: #c7c9c7;
}

.open1320-site-footer nav {
	grid-column: 1 / -1;
}

.open1320-site-footer .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
}

.open1320-site-footer a {
	color: #d6dad8;
	font-family: var(--o-mono);
	font-size: 9px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.open1320-footer-disclaimer {
	grid-column: 1 / -1;
	margin: 0;
	border-top: 1px solid #22282b;
	padding-top: 15px;
	color: var(--o-muted);
	font-size: 11px;
}

/* Pagination */
.navigation.pagination {
	margin-top: 25px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 38px;
	min-height: 38px;
	border: 1px solid var(--o-line);
	background: var(--o-surface);
	padding: 7px;
	font-family: var(--o-mono);
	font-size: 9px;
	text-decoration: none;
}

.page-numbers.current {
	border-color: var(--o-red-bright);
	background: #251819;
}

/* Responsive */
@media (max-width: 1320px) {
	.open1320-header-directory {
		display: none;
	}

	.open1320-header-inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.open1320-primary-nav {
		justify-self: end;
	}

	.open1320-header-controls {
		display: none;
	}

	.open1320-project-header,
	.open1320-project-row {
		grid-template-columns: 72px minmax(210px, 1.35fr) minmax(135px, .72fr) minmax(165px, .82fr) minmax(115px, .62fr) 96px;
	}

	.open1320-project-header > span:nth-child(6),
	.open1320-project-row .open1320-project-review-date {
		display: none;
	}
}

@media (max-width: 1080px) {
	.open1320-site-header {
		position: relative;
	}

	.open1320-header-inner {
		grid-template-columns: auto 1fr auto;
		min-height: 78px;
	}

	.open1320-header-controls {
		display: flex;
	}

	.open1320-header-directory {
		display: none;
	}

	.open1320-menu-toggle {
		display: inline-flex;
	}

	.open1320-primary-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		max-height: calc(100vh - 88px);
		overflow: auto;
		border: 1px solid var(--o-line-strong);
		background: #0b0e0f;
		box-shadow: var(--o-shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
	}

	.open1320-primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.open1320-nav-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
	}

	.open1320-nav-group {
		border-right: 1px solid var(--o-line);
		border-bottom: 1px solid var(--o-line);
	}

	.open1320-nav-group-toggle {
		width: 100%;
		justify-content: space-between;
		padding: 14px;
	}

	.open1320-submenu {
		position: static;
		width: auto;
		border: 0;
		border-top: 1px solid var(--o-line);
		box-shadow: none;
		padding: 8px;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.open1320-submenu::before {
		display: none;
	}

	.open1320-nav-group.is-open .open1320-submenu {
		display: block;
	}

	.open1320-hero {
		grid-template-columns: 1fr;
	}

	.open1320-hero-copy {
		min-height: 540px;
	}

	.open1320-hero-visual {
		min-height: 540px;
		border-top: 1px solid var(--o-line);
	}

	.open1320-section-heading {
		grid-template-columns: 44px 1fr auto;
	}

	.open1320-section-heading > p {
		grid-column: 2 / -1;
		grid-row: 2;
	}

	.open1320-game-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.open1320-game-card:first-child {
		grid-column: 1 / -1;
	}

	.open1320-project-header {
		display: none;
	}

	.open1320-project-row {
		grid-template-columns: 100px minmax(0, 1.35fr) minmax(150px, .72fr) minmax(165px, .78fr) 92px;
	}

	.open1320-project-build,
	.open1320-project-review-date {
		display: none;
	}

	.open1320-process-band {
		grid-template-columns: 1fr;
	}

	.open1320-record-header {
		grid-template-columns: 1fr;
	}

	.open1320-record-media {
		min-height: 340px;
		border-right: 0;
		border-bottom: 1px solid var(--o-line);
	}

	.open1320-archive-status-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.open1320-page-shell,
	.open1320-header-inner,
	.open1320-footer-inner {
		width: min(100% - 26px, var(--o-max));
	}

	.open1320-main {
		padding-top: 22px;
	}

	.open1320-wordmark small {
		display: none;
	}

	.custom-logo-link,
	.open1320-fallback-logo,
	.custom-logo,
	.open1320-fallback-logo img {
		width: 54px;
		height: 54px;
		flex-basis: 54px;
	}

	.open1320-hero-copy {
		min-height: 0;
		padding: 42px 28px;
	}

	.open1320-hero h1 {
		font-size: clamp(50px, 13vw, 74px);
	}

	.open1320-hero-standard {
		grid-template-columns: 1fr;
	}

	.open1320-hero-visual {
		min-height: 460px;
	}

	.open1320-capture {
		width: 67%;
	}

	.open1320-section {
		margin-top: 56px;
	}

	.open1320-section-heading {
		grid-template-columns: 40px 1fr;
		gap: 15px;
	}

	.open1320-section-heading > p,
	.open1320-section-heading > a {
		grid-column: 2;
	}

	.open1320-section-heading > a {
		justify-self: start;
	}

	.open1320-game-grid {
		grid-template-columns: 1fr;
	}

	.open1320-game-card:first-child {
		grid-column: auto;
	}

	.open1320-game-card:first-child .open1320-game-card-media,
	.open1320-game-card-media,
	.open1320-game-card.is-placeholder .open1320-game-card-media {
		height: 220px;
	}

	.open1320-directory-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.open1320-directory-toolbar label {
		grid-template-columns: 1fr;
	}

	.open1320-project-row {
		display: grid;
		grid-template-columns: 96px 1fr;
		padding: 0;
	}

	.open1320-project-row > div + div {
		border-left: 0;
	}

	.open1320-project-thumb {
		grid-row: 1 / span 2;
		min-height: 130px;
	}

	.open1320-project-name {
		padding: 14px 14px 8px 43px !important;
	}

	.open1320-project-origin,
	.open1320-project-status,
	.open1320-project-details {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 130px 1fr;
		align-items: center;
		gap: 10px;
		border-top: 1px solid var(--o-line);
		padding: 10px 14px !important;
	}

	.open1320-project-origin small,
	.open1320-project-status > small {
		grid-column: 2;
		margin-top: 0;
	}

	.open1320-mobile-label {
		display: block;
		margin: 0;
	}

	.open1320-project-details {
		display: flex;
		align-items: stretch;
	}

	.open1320-row-action {
		width: 100%;
	}

	.open1320-process-band,
	.open1320-archive-teaser {
		padding: 30px 24px;
	}

	.open1320-archive-teaser {
		grid-template-columns: 1fr;
	}

	.open1320-archive-radar {
		width: 210px;
	}

	.open1320-callout {
		grid-template-columns: 60px 1fr;
	}

	.open1320-callout .open1320-actions {
		grid-column: 2;
		justify-content: flex-start;
	}

	.open1320-archive-header,
	.open1320-detail-columns,
	.open1320-overview-grid,
	.open1320-home-split,
	.open1320-policy-grid,
	.open1320-history-grid {
		grid-template-columns: 1fr;
	}

	.open1320-page-header {
		padding: 28px 24px;
	}

	.open1320-definitions-wide {
		grid-template-columns: 1fr;
	}

	.open1320-tabbar {
		display: none;
	}

	.open1320-section-selector {
		display: grid;
		gap: 6px;
		border: 1px solid var(--o-line);
		background: #121719;
		padding: 12px;
	}

	.open1320-section-selector span {
		font-family: var(--o-mono);
		font-size: 8px;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	.open1320-section-selector select {
		min-height: 42px;
		border: 1px solid var(--o-line-strong);
		border-radius: 0;
		background: #080a0b;
		color: #fff;
		padding: 8px;
	}

	.open1320-tab-panel {
		border-top: 1px solid var(--o-line);
	}

	.open1320-archive-status-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.open1320-error-screen {
		grid-template-columns: 1fr;
	}

	.open1320-error-code {
		min-height: 190px;
		border-right: 0;
		border-bottom: 1px solid var(--o-line);
	}

	.open1320-error-diagnostic {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.open1320-footer-inner {
		grid-template-columns: 1fr;
	}

	.open1320-footer-meta,
	.open1320-site-footer nav,
	.open1320-footer-disclaimer {
		grid-column: 1;
	}
}

@media (max-width: 560px) {
	.open1320-header-inner {
		gap: 10px;
	}

	.open1320-wordmark span {
		font-size: 23px;
	}

	.open1320-menu-label {
		display: none;
	}

	.open1320-nav-menu {
		grid-template-columns: 1fr;
	}

	.open1320-hero-copy {
		padding: 34px 21px;
	}

	.open1320-terminal-label {
		margin-bottom: 18px;
	}

	.open1320-hero h1 {
		font-size: clamp(44px, 15vw, 64px);
	}

	.open1320-actions {
		flex-direction: column;
	}

	.open1320-button {
		width: 100%;
	}

	.open1320-hero-visual {
		min-height: 390px;
	}

	.open1320-capture {
		width: 76%;
	}

	.open1320-capture.is-original {
		left: 3%;
		top: 9%;
	}

	.open1320-capture.is-project {
		right: 3%;
		bottom: 8%;
	}

	.open1320-hero-stamp {
		display: none;
	}

	.open1320-section-heading h2,
	.open1320-page-header h1 {
		font-size: clamp(35px, 12vw, 48px);
	}

	.open1320-section-index {
		font-size: 34px;
	}

	.open1320-project-row {
		grid-template-columns: 78px 1fr;
	}

	.open1320-project-thumb {
		min-height: 116px;
	}

	.open1320-project-name h2 {
		font-size: 20px;
	}

	.open1320-project-origin,
	.open1320-project-status {
		grid-template-columns: 105px 1fr;
	}

	.open1320-process-band {
		padding-inline: 19px;
	}

	.open1320-process-steps li {
		grid-template-columns: 46px 1fr;
	}

	.open1320-callout {
		grid-template-columns: 1fr;
	}

	.open1320-callout-marker {
		display: none;
	}

	.open1320-callout .open1320-actions {
		grid-column: 1;
	}

	.open1320-record-heading {
		padding: 28px 22px;
	}

	.open1320-record-heading h1 {
		font-size: clamp(45px, 15vw, 66px);
	}

	.open1320-record-media {
		min-height: 250px;
	}

	.open1320-definition {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.open1320-archive-status-grid {
		grid-template-columns: 1fr;
	}

	.open1320-review-heading,
	.open1320-footer-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.open1320-timeline li {
		grid-template-columns: 1fr;
		gap: 7px;
	}
}

/* v0.1.2 content credibility and accessibility corrections */
body::before {
	opacity: .18;
}

.open1320-record-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border: 1px solid #8f989c;
	border-radius: 50%;
	background: #596166;
	box-shadow: inset 0 0 0 2px #171b1d;
}

.open1320-nav-menu > li {
	list-style: none;
}

.open1320-nav-group {
	position: relative;
}

.open1320-nav-group > summary {
	list-style: none;
}

.open1320-nav-group > summary::-webkit-details-marker {
	display: none;
}

.open1320-nav-group[open] > .open1320-nav-group-toggle {
	border-color: var(--o-line);
	background: var(--o-surface-raised);
	color: #fff;
}

.open1320-nav-group[open] > .open1320-nav-group-toggle svg {
	transform: rotate(180deg);
}

.open1320-nav-group[open] .open1320-submenu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.js .open1320-nav-group[data-open-fallback] .open1320-submenu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
}

.js .open1320-nav-group[data-open-fallback] > .open1320-nav-group-toggle svg {
	transform: none;
}

.open1320-nav-group-toggle {
	font-size: 12px;
}

.open1320-submenu a small {
	font-size: 12px;
}

.open1320-button,
.open1320-row-action {
	font-size: 12px;
}

.open1320-record-link,
.open1320-text-link {
	font-size: 11px;
}

.open1320-status-badge,
.open1320-badge,
.open1320-inspection-stamp {
	font-size: 10px;
}

.open1320-terminal-label {
	font-size: 10px;
	letter-spacing: .075em;
}

.open1320-hero,
.open1320-hero-visual {
	min-height: 540px;
}

.open1320-hero-copy {
	padding-block: clamp(34px, 4.5vw, 64px);
}

.open1320-hero-visual::after {
	opacity: .62;
}

.open1320-capture {
	margin: 0;
}

.open1320-archive-art {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.open1320-artwork-note {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	display: block;
	border: 1px solid rgba(212, 160, 68, .72);
	background: rgba(8, 10, 11, .9);
	color: #e4c889;
	padding: 6px 8px;
	font-family: var(--o-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .045em;
	line-height: 1.35;
	text-transform: uppercase;
}

.open1320-project-thumb a,
.open1320-game-card-media,
.open1320-capture-screen {
	position: relative;
}

.open1320-media-frame.is-error::after {
	content: "Media could not be loaded";
	position: absolute;
	inset: auto 10px 10px;
	z-index: 4;
	border: 1px solid #743636;
	background: rgba(42, 23, 24, .94);
	color: #f0b4af;
	padding: 7px 9px;
	font-family: var(--o-mono);
	font-size: 11px;
}

/* One featured game plus a compact launch preparation board. */
.open1320-game-index-composition {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
	gap: 18px;
	align-items: stretch;
}

.open1320-featured-game,
.open1320-featured-game .open1320-game-card {
	height: 100%;
}

.open1320-game-card.is-featured {
	display: grid;
	grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
	border-top-color: var(--o-red-bright);
}

.open1320-game-card.is-featured .open1320-game-card-media {
	height: 100%;
	min-height: 330px;
	border-right: 1px solid var(--o-line);
	border-bottom: 0;
}

.open1320-game-card.is-featured .open1320-game-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 3.2vw, 44px);
}

.open1320-game-card :is(h2, h3) {
	margin: 13px 0 8px;
	font-family: var(--o-display);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 800;
	line-height: .96;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.open1320-game-card :is(h2, h3) a {
	text-decoration: none;
}

.open1320-preparation-board {
	position: relative;
	border: 1px solid var(--o-line);
	border-top: 2px solid #596167;
	background: #111517;
	padding: 24px;
}

.open1320-preparation-board::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	height: 2px;
	background: var(--o-amber);
}

.open1320-preparation-board-heading h3 {
	margin: 0 0 9px;
	font-family: var(--o-display);
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.open1320-preparation-board-heading > p:last-child {
	margin: 0;
	color: var(--o-muted);
	font-size: 13px;
}

.open1320-preparation-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	border-top: 1px solid var(--o-line);
}

.open1320-preparation-list li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 13px;
	padding: 16px 0;
	border-bottom: 1px solid var(--o-line);
}

.open1320-preparation-list li > span {
	color: #697176;
	font-family: var(--o-display);
	font-size: 24px;
	line-height: 1;
}

.open1320-preparation-list strong,
.open1320-preparation-list small {
	display: block;
}

.open1320-preparation-list strong {
	font-size: 15px;
}

.open1320-preparation-list small {
	margin-top: 4px;
	color: var(--o-muted);
	font-size: 12px;
	line-height: 1.4;
}

.open1320-tooltip-trigger {
	width: 28px;
	height: 28px;
	font-size: 12px;
	opacity: .9;
}

.open1320-tooltip {
	font-size: 12px;
}

.open1320-directory-toolbar label,
.open1320-directory-toolbar p {
	font-size: 11px;
}

.open1320-directory-toolbar input {
	font-size: 15px;
}

.open1320-project-header {
	font-size: 10px;
}

.open1320-project-name :is(h2, h3, h4) {
	margin: 2px 0 6px;
	font-family: var(--o-display);
	font-size: 24px;
	font-weight: 800;
	line-height: .96;
	letter-spacing: .015em;
	text-transform: uppercase;
}

.open1320-project-name :is(h2, h3, h4) a {
	text-decoration: none;
}

.open1320-project-name p {
	font-size: 12px;
}

.open1320-project-origin strong,
.open1320-project-origin small,
.open1320-project-status > small,
.open1320-project-build code,
.open1320-project-review-date time {
	font-size: 12px;
}

.open1320-project-mobile-facts {
	display: none;
	margin: 0;
}

/* Timing-slip review record instead of another dark instrument panel. */
.open1320-process-band {
	position: relative;
	grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
	border: 0;
	background: #d7d1c2;
	color: #17191a;
	box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
	padding: 42px 42px 46px;
}

.open1320-process-band::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(0deg, transparent 0 31px, rgba(20, 22, 23, .05) 32px),
		radial-gradient(circle at 8px 8px, rgba(20, 22, 23, .12) 0 1px, transparent 1.5px) 0 0 / 18px 18px;
	opacity: .45;
}

.open1320-process-band > * {
	position: relative;
	z-index: 1;
}

.open1320-process-band .open1320-kicker {
	color: #7b3b28;
}

.open1320-process-intro h2 {
	max-width: 560px;
	margin-bottom: 15px;
	font-size: clamp(31px, 3.3vw, 48px);
	line-height: 1;
	text-transform: none;
}

.open1320-process-intro > p:not(.open1320-kicker) {
	margin: 0 0 22px;
	color: #4d504f;
	font-size: 14px;
}

.open1320-process-band .open1320-record-link {
	color: #181a1b;
	text-decoration: underline;
	text-decoration-color: #8b3a31;
}

.open1320-process-steps li,
.open1320-process-steps li:first-child {
	border-color: rgba(23, 25, 26, .25);
}

.open1320-process-steps li > span {
	color: #a6302f;
}

.open1320-process-steps p {
	color: #515553;
	font-size: 14px;
}

/* Native-details navigation remains usable without JavaScript. */
html.no-js .open1320-header-inner {
	grid-template-columns: 1fr;
	padding-bottom: 16px;
}

html.no-js .open1320-header-controls {
	display: none;
}

html.no-js .open1320-primary-nav {
	justify-self: stretch;
}

html.no-js .open1320-nav-menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 8px;
}

html.no-js .open1320-nav-group > .open1320-submenu {
	position: static;
	display: block !important;
	width: auto;
	border: 1px solid var(--o-line);
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

html.no-js .open1320-submenu::before {
	display: none;
}

html.no-js .open1320-nav-group-toggle svg {
	display: none;
}

@media (max-width: 1320px) {
	.open1320-project-header,
	.open1320-project-row {
		grid-template-columns: 72px minmax(210px, 1.35fr) minmax(140px, .72fr) minmax(175px, .82fr) minmax(125px, .62fr) 104px;
	}
}

@media (max-width: 1080px) {
	.open1320-process-band {
		grid-template-columns: 1fr;
	}

	.open1320-process-steps {
		margin-top: 4px;
	}

	.open1320-nav-group[open] .open1320-submenu {
		display: block;
	}

	.open1320-game-index-composition {
		grid-template-columns: 1fr;
	}

	.open1320-game-card.is-featured {
		grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
	}

	.open1320-project-row {
		grid-template-columns: 100px minmax(230px, 1fr) minmax(320px, .95fr) 110px;
		align-items: stretch;
	}

	.open1320-project-thumb {
		grid-column: 1;
		grid-row: 1;
	}

	.open1320-project-name {
		grid-column: 2;
		grid-row: 1;
	}

	.open1320-project-origin,
	.open1320-project-status,
	.open1320-project-build,
	.open1320-project-review-date {
		display: none;
	}

	.open1320-project-mobile-facts {
		grid-column: 3;
		grid-row: 1;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		padding: 8px 10px !important;
		border-left: 1px solid rgba(255, 255, 255, .045);
	}

	.open1320-project-mobile-facts > div {
		min-width: 0;
		padding: 6px 8px;
	}

	.open1320-project-mobile-facts dt {
		color: var(--o-muted);
		font-family: var(--o-mono);
		font-size: 10px;
		font-weight: 700;
		letter-spacing: .055em;
		text-transform: uppercase;
	}

	.open1320-project-mobile-facts dd {
		margin: 2px 0 0;
		font-size: 12px;
		line-height: 1.3;
	}

	.open1320-project-details {
		grid-column: 4;
		grid-row: 1;
	}

	html.no-js .open1320-primary-nav {
		position: static;
		max-height: none;
		overflow: visible;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	html.no-js .open1320-nav-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.open1320-hero-copy {
		padding: 36px 26px;
	}

	.open1320-hero-visual {
		min-height: 400px;
	}

	.open1320-game-card.is-featured {
		grid-template-columns: 1fr;
	}

	.open1320-game-card.is-featured .open1320-game-card-media {
		height: 230px;
		min-height: 230px;
		border-right: 0;
		border-bottom: 1px solid var(--o-line);
	}

	.open1320-project-row {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.open1320-project-thumb {
		grid-column: 1;
		grid-row: 1;
	}

	.open1320-project-name {
		grid-column: 2;
		grid-row: 1;
		padding: 14px !important;
	}

	.open1320-row-index {
		display: none;
	}

	.open1320-project-mobile-facts {
		grid-column: 1 / -1;
		grid-row: 2;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		border-left: 0;
		border-top: 1px solid var(--o-line);
		padding: 8px !important;
	}

	.open1320-project-details {
		grid-column: 1 / -1;
		grid-row: 3;
		border-top: 1px solid var(--o-line);
		padding: 10px 14px !important;
	}

	.open1320-process-band {
		padding: 30px 25px 34px;
	}
}

@media (max-width: 560px) {
	.open1320-menu-label {
		display: inline;
	}

	.open1320-menu-toggle {
		padding-inline: 9px;
	}

	.open1320-hero h1 {
		font-size: clamp(42px, 13.5vw, 58px);
	}

	.open1320-hero-visual {
		min-height: 340px;
	}

	.open1320-capture {
		width: 72%;
	}

	.open1320-artwork-note {
		font-size: 9px;
	}

	.open1320-preparation-board {
		padding: 20px;
	}

	.open1320-project-mobile-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.open1320-process-intro h2 {
		font-size: 32px;
	}

	html.no-js .open1320-nav-menu {
		grid-template-columns: 1fr;
	}
}


@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.open1320-reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.open1320-site-header,
	.open1320-site-footer,
	.open1320-route-progress,
	.open1320-actions,
	.open1320-directory-toolbar {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.open1320-page-shell {
		width: 100%;
	}
}

@keyframes open1320-progress {
	0% { transform: translateX(-120%); }
	70% { transform: translateX(260%); }
	100% { transform: translateX(330%); }
}

@keyframes open1320-skeleton {
	to { transform: translateX(120%); }
}

@keyframes open1320-view-out {
	to { opacity: .85; transform: translateY(-4px); }
}

@keyframes open1320-view-in {
	from { opacity: 0; transform: translateY(7px); }
}

/* Generic content fallbacks */
.open1320-content-stack {
	display: grid;
	gap: 18px;
}

.open1320-game-meta {
	align-self: stretch;
}


.open1320-standard-entry {
	border-left: 3px solid var(--o-line-strong);
	background: var(--o-surface);
	padding: 20px 22px;
}

.open1320-standard-entry h2 {
	margin: 0 0 8px;
	font-family: var(--o-display);
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1;
	text-transform: uppercase;
}

.open1320-standard-entry h2 a {
	text-decoration: none;
}

/* v0.1.3 homepage editorial media */
.open1320-hero,
.open1320-hero-visual {
	min-height: 620px;
}

.open1320-hero-copy > .open1320-kicker:first-child {
	margin-bottom: 14px;
}

.open1320-home .open1320-capture {
	width: min(360px, 60%);
	margin: 0;
}

.open1320-home .open1320-capture.is-game-slot-1 {
	left: 5%;
	top: 7%;
	z-index: 6;
	transform: rotate(-2.1deg);
}

.open1320-home .open1320-capture.is-game-slot-2 {
	right: 4%;
	top: 34%;
	z-index: 5;
	transform: rotate(2deg);
}

.open1320-home .open1320-capture.is-game-slot-3 {
	left: 10%;
	bottom: 4%;
	z-index: 4;
	width: min(320px, 53%);
	transform: rotate(-1deg);
}

.open1320-home .open1320-capture-screen {
	background: #07090a;
}

.open1320-home .open1320-capture-screen img {
	object-fit: contain;
	background: #07090a;
}

.open1320-home .open1320-capture-footer span {
	font-size: 9px;
	line-height: 1.25;
	text-align: right;
}

.open1320-preparation-empty {
	margin: 24px 0 0;
	border-top: 1px solid var(--o-line);
	color: var(--o-muted);
	padding-top: 18px;
	font-size: 13px;
}

@media (max-width: 1080px) {
	.open1320-hero,
	.open1320-hero-visual {
		min-height: 560px;
	}

	.open1320-home .open1320-capture {
		width: min(390px, 58%);
	}

	.open1320-home .open1320-capture.is-game-slot-3 {
		width: min(340px, 50%);
	}
}

@media (max-width: 820px) {
	.open1320-hero {
		min-height: 0;
	}

	.open1320-hero-visual {
		min-height: 500px;
	}

	.open1320-home .open1320-capture.is-game-slot-1 {
		left: 4%;
		top: 5%;
		width: 64%;
	}

	.open1320-home .open1320-capture.is-game-slot-2 {
		right: 3%;
		top: 37%;
		width: 60%;
	}

	.open1320-home .open1320-capture.is-game-slot-3 {
		left: 5%;
		bottom: 3%;
		width: 47%;
	}
}

@media (max-width: 560px) {
	.open1320-hero-visual {
		min-height: 455px;
	}

	.open1320-home .open1320-capture.is-game-slot-1 {
		width: 72%;
	}

	.open1320-home .open1320-capture.is-game-slot-2 {
		top: 38%;
		width: 66%;
	}

	.open1320-home .open1320-capture.is-game-slot-3 {
		width: 48%;
	}

	.open1320-home .open1320-capture-bar {
		height: 25px;
	}

	.open1320-home .open1320-capture-footer {
		padding: 7px 9px;
	}
}
/* v0.1.4 record-detail heading hotfix. Kept after responsive rules so the
 * numbered homepage grid can never collapse a single-record heading. */
.open1320-section-heading.open1320-section-heading--record {
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}

.open1320-section-heading--record > div {
	min-width: 0;
	grid-column: 1;
}

.open1320-section-heading--record h2 {
	max-width: 100%;
	overflow-wrap: normal;
	word-break: normal;
}


/* v0.1.6 game release comparison and public intake */
.open1320-detail-columns > section {
	border-top: 2px solid #4d565a;
	background: var(--o-surface-raised);
	padding: 22px;
}

.open1320-game-release-comparison {
	align-items: stretch;
}

.open1320-release-panel {
	min-width: 0;
}

.open1320-release-panel > .open1320-kicker {
	margin-bottom: 8px;
}

.open1320-current-project-panel {
	position: relative;
	border-top-color: var(--o-green) !important;
	background:
		linear-gradient(90deg, rgba(75, 188, 111, .055), transparent 42%),
		var(--o-surface-raised) !important;
}

.open1320-current-project-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 16px;
	margin-bottom: 12px;
}

.open1320-current-project-heading h3 {
	margin: 4px 0 0;
	font-family: var(--o-display);
	font-size: clamp(30px, 4vw, 46px);
	line-height: .95;
	text-transform: uppercase;
}

.open1320-record-type {
	color: var(--o-muted);
	font-family: var(--o-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-current-project-summary {
	margin: 0 0 18px;
	color: var(--o-text-soft);
	line-height: 1.65;
}

.open1320-current-project-action {
	margin-top: 20px;
}

.open1320-project-unavailable {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border: 1px dashed var(--o-line-strong);
	background: rgba(0, 0, 0, .18);
	padding: 24px;
}

.open1320-project-unavailable h3 {
	margin: 12px 0 6px;
	font-family: var(--o-display);
	font-size: 30px;
	text-transform: uppercase;
}

.open1320-project-unavailable p {
	max-width: 580px;
	margin: 0;
	color: var(--o-text-soft);
}

.open1320-historical-overview {
	margin-top: 16px;
	border-top: 2px solid var(--o-amber);
	background:
		linear-gradient(90deg, rgba(220, 163, 72, .05), transparent 45%),
		var(--o-surface-raised);
	padding: clamp(24px, 4vw, 38px);
}

.open1320-historical-overview h2 {
	margin: 0 0 14px;
	font-family: var(--o-display);
	font-size: clamp(28px, 4vw, 42px);
	text-transform: uppercase;
}

.open1320-intake-page {
	max-width: 1440px;
}

.open1320-intake-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr);
	align-items: end;
	gap: clamp(24px, 5vw, 70px);
}

.open1320-intake-header h1 {
	margin: 0 0 14px;
	font-family: var(--o-display);
	font-size: clamp(44px, 7vw, 84px);
	line-height: .92;
	text-transform: uppercase;
}

.open1320-intake-state {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 8px 12px;
	border-top: 2px solid var(--o-line-strong);
	background: rgba(0, 0, 0, .22);
	padding: 17px;
}

.open1320-intake-state .open1320-tree-light {
	grid-row: 1 / span 2;
}

.open1320-intake-state strong {
	font-family: var(--o-mono);
	font-size: 11px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.open1320-intake-state small {
	color: var(--o-muted);
	line-height: 1.45;
}

.open1320-intake-state.is-open {
	border-top-color: var(--o-green);
}

.open1320-intake-state.is-closed {
	border-top-color: var(--o-amber);
}

.open1320-intake-layout {
	display: grid;
	grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr);
	gap: 18px;
	align-items: start;
}

.open1320-intake-guide,
.open1320-intake-form-panel {
	border-top: 2px solid #4d565a;
	background: var(--o-surface-raised);
	padding: clamp(24px, 4vw, 38px);
}

.open1320-intake-form-panel {
	border-top-color: var(--o-red);
}

.open1320-intake-guide > h2,
.open1320-intake-form-panel > h2 {
	margin: 0 0 20px;
	font-family: var(--o-display);
	font-size: clamp(32px, 4vw, 50px);
	line-height: .96;
	text-transform: uppercase;
}

.open1320-intake-checklist {
	display: grid;
	gap: 1px;
	background: var(--o-line);
}

.open1320-intake-checklist article {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	background: #111517;
	padding: 18px;
}

.open1320-intake-checklist article > span {
	color: var(--o-red-bright);
	font-family: var(--o-display);
	font-size: 28px;
	line-height: 1;
}

.open1320-intake-checklist h3,
.open1320-intake-policy-note h3 {
	margin: 0 0 6px;
	font-family: var(--o-display);
	font-size: 22px;
	text-transform: uppercase;
}

.open1320-intake-checklist p,
.open1320-intake-policy-note p {
	margin: 0;
	color: var(--o-text-soft);
	line-height: 1.6;
}

.open1320-intake-policy-note {
	margin-top: 18px;
	border-left: 3px solid var(--o-amber);
	background: rgba(0, 0, 0, .2);
	padding: 18px;
}

.open1320-intake-policy-note .open1320-record-link {
	margin-top: 14px;
}

.open1320-intake-closed-note {
	margin-bottom: 20px;
	border: 1px solid #6a5730;
	border-left: 4px solid var(--o-amber);
	background: #211d15;
	padding: 15px 17px;
}

.open1320-intake-closed-note strong {
	font-family: var(--o-mono);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.open1320-intake-closed-note p {
	margin: 6px 0 0;
	color: var(--o-text-soft);
}

.open1320-intake-form fieldset {
	min-width: 0;
	margin: 0;
	border: 0;
	padding: 0;
}

.open1320-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.open1320-form-grid label,
.open1320-form-consent {
	display: grid;
	gap: 7px;
	font-family: var(--o-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.open1320-form-grid label.is-wide {
	grid-column: 1 / -1;
}

.open1320-form-grid input,
.open1320-form-grid textarea {
	width: 100%;
	border: 1px solid var(--o-line-strong);
	border-radius: 0;
	background: #0b0e0f;
	color: var(--o-text);
	padding: 12px 13px;
	font-family: var(--o-body);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.open1320-form-grid textarea {
	resize: vertical;
	line-height: 1.55;
}

.open1320-form-grid input:focus,
.open1320-form-grid textarea:focus {
	border-color: var(--o-focus);
	outline: 2px solid var(--o-focus);
	outline-offset: 1px;
}

.open1320-form-consent {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	margin: 20px 0;
	font-family: var(--o-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.55;
	text-transform: none;
}

.open1320-form-consent input {
	width: 20px;
	height: 20px;
	margin-top: 1px;
	accent-color: var(--o-red);
}

.open1320-submit-button {
	border-radius: 0;
	cursor: pointer;
}

.open1320-intake-form fieldset:disabled {
	opacity: .62;
}

.open1320-intake-form fieldset:disabled .open1320-submit-button,
.open1320-submit-button:disabled {
	border-color: var(--o-line);
	background: #24282a;
	color: #9ca2a5;
	cursor: not-allowed;
	transform: none;
}

.open1320-form-footnote {
	margin: 15px 0 0;
	color: var(--o-muted);
	font-size: 13px;
	line-height: 1.55;
}

.open1320-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.open1320-notice.is-success {
	border-color: #315b3e;
	border-left-color: var(--o-green);
	background: #122019;
}

.open1320-notice.is-error {
	border-color: #6f3535;
	border-left-color: var(--o-red-bright);
	background: #281617;
}

@media (max-width: 920px) {
	.open1320-current-project-heading,
	.open1320-intake-header,
	.open1320-intake-layout {
		grid-template-columns: 1fr;
	}

	.open1320-current-project-heading .open1320-status-badge {
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.open1320-form-grid {
		grid-template-columns: 1fr;
	}

	.open1320-form-grid label.is-wide {
		grid-column: auto;
	}

	.open1320-intake-guide,
	.open1320-intake-form-panel,
	.open1320-historical-overview,
	.open1320-detail-columns > section {
		padding: 20px;
	}
}

/* v0.1.14 Hosted Web Games */
.open1320-play-directory,
.open1320-play-station-page {
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.open1320-play-header {
	border-bottom-color: var(--open1320-accent-warm, #d6a84b);
}

.open1320-play-directory-intro {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--open1320-line, #3b4145);
	border-bottom: 1px solid var(--open1320-line, #3b4145);
	margin: 0 0 2rem;
}

.open1320-play-directory-intro > div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: .75rem;
	align-content: start;
	padding: 1.2rem 1.3rem;
	border-right: 1px solid var(--open1320-line, #3b4145);
}

.open1320-play-directory-intro > div:last-child { border-right: 0; }
.open1320-play-directory-intro strong { font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; }
.open1320-play-directory-intro p { grid-column: 2; margin: .35rem 0 0; color: var(--open1320-muted, #a9b0b4); font-size: .88rem; }

.open1320-play-list {
	display: grid;
	gap: 1px;
	background: var(--open1320-line, #353b3f);
	border: 1px solid var(--open1320-line, #353b3f);
}

.open1320-play-row {
	display: grid;
	grid-template-columns: minmax(190px, 270px) minmax(0, 1fr) minmax(210px, .36fr);
	gap: clamp(1.1rem, 2.3vw, 2.4rem);
	align-items: stretch;
	background: var(--open1320-surface, #14191c);
	min-height: 190px;
}

.open1320-play-row-media {
	position: relative;
	min-height: 190px;
	border-right: 3px solid var(--open1320-red, #cf3030);
	overflow: hidden;
}

.open1320-play-row-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.open1320-play-row-main {
	align-self: center;
	padding: 1.3rem 0;
}
.open1320-play-row-main h2 { margin: .22rem 0 .55rem; font-size: clamp(1.55rem, 2.6vw, 2.5rem); }
.open1320-play-row-main h2 a { color: inherit; text-decoration: none; }
.open1320-play-row-main p { max-width: 58ch; margin: 0; color: var(--open1320-muted, #a9b0b4); }
.open1320-play-related { margin-top: .85rem !important; font-size: .8rem; font-family: var(--open1320-font-mono, monospace); }

.open1320-play-row-status {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: .75rem;
	border-left: 1px solid var(--open1320-line, #353b3f);
	padding: 1.3rem;
}
.open1320-play-row-status small { color: var(--open1320-muted, #a9b0b4); font-family: var(--open1320-font-mono, monospace); }
.open1320-inspection-label {
	display: inline-flex;
	align-items: center;
	border: 1px solid #6b7074;
	padding: .42rem .62rem;
	font: 700 .72rem/1 var(--open1320-font-mono, monospace);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.open1320-play-station-header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: end;
	border-bottom: 1px solid var(--open1320-line, #353b3f);
	padding: clamp(2rem, 5vw, 5rem) 0 1.5rem;
}
.open1320-play-station-title h1 { margin: .2rem 0 .8rem; font-size: clamp(3rem, 7vw, 7rem); line-height: .84; }
.open1320-play-station-title > p:last-child { max-width: 64ch; color: var(--open1320-muted, #a9b0b4); }
.open1320-play-station-meta {
	display: grid;
	border-top: 1px solid var(--open1320-line, #353b3f);
}
.open1320-play-station-meta > div {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 1rem;
	border-bottom: 1px solid var(--open1320-line, #353b3f);
	padding: .75rem 0;
}
.open1320-play-station-meta span { color: var(--open1320-muted, #a9b0b4); font: .72rem/1.35 var(--open1320-font-mono, monospace); text-transform: uppercase; }
.open1320-play-station-meta strong { font-size: .88rem; }

.open1320-player-station {
	margin: 2rem auto 3rem;
	max-width: 1280px;
}
.open1320-player-shell {
	position: relative;
	aspect-ratio: var(--open1320-player-ratio, 4 / 3);
	max-height: min(76vh, 900px);
	margin-inline: auto;
	background: var(--open1320-player-background, #000);
	border: 1px solid #656b6f;
	box-shadow: 0 22px 80px rgba(0,0,0,.45);
	overflow: hidden;
}
.open1320-player-stage {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: var(--open1320-player-background, #000);
}
.open1320-player-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .33;
	filter: saturate(.65) contrast(1.05);
}
.open1320-player-stage::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0,0,0,.13) 3px 4px);
	opacity: .42;
}
.open1320-player-start-panel {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	gap: .85rem;
	max-width: 520px;
	padding: 2rem;
	text-align: center;
	background: rgba(9,12,14,.82);
	border-top: 1px solid #6a7074;
	border-bottom: 3px solid var(--open1320-red, #cf3030);
}
.open1320-player-start-panel strong { font-size: clamp(1.4rem, 3vw, 2.6rem); text-transform: uppercase; }
.open1320-player-start-panel p { margin: 0; color: #c8cdcf; }
.open1320-player-station.is-started .open1320-player-start-panel,
.open1320-player-station.is-started .open1320-player-poster,
.open1320-player-station.is-started .open1320-player-stage::after { display: none; }
.open1320-ruffle-player,
.open1320-web-game-frame { display: block; width: 100%; height: 100%; border: 0; }

.open1320-player-toolbar {
	display: flex;
	gap: .5rem;
	justify-content: flex-end;
	border: 1px solid var(--open1320-line, #353b3f);
	border-top: 0;
	padding: .65rem;
	background: #111619;
}
.open1320-player-toolbar button {
	border: 1px solid #555c60;
	background: #1b2124;
	color: #f4f3ef;
	padding: .55rem .8rem;
	font: 700 .72rem/1 var(--open1320-font-mono, monospace);
	text-transform: uppercase;
	cursor: pointer;
}
.open1320-player-toolbar button:hover,
.open1320-player-toolbar button:focus-visible { border-color: #fff; }
.open1320-player-status {
	margin: .65rem 0 0;
	color: var(--open1320-muted, #a9b0b4);
	font: .72rem/1.4 var(--open1320-font-mono, monospace);
}
.open1320-player-status[data-state="error"] { color: #ff8a82; }
.open1320-player-status[data-state="ready"] { color: #82d696; }
.open1320-player-noscript { border-left: 3px solid #d6a84b; padding-left: 1rem; }

.open1320-play-information-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--open1320-line, #353b3f);
	border: 1px solid var(--open1320-line, #353b3f);
	margin: 3rem 0;
}
.open1320-play-information-grid > section {
	background: var(--open1320-surface, #14191c);
	padding: clamp(1.4rem, 3vw, 2.5rem);
	min-height: 220px;
}
.open1320-play-information-grid h2 { margin: .25rem 0 1rem; }
.open1320-play-test-slip {
	background-color: #e8e1cf !important;
	color: #191917;
	background-image: repeating-linear-gradient(to bottom, transparent 0 30px, rgba(55,48,34,.09) 30px 31px);
}
.open1320-play-test-slip .open1320-kicker,
.open1320-play-test-slip dt { color: #74531c; }
.open1320-play-test-slip .open1320-definition { border-color: rgba(25,25,23,.2); }
.open1320-play-test-slip dd { overflow-wrap: anywhere; }

.open1320-hosting-notice,
.open1320-related-game-band {
	display: grid;
	grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
	border-top: 1px solid var(--open1320-line, #353b3f);
	border-bottom: 1px solid var(--open1320-line, #353b3f);
	padding: 1.5rem 0;
	margin: 2rem 0;
}
.open1320-hosting-notice > div { display: grid; gap: .35rem; }
.open1320-hosting-notice span { color: var(--open1320-muted, #a9b0b4); font: .7rem/1.3 var(--open1320-font-mono, monospace); text-transform: uppercase; }
.open1320-hosting-notice p { margin: 0; color: var(--open1320-muted, #a9b0b4); }
.open1320-related-game-band { grid-template-columns: minmax(0, 1fr) auto; margin-top: 4rem; }
.open1320-related-game-band h2 { margin: .2rem 0 .55rem; }
.open1320-related-game-band p { margin: 0; max-width: 70ch; color: var(--open1320-muted, #a9b0b4); }

@media (max-width: 1000px) {
	.open1320-play-row { grid-template-columns: 220px minmax(0, 1fr); }
	.open1320-play-row-status { grid-column: 2; border-left: 0; border-top: 1px solid var(--open1320-line, #353b3f); flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: center; }
	.open1320-play-row-media { grid-row: 1 / span 2; }
	.open1320-play-station-header { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.open1320-play-directory-intro,
	.open1320-play-information-grid { grid-template-columns: 1fr; }
	.open1320-play-directory-intro > div { border-right: 0; border-bottom: 1px solid var(--open1320-line, #353b3f); }
	.open1320-play-directory-intro > div:last-child { border-bottom: 0; }
	.open1320-play-row { grid-template-columns: 1fr; }
	.open1320-play-row-media { grid-row: auto; min-height: 210px; border-right: 0; border-bottom: 3px solid var(--open1320-red, #cf3030); }
	.open1320-play-row-main { padding: 1.2rem; }
	.open1320-play-row-status { grid-column: auto; padding: 1.2rem; }
	.open1320-player-shell { max-height: none; }
	.open1320-player-start-panel { margin: 1rem; padding: 1.25rem; }
	.open1320-hosting-notice,
	.open1320-related-game-band { grid-template-columns: 1fr; }
	.open1320-related-game-band .open1320-button { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
	.open1320-player-stage,
	.open1320-player-start-panel { scroll-behavior: auto; }
}

/* v0.1.14 managed public information pages. */
.open1320-site-info-page{max-width:1240px;margin:0 auto;padding:clamp(28px,5vw,72px) clamp(18px,4vw,56px)}.open1320-site-info-article{position:relative}.open1320-site-info-header{max-width:900px;padding-bottom:clamp(26px,4vw,48px);border-bottom:1px solid var(--color-line,rgba(255,255,255,.18))}.open1320-site-info-header h1{margin:.25rem 0 1rem;font-size:clamp(3rem,8vw,7.5rem);line-height:.84}.open1320-site-info-purpose{max-width:760px;margin:0;font-size:clamp(1.05rem,1.8vw,1.35rem);line-height:1.55;color:var(--color-text-muted,#b8b8b8)}.open1320-site-info-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,350px);gap:clamp(32px,6vw,90px);align-items:start;padding-top:clamp(30px,5vw,60px)}.open1320-site-info-content{max-width:760px}.open1320-site-info-content h2{margin:2.5rem 0 .7rem;font-size:clamp(1.65rem,3vw,2.65rem)}.open1320-site-info-content h2:first-child{margin-top:0}.open1320-site-info-content p,.open1320-site-info-content li{font-size:1.05rem;line-height:1.75}.open1320-site-info-aside{display:grid;gap:18px;position:sticky;top:120px}.open1320-info-ticket{position:relative;padding:22px;border:1px solid rgba(255,255,255,.25);background:rgba(9,10,12,.8);box-shadow:inset 4px 0 0 #f2f2ee}.open1320-info-ticket.is-caution{box-shadow:inset 4px 0 0 #d9a514}.open1320-info-ticket>span{display:block;margin-bottom:10px;font-family:var(--font-mono,ui-monospace,monospace);font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;color:var(--color-text-muted,#aaa)}.open1320-info-ticket>a{display:block;overflow-wrap:anywhere;font-size:1.05rem;font-weight:800}.open1320-info-ticket>small{display:block;margin-top:10px;line-height:1.5;color:var(--color-text-muted,#aaa)}.open1320-info-ticket dl{margin:0}.open1320-info-ticket dl div{display:grid;grid-template-columns:42px 1fr;gap:10px;padding:7px 0;border-top:1px solid rgba(255,255,255,.12)}.open1320-info-ticket dt{font-family:var(--font-mono,ui-monospace,monospace);font-weight:800}.open1320-info-ticket dd{margin:0;color:var(--color-text-muted,#aaa)}.open1320-info-related{display:grid;gap:2px;padding-top:10px}.open1320-info-related h2{margin:0 0 10px;font-size:1rem;text-transform:uppercase;letter-spacing:.08em}.open1320-info-related a{padding:11px 0;border-bottom:1px solid rgba(255,255,255,.14);font-weight:700;text-decoration:none}.open1320-info-related a::after{content:' →'}.open1320-info-related a:hover{text-decoration:underline}
@media (max-width:860px){.open1320-site-info-layout{grid-template-columns:1fr}.open1320-site-info-aside{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.open1320-info-related{grid-column:1/-1}}
@media (max-width:560px){.open1320-site-info-header h1{font-size:clamp(2.7rem,18vw,4.7rem)}.open1320-site-info-aside{grid-template-columns:1fr}}

/* v0.1.14 standalone Review record. */
.open1320-review-record-page{max-width:1320px;margin:0 auto;padding:clamp(28px,5vw,70px) clamp(18px,4vw,56px)}.open1320-review-record-header{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;padding-bottom:30px;border-bottom:1px solid rgba(255,255,255,.18)}.open1320-review-record-header h1{max-width:900px;margin:.2rem 0 .8rem;font-size:clamp(3rem,7vw,7rem);line-height:.88}.open1320-review-record-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:clamp(30px,5vw,76px);align-items:start;margin-top:42px}.open1320-review-record-main{display:grid;gap:38px}.open1320-review-summary-ticket,.open1320-review-data-ticket{padding:24px;border:1px solid rgba(255,255,255,.22);background:rgba(12,13,15,.82)}.open1320-review-summary-ticket{box-shadow:inset 4px 0 0 #eee9dd}.open1320-review-summary-ticket p:last-child{margin-bottom:0}.open1320-review-record-aside{display:grid;gap:16px;position:sticky;top:120px}.open1320-review-data-ticket h2{margin:0 0 14px;font-size:1rem;text-transform:uppercase;letter-spacing:.09em}.open1320-review-data-ticket code{display:block;margin-top:8px;overflow-wrap:anywhere;font-size:.76rem}.open1320-review-evidence-sections>h2{font-size:clamp(2rem,4vw,3.5rem)}.open1320-review-evidence-sections details{border-top:1px solid rgba(255,255,255,.18)}.open1320-review-evidence-sections details:last-child{border-bottom:1px solid rgba(255,255,255,.18)}.open1320-review-evidence-sections summary{cursor:pointer;padding:18px 0;font-size:1.15rem;font-weight:800}.open1320-review-evidence-sections details>div{padding:0 0 24px}.open1320-review-record .open1320-definition{grid-template-columns:minmax(110px,.8fr) minmax(0,1.2fr)}
@media (max-width:900px){.open1320-review-record-layout{grid-template-columns:1fr}.open1320-review-record-aside{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.open1320-review-record-header{align-items:flex-start;flex-direction:column}}
@media (max-width:600px){.open1320-review-record-aside{grid-template-columns:1fr}.open1320-review-record-header h1{font-size:clamp(2.8rem,18vw,4.8rem)}}


/* v0.1.14 editorial verification metadata. */
.open1320-verification-date{margin:12px 0 0;color:var(--color-muted,#aeb4ba);font:600 12px/1.5 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.03em}

/* v0.2.1 Console Revivals and recompilation records. */
.open1320-console-revival-page {
	max-width: var(--o-max);
	margin: 0 auto;
}

.open1320-console-introduction {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	margin: clamp(2rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.open1320-console-introduction .open1320-prose {
	max-width: 72ch;
}

.open1320-revival-path {
	margin: 0;
	border-top: 1px solid var(--o-line-strong);
	border-bottom: 1px solid var(--o-line-strong);
}

.open1320-revival-path > div {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.15rem 0;
	border-top: 1px solid var(--o-line);
}

.open1320-revival-path > div:first-child {
	border-top: 0;
}

.open1320-revival-path dt {
	color: var(--o-red-bright);
	font: 800 .78rem/1.5 var(--o-mono);
	letter-spacing: .1em;
}

.open1320-revival-path dd {
	margin: 0;
}

.open1320-revival-path strong,
.open1320-revival-path span {
	display: block;
}

.open1320-revival-path strong {
	font-family: var(--o-display);
	font-size: 1.2rem;
	letter-spacing: .02em;
}

.open1320-revival-path span {
	margin-top: .25rem;
	color: var(--o-text-soft);
	font-size: .92rem;
}

.open1320-console-projects,
.open1320-console-games {
	margin-top: clamp(4rem, 8vw, 8rem);
}

.open1320-console-games .open1320-empty-state {
	grid-column: 1 / -1;
}

.open1320-inspection-stamp.is-revival,
.open1320-inspection-stamp.is-family,
.open1320-badge.is-revival {
	border-color: rgba(127, 166, 180, .65);
	color: #b9d5df;
	background: rgba(127, 166, 180, .08);
}

.open1320-project-name .open1320-inspection-stamp.is-revival {
	margin-left: .45rem;
}

.open1320-game-card-status {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	align-items: center;
}

.open1320-recomp-record {
	position: relative;
	margin: clamp(2rem, 5vw, 4rem) 0 0;
	padding: clamp(1.5rem, 4vw, 3rem) 0;
	border-top: 1px solid var(--o-line-strong);
	border-bottom: 1px solid var(--o-line-strong);
}

.open1320-recomp-record::before {
	content: "RECOMP / PORT RECORD";
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-50%);
	padding: .3rem .55rem;
	background: var(--o-bg);
	color: var(--o-blue);
	font: 700 .66rem/1 var(--o-mono);
	letter-spacing: .12em;
}

.open1320-recomp-record > header {
	display: grid;
	grid-template-columns: minmax(0, .7fr) minmax(280px, 1fr);
	gap: 1rem 3rem;
	align-items: end;
	margin-bottom: 2rem;
}

.open1320-recomp-record > header .open1320-kicker {
	grid-column: 1;
	margin-bottom: 0;
}

.open1320-recomp-record > header h2 {
	grid-column: 1;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.7rem);
}

.open1320-recomp-record > header p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: var(--o-text-soft);
}

.open1320-recomp-notes {
	margin-top: 2rem;
}

.open1320-recomp-notes.is-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 72ch;
}

.open1320-recomp-notes h3 {
	margin-top: 0;
	font-size: 1.35rem;
}

@media (max-width: 900px) {
	.open1320-console-introduction,
	.open1320-recomp-record > header {
		grid-template-columns: 1fr;
	}

	.open1320-recomp-record > header .open1320-kicker,
	.open1320-recomp-record > header h2,
	.open1320-recomp-record > header p:last-child {
		grid-column: 1;
		grid-row: auto;
	}
}

@media (max-width: 560px) {
	.open1320-revival-path > div {
		grid-template-columns: 2.3rem minmax(0, 1fr);
	}

	.open1320-project-name .open1320-inspection-stamp.is-revival {
		margin: .5rem .35rem 0 0;
	}
}
