.owner-page {
	min-height: 100svh;
	color: #f5f6f3;
	background: #1a1d20 url("/assets/screenshot-start-menu.png") center / cover fixed no-repeat;
}

.owner-page::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: rgba(10, 12, 14, 0.84);
}

.owner-main {
	display: grid;
	align-items: center;
	min-height: calc(100svh - var(--header-height));
	padding: 64px 20px;
}

.owner-main section {
	width: min(900px, 100%);
	margin: 0 auto;
}

.owner-main h1 {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(3rem, 8vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: uppercase;
}

.owner-main .lead {
	max-width: 720px;
}

.command-list {
	margin-top: 42px;
	border-top: 1px solid #555b60;
}

.command-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid #555b60;
}

.command-row span,
.command-row code {
	display: block;
}

.command-row span {
	margin-bottom: 9px;
	color: #f5bd3f;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.command-row code {
	overflow-x: auto;
	max-width: 100%;
	color: #e3e7e4;
	font-size: 0.86rem;
	white-space: nowrap;
}

.command-row button {
	min-width: 138px;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid #ee5a4f;
	color: #ffffff;
	background: #d53f35;
	font-weight: 750;
	cursor: pointer;
}

.command-row button:hover,
.command-row button:focus-visible {
	background: #a72b25;
}

.owner-note {
	color: #b9bdc0;
}

@media (max-width: 700px) {
	.owner-page .site-header nav {
		position: static;
		display: flex;
		padding: 0;
		background: transparent;
	}

	.owner-page .site-header nav a {
		padding: 0;
		border: 0;
	}

	.command-row {
		grid-template-columns: 1fr;
	}

	.command-row button {
		width: 100%;
	}
}
