.front-door {
	max-width: 960px;
	margin: 4rem auto;
	padding: 2rem 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.front-door-header {
	text-align: center;
	margin-bottom: 3rem;
}

.front-door-title {
	font-size: 2rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 0.5rem;
}

.front-door-subtitle {
	color: #6b7280;
	font-size: 0.95rem;
	margin: 0 0 1rem;
}

.front-door-instruction {
	color: #374151;
	font-size: 1.05rem;
	margin: 0;
}

.tenant-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
	margin-bottom: 3rem;
}

.tenant-tile {
	display: block;
	padding: 1.5rem;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.tenant-tile:hover {
	border-color: #2563eb;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}

.tenant-tile-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.35rem;
}

.tenant-tile-domain {
	font-size: 0.85rem;
	color: #6b7280;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.front-door-empty {
	text-align: center;
	padding: 3rem 1rem;
	background: #f9fafb;
	border-radius: 0.5rem;
	color: #6b7280;
}

.front-door-empty p {
	margin: 0.5rem 0;
}

.front-door-footer {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}

.front-door-logout {
	color: #6b7280;
	font-size: 0.9rem;
	text-decoration: none;
}

.front-door-logout:hover {
	color: #ef4444;
	text-decoration: underline;
}
