body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.content {
	width: min(var(--maxw), 90vw);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 96px 0 56px;
}

.home-hero {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.home-eyebrow {
	margin-bottom: 8px;
	text-align: center;
	color: var(--muted);
	font-family: var(--font-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.home-hero h1 {
	text-align: center;
	color: var(--accent);
	font-family: var(--font-accent);
	font-size: clamp(1.8rem, 7vw, 2.5rem);
	line-height: 1.15;
}

.home-intro {
	max-width: 46ch;
	margin: 12px auto 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.6;
}

.home-links {
	width: 100%;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--gap);
	padding: 0;
	margin: 0;
}

.home-links li {
	width: min(420px, 100%);
}

.tile {
	/* layout */
	display: flex;
	align-items: center;
	gap: 14px;

	/* box */
	padding: 18px 22px;
	border-radius: var(--radius);
	background: var(--s-w-06);
	border: 1px solid var(--s-w-12);

	/* text */
	text-decoration: none;
	color: var(--text);
	font-weight: 700;
	font-size: 1.35rem;

	/* UX */
	transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.tile:hover {
	transform: translateY(-1px);
	background: var(--s-w-08);
	border-color: var(--accent);
}

.tile:active {
	transform: translateY(0px);
}

.tile .icon {
	padding: 0 5px;
	text-align: center;
	flex: 0 0 auto;
	line-height: 1;
	font-size: 1.5rem;
}

.tile .label {
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tile-arrow {
	margin-left: auto;
	color: var(--muted);
	font-size: 1.6rem;
	font-weight: 400;
	transition:
		color 120ms ease,
		transform 120ms ease;
}

.tile:hover .tile-arrow {
	color: var(--accent);
	transform: translateX(3px);
}

.tile-status {
	margin-left: auto;
	padding: 4px 8px;
	border: 1px solid var(--s-w-12);
	border-radius: 999px;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tile.is-disabled {
	background: var(--s-w-03);
	color: var(--muted);
	border: 1px dashed var(--s-w-16);
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.tile.is-disabled .icon {
	opacity: 0.4;
}

@media (max-width: 480px) {
	.content {
		width: min(var(--maxw), 92vw);
		padding-top: 84px;
	}

	.tile {
		padding: 16px 18px;
		font-size: 1.12rem;
	}
}
