/**
 * CoreFusion OS — Public App Launcher (v2.26.0).
 * The /app springboard: a clean, mobile-first jewel-tile grid that reuses the
 * Palette A "icon driver" look on a theme-free, installable canvas.
 */
.cf-launch {
	margin: 0;
	min-height: 100vh;
	background: #f8fafc;
	color: #0f172a;
	font-family: var( --cf-brand-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif );
	-webkit-font-smoothing: antialiased;
}

.cf-launch__head {
	padding: 36px 20px 4px;
	text-align: center;
}

.cf-launch__brand {
	font-family: var( --cf-brand-font-heading, inherit );
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var( --cf-acc, #2563eb );
}

.cf-launch__install {
	display: inline-block;
	margin-top: 12px;
	padding: 9px 20px;
	border: 0;
	border-radius: 999px;
	background: var( --cf-acc, #2563eb );
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba( 15, 23, 42, 0.18 );
}

.cf-launch__install:hover { filter: brightness( 1.05 ); }

.cf-launch__grid {
	max-width: 680px;
	margin: 0 auto;
	padding: 26px 20px 64px;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 92px, 1fr ) );
	gap: 24px 14px;
}

.cf-launch__tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.cf-launch__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 20px;
	box-shadow: 0 6px 16px rgba( 15, 23, 42, 0.16 );
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cf-launch__tile:hover .cf-launch__icon,
.cf-launch__tile:focus-visible .cf-launch__icon {
	transform: translateY( -3px );
	box-shadow: 0 12px 24px rgba( 15, 23, 42, 0.22 );
}

.cf-launch__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.cf-launch__foot {
	padding: 24px;
	text-align: center;
	font-size: 12px;
	color: #94a3b8;
}
